/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
    font-size: 0.5208333333vw;
    /* 1/1920px for responsive text scaling */
    scroll-behavior: smooth;
    /* font-family: 'Helvetica Neue', 'work-sans', sans-serif; */
}

body {
    height: 100%;
    width: 100%;
    background-color: transparent;
    line-height: 1;
    transition: background-color 1s ease;
    margin: 0;
    font-family: Calibri, "Helvetica Neue", Arial, sans-serif;

}


html:focus-within {
    scroll-behavior: smooth;
}

.gap-100 {
    gap: 10rem !important;
}

.list-unstyled {
    padding-left: 0;
    list-style: none
}

.row {
    display: flex;
    flex-wrap: wrap;
}


.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%
}

.offset-3 {
    margin-left: 10%
}

.d-block {
    display: block !important
}

.d-flex {
    display: flex !important
}

.d-none {
    display: none !important
}

.justify-content-end {
    justify-content: flex-end !important
}

.align-items-center {
    align-items: center !important
}



@media (min-width:992px) {
    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .offset-lg-0 {
        margin-left: 0
    }

    .d-lg-flex {
        display: flex !important
    }

    .justify-content-lg-end {
        justify-content: flex-end !important
    }
}


@media (min-width: 575.98px) {

    .gap-lg-100 {
        gap: 10rem !important;
    }

}



.container {
    --bs-gutter-container-x: 5rem;
    --bs-gutter-container-m-x: 5rem;
    width: 80%;
    max-width: 2000px;
    margin-right: auto;
    margin-left: auto;
    padding-right: calc(0.5 * var(--bs-gutter-container-x));
    padding-left: calc(0.5 * var(--bs-gutter-container-x));
}

@media only screen and (max-width: 991.98px) {
    .container {
        max-width: 100%;
        padding-right: calc(0.5 * var(--bs-gutter-container-m-x));
        padding-left: calc(0.5 * var(--bs-gutter-container-m-x));
    }
}

.row {
    --bs-gutter-x: 5rem;
    --bs-gutter-m-x: 5rem;
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

@media only screen and (max-width: 991.98px) {
    .row {
        margin-right: calc(-0.5 * var(--bs-gutter-m-x));
        margin-left: calc(-0.5 * var(--bs-gutter-m-x));
    }
}

.row [class^="col-"],
.row [class*=" col-"] {
    padding-right: calc(0.5 * var(--bs-gutter-x));
    padding-left: calc(0.5 * var(--bs-gutter-x));
}

@media only screen and (max-width: 991.98px) {

    .row [class^="col-"],
    .row [class*=" col-"] {
        padding-right: calc(0.5 * var(--bs-gutter-m-x));
        padding-left: calc(0.5 * var(--bs-gutter-m-x));
    }
}


a[href]:hover {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
}

img {
    max-width: 100%;
}

.img-contain {
    line-height: 0;
}

.header {
    padding-block: 0.5rem;
    position: fixed;
    background: transparent;
    z-index: 9999;
    /* stay above everything */

}

.header.freeze {
    background: white !important;
}

.header.scrolled a {
    color: black;
    /* after scroll */
}

@media only screen and (max-width: 991px) {
    .header {
        position: absolute;

    }

    .header.freeze {
        background: white !important;
    }

    .header.scrolled a {
        color: black;
        /* after scroll */
    }
}


/* --------------------------------------------------------------------------- */

.img-container {
    display: flex;
    /* enable flex layout */
    justify-content: center;
    /* center horizontally */
    align-items: center;
    /* center vertically */
    padding: 0;
    /* remove extra padding */
    box-sizing: border-box;
    background-color: transparent;
    /* optional: add bg color */
    position: relative;
    /* for any absolute children */
}

.header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.logo-img {
    width: 8vh;
    /* adjust size */
    height: auto;
    /* keep aspect ratio */
    max-height: 100%;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 999;
    padding: 80px 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: slideDown 0.3s ease;

}

.mobile-nav.active {
    display: flex;
}

.mobile-nav.active .close-btn {
    display: block;
    /* show when active */
}

.mobile-nav.active~#menuToggle {
    display: none;
    /* hide hamburger when nav is active */
}

.mobile-nav a {
    font-size: 22px;
    margin: 15px 0;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    color: #000 !important;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    cursor: pointer;
    color: #000;
    display: none;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 991px) {

    #header-menu-1,
    #header-menu-2 {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: block;
        position: fix;
        top: 20px;
        left: 20px;
        font-size: 28px;
        cursor: pointer;
        z-index: 1000;
        position: fixed;
        background: transparent;
        z-index: 9999;
    }
}

