body {
    background: var(--White);
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: var(--Black);
    font-family: "DM Sans", sans-serif;
}

section {
    padding: 80px 0;
}

/* color */
:root {
    --Black: #000000;
    --Grey: #585C5C;
    --LightGrey: #F5F5F5;
    --White: #ffffff;
    --Green: #BDD01E;
    --Orange: #FF5E00;
}

/* font */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    line-height: normal;
}

h1 {
    font-size: 60px;
    font-weight: 500;
}

h2 {
    font-size: 35px;
    font-weight: 500;
}

h3 {
    font-size: 22px;
    font-weight: 400;
}

p {
    font-size: 18px;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 20px;
}

p b,
p strong {
    font-weight: 600;
}

hr {
    opacity: 1;
    margin: 0;
}

ul {
    padding: 0;
    gap: 10px;
    display: flex;
    flex-direction: column;
    margin: 0;
}

ul li {
    position: relative;
    list-style: none;
    padding-left: 25px;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}

/* button */
.btn {
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 2px;
    transition: background-size 0.25s ease;
    padding: 0;
    display: inline-block;
    line-height: normal;
    font-style: normal;
    font-size: 22px;
    font-weight: 500;
}

.btn:hover {
    background-size: 100% 2px;
}

.btn.green {
    color: var(--Green);
}

.btn.orange {
    color: var(--Orange);
}

.btn.white {
    color: var(--White);
}

.btn-check:focus+.btn,
.btn:focus {
    outline: 0;
    box-shadow: unset;
}

/* carousel */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper .swiper-pagination-bullet {
    opacity: 1;
}

/* form */
.form-label {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
    padding-left: 25px;
    margin-top: 30px;
}

.form-control,
.form-select {
    border-radius: 70px;
    border: 0;
    background-color: var(--LightGrey);
    padding: 10px 25px;
    resize: none;
}

textarea.form-control {
    border-radius: 10px;
}

.form-select:focus,
.form-control:focus,
.form-check-input:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(255, 94, 0, 0.25);
}

.form-check {
    margin-top: 8px;
}

.form-check label {
    font-size: 15px;
    font-weight: 400;
}

.form-check-input:checked {
    background-color: var(--Orange);
    border-color: var(--Orange);
}

/* widget chat */
.chat-widget {
    display: flex;
    bottom: 20px;
    left: 20px;
    border: 0;
    z-index: 100;
    position: fixed;
    cursor: pointer;
    background-color: var(--Orange);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 12px;
}

.chat-widget img {
    width: 35px;
    height: 35px;
}

.content-chat {
    position: fixed;
    bottom: 40px;
    left: 55px;
    max-width: 280px;
    padding: 16px 18px;
    border-radius: 14px;
    background-color: var(--LightGrey);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 99;
    display: flex;
    flex-direction: column;
}

.chat-widget:hover+.content-chat,
.content-chat:hover {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.content-chat .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.content-chat p {
    color: var(--Grey);
    margin-bottom: 10px;
}

.content-chat a {
    color: var(--Green);
    font-size: 18px;
    font-weight: 500;
    margin-left: auto;
}

.info-widget {
    position: fixed;
    right: 0;
    bottom: 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 100;
}

.info-widget a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
    position: relative;
    gap: 8px;
    background-color: var(--LightGrey);
    padding: 10px;
}

.info-widget a.first {
    border-top-left-radius: 10px;
}

.info-widget a.third {
    border-bottom-left-radius: 10px;
}

.info-widget .icon {
    position: relative;
    width: 28px;
    height: 28px;
    display: inline-block;
    flex: 0 0 28px;
}

.info-widget .icon img {
    position: absolute;
    inset: 0;
    width: 28px;
    height: 28px;
    transition: opacity 0.2s ease;
}

.info-widget .icon-hover {
    opacity: 0;
}

