body {
    font-family: Noto Sans, sans-serif;
}

.p-mobile {
    line-height: 26px;
}

/*---------- top container start ----------------*/

.top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-left, .header-right {
    flex: 1; /* Ensures that left and right headers take up equal space */
}

.header-center {
    flex: 2; /* Gives the center (logo) more space to ensure it stays centered */
    display: flex;
    justify-content: center;
}

.footer-menu ul li {
    line-height: 2.4em;
}

.footer-menu ul {
    width: fit-content;
    margin: auto;
    text-align: start;
}

.footer-menu a {
    color: unset;
    text-decoration: none;
}

.contact-row {
    margin: auto;
    max-width: 50vw;
}

.nav-link {
    white-space: nowrap; /* Prevents text wrapping */
}

.svg-logo-mobile {
    display: none;
}

.login-link {
    display: none;
}

.offcanvas-backdrop.fade.show {
    pointer-events: none
}
/* Media Queries for Responsive Adjustments */
@media (max-width: 768px) {
    .top-container {
        flex-direction: column;
        align-items: center;
    }

    .header-left, .header-center, .header-right {
        flex: 1 100%; /* Takes full width */
    }

    .navbar-nav {
        flex-direction: column; /* Stack the navigation links */
        padding-left: 20px;
    }

    .login-btn {
        display: none;
    }

    .login-link {
        display: block;
    }

    .svg-logo-mobile {
        display: block;
    }
}

/*--------- top container end -----------------*/
/* help videos*/
#videoContainer {
    width: 100%;
    height: 0;
}

    #videoContainer video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
/* help videos end*/

/*--------- accordion ----------*/
.accordion {
    margin: auto;
    max-width: 50vw;
}

.accordion-button {
    font-size: 20px !important;
}

.accordion-header-help {
    font-size: 20px !important;
}

.accordion-button:not(.collapsed) {
    color: black;
    background-color: #b5e1cd !important;
}

.accordion-item .card-body {
    background-color: #ecfff6;
    border-radius: 5px;
}

.accordion-header-text {
    display: block;
    margin-left: 15px;
    font-style: unset;
    padding: 20px 0 20px 45px;
}

.accordion-header-help-text {
    display: block;
    margin-left: 15px;
    font-style: unset;
    padding: 20px 0 20px 15px;
}

.accordion-item {
    border-top: 1px solid #65bc94 !important;
    border: 1px solid #65bc94 !important;
    border-radius: 5px !important;
}

.accordion-button {
    border-radius: 5px;
}
    /* Custom style */
    .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
        transform: scale(1.7) !important;
        transition: all 0.3s;
        position: absolute;
        left: 30px;
    }

    .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
    }
/*--------- accordion ----------*/


.navbar-toggler .checkbox {
    position: absolute;
    display: block;
    height: 32px;
    width: 32px;
    top: 20px;
    left: 20px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
}

.hamburger-lines {
    display: block;
    height: 26px;
    width: 32px;
    position: absolute;
    top: 32px;
    right: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .hamburger-lines .line {
        display: block;
        height: 4px;
        width: 100%;
        border-radius: 10px;
        background: white;
    }

    .hamburger-lines .line1 {
        transform-origin: 0% 0%;
        transition: transform 0.4s ease-in-out;
    }

    .hamburger-lines .line2 {
        transition: transform 0.2s ease-in-out;
    }

    .hamburger-lines .line3 {
        transform-origin: 0% 100%;
        transition: transform 0.4s ease-in-out;
    }

.navbar-toggler input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
}

.navbar-toggler input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
}

.navbar-toggler input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
}


main.pb-3 {
    padding: 0 !important; /*override bootstrap padding*/
    z-index: inherit;
}

nav {
    background-color: #65BC94 !important;
}

    nav .nav-link {
        color: white !important;
        font-size: 18px;
    }

.navbar {
    padding: 20px 0 20px 0;
}

footer {
    margin-top: 120px;
    position: relative !important;
}

    footer .footer-copyright {
        background-color: #001819;
        color: white !important;
        text-align: center;
        font-size: 16px;
    }

