.banner-big-container {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: 5% auto 0 auto;
    border: 2px #e6e4e4 solid;
    height: fit-content;
    padding: 2%;
}

.videosContainer {
    display: flex;
    flex-wrap: wrap;
    width: 48%;
    height: 630px;
    gap: 30px;
    justify-content: center;
}

.videoItem {
    width: 45%;
    height: 300px;
}

.videoContainer {
    width: 100%;
    height: 180px;
}

.videoContainer iframe {
    width: 100%;
    height: 100%;
}

.videoDesc {
    text-align: right;
    border-bottom: 3px solid #800000;
    padding: 10px 0 10px 0;
}

.videoDesc h3 {
    border-right: 3px solid #800000;
    padding-right: 3%;
}

.banner-container {
    position: relative;
    width: 48%;
}

/* .image-container {
    height: 645px;
} */

.image-wrapper {
    position: absolute;
    /* top: 0;
    left: 0; */
    width: 100%;
    height: 100%;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-buttons-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.slider-button {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    cursor: pointer;
}

.bottom-text-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.332);
    color: white;
    box-sizing: border-box;
}

.text-1,
.text-2,
.text-3 {
    direction: ltr;
    padding: 10px;
    font-size: 1.3rem;
    text-align: right;
}

.slider-dots-container {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 30px;
    left: 10%;
    transform: translateX(-50%);
    width: auto;
}

.slider-dot {
    width: 15px;
    height: 15px;
    background-color: #bbb;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.slider-dot.active {
    background-color: #410000;
}

@media screen and (min-width: 1050px) and (max-width: 1200px){
    .videoDesc p{
        font-size: 0.9rem;
    }

    .videoDesc h3{
        font-size: 1rem;
    }

    .banner-big-container{
        padding: 4% 2%;
    }
    
    .videosContainer{
        row-gap: 35px;
    }

    .text-1, .text-2, .text-3{
        font-size: 1rem;
    }
}

@media screen and (min-width: 851px) and (max-width: 1049px){
    .videoDesc p{
        font-size: 0.73rem;
    }

    .videoDesc h3{
        font-size: 0.9rem;
    }

    .banner-big-container{
        padding: 4% 2%;
    }
    
    .videosContainer{
        row-gap: 35px;
    }

    .text-1, .text-2, .text-3{
        font-size: 1rem;
    }
}

@media screen and (max-width: 850px){
    .banner-big-container{
        flex-direction: column;
        height: 1800px;
        margin-bottom: 20%;
    }

    .videosContainer {
        display: flex;
        flex-wrap: wrap;
        row-gap: 60px;
        width: 100%;
    }
    
    .videoItem {
        width: 100%;
        margin-bottom: 0px;
    }

    .banner-container{
        width: 100%;
        height: 300px;
    }

    .slider-dots-container {
        left: 15%;
        top: 25px;
      }

    .bottom-text h2{
        font-size: 1rem;
    }
}