@import url('https://fonts.googleapis.com/css2?family=Aclonica&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Dancing+Script:wght@400..700&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&family=Qwigley&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

body,
html {
    overflow-x: hidden;
    font-size: 14px;
    font-family: "Rubik", sans-serif;
    font-style: normal;
}

a {
    text-decoration: none;
}

.Container {
    max-width: 1200px;
    margin: auto;
    padding: 0;
}

li {
    list-style: none;
}


:root {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='green' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* top header */



.top-header .social-icons a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-header .social-icons a:hover {
    color: #ccc;
}

/* For mobile - show in mobile menu instead */
@media (max-width: 991.98px) {
    .top-header {
        display: none;
    }
}


/* navbar */
.navbar {
    background-color: #fff;
}



.top-header {
    background-color: #124e57;
    /* or match your green tone */
    height: 40px;
    color: white;
    font-size: 16px;
    color: #fff;
    z-index: 1020;
}


.top-header i {
    margin-right: 5px;
}


.navbar-nav {
    padding: 0 50px;
}

.navbar-nav .nav-link {
    color: #000;
    font-size: 18px;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    margin-right: 15px;
}

.navbar-nav .nav-link:hover {
    color: #008044 !important;
}

.nav-item .active {
    color: #034a29 !important;
    font-size: 17px;
    border-bottom: 3px solid #034a29;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: var(--bs-navbar-toggler-icon-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.navbar-toggler {
    border: 2px solid #1eab1e;
    /* Light green */
    border-radius: 4px;
}

.navbar-brand img {
    height: 80px;
    width: 100%;
    margin-left: 100%;
}

@media (max-width:500px) {
    .navbar-brand img {
        height: 80px;
        width: 100%;
        margin-left: 10px;
    }
}

@media (max-width:1015px) {
    .navbar-brand img {
        height: 80px;
        width: 100%;
        margin-left: 15px;
    }
}

@media (max-width:901px) {
    .right_header {
        display: none !important;
    }
}

@media (max-width:1700px) {
    .navbar-brand img {
        height: 80px;
        width: 100%;
        margin-left: 50%;
    }
}

.right_header {
    background-color: #d0f9e7;
    transform: skew(-32deg);
    padding: 20px 30px;
    margin-left: 20px;
    margin-right: -32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -7px;
    margin-bottom: -7px;
    width: 500px;
}

@media (max-width: 500px) {
    .right_header {
        display: none;
    }
}

/* Counter-skew the inner content so text appears normal */
.right_header .content {
    transform: skew(10deg);
}

.right_header h5 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

.right_header span {
    font-weight: 600;
    color: #0a0a0a;
}

.offcanvas .dropdown-menu {
    display: none;
    margin-left: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.offcanvas .dropdown-menu.show {
    display: block;
}


/* navbar exit */

/* loader */
/* Loader styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-img {
    width: 100px;
    height: auto;
    animation: spin 3s linear infinite;
    /* light, slow rotation */
}

/* Keyframes for rotation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Hide the loader when page is loaded */
.fade-out {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

/* carousel */
.carousel-item img {
    margin-top: 120px;
    height: 700px;
    margin-top: 20px;
}

.carousel-item {
    position: relative;
    margin-top: -18px;
}

/* Black overlay over image */
.carousel-item::after {
    content: "";
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    height: 700px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Caption content style */
.carousel-caption {
    z-index: 2;
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    padding: 10px 20px;
}

.carousel-caption h5 {
    font-size: 35px;
    font-weight: 600;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
    .carousel-item img {
        height: 500px;
        margin-top: 80px;
    }

    .carousel-item::after {
        height: 500px;
        top: 80px;
    }

    .carousel-caption {
        top: 60%;
        padding: 5px 15px;
    }

    .carousel-caption h5 {
        font-size: 18px;
    }
}

@media (max-width: 500px) {
    .carousel-item img {
        height: 400px;
        margin-top: 80px;
    }

    .carousel-item::after {
        height: 400px;
        top: 80px;
    }

    .carousel-caption {
        top: 50%;
        padding: 5px 15px;
    }

    .carousel-caption h5 {
        font-size: 16px !important;
        width: 300px !important;
        margin-left: -94px;
        margin-top: 25%;
    }
}


.Carousal-text {
    position: absolute;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    max-width: 650px;
    text-align: center;
    z-index: 2;
}

.carousel-item img,
.carousel-item::after {
    transition: all 0.3s ease-in-out;
}

.Carousal-text p {
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 18px;
}

.Carousal-text h5 {
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 15px;
}

.Carousal-text h2 {
    font-weight: bold;
    font-size: 36px;
    line-height: 1.2;
    color: #fff;
}

.Carousal-text a {
    display: inline-block;
    background: #fff;
    color: #008245 !important;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    margin: 15px 0;
}

.Carousal-text a:hover {
    background: #169e26;
    color: #fff !important;
}

/* Mobile responsiveness */
/* Mobile styles */
@media (max-width: 768px) {
    .Carousal-text {
        position: absolute;
        top: 50%;
        left: 5%;
        right: 5%;
        transform: translateY(-50%);
        text-align: center;
        padding: 10px;
        z-index: 2;
        /* Keep above image but below controls */
        pointer-events: auto;
        /* Allow links/buttons inside to work */
    }

    .Carousal-text h2 {
        font-size: 20px;
        line-height: 1.3;
        max-width: 250px;
        margin: 0 auto;
    }

    .Carousal-text h5 {
        font-size: 15px;
        margin: 20px 0;
    }

    .Carousal-text p {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 15px;
        margin-top: 65px;
    }

    .Carousal-text a.btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .Carousal-text .para {
        font-size: 14px !important;
        margin-top: 20px;
    }
}

/* Make carousel controls always clickable */
.carousel-control-prev,
.carousel-control-next {
    z-index: 3;
}

/* Carousal_end */

/* Bedcrumbs_wrapper */
.banner_wrapper>* {
    position: relative;
    z-index: 2;
}

.banner_wrapper {
    position: relative;
    background-image: url(./images/bedcrumbs/banner.jpg);
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.banner_wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Black overlay */
    z-index: 1;
}

.banner_content {
    position: relative;
    z-index: 2;
}

.banner_content h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.breadcrumb {
    background: #008044;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb span {
    color: white;
    font-weight: 500;
}

/* Bedcrumbs_wrapper Exit */

/* About Wrapper */
.About_wrapper {
    background-color: #F5F5F5;
    padding: 100px 0;
}


.About_wrapper .About_text h3 {
    position: relative;
    /* Needed for positioning the ::after */
    font-size: 30px;
    color: #0d99ab;
    padding-right: 20px;
    /* Space between text and the border */
}

/* Vertical right border using ::after */
.About_wrapper .About_text h3::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 38px;
    height: 2px;
    width: 35px;
    background-color: #0d99ab;
}

.About_wrapper .About_text p {
    color: #000;
    font-size: 16px;
}

.about-img img {
    width: 100%;
    margin-top: -60px;
    margin-left: -50px;
}

@media (max-width:500px) {
    .about-img img {
        width: 100%;
        margin: 0;
    }

    .About_wrapper .About_text h3 {
        font-size: 18px;
        color: #0d99ab;
        padding: 10px;
    }

    .About_wrapper .About_text p {
        color: #000;
        font-size: 14px;
        padding: 10px;
    }

    .About_wrapper .About_text h3 {
        position: relative;
        /* Needed for positioning the ::after */
        font-size: 18px;
        color: #0d99ab;
        padding-right: 20px;
        /* Space between text and the border */
    }

    /* Vertical right border using ::after */
    .About_wrapper .About_text h3::after {
        content: "";
        position: absolute;
        top: 20px;
        right: -8px;
        height: 2px;
        width: 30px;
        background-color: #0d99ab;
    }
}

.fonder_content h4 {
    font-size: 32px;
    color: #021c20;
    padding-bottom: 10px;
}

.fonder_content p {
    font-size: 16px;
    color: #000;
    width: 500px;
}

.fonder_content {
    margin-top: 20%;
}

@media (max-width:500px) {
    .fonder_content h4 {
        padding: 10px;
    }

    .fonder_content p {
        width: 100%;
        padding: 10px;
    }
}

.Founder_wrapper {
    background-color: #d5d1e8;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    margin-top: 100px;
}

/* About Exit */
/* Service */
.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #111;
}

.services_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service_box {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.service_box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    background-color: #f8fff9;
    /* slight greenish tint */
    border-bottom: 7px solid #02a65a;
}

.service_box:hover .icon {
    color: #0d9f4b;
    /* darker green on hover */
    transform: scale(1.1);
}

.anchor_service {
    background-color: #002b13;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    margin-left: 50%;
    margin-top: 50px;
}

.anchor_service a {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

@media (max-width:500px) {
    .anchor_service {
        margin-left: 35%;
    }
}

.icon {
    font-size: 40px;
    /* color: #00c265; */
    color: #008044;
    margin-bottom: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.section_heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
    text-align: center;
    color: #008044;
}

.service_box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Number tag with angled edge */
.number_tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #00c265;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
}

.Service_Wrapper {
    padding: 100px 0;
}

.anchor a {
    color: #fff;
    background-color: #034a29;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
}

.anchor a:hover {
    border: 3px solid #021c20;
    background-color: transparent;
    color: #000;
}

/* inner_service */

.business_wrapper {
    padding: 100px 0;
}

.business_wrapper p {
    color: #000000;
    font-size: 16px;
    padding: 0 20px;
}

.business_wrapper h3 {
    color: #021c20;
    text-align: center;
    font-size: 35px;
    margin-bottom: 20px;
}

.business_wrapper strong {
    font-size: 17px;
    color: #001d26;
    margin-left: 15px;
}

.business_wrapper li {
    line-height: 30px;
    padding: 0 10px;
}

.Xbrl-inner {
    text-align: center;
}

/* Service exit */

/* cta Section */
.cta_section {
    background-image: url('images/background/background.jpg');
    /* Replace with your uploaded background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 150px;
}

.cta_content {
    max-width: 1000px;
    width: 100%;
}

.cta_content h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 30px;
}

@media (max-width:500px) {
    .cta_content h2 {
        font-size: 20px;
    }
}

.cta_button {
    display: inline-flex;
    align-items: center;
    background-color: #00c265;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cta_button:hover {
    transform: translateY(-3px);
}

.cta_button .btn-text {
    padding: 15px 25px;
    background-color: #00c265;
    color: white;
}

.cta_button .btn-arrow {
    padding: 15px 20px;
    background-color: #001d26;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Section-orange */

/* Footer Section */
.footer_up_section {
    background: #041C3C;
    padding: 120px 15px;
    border-top: 2px solid #eee;
}

.footer_up_section .Container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* for responsive stacking */
    gap: 15px;
}

.footer_up_section .left_footer h2 {
    font-size: 40px;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
}


.footer_up_section .right_footer .anchor_whatsapp a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: #25D366;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 50px;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.footer_up_section .right_footer .anchor_whatsapp a i {
    font-size: 18px;
}

.footer_up_section .right_footer .anchor_whatsapp a:hover {
    background: #1ebe5d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer_up_section .Container {
        flex-direction: column;
        text-align: center;
    }

    .footer_up_section .left_footer h2 {
        font-size: 20px;
    }

    .footer_up_section .right_footer .anchor_whatsapp a {
        font-size: 15px;
        padding: 12px 25px;
    }
}

