/* Video Container */
.video-frame{
    margin: 100px auto;
}
.responsive-video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio (divide height by width, e.g., 9/16 = 0.5625) */
    height: 0;
    overflow: hidden;
    margin: 100px auto;
}

.responsive-video iframe,
.responsive-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; /* Optional: removes iframe border */
}

.show-mobile{
    display: none;
}

@media screen and (max-width: 1200px) {

    .gallery-list{
        grid-template-columns: repeat(4, 1fr);
    }
}


@media screen and (max-width: 800px) {

    .title-row-flex {
        flex-direction: column;
    }
    .title-row-flex .title-row{
        text-align: left;
        border-right: 0px;
        padding-bottom: 15px;
        border-bottom: 1px solid;
    }
    .title-row-flex .row-content {
        padding-top: 25px;
    }

    .gallery-list{
        grid-template-columns: repeat(3, 1fr);
    }
}


@media screen and (max-width: 650px) {
    .flex-section{
        flex-direction: column;
        margin-bottom: 25px;
    }

    .gallery-list{
        grid-template-columns: repeat(2, 1fr);
    }

    .flex-tetimonial{
        flex-direction: column;
    }
    .show-mobile{
        display: block;
    }
    .show-desktop{
        display: none;
    }
}


@media screen and (max-width: 500px) {
    header .container{
        display: block;
        text-align: center;
    }
    nav{
        justify-content: center;
        margin-top: 25px;
    }
    .gallery-list{
        grid-template-columns: repeat(1, 1fr);
    }

    .faq .item{
        flex-direction: column;
        gap: 10px;
        padding-bottom: 25px;
        margin-bottom: 25px;
        border-bottom: 1px solid #ccc;
    }
}