.footer-menu {
    padding-bottom: 40px;
}

    .footer-menu ul {
        list-style-type: none;
        padding: 0;
    }

h2 {
    font-weight: 700;
    font-size: 46px;
}

h1 {
    font-size: 85px;
    color: #65BC94;
    font-weight: bold;
    letter-spacing: -1px;
}

p {
    font-size: 20px;
    line-height: 38px;
    border: none !important;
}

.btn {
    font-size: 18px;
    font-weight: bold;
    padding: 20px 40px;
    min-width: 190px;
}

.btn-primary {
    border: 2px solid #65BC94;
    background-color: #65BC94;
    color: white;
}

    .btn-primary:hover {
        border: 2px solid #5fad89;
        background-color: #6ecba0;
        color: white;
    }

    .btn-primary:active {
        border: 2px solid #5fad89;
        background-color: #6ecba0;
        color: white;
    }

    .btn-primary.disabled, .btn-primary:disabled {
        color: #65bb93;
        background-color: #b5e1cd;
        border-color: #65bb93;
    }

input[type="text"], input[type="email"] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 1px solid #e2e2e2;
    border-radius: 4px;
}

textarea.form-control:focus, select.form-select:focus, input.form-control:focus, .accordion-button:focus {
    border-color: #65bc94; /* Change this color to your preferred focus color */
    box-shadow: 0 0 0 0.2rem rgba(101, 188, 148, 0.25); /* Adjust the RGBA color to match or complement the border */
}

textarea {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 1px solid #e2e2e2 !important;
    border-radius: 4px;
}

select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 1px solid #e2e2e2 !important;
    border-radius: 4px;
}

    select option {
        background-color: #b5e1cd !important; /* Green background on hover */
    }

    select:hover {
        background-color: #b5e1cd !important;
    }

.blue-bg {
    background-color: #193152 !important;
    color: white;
}

.green-bg {
    background-color: #65bc94 !important;
    color: white;
}

.green-text {
    color: #65BC94 !important;
}

.banner {
    height: 65vh;
    overflow: hidden;
}

    .banner img {
        transform: translateY(-22%);
    }

.hero-section img {
    transform: translateY(-22%);
}

.banner-text {
}

.banner-no-height {
    height: unset !important;
}

.no-transform {
    transform: none !important;
}

.clipped-img {
    max-height: 50vh;
    overflow: hidden;
}

.hero {
    background-color: #65BC94;
    height: 100vh;
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 50px;
    z-index: 10;
}

.offer-banner {
    position: relative;
    z-index: 1;
}


.hero-h1 {
    display: block;
    /*max-width: 60vw;*/
    color: white;
    font-size: 65px;
    font-weight: 800;
}

.hero img {
    max-width: 60vw;
    margin: 10px;
    position: relative;
    top: 15%; /* Control how much of the image is visible */
}

.headline-big {
    font-size: 85px;
    color: #65BC94;
    text-align: center;
    font-weight: bold;
    letter-spacing: -5px;
}

.left-align {
    text-align: left;
}

.btn-custom {
    background-color: white;
    color: black;
    margin-top: 20px;
    width: 220px;
    height: 70px;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid #65BC94;
}

