

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Inter:wght@500&display=swap');

:root {
    --main-color: #007665;
    --light-main: #54B19E;
    --light-main-bg: #F4FAF7;
    --additional: #FFA17A;
    --secondary-light: #FFF4DF;
    --text-color: #222723;
    --border-color: #D4D4D4;
    --white: #FFF;
    --error: #F6480A;
    --text-size: 16px;
    --font-family: "Outfit", sans-serif;
    --font-family-secondary: "Inter", sans-serif;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    border: none;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: var(--text-color);
    background: var(--white);
    overflow-x: hidden;
}

input,
textarea,
select {
    font-family: var(--font-family);
}

button {
    cursor: pointer;
    font-family: var(--font-family-secondary);
}

p {
    font-family: var(--font-family);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    display: block;
    color: var(--text-color);
    font-family: var(--font-family);
    font-weight: 700;
    text-transform: none;
}

a {
    color: var(--additional);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1 {
    font-size: 50px;
    line-height: 58px;
}

h2 {
    font-size: 32px;
    line-height: 49px;
}

h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;

}

h4 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
}

h5 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

strong {
    font-weight: 500;
}

a,
button {
    text-decoration: none;
    display: inline-block;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    border: none;
}

select {
    cursor: pointer;
}

.wrapper {
    max-width: 1190px;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    padding: 18px 0 14px;
    width: 100%;
    z-index: 1003;
    transition: all .175s;
}

.header_form {
    position: static;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header.sticky {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 243px;
    height: 43px;
}

.header-navigation .menu__item_quick-call,
.header-navigation .menu__item_get-started {
    display: none;
}

.menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.menu__item_tablet {
    display: none;
}

.menu__item_mobile {
    display: none;
}

.menu-toggle {
    position: relative;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 56px;
    height: 56px;
    margin: 0 0 0 20px;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--main-color);
    background: var(--white);
    z-index: 1005;
}

.menu-toggle__line {
    width: 16px;
    height: 2px;
    background: var(--main-color);
    transition: all .175s;
}

.menu-toggle.is-active .menu-toggle__line:nth-child(1),
.menu-toggle.is-active .menu-toggle__line:nth-child(3) {
    position: absolute;
    top: calc(50% - 1px);
    left: calc(50% - 8px);
}

.menu-toggle.is-active .menu-toggle__line:nth-child(1) {
    transform: rotate(45deg);
}

.menu-toggle.is-active .menu-toggle__line:nth-child(2) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.menu-toggle.is-active .menu-toggle__line:nth-child(3) {
    transform: rotate(-45deg);
}


.menu__link {
    display: inline-block;
    padding-bottom: 4px;
    color: var(--text-color);
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    transition: all .175s;
}

.menu__link:hover {
    text-decoration: none;
    box-shadow: inset 0 -1px 0 var(--text-color);
}

.menu__link.active {
    box-shadow: inset 0 -2px 0 var(--main-color);
}

.quick-call {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 31px;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 300;

}

.quick-call:before {
    content: url("../img/icon-phone.svg");
    position: absolute;
    top: 50%;
    left: 0;
    width: 26px;
    height: 32px;
    transform: translateY(-50%);
}

.quick-call:hover {
    text-decoration: none;
}

.quick-call__phone-number {
    color: var(--main-color);
}

.get-started {
    display: inline-block;
    padding: 15px 32px;
    border-radius: 16px;
    border: 1px solid var(--main-color);
    font-family: var(--font-family-secondary);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--main-color);
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    background: var(--white);
    transition: all .175s;
}

.get-started:hover {
    color: var(--white);
    background: var(--main-color);
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.20) inset;
    text-decoration: none;
}

