#page-title {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #CDFF00;
    text-align: center;
}

#page-title::after {
    content: "";
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -62px;
    height: 78px;
    background: #fff;
    border-radius: 50% 50% 0 0;
}

#page-title .container {
    position: relative;
    z-index: 2;
}

/* --------- */
#page-title h1 {
color: #000;
text-align: center;
font-family: "Neo Sans";
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: 45px; /* 112.5% */
}

@media (max-width: 767px) {
    #page-title {
        padding: 50px 0;
    }

    #page-title h1 {
        font-size: 36px;
        line-height: 44px;
    }
}

#page-content {
    padding: 50px 0;
    background: #fff;
}

#page-content .image {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

#page-content .image img {
    width: 100%;
    height: auto;
    aspect-ratio: 906/442;
    object-fit: cover;
    display: block;
}

#page-content .breadcrumbs {
    margin-bottom: 34px;
    color: #606060;
    font-family: "Neo Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.45px;
}

#page-content .breadcrumbs a,
#page-content .breadcrumbs span {
    color: #606060;
    text-decoration: none;
}

#page-content .breadcrumbs span {
    margin: 0 4px;
}
#page-content .breadcrumbs span:last-child {
    margin-right: 0;
}

/* --------- */
#page-content .content h2 {
    color: #333;
    font-family: "Neo Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    /* 125% */
    margin-bottom: 25px;
}

#page-content .content h3 {
    color: #333;
    font-family: "Neo Sans";
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 70px 0 25px;
}

#page-content .content h4 {
    color: #333;
    font-family: "Neo Sans";
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 70px 0 25px;
}

#page-content .content h5 {
    color: #333;
    font-family: "Neo Sans";
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 70px 0 25px;
}

#page-content .content p {
    color: #3A3A3A;
    font-family: "Neo Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 175% */
    margin-bottom: 25px;
}
#page-content .content p:last-child {
    margin-bottom: 0;
}

#page-content .click {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    #page-content .image img {
        aspect-ratio: 16/9;
    }

    #page-content .content h2 {
        font-size: 24px;
        line-height: 30px;
    }

    #page-content .content h3 {
        font-size: 22px;
        line-height: 28px;
        margin-top: 50px;
    }
}

#gallery {
    padding: 100px 0;
    background: #fff;
}

#gallery .slider {
    margin: 0 -16px;
}

#gallery .slide {
    padding: 0 16px;
}

#gallery .item {
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: transparent;
    overflow: hidden;
    display: block;
}

#gallery .item img {
    width: 100%;
    height: auto;
    aspect-ratio: 288/229;
    object-fit: cover;
    display: block;
}

#gallery .arrows {
    margin-top: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

#gallery .arrows button {
    position: static;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #CDFF00;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
}

#gallery .arrows button::before {
    display: none;
}

#gallery .arrows button.slick-hidden {
    display: flex !important;
}

#gallery .modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    padding: 40px;
    background: rgba(0, 0, 0, 0.78);
    display: none;
    align-items: center;
    justify-content: center;
}

#gallery .modal.active {
    display: flex;
}

#gallery .modal .wrap {
    max-width: 1100px;
    width: 100%;
}

#gallery .modal img {
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 14px;
    display: block;
}

#gallery .modal .close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #CDFF00;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
}

@media (max-width: 767px) {
    #gallery {
        padding: 50px 0;
    }

    #gallery .slider {
        margin: 0;
    }

    #gallery .slide {
        padding: 0;
    }

    #gallery .arrows {
        margin-top: 35px;
    }

    #gallery .modal {
        padding: 20px;
    }
}

#cta {
    padding: 100px 0;
    background: #042224;
    text-align: center;
}
#cta .content {
    margin: 0 auto;
}
#cta .content h2 {
    color: #FFF;
    text-align: center;
    font-family: "Neo Sans";
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 57.6px;
    margin-bottom: 30px;
}
#cta .content h2 strong {
    color: #CDFF00;
    font-weight: 500;
}
#cta .content p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-family: "Neo Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0;
}
#cta .content p:last-child {
    margin-bottom: 0;
}
#cta .content .click {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
#cta .content .click .btn-green:hover {
    color: #fff;
}
@media (max-width: 767px) {
    #cta {
        padding: 50px 0;
    }
    #cta .content h2 {
        font-size: 36px;
        line-height: 44px;
    }
    #cta .content p {
        font-size: 16px;
        line-height: 26px;
    }
}