.cta {
    background-color: #65BC94;
    color: white;
    padding: 50px 0 50px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .cta .btn {
        background-color: #65BC94;
        border: 1px solid white;
        width: 220px;
        height: 70px;
        font-size: 18px;
        color: white;
        float: right;
    }

    .cta .headline-big {
        font-size: 48px;
        font-weight: bold;
        letter-spacing: unset;
    }

    .cta p {
        font-size: 18px;
    }

.centered-text-div {
    width: 70%;
    margin: auto;
}

.hex-container {
    position: relative;
    width: 100%;
    height: 325px;
    margin: auto;
}

.hex-color1 {
    color: #b9f6e7;
}

.hex-color2 {
    color: #e37474;
}

.hex-color3 {
    color: #c9e2c6;
}

.hex-color4 {
    color: #83daa2;
}

.hex-color5 {
    color: #64bc93;
}

.hex1 {
    top: 0px;
    right: 0px;
    z-index: 3;
}
/* Top left */
.hex2 {
    top: 30px;
    right: 110px;
    z-index: 1;
}
/* Top right */
.hex3 {
    top: 130px;
    right: 110px;
}
/* Middle bottom left */
.hex4 {
    top: 90px;
    right: 0px;
    z-index: 2;
}
/* Middle bottom right */
.hex5 {
    top: 170px;
    right: 0px;
}
/* Bottom */

.hexagon {
    position: absolute;
    transition: transform 0.3s ease-in-out;
}

.hexagon-animated {
    width: 140px;
}

.feature-list h5 {
    font-weight: bold;
    color: #65BC94;
}

.feature-list p {
    line-height: unset;
    font-size: 18px;
}

.feature-list .feature .box {
    border: 1px solid #d3ebe0;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 2px 2px 12px #c8c8c875;
    height: 100%;
}
/*hexagon animation START*/

/*COOKIE POLICY START*/
.cookie-policy {
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 30px;
    margin: 10px;
    background-color: #ffffffe5;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
    text-align: center;
}


#cookie-policy {
    display: none;
    text-align: start;
    font-size: 15px !important;
}

    #cookie-policy p {
        font-size: 15px !important;
        line-height: unset;
    }

.cookie-policy-button:active {
    transform: translateY(2px);
}

/*COOKIE POLICY END*/






@keyframes liftAndDrop30 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30%);
    }
}

@keyframes liftAndDrop40 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-40%);
    }
}

@keyframes liftAndDrop60 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-60%);
    }
}

@keyframes rotate {
    0%, 100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(24deg);
    }
}

.svg-logo path:last-child {
    transform-origin: 91px 29px;
    animation: rotate 2s linear;
}

.hex1 {
    animation: liftAndDrop40 2.5s ease-in-out;
    animation-delay: 0s;
}

.hex2 {
    animation: liftAndDrop30 2.5s ease-in-out;
    animation-delay: 0.4s;
}

.hex4 {
    animation: liftAndDrop30 2.5s ease-in-out;
    animation-delay: 0.2s;
}
/*hexagon animation END*/


.hero-section {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    min-height: 65vh;
    align-items: start;
    color: #fff;
    justify-content: center;
    /*padding: 80px 60px;*/
}