.get-started:focus {
    color: var(--white);
    background: var(--main-color);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.home-hero {
    background: var(--light-main-bg);
}

.home-hero__inner {
    position: relative;
}

.home-hero__info {
    position: relative;
    width: 100%;
    max-width: 818px;
    padding: 234px 0 80px;
    z-index: 1;
}

.home-hero__title {
    display: block;
    width: 100%;
    max-width: 565px;
    margin: 0 0 20px;
    font-size: 50px;
    font-weight: 700;
    line-height: 58px;
    color: var(--text-color);
}

.home-hero__text {
    display: block;
    width: 100%;
    max-width: 565px;
    margin: 0 0 72px;
    font-size: 20px;
    font-weight: 300;
    line-height: 32px;
    color: var(--text-color);
}

.home-hero__illustration {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    align-items: flex-end;
}

.home-hero__img {
    position: relative;
}

.home-hero__form {
    position: relative;
    display: flex;
    padding: 22px;
    background: var(--white);
    box-shadow: 0px 0px 10px 0px rgba(34, 39, 35, 0.16);
    border-radius: 36px;
    gap: 16px;
}

.home-hero__form .text-req {
    position: absolute;
    bottom: 6px;
}

.home-hero__form select {
    max-width: 200px;
}

.preform {
    display: flex;
    gap: 16px;
}

.preform-control {
    width: 100%;
    height: 68px;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    background: var(--white);
	color: var(--text-color);
}

.preform-control.error {
    border-color: var(--error);
}

.text-req {
    display: none;
    color: var(--error);
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
}

.preform-control.error + .text-req {
    display: block;
}

select.preform-control {
    background: var(--white) url("../img/icon-arrow-down.svg") center right 20px no-repeat;
    padding-right: 48px;
}

.home-features {
    padding: 120px 0;
    background: var(--white);
}

.home-features__inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 60px;
}

.feature {
    width: 100%;
    max-width: 320px;
    padding: 32px 40px;
    border-radius: 20px;
    background: var(--light-main-bg);
    box-shadow: 0px 4px 12px 0px rgba(80, 138, 136, 0.20);
}

.feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 0 20px;
    border-radius: 20px;
    background: var(--light-main);
}

.feature__title {
    display: block;
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}

.feature__title_smaller {
    font-size: 20px;
    line-height: 28px;
}

.home-trusted-source {
    background: var(--secondary-light);
}

.home-trusted-source__inner {
    position: relative;
}

.home-trusted-source__illustration {
    position: absolute;
    top: 0;
    left: -365px;
    bottom: 0;
    display: flex;
    align-items: flex-end;
}

.home-trusted-source__info {
    position: relative;
    width: 100%;
    max-width: 535px;
    margin: 0 40px 0 auto;
    padding: 132px 0;
    z-index: 1;
}

.home-trusted-source__title {
    display: block;
    margin: 0 0 20px;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
}

.home-trusted-source__text {
    display: block;
    margin: 0 0 40px;
    font-size: 16px;
    font-weight: 300;
    line-height: 21px;
}

/*
BUTTON
*/
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 68px;
    padding: 20px 40px;
    border-radius: 16px;
    border: 1px solid var(--main-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    color: var(--white);
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    background: var(--main-color);
    transition: all .175s;
}

.button__icon {
    width: 28px;
    height: 28px;
}

.button:hover {
    text-decoration: none;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.20) inset;
}

.button:focus {
    text-decoration: none;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.button_outlined {
    background: var(--white);
    color: var(--main-color);
}

.button_outlined:hover {
    color: var(--white);
    background: var(--main-color);
}

.button_outlined:focus {
    color: var(--white);
    background: var(--main-color);
}

.button_small {
    width: 100%;
    height: 56px;
    max-width: 200px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.home-faq {
    padding: 120px 0;
    background: var(--white);
}

.home-faq__inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
}

.home-faq-item {
    width: 100%;
    max-width: 540px;
    padding: 50px 60px;
    border-radius: 20px;
    background: var(--light-main-bg);
    box-shadow: 0px 8px 12px 12px rgba(68, 74, 86, 0.12);
}

.home-faq-item__title {
    position: relative;
    display: block;
    padding: 0 0 24px;
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    color: var(--text-color);
}

.home-faq-item__title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100px;
    height: 4px;
    background: var(--main-color);
}

.home-faq-item__text {
    display: block;
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: var(--text-color);
}

.home-help {
    padding: 0 0 120px;
    background: var(--white);
}

.home-help__inner {
    position: relative;
}

.home-help__info {
    position: relative;
    max-width: 540px;
    padding: 79px 0 78px;
    z-index: 1;
}

.home-help__title {
    display: block;
    margin: 0 0 28px;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    color: var(--text-color);
}

.home-help__text {
    display: block;
    margin: 0 0 40px;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--text-color);
}

.home-help__illustration {
    position: absolute;
    right: 40px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
}

.tips {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 360px;
}

.tip {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.tip__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 8px;
    background: var(--secondary-light);
}

.tip__title {
    display: block;
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: var(--text-color);
}

.tip__text {
    display: block;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: var(--text-color);
}


.works-hero {
    background: var(--light-main-bg);
}

