

:root {
    --color-green: #004940;
    --color-cream: #fffbf1;
    --color-card: #f2ede3;
    --color-accent: #d4ce00;
    --color-link: #A19D1C;
    --color-ink: #292f2c;
    --font-body: "Inter", Arial, sans-serif;
    --font-display: "Kantumruy Pro", "Inter", Arial, sans-serif;
    --font-button: "Plus Jakarta Sans", "Inter", Arial, sans-serif;
}

:where(a[href], button, summary, [role="button"], [tabindex]):not(:where([tabindex="-1"], form[class^="om"] *, form[class*=" om"] *)):focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px #111;
}

html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    min-width: 320px;
    background-color: var(--color-cream);
    color: var(--color-green);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.4;
}

.page {
    flex: 1 0 auto;
}

body.menu-open {
    overflow: visible;
}

h1,
h2,
h3,
h4,
p {
    margin: 0;
}

h1,
.h1 {
    color: var(--color-green);
    font-family: var(--font-display);
    font-size: 90px;
    font-weight: 700;
    line-height: normal;
}

h2,
.h2 {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    line-height: normal;
}

h3,
.h3 {
    color: var(--color-green);
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
}

h4,
.h4 {
    color: var(--color-green);
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 400;
    line-height: normal;
}

h5, .h5 {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 992px) {
    h1,
    .h1 {
        font-size: 50px;
    }

    h2,
    .h2 {
        font-size: 50px;
    }
}

@media (max-width: 560px) {
    h1,
    .h1 {
        font-size: 40px;
    }

    h2,
    .h2 {
        font-size: 36px;
    }

    h3,
    .h3 {
        font-size: 20px;
    }

    h4,
    .h4 {
        font-size: 16px;
    }

    h5, .h5 {
        font-size: 16px;
        font-weight: 400;
    }
}

a {
    text-decoration: none;
}

a:not(.btn) {
    color: var(--color-link);
}

a:not(.btn):hover {
    color: var(--color-link);
    text-decoration: underline;
}

img {
    display: block;
    max-width: 100%;
}

button {
    border: 0;
    background: none;
    color: inherit;
    font: inherit;
}

.wrapper {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 25px 48px;
    border-radius: 12px;
    background: var(--color-accent);
    color: var(--color-ink);
    font-family: var(--font-button);
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    transition: background-color .2s ease, color .2s ease;
}

.btn:hover {
    background: #CECB56;
}

.btn-secondary {
    background-color: var(--color-cream);
    color: var(--color-green );
}

.btn-secondary:hover {
    background-color: var(--color-card);
}

@media (max-width: 575px) {
    .btn {
        padding-block: 19px;
        font-size: 20px;
    }
}

@media (max-width: 430px) {
    .btn {
        padding-inline: 19px;
        width: 100%;
    }
}

.site-header {
    position: absolute;
    z-index: 20;
    width: 100%;
    top: 0;
    left: 0;
    color: var(--color-green);
}

.site-header--home {

}

.site-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 97px;
    gap: 24px;
}

.is-form-page .site-header__row {
    justify-content: center;
}

.site-logo {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    width: 328px;
}

.site-logo img {
    width: 100%;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    min-width: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    white-space: nowrap;
}

.site-nav a:not(.btn) {
    color: var(--color-green);
    transition: color .2s ease;
}

.site-nav a:not(.btn):hover {
    color: var(--color-link);
}

.site-header__cta {
    padding: 15px 22px;
    background: var(--color-green);
    color: var(--color-cream);
}

.site-header__cta:hover {
    background: #08574d;
    color: var(--color-cream);
}

.site-menu-toggle {
    display: none;
}