.info-widget .text {
    display: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.info-widget a:hover .text,
.info-widget a:focus-visible .text {
    display: inline-flex;
    opacity: 1;
}

.info-widget a:hover,
.info-widget a:focus-visible {
    width: auto;
    color: var(--Green);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.info-widget a:hover .icon-default,
.info-widget a:focus-visible .icon-default {
    opacity: 0;
}

.info-widget a:hover .icon-hover,
.info-widget a:focus-visible .icon-hover {
    opacity: 1;
}

/* progress wrap */
.progress-wrap.active-progress {
    opacity: 1;
}

.progress-wrap {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: block;
    border-radius: 100%;
    z-index: 1010;
    opacity: 0;
    visibility: hidden;
    transform: translateY(7.5px);
    transition: all 200ms linear, margin-right 0ms;
    background-color: var(--Green);
}

@media (prefers-reduced-motion: reduce) {
    .progress-wrap {
        transition: none;
    }
}

.progress-wrap.active-progress {
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap:after {
    position: absolute;
    content: "⭡";
    text-align: center;
    line-height: 50px;
    font-size: 25px;
    left: 0;
    color: var(--White);
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear;
}

@media (prefers-reduced-motion: reduce) {
    .progress-wrap:after {
        transition: none;
    }
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--Green);
    stroke-width: 5;
    box-sizing: border-box;
    transition: all 200ms linear;
}

/* header */
header .contact-bar {
    color: var(--White);
    background-color: var(--Black);
    padding: 20px 0;
}

header .contact-bar img {
    width: 300px;
    aspect-ratio: 239/70;
    object-fit: contain;
}

header .contact-bar .contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

header .contact-bar .contact img {
    height: 34px;
    width: 34px;
}

header .contact-bar .contact p {
    margin-bottom: 0;
    font-weight: 500;
}

header .contact-bar .contact .mini {
    font-size: 15px;
    font-weight: 300;
}

.sticky-bar {
    position: sticky;
    top: 0;
    z-index: 100;
}

.sticky-bar nav.navbar {
    background-color: var(--Black);
    padding: 10px 0;
    color: var(--White);
}

.sticky-bar nav.navbar ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    margin: 0;
}

.sticky-bar nav.navbar ul li {
    font-size: 17px;
    padding: 0 50px;
    border-right: 1px solid var(--Green);
}

.sticky-bar nav.navbar ul li:last-child {
    border-right: 0;
}

.sticky-bar nav.navbar ul li a:hover {
    color: var(--Green);
}

.sticky-bar .force-point-bar {
    background-color: var(--Green);
    padding: 12px 0;
}

.sticky-bar .force-point-bar ul {
    display: flex;
    flex-direction: row;
    gap: 75px;
    margin: 0;
}

.sticky-bar .force-point-bar li {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 0;
}

.sticky-bar .force-point-bar li img {
    width: 20px;
    height: 20px;
    aspect-ratio: 1/1;
}

.sticky-bar .force-point-bar p {
    margin: 0;
}

/* navbar mobile */
header .nav-mobile img.logo {
    aspect-ratio: 239/70;
    width: 180px;
    object-fit: contain;
}

.responsive-mobile-menu img.logo {
    aspect-ratio: 130/36;
    width: 180px;
    object-fit: contain;
}

.responsive-mobile-menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
}

.responsive-mobile-menu ul li {
    color: var(--White);
    padding: 0;
    font-size: 22px;
}

.responsive-mobile-menu ul li a {
    display: block;
    text-decoration: none;
}

.responsive-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    left: 100%;
    height: 100%;
    background-color: var(--Black);
    padding: 20px;
    z-index: 999999;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    transition: all .3s ease-in;
}

.responsive-mobile-menu.active {
    left: 0;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    transition: all .3s ease-in-out;
}

.close-menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-menu img {
    width: 20px;
}