.works-hero__inner {
    position: relative;
}

.works-hero__info {
    position: relative;
    max-width: 540px;
    padding: 208px 0 120px;
    z-index: 1;
}

.works-hero__title {
    display: block;
    margin: 0 0 16px;
    font-size: 50px;
    font-weight: 700;
    line-height: 58px;
    color: var(--text-color);
}

.works-hero__text {
    display: block;
    margin: 0 0 24px;
    font-size: 20px;
    font-weight: 300;
    line-height: 32px;
}

.works-hero__illustration {
    position: absolute;
    right: 40px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    z-index: 0;
}

.works-hero__img {
    position: relative;
    z-index: 1;
}

.works-register {
    background: var(--light-main-bg);
}

.works-register__inner {
    position: relative;
}

.works-register__info {
    position: relative;
    width: 100%;
    max-width: 635px;
    margin: 0 0 0 auto;
    padding: 120px 0 96px;
    z-index: 1;
}

.works-register__title {
    display: block;
    margin: 0 0 20px;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    color: var(--text-color);
}

.works-register__text {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: var(--text-color);
}

.works-register__illustration {
    position: absolute;
    left: -360px;
    display: flex;
    align-items: flex-end;
    bottom: 0;
    z-index: 0;
}

.works-register__img_desktop {
    display: block;
}

.works-register__img_tablet {
    display: none;
}

.works-register__img_mobile {
    display: none;
}

.works-requirements {
    background: var(--white);
    padding: 120px 0 70px;
}

.works-requirements__info {
    position: relative;
    max-width: 560px;
    padding: 54px 0 104px;
    z-index: 1;
}

.works-requirements__inner {
    position: relative;
}

.works-requirements__illustration {
    position: absolute;
    right: 20px;
    top: 0;
    display: flex;
    z-index: 0;
}

.works-requirements__info h2 {
    margin: 0 0 20px;
}

.works-requirements__info p {
    margin: 0 0 20px;
}

.works-requirements__info p:last-child {
    margin: 0;
}

.works-requirements__info ul {
    margin: 0 0 20px;
    padding: 0 0 0 18px;
    list-style: disc;
}

.works-requirements__info li {
    margin: 0 0 7px;
}

.works-requirements__info li:last-child {
    margin: 0;
}

.faq-hero {
    border-bottom-right-radius: 62px;
    border-bottom-left-radius: 62px;
    background: var(--light-main-bg) url("../img/faq-hero-bg.svg") no-repeat right center;
    background-size: contain;
}

@media screen and (min-width: 1921px) {
    .faq-hero {
        background-size: 58%;
    }
}

.faq-hero__inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.faq-hero__info {
    width: 100%;
    max-width: 445px;
    padding: 288px 0 168px;
}

.faq-hero__illustration {
    display: flex;
}

.faq {
    padding: 50px 0 120px;
    background: var(--white);
}

.accordion {
    border-bottom: 1px solid var(--border-color);
}

.accordion-head {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    cursor: pointer;
}

