* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.home {
    position: relative;
    overflow: hidden;
    width: 100%;
    background-image: url(../images/bgimage.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    padding: 150px 0;
}

.home::before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    content: "";
    /* background-color: rgba(0, 0, 0, 0.5); */
    background-color: #171717;
    opacity: 0.55;
}

.homecontent {
    padding-left: 150px;
    padding-right: 50px;
    position: relative;
}

.homecontent h1 {
    font-size: 100px;
    line-height: 1;
    color: #fff;
    margin-top: 20px;
    text-transform: uppercase;
}

.homecontent span {
    position: relative;
    font-size: 20px;
    color: #7ea597;
    text-transform: uppercase;
}

.homecontent span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #7ea597;
    transition: 0.3s ease;
}

.homecontent span:hover::after {
    width: 100%;
}


/* bio */


.bio {
    padding: 120px 0;
    overflow: hidden;
    width: 100%;
}

.biocontainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.bio-left {
    width: 50%;
    padding-right: 20px;
}

.biocontainer .bio-left span {
    color: #7ea597;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 4.16px;
}

.biocontainer .bio-left .bio-heading {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.bio-image {
    width: 100%;
}

.bio-image img {
    width: 100%;
    filter: grayscale(100%);
}

.bio-right {
    width: 50%;
}



.bio-right p,
.bio-right .biopara {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #6e777d;
    line-height: 1.6;
    text-transform: capitalize;
}

.bio-right .biopara {
    margin-top: 10px;
}



.bio-right h3 {
    color: #171717;
    line-height: 1.5;
    font-size: 20px;
    margin-top: 10px;
}



/* webseries */

.webseries {
    margin-top: 30px;
}

.webseries span {
    color: #7ea597;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 4.16px;
}

.series-content {
    width: 60%;
}

.webseries .series-heading {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.series-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    padding: 20px 0;
}

.series-card {
    width: 33%;
    position: relative;
    text-align: center;
}

.series-card:nth-child(1)::after,
.series-card:nth-child(2)::after {
    content: "";
    position: absolute;
    right: 7px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #d9d9d9;
}

.series-img {
    width: 100%;
    height: 300px;
    padding-right: 20px;
}

.series-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.series-card h3 {
    margin-top: 20px;
    font-size: 20px;
    color: #171717;
}

.platform {
    font-size: 16px;
    color: #7ea597;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 4.16px;
}


/* shows */
.shows {
    margin-top: 30px;
}


.shows-content {
    width: 60%;
}

.shows-content span {
    color: #7ea597;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 4.16px;
}

.shows-content h2 {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.shows-button {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.shows-button .load {
    background-color: #7ea597;
    border: 1px solid #7ea597;
    font-size: 16px;
    height: 50px;
    line-height: 1.4;
    color: #fff;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
    cursor: pointer;
}

.shows-button .load:hover {
    background-color: #6A887D;
    border: 1px solid #6A887D;
    transition: all 0.3s ease-in-out;
}

.shows-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.shows-card {
    position: relative;
    height: 250px;
    overflow: hidden;
    border: 1px solid #ccc;
}

.image-container {
    width: 100%;
    height: 100%;
    /* overflow: hidden; */
    position: relative;
    z-index: 1;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.shows-card h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    margin: 0;
    z-index: 2;
}

.shows-card:hover h4 {
    height: 100%;
    opacity: 1;
    background: linear-gradient(to top, rgba(126, 165, 151, 1), rgba(126, 165, 151, 0.3), rgba(91, 138, 121, 0));

}

.hidden {
    display: none;
}



/* contact us */

.Contact {
    position: relative;
    padding: 120px 0;
    width: 100%;
    overflow: hidden;
    background-image: url(../images/contactbg.avif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 300px;
}

.Contact::after {
    content: '';
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #171717;
    opacity: 0.7;
    z-index: 1;
}

.Contact h2 {
    position: relative;
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
    z-index: 2;
}

.contacthome ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    position: relative;
    z-index: 2;
    padding: 0;
    margin: 0;
}

.contacthome ul li {
    width: calc(33.33% - 15px);
    display: flex
}

.contacthome ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* text-align: center; */
    width: 100%;
    height: 100%;
    background-color: #fff;
    overflow: hidden;

}

.contacthome ul li:hover a p {
    color: #6A887D;
}

.contacthome ul li a i {
    font-size: 36px;
    color: #618a7b;
    margin-bottom: 10px;
}

.contacthome ul li a p {
    font-size: 20px;
    color: #000;
}


/* IMDb Section */
.imdbimg {
    display: flex;
    gap: 15px;
}


.imdbimg img {
    width: 100px;
    height: auto;
}

.imdbcontent {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

.imdbimg .imdbcontent h3 {
    font-size: 16px;
    color: #000;
}

.imdbimg .imdbcontent p {
    margin: 5px 0;
    font-size: 12px;
    color: #000;
}

.smallimdb {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
}

.smallimdb img {
    width: 20px;
    height: auto;
}

.smallimdb span {
    font-size: 14px;
    color: #d9d9d9;
}

/* swiper */

.swiper {
    padding: 120px 0;
    overflow: hidden;
    width: 100%;
    background-color: #f9f9f9;
}

.content {
    width: 60%;

}

.swiper-container span {
    color: #7ea597;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 4.16px;
}

.swiper-container h2 {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.swiper-wrapper {
    width: 100%;
}

.swiper-wrapper .owl-theme .item {
    background-color: #fff;
    padding: 10px 0;
    border: 1px solid #d9d9d9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-wrapper .owl-theme .item:hover {
    border: 1px solid #7ea597;
}

.swiper-wrapper .owl-theme .item .item-img {
    width: 150px;
    height: 150px;
}

.swiper-wrapper .owl-theme .item .item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* gallery */

.gallery-section {
    padding: 120px 0;
    width: 100%;
    overflow: hidden;
    /* background-color: #171717; */
}

.gallery-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gallery-content {
    width: 60%;
}

.gallery-section .gallery-content span {
    color: #7ea597;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 4.16px;
}

.gallery-content h2 {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.gallery-wrapper {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-flow: dense;
}

.gallery-wrapper .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;

}

.gallery-wrapper .horizontal {
    grid-row: span 2;
}
.gallery-wrapper .vertical{
    grid-column: span 2;
}
.gallery-wrapper .big {
    grid-column: span 2;
    grid-row: span 2;
}

/* video */

/* .video-section {
    padding: 120px 0;
    overflow: hidden;
    width: 100%;
    background-color: #171717;
}

.video-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.video-card {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.video-card video {
    width: 100%;
    height: auto;
} */




@media only screen and (min-width: 992px) and (max-width: 1199px) {


    .homecontent {
        padding-left: 50px;
        padding-right: 50px;
    }

    .homecontent h1 {
        font-size: 75px;
    }

    .gallery-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}


@media only screen and (max-width: 991px) {

    .homecontent {
        padding-left: 50px;
        padding-right: 50px;
    }

    .homecontent h1 {
        font-size: 55px;
    }

    /* Bio Section */

    .bio-left,
    .bio-right {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .bio-image {
        max-width: 100%;
    }

    .biocontainer {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Webseries Section */

    .series-container {
        justify-content: center;
    }

    .series-card {
        width: 50%;
        margin-bottom: 10px;
    }

    .series-card:nth-child(2)::after {
        display: none;
    }

    .series-card:nth-child(odd)::after {
        right: 10px;
    }

    .series-img {
        height: 200px;
    }


    /* Shows Section */
    .shows-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .shows-card {
        height: 220px;
    }


    /* Contact section  */

    .contacthome ul li {
        width: calc(50% - 10px);
    }

    .contacthome ul {
        justify-content: center;
    }

    .contacthome ul li a i {
        margin-top: 20px;
    }

    .contacthome ul li a p {
        margin-bottom: 20px;
    }

    .contacthome ul li:nth-child(1) {
        order: 1;
    }

    .contacthome ul li:nth-child(2) {
        order: 3;
    }

    .contacthome ul li:nth-child(3) {
        order: 2;
    }
}

@media only screen and (max-width: 767px){

    .homecontent {
        padding-left: 15px;
        padding-right: 15px;
    }

    .homecontent span {
        display: flex;
        justify-content: center;
    }

    .homecontent span:hover::after {
        width: 0;
    }

    .homecontent h1 {
        font-size: 45px;
        text-align: center;
    }

    /* BIO SECTION */

    .bio {
        padding: 80px 0;
    }

    .biocontainer {
        flex-direction: column;
        align-items: flex-start;
    }

    .bio-left,
    .bio-right {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .biocontainer .bio-left .bio-heading {
        font-size: 32px;
    }


    /* WEB SERIES */
    .series-container {
        flex-direction: column;
        padding: 10px 0;
    }

    .series-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .series-img {
        height: 300px;
        padding-right: 0;
    }

    .webseries .series-heading {
        font-size: 32px;
    }

    .series-card:nth-child(1)::after,
    .series-card:nth-child(2)::after {
        display: none;
    }


    /* SHOWS SECTION */
    .shows-container {
        grid-template-columns: 1fr;
    }

    .shows-content h2 {
        font-size: 32px;
    }


    .shows-card {
        height: 215px;
    }

    /* contact us */
    .Contact {
        padding: 80px 0;
    }

    .contacthome ul li {
        width: 100%;
    }

    .contacthome ul li a i {
        margin-top: 20px;
    }

    .contacthome ul li a p {
        margin-bottom: 20px;
    }

    .contacthome ul li:nth-child(1) {
        order: 2;
    }

    .contacthome ul li:nth-child(2) {
        order: 1;
    }

    .contacthome ul li:nth-child(3) {
        order: 3;
    }



    /* swiper */
    .swiper {
        padding: 80px 0;
    }

    .swiper-container h2 {
        font-size: 32px;
    }

    /* gallery */

    .gallery-section {
        padding: 80px 0;
    }

    .gallery-container {
        flex-direction: column;
        align-items: flex-start;
    }


    .gallery-content h2 {
        font-size: 32px;
    }

    .gallery-wrapper .gallery-item {
        height: 345px;
    }

    .gallery-wrapper .horizontal,
    .gallery-wrapper .big,
      .gallery-wrapper .vertical {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}