@media (max-width: 991px) {
    .hero-section {
        padding: 50px 20px;
        /*min-height: unset;*/
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    display: flex;
    width: 594px;
    max-width: 100%;
    flex-direction: column;
}

@media (max-width: 991px) {
    .hero-content {
        margin-top: 40px;
    }
}

.hero-title {
    font: 800 65px/111% Noto Sans, sans-serif;
    letter-spacing: unset;
}

@media (max-width: 991px) {
    .hero-title {
        max-width: 100%;
        font-size: 40px;
    }
}

.hero-description {
    margin-top: 46px;
    font: 400 20px/32px Noto Sans, sans-serif;
}

@media (max-width: 991px) {
    .hero-description {
        max-width: 100%;
        margin-top: 40px;
    }
}


/*-----------------------------------------------------*/
@media (max-width: 575px) {
    .cta img {
        max-width: 80vw !important;
    }
}

/*Small devices (tablets, 767px and down)*/
@media (max-width: 768px) {
    .hero-section {
        display: block;
    }

    .feature-list {
        margin: 0px !important;
        padding: 0px !important;
    }

        .feature-list .feature {
            padding: 1rem !important;
        }

    .px-5 {
        padding: 1rem !important;
    }

    .mx-5 {
        margin: 1rem !important;
    }

    /*    .hexagon-animated {
        width: 20vw;
    }*/

    .hex-container {
        width: 250px;
        margin: auto;
    }


    .banner {
        overflow: hidden;
        max-height: 35vh;
    }

    .banner-no-height {
        height: unset !important;
        max-height: unset !important;
    }

    .btn-custom {
        font-size: 18px;
    }

    .headline-big {
        font-size: 50px;
        font-weight: bold;
        letter-spacing: unset;
    }

    h2 {
        font-size: 32px;
    }

    .hero-h1 {
        font-size: 32px;
        letter-spacing: unset;
    }

    .hero {
        height: 100vh !important;
        margin-bottom: 0px;
    }

        .hero img {
            padding-top: 40px;
            overflow: hidden !important;
            position: absolute;
            transform: translate(-50%);
            max-width: unset;
            height: 80%;
            flex-shrink: 0;
        }

    .hero {
        overflow: hidden;
    }

    .cta button {
        float: unset;
    }

    .cta .align-content-center {
        text-align: center;
    }

    .cta .headline-big {
        font-size: 30px;
    }

    .cta img {
        max-width: 60vw;
    }

    .centered-text-div {
        width: unset;
    }

    footer .footer-copyright {
        font-size: 14px;
    }

    /*.hex1 {
        top: 0px;
        right: 0px;
        z-index: 3;
    }*/
    /* Top left */
    /*.hex2 {
        top: 20px;
        right: 70px;
        z-index: 1;
    }*/
    /* Top right */
    /*.hex3 {
        top: 90px;
        right: 70px;
    }*/
    /* Middle bottom left */
    /*.hex4 {
        top: 70px;
        right: 0px;
        z-index: 2;
    }*/
    /* Middle bottom right */
    /*.hex5 {
        top: 140px;
        right: 0px;
    }*/
    /* Bottom */
}

@media (max-width: 991px) {
    .p-mobile {
        line-height: 18px;
        font-size: 16px;
    }
    .container {
        max-width: 100% !important;
    }

    .accordion {
        margin: auto;
        max-width: unset;
    }

    .contact-row {
        max-width: unset;
    }
}

@media (max-width: 1199px) {
}

/*Small devices (359px and up)*/
@media (min-width: 359px) {
}

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .px-5 {
        padding: 1rem !important;
    }

    .mx-5 {
        margin: 1rem !important;
    }

    .hero-h1 {
        display: block;
        /*max-width: 60vw;*/
        color: white;
        font-size: 55px;
        font-weight: 800;
    }

    .hero {
        background-color: #65BC94;
        height: 50vh;
        margin-bottom: 120px;
    }

        .hero img {
            padding-top: 200px;
            max-height: 80vw;
            width: 90%;
            overflow: hidden !important;
            max-width: unset;
            position: absolute;
            transform: translate(-50%);
            flex-shrink: 0;
        }
}

/* */

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    .px-5 {
        padding: 3rem !important;
    }

    .hero {
        background-color: #65BC94;
        height: 100vh;
        /*display: flex;*/
        justify-content: center;
        align-items: center;
        text-align: center;
        position: relative;
        padding-top: 80px;
        z-index: 1;
    }


    .hero-h1 {
        display: block;
        /*max-width: 60vw;*/
        color: white;
        font-size: 65px;
        font-weight: 800;
    }

    .hero img {
        padding: 0;
        max-width: 60vw;
        margin: 10px;
        position: relative;
        top: 15%; /* Control how much of the image is visible */
        transform: translate(0%);
    }
}

/*X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
}

/*XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {
}

@media only screen and (max-width: 760px) {
}

.offer-banner {
    background: #fff;
    border-radius: 10px;
    padding: 14px 22px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    max-width: 92%;
}

.offer-banner:hover,
.offer-banner:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
    text-decoration: none;
}

.offer-banner-icon {
    color: #65BC94;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}

.offer-banner-text {
    font-size: 15px;
    font-weight: 600;
    color: #2a7a52;
    line-height: 1.35;
    text-align: left;
}

    .offer-banner-text span {
        display: block;
        font-weight: 400;
        color: #3a7a5a;
        font-size: 12px;
        margin-top: 2px;
    }

@media (max-width: 768px) {
    .offer-banner {
        padding: 11px 16px;
        gap: 10px;
    }

    .offer-banner-text {
        font-size: 13px;
    }

        .offer-banner-text span {
            font-size: 11px;
        }
}