.accordion-head:after {
    content: url("../img/icon-arrow-down.svg");
    display: block;
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.accordion-head.active:after {
    transform: rotate(180deg);
}

.accordion-body {
    overflow: hidden;
    transition: all 0.3s ease;
    max-height: 0;
    padding: 0;
}

.accordion-body.active {
    max-height: 300px; /* Set a large enough value for max-height to accommodate content */
    padding-bottom: 30px;
}

.accordion-body p {
    margin: 0 0 12px;
}

.accordion-body ul {
    margin: 0 0 12px;
    padding: 0 0 0 18px;
    list-style: disc;
}

.accordion-body ul:last-child,
.accordion-body p:last-child {
    margin: 0;
}

.form-section {
    padding: 190px 0 130px;
    background: var(--light-main-bg);
}

.contact-form {
    margin: 0 0 40px;
    padding: 70px 90px 70px 95px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0px 4px 12px 0px rgba(80, 138, 136, 0.20);
}

.contact-form__title {
    margin: 0 0 20px;
    font-size: 50px;
    line-height: 58px;
    color: var(--text-color);
}

.contact-form__description {
    margin: 0 0 36px;
    font-size: 20px;
    font-weight: 300;
    line-height: 32px;
    color: var(--text-color);
}

.contact-form__row {
    display: flex;
    gap: 25px;
}

.contact-form__col {
    width: 100%;
}

.contact-form__group {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0 0 26px;
}

.contact-form__label {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    color: var(--error);
}

.contact-form__control {
    display: block;
    width: 100%;
    height: 54px;
    padding: 15px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    background: var(--white);
}

.contact-form__control_textarea {
    min-height: 134px;
    resize: none;
}

.contact-form__control.error {
    border-color: var(--error);
}

.contact-form__control.error + .contact-form__label {
    display: block;
}

.contact-form__footer {
    display: flex;
    justify-content: space-between;
    margin: 14px 0 0;
}

.contact-thank-you {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin: 0 0 40px;
    padding: 40px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0px 4px 12px 0px rgba(80, 138, 136, 0.20);
}

.contact-thank-you__illustration {
    width: 520px;
    height: 570px;
    border-radius: 10px;
    overflow: hidden;
}

.contact-thank-you__img {
    max-height: 100%;
    max-width: unset;
}

.contact-thank-you__info {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
}

.contact-thank-you__title {
    margin: 0 0 16px;
    font-size: 32px;
    line-height: 40px;
}

.contact-thank-you__text {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
}

.contact-info {
    display: flex;
}

.contact-info__item {
    display: flex;
    margin: 0 0 0 70px;
}

.contact-info__item:first-child {
    margin: 0 0 0 95px;
}

.contact-info__item:first-child a {
    white-space: nowrap;
}

.contact-info__item:last-child {
    margin: 0 0 0 50px;
}

.contact-info__item-icon {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    margin: 0 5px 0 0;
}

.contact-info__item a {
    color: var(--main-color);
}

.terms-hero {
    padding: 148px 0 60px;
    background: var(--light-main-bg);
}

.terms-section {
    padding: 60px 0 120px;
    background: var(--white);
}

.terms-section p {
    margin: 0 0 20px;
}

.terms-section ul {
    margin: 0 0 20px;
    padding: 0 0 0 18px;
    list-style: disc;
}

.terms-section ul li {
    margin: 0 0 18px;
}

.terms-section strong {
    font-weight: 600;
}

/*
FOOTER
*/
.footer {

}

.footer-preform {
    padding: 60px 0;
    background: var(--secondary-light);
}

.footer-preform__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.footer-preform__title {
    width: 100%;
    max-width: 400px;
}

.footer-preform__form {
    width: 100%;
    max-width: 465px;
    gap: 20px
}

.footer-preform__form select {
    max-width: 260px;
}

.footer-nav {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.footer-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-material {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.footer-material h3 {
    display: block;
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 300;
    line-height: 32px;
}

.footer-material strong {
    display: block;
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}

.footer-material p {
    display: block;
    margin: 0 0 20px;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
}

.footer-copyrights {
    padding: 20px 0 30px;
}

.footer-copyrights__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.scroll-to-top {
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent url("../img/icon-scroll-up.svg") center no-repeat;
    background-size: contain;
}

.unsubscribe-link, .copy {
    display: inline-block;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: var(--text-color);
    transition: all .175s;
}

.unsubscribe-link:hover {
    box-shadow: inset 0 -1px 0 var(--text-color);
    text-decoration: none;
}

/*--------------- Modal ---------------*/
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 1004;
    overflow-y: auto;
}

.modal.flex-add {
    display: flex;
}

.modal .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1005;
    width: 100%;
    height: 100%;
    background: rgba(51, 55, 62, 0.60);
    backdrop-filter: blur(2.5px);
    cursor: pointer;
}

.modal .window {
    margin: 0 30px;
    width: 100%;
    max-width: 950px;
    border-radius: 20px;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 15px;
    position: relative;
    z-index: 1006;
    box-shadow: 0px 4px 15px 0px rgba(80, 138, 136, 0.20);
    gap: 10px;
}

.modal-content {
    margin: 0 auto;
}

.modal-image {
    display: flex;
    width: 50%;
    max-width: 484px;
}

.modal-content__title {
    margin: 0 0 40px;
    font-size: 50px;
    font-weight: 700;
    line-height: 58px;
    color: var(--text-color);
}

.modal-content__text {
    margin: 6px 0 60px;
    width: 418px;
    position: relative;
    font-size: 24px;
}

.modal-content__text::after {
    content: '';
    display: block;
    width: 85px;
    height: 42px;
    position: absolute;
    top: 20px;
    left: calc(100% + 10px);
    background: url("../img/icon-modal-arrow.svg") no-repeat 50%;
    background-size: cover;
}

.close-modal {
    width: 36px;
    height: 36px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}