.open-menu {
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("../img/white_hamburger.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.nav-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--Black);
}

/* footer */
footer {
    padding-top: 80px;
    background-color: var(--Black);
    color: var(--White);
}

footer img {
    width: 334px;
    height: 98px;
    aspect-ratio: 167/49;
    object-fit: contain;
    margin-bottom: 40px;
}

footer hr {
    display: none;
}

footer h2 {
    margin-bottom: 25px;
}

footer h2 span {
    color: var(--Green);
}

footer p {
    color: var(--Grey);
    margin: 0;
}

footer h3 {
    margin-bottom: 30px;
    color: var(--Green);
}

footer ul {
    gap: 15px;
}

footer ul li {
    padding: 0;
}

footer ul.link li:last-child {
    color: var(--Green);
    font-weight: 700;
}

footer ul li a:hover {
    text-decoration: underline;
}

footer img.certif {
    width: 120px;
    margin-top: 15px;
    margin-bottom: 0;
}

footer .bar {
    background-color: var(--Grey);
    padding: 5px 0;
    margin-top: 40px;
}

footer .bar p {
    text-align: center;
    font-weight: 300;
    margin: 0;
    color: var(--Green);
    font-size: 15px;
}

/* section-1 */
.section-1 {
    background-image: url("../img/section-1.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.section-1 h1 {
    color: var(--White);
    margin-bottom: 40px;
}

.section-1 a {
    color: var(--Green);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 120px;
}

.section-1 h2 {
    color: var(--Grey);
}

.section-1 h2 span {
    color: var(--Green);
}

/* section-2 */
.section-2 .box {
    border-radius: 3px;
    border: 1px solid #D9D9D9;
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 15px;
    width: 100%;
}

.section-2 .box img {
    width: 44px;
    height: 44px;
    aspect-ratio: 1/1;
}

.section-2 .box .title {
    font-size: 19px;
    font-weight: 600;
}

.section-2 .box p {
    color: var(--Grey);
    margin: 0;
}

/* section-3 */
.section-3 {
    padding-top: 20px;
}

.section-3 h2 {
    margin-bottom: 25px;
}

.section-3 .card {
    border: 0;
    border-radius: 0;
    text-align: center;
}

.section-3 .card img {
    aspect-ratio: 1/1;
    object-fit: contain;
    width: 100%;
    margin-bottom: 25px;
}

.section-3 .card h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.section-3 .card a {
    color: var(--Grey);
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}

.section-3 .productCarousel-wrap {
    position: relative;
    overflow: visible;
}

.section-3 .productCarousel {
    overflow: hidden;
}

.section-3 .productCarousel-wrap .swiper-button-prev,
.section-3 .productCarousel-wrap .swiper-button-next {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: var(--Grey);
    background: transparent;
    top: 50%;
    transform: translateY(-50%);
}

.section-3 .productCarousel-wrap .swiper-button-prev::after,
.section-3 .productCarousel-wrap .swiper-button-next::after {
    font-size: 16px;
}

.section-3 .productCarousel-wrap .swiper-button-prev {
    left: -65px;
}

.section-3 .productCarousel-wrap .swiper-button-next {
    right: -65px;
}

.section-3 .productCarousel-wrap .swiper-button-disabled {
    opacity: 0.35;
}

/* section-4 */
.section-4 {
    background-image: url("../img/section-4.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.section-4 h2 {
    color: var(--White);
    font-size: 70px;
    line-height: 80px;
    margin-bottom: 35px;
}

.section-4 h3 {
    color: var(--LightGrey);
    margin-bottom: 320px;
}

.section-4 a {
    font-size: 22px;
    font-weight: 500;
    margin-left: auto;
}

/* section-5 */
.section-5 h2 {
    margin-bottom: 40px;
}

.section-5 .box {
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 25px;
    color: var(--White);
    width: 100%;
}

.section-5 .box h3 {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 5px;
}

.section-5 .box h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.section-5 .box p {
    margin-bottom: 0;
}

/* section-6 */
.section-6 {
    position: relative;
    height: 770px;
    display: flex;
    align-items: center;
    padding: 0;
    background-color: var(--Black);
    color: var(--White);
}

.section-6 .image {
    left: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 0;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    max-height: 770px;
    display: block;
}

.section-6 h2 {
    margin-bottom: 20px;
}

.section-6 h3 {
    color: var(--Grey);
    margin-bottom: 250px;
}

.section-6 a.btn.green {
    margin-left: auto;
}

.section-6 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

/* section-7 */
.section-7 {
    background-image: url("../img/section-7.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.section-7 h2 {
    font-size: 70px;
    font-weight: 500;
    line-height: 80px;
}

.section-7 h3 {
    color: var(--White);
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 15px;
}

.section-7 h4 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
}

.section-7 p {
    margin-bottom: 70px;
}

.section-7 p.mini {
    margin-bottom: 0;
}

/* section-8 */
.section-8 {
    background: linear-gradient(270deg, #FFF 3.44%, #F5F5F5 92.24%);
}

.section-8 h2 {
    margin-bottom: 20px;
}

.section-8 h3 {
    color: var(--Green);
    margin-bottom: 150px;
}

.section-8 img {
    width: 100%;
}

/* section-9 */
.section-9 {
    background-image: url("../img/section-9.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.section-9 h2 {
    color: var(--White);
    font-size: 70px;
    font-weight: 500;
    line-height: 80px;
    margin-bottom: 180px;
}

.section-9 h3 {
    color: var(--Grey);
    font-size: 35px;
    font-weight: 500;
}

.section-9 h3 span {
    color: var(--Green);
}

/* section-10 */
.section-10 h2 {
    margin-bottom: 15px;
    text-align: center;
}

.section-10 h3 {
    text-align: center;
    margin-bottom: 60px;
}

.section-10 img {
    width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.section-10 .logoCarousel {
    overflow: hidden;
    padding-bottom: 50px;
}

.section-10 .logoCarousel-wrap {
    position: relative;
    overflow: visible;
}

.section-10 .logoCarousel .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-10 .logoCarousel .swiper-pagination-bullet {
    background: var(--LightGrey);
}

.section-10 .logoCarousel .swiper-pagination-bullet-active {
    background: var(--Grey);
}

.section-10 .logoCarousel-wrap .swiper-button-prev,
.section-10 .logoCarousel-wrap .swiper-button-next {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: var(--Grey);
    background: transparent;
    top: 50%;
    transform: translateY(-50%);
}

.section-10 .logoCarousel-wrap .swiper-button-prev::after,
.section-10 .logoCarousel-wrap .swiper-button-next::after {
    font-size: 16px;
}

.section-10 .logoCarousel-wrap .swiper-button-prev {
    left: -45px;
}

.section-10 .logoCarousel-wrap .swiper-button-next {
    right: -45px;
}

.section-10 .logoCarousel-wrap .swiper-button-disabled {
    opacity: 0.35;
}

/* section-11 */
.section-11 {
    background-image: url("../img/section-11.jpg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    padding: 20px 0;
}

.section-11 img {
    width: 100%;
}

.section-11 h2 {
    margin-bottom: 20px;
}

.section-11 h2 span {
    color: var(--White);
}

.section-11 a {
    margin-top: 50px;
    font-size: 22px;
    font-weight: 500;
    color: var(--White);
    margin-left: auto;
}

/* section-12 */
.section-12 {
    background-image: url("../img/section-12.jpg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}

.section-12 h1 {
    color: var(--Green);
    margin-bottom: 20px;
}

.section-12 h2 {
    margin-bottom: 20px;
}

/* section-13 */
.section-13 {
    position: relative;
    height: 770px;
    display: flex;
    align-items: center;
    padding: 0;
    background-color: var(--Black);
    color: var(--White);
}

.section-13 .image {
    left: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 0;
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    max-height: 770px;
}

.section-13 .container-xl,
.section-13 .row {
    height: 100%;
}

.section-13 .col-lg-5 {
    justify-content: flex-end;
    padding-bottom: 90px;
}

.section-13 h2 {
    margin-bottom: 20px;
}

.section-13 h3 {
    color: var(--Grey);
}

.section-13 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

/* section-14 */
.section-14 {
    background-image: url("../img/section-14.jpg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}

.section-14 h2 {
    font-size: 70px;
    font-weight: 500;
    line-height: 80px;
    margin-bottom: 30px;
}

.section-14 p {
    color: var(--Grey);
    font-size: 35px;
    font-weight: 500;
    line-height: normal;
    margin-top: 130px;
}

/* section-15 */
.section-15 {
    background-color: var(--Black);
}

.section-15 .timeline-dates {
    margin: 0;
    padding: 0;
    gap: 7px;
}

.section-15 .timeline-dates li {
    list-style: disc;
    padding-left: 0;
    color: var(--White);
}

.section-15 .timeline-dates a {
    color: var(--White);
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.section-15 .timeline-dates a:hover,
.section-15 .timeline-dates a.active {
    opacity: 1;
}

.section-15 .date {
    color: var(--White);
    font-size: 140px;
    font-weight: 500;
    margin-bottom: 140px;
    line-height: 110px;
}

.section-15 h2 {
    color: var(--White);
    font-size: 70px;
    font-weight: 500;
    line-height: 80px;
    margin-bottom: 10px;
}

.section-15 h3 {
    color: var(--Green);
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 45px;
}

.section-15 p {
    color: var(--White);
}

/* section-16 */
.section-16 {
    background-image: url("../img/section-16.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.section-16 h2 {
    font-size: 70px;
    font-weight: 500;
    line-height: 80px;
}

.section-16 h3 {
    color: var(--White);
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 10px;
}

.section-16 h4 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 30px;
}

.section-16 p.mini {
    margin-bottom: 0;
}

.section-16 ul {
    padding-left: 15px;
}

.section-16 ul li {
    list-style: disc;
    padding-left: 0;
}

/* section-17 */
.section-17 {
    position: relative;
    height: 730px;
    display: flex;
    align-items: center;
    padding: 0;
}

.section-17 .image {
    right: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 0;
    aspect-ratio: 948/656;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    max-height: 730px;
}

.section-17 img.ambiente {
    width: 322px;
    height: 104px;
    aspect-ratio: 161/52;
    margin-bottom: 45px;
}

.section-17 h2 {
    margin-bottom: 20px;
}

.section-17 p {
    margin-bottom: 150px;
}

.section-17 a.btn.green {
    margin-left: auto;
}

.section-17 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    aspect-ratio: unset;
    margin-bottom: 0;
}

/* section-18 */
.section-18 {
    background-image: url("../img/section-12.jpg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}

.section-18 h1 {
    margin-bottom: 20px;
}

/* section-19 */
.section-19 {
    padding: 0;
    background-color: var(--Black);
}

.section-19 .col-lg-6 {
    padding: 0;
}

.section-19 .box {
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 24px;
    border: 0.5px solid var(--Grey);
    height: 600px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.section-19 .box .text {
    margin-top: auto;
    width: 100%;
    transition: margin 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-19 .box h2 {
    color: var(--White);
}

.section-19 .box p {
    color: var(--Grey);
    margin: 0;
}

.section-19 .box .btn.green {
    position: absolute;
    left: 24px;
    bottom: 24px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-19 .box:hover .text {
    margin-top: auto;
    margin-bottom: auto;
    text-align: left;
}

.section-19 .box:hover .btn.green {
    opacity: 1;
    transform: translateY(0);
}

/* section-20 */
.section-20 h2 {
    font-size: 70px;
    font-weight: 500;
    line-height: 80px;
    margin-bottom: 20px;
}

.section-20 h3 {
    color: var(--Green);
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* section-21 */
.section-21 {
    background-image: url("../img/section-21.jpg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}

.section-21 h2 {
    color: var(--Green);
    font-size: 70px;
    font-weight: 500;
    line-height: 80px;
    margin-bottom: 50px;
}

.section-21 h3 {
    color: var(--White);
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-21 p {
    color: var(--Green);
    margin-bottom: 0;
}

.section-21 p.mini {
    color: var(--White);
}

/* section-22 */
.section-22 {
    background-color: var(--Black);
}

.section-22 .box {
    padding: 12px;
    border-radius: 3px;
    border: 1px solid var(--Grey);
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    width: 100%;
    margin: 10px 0;
}

.section-22 .box img {
    width: 140px;
    height: auto;
}

.section-22 .box h3 {
    color: var(--White);
    margin-bottom: 5px;
}

.section-22 .box p {
    color: var(--Grey);
    margin: 0;
}

.section-22 .box .btn.green {
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    position: absolute;
    bottom: 12px;
    right: 12px;
}

.section-22 .box .btn.green.rotate {
    rotate: 90deg;
}

.section-22 .box:hover .btn.green {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.section-22 .box .btn.green:hover {
    background: unset;
}

/* section-23 */
.section-23 {
    background-image: url("../img/section-21.jpg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}

.section-23 h2 {
    color: var(--Green);
    font-size: 70px;
    font-weight: 500;
    line-height: 80px;
    margin-bottom: 50px;
}

.section-23 h3 {
    color: var(--White);
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-23 p.mini {
    margin-bottom: 0;
}

.section-23 p {
    color: var(--White);
}

/* section-24 */
.section-24 {
    background-color: var(--Black);
    color: var(--White);
}

.section-24 h1 {
    margin-bottom: 20px;
}

/* section-25 */
.section-25 {
    background-color: var(--LightGrey);
}

.section-25 h2 {
    color: var(--Green);
    font-size: 70px;
    font-weight: 500;
    line-height: 80px;
}

.section-25 h3 {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-25 ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.section-25 ul li {
    list-style: disc;
    padding: 0;
}

/* section-26 */
.section-26 h2 {
    font-size: 70px;
    font-weight: 500;
    line-height: 80px;
    margin-bottom: 50px;
}

.section-26 h2 span {
    color: var(--Green);
}

/* section-27 */
.section-27 {
    background-image: url("../img/section-27.jpg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}

.section-27 h2 {
    margin-bottom: 24px;
    color: var(--White);
}

/* section-28 */
.section-28 {
    position: relative;
    height: 770px;
    display: flex;
    align-items: center;
    padding: 0;
}

.section-28 .image {
    right: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 0;
    aspect-ratio: 948/656;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    max-height: 770px;
}

.section-28 h2 {
    margin-bottom: 20px;
}

.section-28 h3 {
    color: var(--Grey);
    margin-top: 150px;
}

.section-28 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

/* section-29 */
.section-29 {
    background-image: url("../img/section-29.jpg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}

.section-29 h2 {
    color: var(--Green);
    font-size: 70px;
    font-weight: 500;
    line-height: 80px;
    margin-bottom: 100px;
}

.section-29 h3 {
    color: var(--White);
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-29 p {
    color: var(--White);
    margin: 0;
}

.section-29 img {
    width: 277px;
    aspect-ratio: 277/87;
}

/* section-30 */
.section-30 h1 {
    text-align: center;
    margin-bottom: 50px;
}

.section-30 img {
    width: 80%;
    margin-top: 70px;
    max-height: 80px;
    object-fit: contain;
}

/* section-31 */
.section-31 {
    background-image: url("../img/section-11.jpg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
}

.section-31 h2 {
    font-size: 70px;
    font-weight: 500;
    line-height: 80px;
}

/* section-32 */
.section-32 {
    padding-bottom: 0;
}

.section-32 h1,
.section-32 h2,
.section-32 p {
    text-align: center;
}

.section-32 h1,
.section-32 h2 {
    margin-bottom: 15px;
}

.section-32 h1 span {
    color: var(--Green);
}

/* section-33 */
.section-33 .box {
    background-image: url("../img/section-33.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: var(--White);
    text-align: center;
    width: 100%;
    padding: 35px 20px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.section-33 .box img {
    width: 144px;
    height: 144px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
}

.section-33 .box h2 {
    font-size: 30px;
    margin-bottom: 25px;
}

.section-33 .box h3 {
    margin-bottom: 3px;
}

.section-33 .box .number {
    margin-bottom: 30px;
    color: var(--Grey);
}

.section-33 .box .number:hover {
    text-decoration: underline;
}

.section-33 .modal-dialog {
    max-width: 920px;
}

.section-33 .modal-content {
    background-image: url("../img/section-33-modal.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.section-33 .modal-header {
    border-bottom: 0;
    padding-bottom: 0;
}

.section-33 .modal-body {
    text-align: center;
    padding: 0 15px 30px 15px;
}

.section-33 .modal-content img {
    width: 112px;
    height: 112px;
    margin-bottom: 10px;
}

.section-33 .modal-content h2 {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 5px;
}

/* section-34 */
.section-34 {
    background-image: url("../img/section-34.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.section-34 h1 {
    color: var(--Green);
    margin-bottom: 250px;
}

.section-34 h2 {
    color: var(--White);
    margin-bottom: 5px;
}

.section-34 p {
    color: var(--Grey);
}

.section-34 ul {
    color: var(--Grey);
    padding: 0;
}

.section-34 ul li {
    padding: 0;
}

/* section-35 */
.section-35 {
    background-image: url("../img/section-35.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.section-35 h2 {
    font-size: 70px;
    font-weight: 500;
    line-height: 80px;
    color: var(--White);
    margin-bottom: 30px;
}

.section-35 h2 span {
    color: var(--Green);
}

.section-35 .form-label {
    color: var(--White);
}

.section-35 .form-control,
.section-35 .form-select {
    background-color: rgba(92, 91, 93, 0.7);
    color: #ACACAC;
}

.section-35 .form-check-label {
    color: var(--White);
}

.section-35 input::placeholder,
.section-35 textarea::placeholder {
    color: #ACACAC;
}

/* section-36 */
.section-36 {
    background-image: url("../img/section-35.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.section-36 h1 {
    color: var(--Green);
    margin-bottom: 70px;
}

.section-36 h1 span {
    font-weight: 700;
}

.section-36 h2 {
    color: var(--White);
    margin-bottom: 10px;
}

.section-36 p {
    color: var(--Grey);
}

/* section-37 */
.section-37 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-37 h2 {
    text-align: center;
    font-size: 70px;
    font-weight: 500;
    line-height: 80px;
    margin-bottom: 15px;
}

.section-37 h3 {
    text-align: center;
    color: var(--Grey);
    margin-bottom: 60px;
}

.section-37 .number {
    color: var(--Green);
    font-family: "DM Sans", serif;
    font-size: 150px;
    font-weight: 600;
    line-height: 120px;
    margin-bottom: 20px;
}

.section-37 .number span {
    font-size: 110px;
    line-height: 80px;
}

/* section-38 */
.section-38 {
    padding: 0;
    margin-bottom: 70px;
}

.section-38 img {
    object-fit: cover;
    width: 100%;
}

/* section-39 */
.section-39 {
    padding-bottom: 90px;
}

.section-39 h2 {
    margin-bottom: 20px;
    font-size: 70px;
    font-weight: 500;
    line-height: 80px;
}

.section-39 h2 span {
    color: var(--Green);
}

.section-39 .team-card {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    margin-top: 15px;
    aspect-ratio: 453/307;
    width: 100%;
}

.section-39 .team-card.big {
    aspect-ratio: 686/364;
}

.section-39 p {
    margin: 0;
}

.section-39 .team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-39 .team-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    background: rgba(0, 0, 0, 0.52);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.section-39 .team-card__content {
    color: var(--White);
}

.section-39 .team-card__content h3 {
    margin-bottom: 8px;
    color: var(--Green);
    font-size: 22px;
    line-height: 1.1;
}

.section-39 .team-card__content p {
    margin-bottom: 0;
    color: var(--White);
    font-size: 16px;
    line-height: 1.3;
}

.section-39 .team-card:hover .team-card__overlay,
.section-39 .team-card:focus-within .team-card__overlay {
    opacity: 1;
}

/* section-40 */
.section-40 {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
}

.section-40 .image {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 0;
    aspect-ratio: 948/656;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

.section-40.dx .image {
    right: 0;
}

.section-40.sx .image {
    left: 0;
}

.section-40 h2 {
    margin-bottom: 20px;
}

.section-40 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    aspect-ratio: unset;
    margin-bottom: 0;
}

/* section-41 */
.section-41 {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    background-color: var(--Black);
    color: var(--White);
}

.section-41 .image {
    right: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 0;
    aspect-ratio: auto;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

.section-41 h1 {
    margin-bottom: 80px;
}

.section-41 h2 {
    margin-bottom: 20px;
}

.section-41 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    aspect-ratio: unset;
    margin-bottom: 0;
}

/* section-42 */
.section-42 {
    position: relative;
    height: 770px;
    display: flex;
    align-items: center;
    padding: 0;
}

.section-42 .image {
    left: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 0;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    max-height: 770px;
    display: block;
}

.section-42 h2 {
    margin-bottom: 20px;
}

.section-42 h3 {
    color: var(--Grey);
    margin-bottom: 30px;
}

.section-42 a.btn.green {
    margin-left: auto;
}

.section-42 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

/* section-43 */
.section-43 {
    position: relative;
    height: 770px;
    display: flex;
    align-items: center;
    padding: 0;
    background-color: var(--Black);
    color: var(--White);
}

.section-43 .image {
    left: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 0;
    aspect-ratio: 948/656;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    max-height: 770px;
    display: block;
}

.section-43 h2 {
    margin-bottom: 20px;
}

.section-43 h3 {
    color: var(--Grey);
    margin-bottom: 30px;
}

.section-43 a.btn.green {
    margin-left: auto;
}

.section-43 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

/* section-44 */
.section-44 {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
}

.section-44.dx .image {
    right: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 0;
    aspect-ratio: auto;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

.section-44.sx .image {
    left: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 0;
    aspect-ratio: auto;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}

.section-44 h2 {
    margin-bottom: 20px;
}

.section-44 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.section-44 ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.section-44 ul li {
    list-style: disc;
    padding-left: 0;
}