/* footer--End */

/* Contact */
.contact_wrapper {
    padding: 80px 0;
}

.contact_wrapper h3 {
    text-align: center;
    font-size: 40px;
    color: #000;
    margin-bottom: 30px;
}

.contact_wrapper h3 {
    font-size: 35px;
    text-align: center;
    position: relative;
    padding-top: 15px;
}

.contact_wrapper h3::after {
    content: "";
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 208px;
    /* adjust as needed */
    height: 4px;
    background-color: #021319;
    border-radius: 2px;
}

.contact_list {
    font-size: 18px;
    text-align: left;
    font-family: "poppins";
}

.contact_list strong {
    font-size: 20px;
    text-align: left;
    margin-right: 10px;
}

@media (max-width:500px) {
    .contact_map {
        margin-top: 20px;
        width: 100% !important;
    }
}



@media(max-width:450px) {
    .contact_text {
        width: 107%;
    }
}

.Contact-text {
    background-color: #196c6e;
    padding: 80px 30px;
}

.contact_list {
    color: #fff;
}

.Contact-text li {
    list-style: none;
    margin-bottom: 20px;
}


/* contact_wrapper */






/* Contact Exit */
/* whatsapp_icon */
.fixed-contact-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fixed-contact-icons a {
    width: 50px;
    height: 50px;
    background-color: #25D366;
    /* WhatsApp green for both by default */
    color: white;
    font-size: 24px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.fixed-contact-icons .call-icon {
    background-color: #0d6efd;
    /* Blue for call */
}

.fixed-contact-icons a:hover {
    transform: scale(1.1);
}

.fixed-contact-icons {
    position: fixed;
    bottom: 20px;
    z-index: 999;
}




/* Footer */
.footer_wrapper {
    background-color: #111421;
    padding-top: 50px;
}

.footer_wrapper h5 {
    color: #fff;
    font-weight: 600;
    font-size: 22px;
}

.footer_wrapper .contact-info ul a {
    padding: 0;
}

.footer_wrapper ul li {
    margin-bottom: .5rem;
    list-style: none;
    font-size: .875rem;
}

.footer_wrapper ul li a {
    color: #fff;
}

.list-unstyled li a {
    font-size: 14px;
    font-weight: 500;
}

.footer_wrapper .link-widget li a,
.footer_wrapper p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding-left: 1.5rem;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.footer_wrapper .link-widget li a::before {
    content: '\f105';
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    position: absolute;
    left: 0.3rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.footer_wrapper .link-widget li a:hover {
    margin-left: .625rem;
    color: #e34252;
    font-weight: 700;
}

.footer_wrapper .social-network a {
    width: 2.1875rem;
    height: 2.1875rem;
    margin: .5rem;
    line-height: 2rem;
    font-size: .875rem;
    display: inline-block;
    border: .125rem solid var(--bg-light-blue);
    color: var(--text-light);
    text-align: center;
    border-radius: 100%;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.footer_wrapper .social-network a:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-0.1875rem);
}

.footer_wrapper ::placeholder {
    color: var(--text-light);
}

.footer_wrapper .form-control {
    color: var(--text-light);
}

.footer_wrapper .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--bg-white);
}