@media (min-width: 992px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

.mobile-menu-toggle {
    display: block;
}

/* ............................................................................................. */



@media only screen and (max-width: 1200px) {}


@media only screen and (max-width: 991.98px) {
    .img-container {
        position: absolute;
        /* take it out of grid flow */
        top: 10%;
        left: 50%;
        /* center horizontally */
        transform: translateX(-50%);
        /* shift by half its width */
        width: auto;
        /* let it size naturally */
        justify-content: center;
        /* center content inside */
    }
}



@media only screen and (max-width: 576px) {


    .offset-3 {
        margin-left: 10%
    }


}

@media only screen and (max-width: 460px) {

    .offset-3 {
        margin-left: 0;
    }

}

@media only screen and (max-width: 395px) {
    .offset-3 {
        margin-left: 0;
    }

}

.header-menu {
    font-weight: 500;
    font-size: 1.8rem !important;
    line-height: 2;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    color: #444343;
}

@media only screen and (max-width: 991.98px) {
    .header-menu {
        font-size: 2.4rem;
    }
}

.header.style-color-white {
    top: 0;
    right: 0;
    left: 0;
    z-index: 11;
}

.header.style-color-white .header-menu {
    color: #000000;
}





/* --------------------------------------------------------------------------- */

/* Social box */

.social-box {
    position: fixed;
    top: 80%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.social-box img {
    width: 20px;
    height: 20px;
    transition: opacity 0.3s;
}

.social-box img:hover {
    opacity: 0.7;
}

@media only screen and (max-width: 576px) {
    @media (max-width: 576px) {
        .social-box {
            position: fixed;
            top: 80%;
            right: 12px;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 10px;
            background: white;
            padding: 10px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }
    }
}

@media only screen and (max-width: 460px) {
    @media (max-width: 460px) {
        .social-box {
            position: fixed;
            top: 75%;
            right: 12px;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 10px;
            background: white;
            padding: 10px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }
    }
}



/* --------------------------------------------------------------------------- */



/* Footer */

.footer {
    background: white;
    color: #333;
    margin-top: 100px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    max-width: 1500px;
    margin: 0 auto;
    gap: 10px;
}


.footer-logo {
    width: 10vh;
    height: 50%;
}

.footer-column h4 {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 2vh;
}

.footer-column p {
    font-size: 1.5vh;
    line-height: 1.6;
}

.footer-column a {
    color: #007bff !important;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    font-size: 1.5vh;
    line-height: 1.5;
    margin-top: 30px;
    border-top: 1px solid #ccc;
    padding-top: 15px;
}

.footer-links a {
    margin: 0 5px;
    text-decoration: none;
    color: #007bff !important;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 1200px) {
    @media (max-width: 1200px) {
        .footer-container {
            gap: 10px;
            max-width: 1000px;
        }

        .footer-logo {
            width: 10vh;
            height: 40%;
        }

        .footer-column h4 {
            font-size: 1.5vh !important;
        }

        .footer-column p {
            font-size: 1.2vh;
            line-height: 1.6;
        }

        .footer-bottom {
            font-size: 1.2vh;
        }

    }

}

@media only screen and (max-width: 991px) {
    @media (max-width: 991px) {
        .footer-container {
            gap: 20px;
        }

    }

}

@media only screen and (max-width: 915px) {
    @media (max-width: 915px) {
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            max-width: 700px;
            margin: 0 auto;
            gap: 0px;
        }


        .footer-column h4 {
            font-size: 1.5vh !important;
        }

        .footer-column p {
            font-size: 1.1vh;
        }

        .footer-column a {
            font-size: 1.1vh;
        }

        .footer-bottom {
            font-size: 1.1vh;
        }
    }
}

@media only screen and (max-width: 821px) {
    @media (max-width: 821px) {
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            max-width: 780px;
            gap: 0px;
        }

        .footer-column h4 {
            font-size: 1.3vh !important;
        }

        .footer-column p {
            font-size: 1.0vh;
        }

        .footer-column a {
            font-size: 1.0vh;
        }

        .footer-bottom {
            font-size: 1.0vh;
        }
    }
}

@media only screen and (max-width: 768px) {
    @media (max-width: 768px) {
        .footer {
            margin-top: 50px;
        }


        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
            max-width: 1200px;
            gap: 30px;
        }

        .footer-column h4 {
            font-size: 1.5vh !important;
        }

        .footer-column p {
            font-size: 1.1vh;
        }

        .footer-column a {
            font-size: 1.1vh;
        }

        .footer-bottom {
            font-size: 1.1vh;
        }
    }
}

@media only screen and (max-width: 576px) {
    @media (max-width: 576px) {
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            max-width: 1200px;
            gap: 30px;
        }

        .footer-logo {
            width: 8vh;
            height: 40%;
            margin-left: 15px;
        }

        .footer-column h4 {
            font-size: 1.5vh !important;
            margin-left: 15px;
        }

        .footer-column p {
            font-size: 1.1vh;
            line-height: 1.6;
            margin-left: 15px;
        }

        .footer-column a {
            font-size: 1.1vh;
        }

        .footer-bottom {
            font-size: 1.1vh;
        }
    }
}


@media only screen and (max-width: 460px) {
    @media (max-width: 460px) {
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            max-width: 1200px;
            gap: 20px;
        }

        .footer-logo {
            width: 8vh;
            height: 40%;
            margin-left: 15px;
        }

        .footer-column h4 {
            font-size: 1.2vh !important;
            margin-left: 15px;
        }

        .footer-column p {
            font-size: 1.0vh;
            line-height: 1.6;
            margin-left: 15px;
        }

        .footer-bottom {
            font-size: 1.0vh;
        }
    }
}

@media only screen and (max-width: 395px) {
    @media (max-width: 395px) {
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            max-width: 1200px;
            gap: 30px;
        }
    }
}


/* --------------------------------------------------------------------------- */



#backToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 1000;
    width: 45px;
    height: 45px;
    font-size: 20px;
    background-color: white;
    color: #333;
    border: 1px solid black;
    border-radius: 30%;
    cursor: pointer;
    display: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#backToTopBtn:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media only screen and (max-width: 768px) {
    @media (max-width: 768px) {
        #backToTopBtn {
            position: fixed;
            bottom: 20px;
            right: 10px;
            z-index: 1000;
            width: 45px;
            height: 45px;
            font-size: 20px;
            background-color: white;
            color: #333;
            border: 1px solid black;
            border-radius: 30%;
            cursor: pointer;
            display: none;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
    }
}

@media only screen and (max-width: 576px) {
    @media (max-width: 576px) {}
}