@media (max-width: 1120px) {
    .site-logo {
        width: 286px;
    }

    .site-nav {
        gap: 18px;
        font-size: 17px;
    }

    .site-header__cta {
        padding: 13px 18px;
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .site-header__row {
        min-height: 132px;
    }

    .site-logo {
        width: 328px;
        max-width: calc(100% - 72px);
    }

    .site-menu-toggle {
        display: inline-flex;
        width: 34px;
        height: 34px;
        flex: 0 0 auto;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        cursor: pointer;
    }

    .site-menu-toggle span {
        display: block;
        width: 26px;
        height: 3px;
        border-radius: 999px;
        background: currentColor;
        transition: transform .2s ease, opacity .2s ease;
    }

    .site-header.is-menu-open .site-menu-toggle span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .site-header.is-menu-open .site-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-menu-open .site-menu-toggle span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .site-nav {
        position: absolute;
        top: calc(100% - 20px);
        right: 45px;
        left: 45px;
        display: grid;
        justify-content: center;
        text-align: center;
        gap: 0;
        padding: 18px;
        border-radius: 16px;
        background: var(--color-green);
        color: var(--color-cream);
        box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        white-space: normal;
    }

    .site-header.is-menu-open .site-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav a:not(.btn) {
        color: var(--color-cream);
        padding: 14px 8px;
        font-size: 20px;
        line-height: 1.2;
    }

    .site-header__cta {
        margin-top: 8px;
        padding: 16px 22px;
    }
}

@media (max-width: 560px) {
    .site-header__row {
        min-height: 92px;
    }

    .site-logo {
        width: 244px;
    }

    .site-nav {
        right: 20px;
        left: 20px;
    }
}

.hero--home {
    position: relative;
    overflow: hidden;
    background-color: #FFFBF1;
    color: var(--color-green);
}

.hero__bg-image-container{
    position: absolute;
    height: 100%;
    width: 42%;
    top: 0;
    right: 0;
}

.hero__bg-image-container:before {
    content: '';
    display: block;
    position: absolute;
    height: 100%;
    width: 74%;
    top: 0;
    left: -1px;
    background: linear-gradient(93deg, #FFFBF1 7.18%, rgba(255, 251, 241, 0.00) 91.62%);
}

.hero__bg-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero--home .wrapper {
    position: relative;
    min-height: inherit;
}

.hero__content {
    margin: 0 auto;
    padding-top: 302px;
    padding-bottom: 289px;
    text-align: center;
}

@media (max-width: 1400px) {
    .hero__bg-image-container {
        position: absolute;
        width: 505px;
        height: 757px;
        top: auto;
        bottom: 0;
    }

    .hero__bg-image-container:after {
        content: '';
        display: block;
        position: absolute;
        height: 38%;
        width: 100%;
        top: -1px;
        left: 0;
        background: linear-gradient(183deg, #FFFBF1 7.18%, rgba(255, 251, 241, 0.00) 91.62%);
    }

    .hero__content {
        padding-top: 200px;
    }
}

.hero__content p {
    max-width: 832px;
    margin:  45px auto 0;
}

.hero__content p span {
    font-weight: 700;
}

.hero__content strong {
    font-weight: 700;
}

.hero__cta {
    margin-top: 72px;
}

@media (max-width: 992px) {
    .hero--home:after {
        content: '';
        display: block;
        position: absolute;
        height: 38%;
        width: 100%;
        bottom: 0;
        left: 0;
        background: linear-gradient(3deg, #FFFBF1 2.18%, rgba(255, 251, 241, 0.00) 91.62%);
    }

    .hero__content {
        padding-top: 176px;
        padding-bottom: 410px;
        text-align: center;
    }

    .hero__content p {
        margin: 31px auto 0;
    }

    .hero__cta {
        margin-top: 35px;
    }
}

@media (max-width: 750px) {
    .hero--home:after {
        content: none;
    }

    .hero__bg-image-container {
        width: 100%;
        height: 491px;
    }

    .hero__bg-image-container:before {
        content: none;
    }

    .hero__content {
        padding-top: 94px;
        padding-bottom: 50px;
    }

    .hero__cta {
        margin-top: 270px;
    }
}

.why-section {
    padding-top: 148px;
    background: var(--color-green);
    overflow-x: clip;
}

@media (max-width: 992px) {
    .why-section {
        padding-top: 70px;
    }
}

@media (max-width: 575px) {
    .why-section {
        padding-top: 48px;
    }
}

.why-section .wrapper {
    margin-bottom: -92px;
}

.why-section__title {
    color: var(--color-accent);
    text-align: center;
}

.why-section__title span + span {
    color: var(--color-cream);
}

.why-card {
    position: relative;
    margin-top: 107px;
    border-radius: 20px;
    background: #cecb56;
    padding: 98px 95px 54px 95px;
    overflow-y: clip;
}

.why-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 49px 106px;
    max-width: 600px;
}

.why-list img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.why-list p {
    margin-top: 20px;
}

.why-list strong {
    font-weight: 700;
}

.why-btn {
    margin-top: 67px;
}

.why-card__worker {
    position: absolute;
    right: -61px;
    bottom: 0;
    width: 401px;
    max-width: none;
}

@media (max-width: 1050px) {
    .why-list {
        max-width: none;
    }

    .why-list li:last-of-type {
        grid-column: 1;
    }

    .why-btn {
        margin-top: 97px;
    }

    .why-card__worker {
        left: 54%;
        right: auto;
        bottom: -10px;
    }
}

@media (max-width: 992px) {
    .why-section {
        padding-top: 70px;
    }

    .why-card {
        margin-top: 70px;
        padding: 47px 47px 80px;
    }

    .why-list {
        gap: 96px 44px;
    }
}

@media (max-width: 750px) {
    .why-section {
        padding-top: 48px;
        padding-bottom: 56px;
    }

    .why-section .wrapper {
        margin-bottom: 0;
    }

    .why-card {
        margin-top: 35px;
        padding: 28px 22px 500px;
    }

    .why-list {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .why-section__title {
        word-break: break-word;
    }

    .why-list li {
        display: flex;
        align-items: center;
        gap: 36px;
    }

    .why-list img {
        width: 52px;
        height: 52px;
        flex: 0 0 auto;
    }

    .why-list p {
        margin-top: 0;
    }

    .why-btn {
        white-space: nowrap;
        margin-top: 40px;
        margin-left: 50%;
        transform: translateX(-50%);
    }

    .why-card__worker {
        left: 50%;
        transform: translateX(-50%);
        height: 471px;
        width: auto;
    }
}

.service-section {
    padding: 230px 0 131px;
    background: var(--color-cream);
    color: var(--color-green);
    max-width: 100%;
    overflow-x: clip;
}

.service-section__title {
    color: var(--color-accent);
    text-align: center;
}

.service-section__title span + span {
    color: var(--color-green);
}

.service-section__text {
    margin-top: 54px;
    text-align: center;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 68px;
}

.service-card {
    border-radius: 20px;
    background: var(--color-card);
    padding: 36px 23px 17px;
    text-align: center;
}

.service-card img {
    width: 62px;
    height: 62px;
    margin: 0 auto;
    object-fit: contain;
}

.service-card p {
    margin-top: 47px;
}

.service-card strong {
    font-weight: 700;
}

.service-btn {
    margin-top: 66px;
    margin-left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 992px) {
    .service-section {
        padding: 160px 0 77px;
    }

    .service-section__text {
        margin-top: 46px;
    }

    .service-card p {
        margin-top: 34px;
    }
}

@media (max-width: 750px) {
    .service-cards {
        grid-template-columns: 1fr;
        gap: 17px;
        margin-top: 32px;
    }

    .service-section {
        padding: 46px 0 55px;
    }

    .service-section__text {
        margin-top: 35px;
    }

    .service-card {
        padding: 28px 38px;
    }

    .service-card p {
        margin-top: 17px;
    }
}

.steps-section {
    padding: 95px 0 120px;
    background: var(--color-green);
    color: var(--color-cream);
    max-width: 100%;
    overflow-x: clip;
}

.steps-section__title {
    max-width: 790px;
    margin: 0 auto;
    color: var(--color-accent);
    text-align: center;
}

.steps-section__title span + span {
    color: var(--color-cream);
}

.steps-list {
    display: grid;
    gap: 44px;
    margin-top: 89px;
}

.step-card {
    display: grid;
    grid-template-columns: 1fr 310px;
    overflow: hidden;
    border-radius: 20px;
    background: var(--color-cream);
    color: var(--color-green);
}

.step-card__body {
    display: flex;
    align-items: center;
    padding: 68px 68px 42px;
    gap: 60px;
}

.step-card p {
    font-weight: 400;
}

.step-card strong {
    font-weight: 700;
}

.step-card img {
    width: 310px;
    height: 100%;
    object-fit: cover;
}

.steps-btn {
    margin-top: 70px;
    margin-left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 992px) {
    .steps-section {
        padding: 70px 0 80px;
    }

    .steps-list {
        margin-top: 70px;
    }

    .step-card {
        grid-template-columns: 1fr 216px;
    }

    .step-card__body {
        padding: 68px 29px;
        gap: 20px;
    }

    .step-card img {
        width: 216px;
    }
}

@media (max-width: 750px) {
    .steps-section {
        padding: 48px 0 56px;
    }

    .steps-list {
        margin-top: 48px;
    }

    .step-card {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 231px;
    }

    .step-card__body {
        padding: 23px 18px;
    }

    .step-card img {
        height: 231px;
        width: 100%;
        object-position: top;
    }

    .step-card:last-of-type img {
        object-position: center;
    }
}

.faq-preview-section {
    padding: 160px 0 105px;
}

@media (max-width: 992px) {
    .faq-preview-section {
        padding: 70px 0 80px;
    }
}

@media (max-width: 575px) {
    .faq-preview-section {
        padding: 50px 0 85px;
    }
}

.faq-preview-section__title {
    color: var(--color-accent);
}

@media (max-width: 992px) {
    .faq-preview-section__title {
        text-align: center;
    }
}

.faq-preview-section__title span + span {
    color: var(--color-green);
}

.faq-preview-section__layout {
    display: grid;
    grid-template-columns: 342px 1fr;
    gap: 38px;
}

@media (max-width: 992px) {
    .faq-preview-section__layout {
        grid-template-columns: 1fr;
        gap: 61px;
    }
}

@media (max-width: 575px) {
    .faq-preview-section__layout {
        gap: 20px;
    }
}

.accordeon {
    display: grid;
    gap: 23px;
}

.accordeon__link {
    text-align: center;
    font-size: 24px;
}

.box-acc {
    padding: 28px 40px 28px 60px;
    background-color: var(--color-card);
    border: 1px solid #005A73;
    border-radius: 20px;
}

.box-acc:hover {
    background-color: #EEEBE5;
}

@media (max-width: 992px) {
    .box-acc {
        padding: 28px 35px 28px 35px;
    }
}

@media (max-width: 575px) {
    .box-acc {
        padding: 26px 15px 26px 15px;
    }
}

.ac-head {
    display: grid;
    grid-template-columns: 1fr 16px;
    align-items: center;
    gap: 46px;

    cursor: pointer;
}

.ac-head h4 {
    color: var(--color-green);
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    line-height: normal;
}

.ac-head__icon {
    position: relative;
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
}

.ac-head__icon:before {
    content: '';
    display: block;
    position: absolute;
    width: 16px;
    height: 2px;
    left: 0;
    top: 7px;
    background-color: var(--color-green);
}

.ac-head__icon:after {
    content: '';
    display: block;
    position: absolute;
    height: 16px;
    width: 2px;
    left: 7px;
    top: 0;
    background-color: var(--color-green);

    transform: scaleY(1);
    transform-origin: center;
    transition: transform .4s ease;
}

.box-acc.in .ac-head__icon:after {
    transform: scaleY(0);
}

.ac-body {
    color: var(--color-green);
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    margin-top: 4px;
}

.site-footer {
    background: var(--color-green);
    color: #ffffff;
    padding: 60px 0;
}

.site-footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 36px;
}

.site-footer__logo {
    display: inline-flex;
    width: 325px;
    max-width: 100%;
}

.site-footer__logo img {
    width: 100%;
    height: auto;
}

.site-footer__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 52px;
    padding-top: 3px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    white-space: nowrap;
}

.site-footer__nav a {
    color: #ffffff;
    transition: color .2s ease;
}

.site-footer__nav a.active {
    color: var(--color-accent);
}

.site-footer__nav a:hover {
    color: var(--color-link);
}

.site-footer__bottom {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
}

.site-footer__divider {
    height: 1px;
    margin: 35px 0 22px;
    background-color: white;
}

@media (max-width: 900px) {
    .site-footer {
        padding: 42px 0 36px;
    }

    .site-footer__top {
        align-items: flex-start;
        gap: 24px;
    }

    .site-footer__logo {
        width: 272px;
    }

    .site-footer__nav {
        gap: 20px;
        font-size: 14px;
    }

    .site-footer__bottom {
        margin-top: 30px;
        font-size: 16px;
    }

    .site-footer__divider {
        margin: 26px 0 26px;
    }

    .site-footer__text {
        max-width: 100%;
    }
}

@media (max-width: 680px) {
    .site-footer__top {
        display: grid;
        gap: 24px;
    }

    .site-footer__nav {
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 16px 24px;
        white-space: normal;
    }
}

.copyright {
    margin-top: 25px;
}

.faq-section {
    padding: 184px 0 108px;
    margin: 0 auto;
    background-color: #FFFBF1;
    position: relative;
}

@media (max-width: 992px) {
    .faq-section {
        padding: 164px 0 637px;
    }
}

@media (max-width: 575px) {
    .faq-section {
        padding: 74px 0 36px;
    }
}

.faq-section .wrapper {
    max-width: 930px;
    z-index: 1;
    position: relative;
}

.faq-section__bg-image-container {
    position: absolute;
    height: 100%;
    width: 25%;
    top: 0;
    right: 0;
}

@media (max-width: 1350px) {
    .faq-section__bg-image-container {
        display: none;
    }
}

.faq-section__bg-image-container:before {
    content: '';
    display: block;
    position: absolute;
    inset: 0 0 0 -1px;
    background: linear-gradient(93deg, #FFFBF1 7.18%, rgba(255, 251, 241, 0.00) 91.62%);
}

.faq-section__bg-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .faq-section__bg-image-container {
        display: block;
        height: 637px;
        width: 100%;
        top: auto;
        bottom: 0;
    }

    .faq-section__bg-image-container:before {
        width: 80%;
        inset: 0 auto 0 -1px;
    }

    .faq-section__bg-image-container:after {
        content: '';
        display: block;
        position: absolute;
        inset: -1px 0 auto 0;
        height: 65%;
        background: linear-gradient(183deg, #FFFBF1 7.18%, rgba(255, 251, 241, 0.00) 91.62%);
    }
}

@media (max-width: 575px) {
    .faq-section__bg-image-container {
        height: 353px;
    }
}

.faq-section__title {
    color: var(--color-accent);
}

@media (max-width: 992px) {
    .faq-section__title {
        text-align: center;
    }
}

.faq-section__title span + span {
    color: var(--color-green);
}

.faq-section .accordeon {
    margin-top: 68px ;
}

@media (max-width: 992px) {
    .faq-section .accordeon {
        margin-top: 61px ;
    }
}

@media (max-width: 575px) {
    .faq-section .accordeon {
        margin-top: 31px ;
    }
}

.faq-section__btn {
    display: none;
}

@media (max-width: 575px) {
    .faq-section__btn {
        margin: 243px auto 0;
        display: block;
        max-width: fit-content;
    }
}

@media (max-width: 430px) {
    .faq-section__btn {
        max-width: 100%;
    }
}

.cta-section {
    padding: 108px 0 101px;
    background-color: var(--color-green);
    overflow-x: clip;
}

@media (max-width: 992px) {
    .cta-section {
        padding: 80px 0 80px;
    }
}

@media (max-width: 575px) {
    .cta-section {
        padding: 51px 0 35px;
    }
}

.cta-section__content {
    position: relative;
    color: var(--color-green);
    background-color: #CECB56;
    border-radius: 20px;
    padding: 72px 64px 55px;
}

.cta-section__title {
    max-width: 742px;
    font-size: 48px;
}

.cta-section__text {
    margin-top: 36px;
    max-width: 666px;
}

.cta-section-btn {
    margin-top: 45px;
}

.cta-section__worker {
    position: absolute;
    right: -110px;
    bottom: 0;
    width: 401px;
    max-width: none;
}

@media (max-width: 1050px) {
    .cta-section__content {
        padding: 38px 33px 26px;
    }

    .cta-section__title {
        max-width: 700px;
        font-size: 40px;
    }

    .cta-section__text {
        max-width: 294px;
    }

    .cta-section__worker {
        right: 26px;
        width: 289px;
    }
}
@media (max-width: 920px) {
    .cta-section__text {
        margin-block: 60px;
    }
}

@media (max-width: 740px) {
    .cta-section__content {
        padding: 33px 15px 353px;
    }

    .cta-section__title {
        font-size: 36px;
        min-height: auto;
    }

    .cta-section__text {
        max-width: 100%;
        margin-block: 25px 0;
    }

    .cta-section__worker {
        right: 50%;
        width: 289px;
        transform: translateX(50%);
    }
}


.contact-section {
    padding: 128px 0 93px;
    background-color: #FFFBF1;
}

@media (max-width: 992px) {
    .contact-section {
        padding: 201px 25px 80px;
    }
}

@media (max-width: 575px) {
    .contact-section {
        padding: 113px 0 50px;
    }
}

.contact-section__layout {
    display: grid;
    grid-template-columns: 1fr 443px;
    align-items: center;
    gap: 34px;
}

@media (max-width: 992px) {
    .contact-section__layout {
        grid-template-columns: 1fr;
        gap: 49px ;
    }
}

@media (max-width: 575px) {
    .contact-section__content {
        text-align: center;
    }
}

.contact-section__content p {
    margin-top: 20px;
    font-size: 20px;
    line-height: 25px;
}

.contact-section__contact {
    display: inline-block;
    font-size: 28px;
    line-height: normal;
    margin-top: 10px;
}

@media (max-width: 575px) {
    .contact-section__contact {
        font-size: 20px;
    }
}

.contact-section__map {
    aspect-ratio: 1;
    max-width: 443px;
    padding: 18px;
    background-color: #fff;
}


.cta2-section {
    padding: 46px 0 54px;
    background-color: var(--color-green);
}

@media (max-width: 992px) {
    .cta2-section {
        padding: 71px 25px 80px;
    }
}

@media (max-width: 575px) {
    .cta2-section {
        padding: 45px 0 50px;
    }
}

.cta2-section__layout {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 77px;
}

@media (max-width: 992px) {
    .cta2-section__layout {
        grid-template-columns: 1fr;
        gap: 46px;
    }
}

@media (max-width: 575px) {
    .cta2-section__layout {
        padding: 45px 0 50px;
    }
}

@media (max-width: 575px) {
    .cta2-section__content {
        text-align: center;
    }
}

.cta2-section__img-container {
    display: flex;
    justify-content: center;
    border-radius: 20px;
    width: 445px;
    height: 387px;
    overflow: hidden;
}

.cta2-section__img {
    height: 100%;
    width: auto;
    max-width: none;
}

@media (max-width: 992px) {
    .cta2-section__img-container {
        width: 100%;
        height: auto;
        grid-row: 2;
    }

    .cta2-section__img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 575px) {
    .cta2-section__img {
        width: auto;
        height: 100%;
    }
}

.cta2-section__title {
    font-family: var(--font-display);
    font-size: 54px;
    font-weight: 700;
    line-height: 64px;
    color: var(--color-accent);
}

@media (max-width: 992px) {
    .cta2-section__title {
        font-size: 50px;
        line-height: 60px;
    }
}

@media (max-width: 575px) {
    .cta2-section__title {
        font-size: 32px;
        line-height: 34px;
    }
}

.cta2-section__title span + span  {
    color: white;
}

.cta2-section__text {
    font-size: 20px;
    line-height: 25px;
    margin-top: 20px;
    color: var(--color-cream);
}

@media (max-width: 575px) {
    .cta2-section__text {
        font-size: 16px;
        line-height: 20px;
    }
}

.cta2-section__btn {
    margin-top: 20px;
}


.legal-content,
.embedded-form {
    padding: 120px 0 70px;
}

.legal-content h1 {
    margin-block-end: 43px;
}

.legal-content {
    font-size: 20px;
}

.legal-content p {
    margin-block-end: 24px;
}

.legal-content p > strong {
    font-size: 24px;
    font-weight: 700;
}