.footer_wrapper .copyright-section {
    padding: 1rem 0 1rem;
    text-align: center;
}

.footer_wrapper .copyright-section a {
    color: #fff;
    font-weight: 600;
}

.payment-section {
    background-color: #008245;
    /* Blue background */
    color: white;
    text-align: center;
    padding: 10px 0;
}

.payment-section h2 {
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 16px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-icons img {
    width: 400px;
    height: auto;
    border-radius: 6px;
    background-color: white;
    padding: 5px;
}

/* Footer Background */
.copyright-section {
    background-color: #124E57;
    /* Dark Green */
}

.admin_section {
    background-color: #000;
    padding: 15px 0;
}

.admin_section a {
    color: #fff;
    padding: 20px 0;
    font-size: 14px;
}

.admin_section a {
    color: #fff;
    /* link text white */
    text-decoration: none;
}

.admin_section .divider {
    color: #fff;
    /* makes || white */
    margin: 0 8px;
}

/* Gallery Images */
.footer_wrapper .row .col-lg-3 .row img {
    height: 70px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.footer_wrapper .row .col-lg-3 .row img:hover {
    transform: scale(1.05);
}

/* Designed by Link */
.star_anchor {
    color: red !important;
    /* red link */
    font-weight: 600;
    text-decoration: none;
}

.star_anchor:hover {
    text-decoration: underline;
}

/* popup */
/* Overlay background */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Popup content */
.popup-content {
    position: relative;
    background-color: #fff;
    padding: 0;
    border-radius: 10px;
    max-width: 90%;
    width: 400px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    margin-top: 12%;
}

.popup-content img {
    width: 100%;
    border-radius: 10px;
    display: block;
    height: 550px;
}

@media (max-width:500px) {
    .popup-content img {
        height: 400px;

    }

    .popup-content {
        margin-top: 40% !important;
    }
}

@media (max-width:768px) {
    .popup-content img {
        height: 400px;

    }

    .popup-content {
        margin-top: 30% !important;
    }
}

@media (max-width:1015px) {
    .popup-content img {
        height: 400px;

    }

    .popup-content {
        margin-top: 30% !important;
    }
}

/* Poster image */



/* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide popup by default */
.popup-overlay.hidden {
    display: none;
}


/* popup exit */