

:root {
    --font-body: "Inter", system-ui, sans-serif;
    --font-heading: "Helvetica Neue", system-ui, sans-serif;

    --dark-blue: #161D2F;
    --blue: #084CD2;
    --light-blue: #E6EDFB;
    --light-blue-2: #F2F6FF;
    --orange: #F0582A;
    --light-orange: #FF8E47;
    --light-orange-2: #FFF6E9;
    --grey: #949494;
    --light-grey: #F6F6F6;
    --red: #E93427;

    --color-font: var(--dark-blue);
    --color-accent: var(--orange);
    --color-error: var(--red);

    --border-color-error: var(--red);

    --bg-button-primary: linear-gradient(318deg, #F0582A -1.35%, #FF8E47 98.39%);
    --bg-button-primary-hover: linear-gradient(274deg, #161D2F 0.6%, #084CD2 102.6%);
}

: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;
}
:where(a, button, input, select, textarea) {
    font: inherit;
    color: inherit;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    font-family: var(--font-body);
    color: var(--color-font);
}

img {
    vertical-align: middle;
}

/*<editor-fold desc="Common components">*/
.page {
    flex: 1 0 auto;
}

.section {
    position: relative;
    overflow-x: clip;
}

.wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
@media (min-width: 768px) {
    .wrapper {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .wrapper {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .wrapper {
        max-width: 1140px;
    }
}

/* Headings */
h1, .h1 {
    font-family: var(--font-heading);
    font-size: 70px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -2.1px;
}
h2, .h2 {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.5px;
}
h3, .h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.48px;
}
h4, .h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.44px;
}
.text-subheading {
    font-size: 22px;
    line-height: normal;
}
.text-body {
    font-size: 18px;
    line-height: normal;
}
.text-label {
    font-size: 16px;
    font-weight: 600;
}
@media (max-width: 992px) {
    h1, .h1 {
        font-size: 50px;
        letter-spacing: -1.5px;
    }
    h2, .h2, .h2-mobile {
        font-size: 38px;
        letter-spacing: -1.14px;
    }
    h3, .h3, .h3-mobile {
        font-size: 20px;
        letter-spacing: -0.4px;
    }
    h4, .h4 {
        font-size: 18px;
        letter-spacing: -0.36px;
    }
    .text-subheading {
        font-size: 18px;
    }
    .text-body {
        font-size: 16px;
    }
    .text-label {
        font-size: 14px;
    }
}
@media (max-width: 575px) {
    h1, .h1 {
        font-size: 34px;
        letter-spacing: -1.02px;
    }
    h2, .h2, .h2-mobile {
        font-size: 30px;
        letter-spacing: -0.9px;
    }
    h3, .h3, .h3-mobile {
        font-size: 18px;
        letter-spacing: -0.36px;
    }
    h4, .h4 {
        font-size: 16px;
        letter-spacing: -0.32px;
    }
    .text-subheading {
        font-size: 16px;
        line-height: normal;
    }
    .text-body {
        font-size: 14px;
    }
    .text-label {
        font-size: 12px;
    }
}

.btn {
    display: inline-block;
    min-width: 255px;
    padding: 23px;
    border: none;
    border-radius: 8px;
    text-align: center;
}
a.btn {
    text-decoration: none;
}
@media (max-width: 992px) {
    .btn {
        padding: 13px 23px 15px;
        border-radius: 6px;
    }
}

.btn-primary {
    color: white;
    background: var(--bg-button-primary);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    transition: .2s;
}
.btn-primary:hover {
    background: var(--bg-button-primary-hover);
}
@media (max-width: 992px) {
    .btn-primary {
        font-size: 16px;
        line-height: 22px;
    }
}
@media (max-width: 400px) {
    .btn-primary {
        width: 100%;
    }
}

.text-highlight {
    color: var(--color-accent);
}

.badge {
    display: inline-block;
    padding: 9px 20px;
    border-radius: 29px;
}
@media (max-width: 992px) {
    .hero__badge {
        padding: 5px 13px;
    }
}
@media (max-width: 575px) {
    .badge {
        padding: 5px 9px;
    }
}

/* steps */
.steps {
    display: grid;
    gap: 46px;
}
.steps__item {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 24px;
    text-align: left;
}
.steps__item-icon {
    width: 65px;
    height: 65px;
    background-color: var(--light-orange-2);
    border-radius: 12px;

    display: flex;
    justify-content: center;
    align-items: center;
}
.steps__item-text {
    margin-top: 9px;
}
@media (max-width: 992px) {
    .steps {
        gap: 22px;
    }
    .steps__item {
        gap: 15px;
    }
    .steps__item-icon {
        width: 48px;
        height: 48px;
        border-radius: 8px;
    }
    .steps__item-icon img {
        width: 29px;
        height: 29px;
    }
    .steps__item-text {
        margin-top: 4px;
    }
}

/* accordion */
.accordion {
    max-width: 730px;
    margin-inline: auto;
}
.box-acc {
    margin-top: 15px;
    border-radius: 12px;
    overflow: clip;
    background-color: #fff;
}
.box-acc.in {
    box-shadow: 62px 71px 26px 0 rgba(16, 74, 203, 0.00), 40px 45px 24px 0 rgba(16, 74, 203, 0.01), 22px 25px 20px 0 rgba(16, 74, 203, 0.05), 10px 11px 15px 0 rgba(16, 74, 203, 0.09), 2px 3px 8px 0 rgba(16, 74, 203, 0.10);
}
.ac-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    /*min-height: 90px;*/
    padding: 24px 24px 24px 30px;
    cursor: pointer;
}
.ac-head__title {
    align-self: center;
}
.ac-head__icon {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background-color: var(--light-grey);
    border-radius: 50%;
}
.ac-head__icon:before {
    content: '';
    display: block;
    width: 12px;
    height: 2px;
    background: var(--dark-blue);
    transform: translateX(2px);
}
.ac-head__icon:after {
    content: '';
    display: block;
    width: 2px;
    height: 12px;
    background: var(--dark-blue);
    transform: translateX(-5px);
    transition: transform .2s;
}
.box-acc.in .ac-head__icon:after {
    transform: translateX(-5px) rotate(90deg);
}
.ac-body {
    padding: 0 24px 24px 30px;
    background-color: #fff;
}
@media (max-width: 992px) {
    .ac-head {
        padding: 20px;
    }
    .ac-body {
        padding: 0 20px 20px 20px;
    }
}
@media (max-width: 575px) {
    .ac-head {
        padding: 15px;
    }
    .ac-body {
        padding: 0 15px 15px 15px;
    }
}
/*</editor-fold*/

/*<editor-fold desc="Site header">*/
.site-header {
    padding-block: 30px;
    background-color: white;
}
.site-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}
.is-form-page .site-header__row {
    justify-content: center;
}
.site-header__logo {
    height: 79px;
}
.site-nav {
    display: contents;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.site-nav > .site-nav {
    display: flex;
}
.site-nav__item a {
    text-decoration: none;
}
.site-nav__item a:hover {
    text-decoration: underline;
}
.site-nav__item a.active {
    text-decoration: underline;
}
.site-header__cta {
    padding: 11px 32px 12px 32px;
    border: 1px solid var(--blue);
    border-radius: 8px;
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
    transition: .2s;
}
.site-header__cta:hover {
    background-color: var(--light-blue-2);
}
/* tablet layout */
@media (max-width: 992px) {
    .site-header {
        padding-block: 22px;
    }
    .site-header__logo {
        height: 60px;
    }
    .site-nav {
        display: none;
    }
}
/* mobile layout */
@media (max-width: 575px) {
    .site-header {
        padding-block: 20px;
    }
    .site-header__logo {
        height: 45px;
    }
}
/*</editor-fold>*/

/*<editor-fold desc="Hero section">*/
.hero-section {
    padding-block: 0 118px;
}
.hero {
    display: flex;
    align-items: center;
    gap: 30px;
}
.hero__content {
    flex: 0 0 540px;
}
.hero__badge {
    border: 1px solid var(--dark-blue);
}
.hero__title {
    margin-top: 25px;
}
.hero__text {
    margin-top: 18px;
}
.hero__preform {
    margin-top: 25px;
}
.hero__image-container {
    display: flex;
    justify-content: center;
    min-width: 0;
    border-radius: 12px;
    overflow: hidden;
}
.hero__image {
    object-fit: cover;
    border-radius: 12px;
}
/* preform */
.preform {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: flex-start;
    gap: 30px;
}
.preform input {
    width: 100%;
    padding: 23px;
    border: 1px solid var(--grey);
    border-radius: 8px;
    background-color: var(--light-grey);
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
}
.preform input[data-touched="true"]:invalid {
    border-color: var(--border-color-error);
}
.preform__field-error {
    display: none;
    margin-top: 8px;
    color: var(--color-error);
    text-align: left;
}
.preform input[data-touched="true"]:invalid + .preform__field-error {
    display: block;
}
/* tablet layout */
@media (max-width: 992px) {
    .hero-section {
        padding-block: 53px 30px;
    }
    .hero {
        flex-direction: column;
    }
    .hero__content {
        flex: auto;
        max-width: 597px;
        text-align: center;
    }
    .hero__title {
        margin-top: 17px;
    }
    .hero__text {
        margin-top: 16px;
    }
    .hero__preform {
        max-width: 530px;
        margin: 17px auto 0;
    }
    .preform input {
        padding: 16px 15px;
        font-size: 14px;
    }
    .hero__image-container {
        width: 100%;
        height: 300px;
    }
}
/* mobile layout */
@media (max-width: 575px) {
    .hero-section {
        padding-block: 15px;
    }
    .hero__title {
        margin-top: 15px;
    }
    .hero__text {
        margin-top: 10px;
    }
    .preform {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
        width: 100%;
        margin: 15px 0 0;
    }
    .preform input {
        padding: 16px 15px;
        font-size: 14px;
    }
    .hero__image-container {
        height: 211px;
    }
}

/* hero home page */
.hero-section--home .hero__image {
    object-position: bottom 0 left -106px;
}
@media (max-width: 992px) {
    .hero-section--home .hero__image {
        flex-shrink: 0;
        width: 837px;
        height: auto;
        object-position: center -96px;
    }
}
@media (max-width: 575px) {
    .hero-section--home .hero__image {
        width: 429px;
        object-position: left 38px top -17px;
    }
}

/* hero how it works page */
.hero-section--how-it-works p {
    margin-top: 18px ;
}
.hero-section--how-it-works .hero__image {
    object-position: bottom 0 left -106px;
}
@media (max-width: 992px) {
    .hero-section--how-it-works p {
        margin-top: 16px;
    }
    .hero-section--how-it-works .hero__image {
        flex-shrink: 0;
        width: 690px;
        object-position: center -125px;
    }
}
@media (max-width: 575px) {
    .hero-section--how-it-works p {
        margin-top: 10px;
    }
    .hero-section--how-it-works .hero__image {
        width: 391px;
        height: auto;
        object-position: center -30px;
    }
}
/*</editor-fold>*/

/*<editor-fold desc="Reliability section">*/
.reliability-section {
    padding-block: 118px;
    background-color: var(--light-blue-2);
}
.reliability {
    display: grid;
    grid-template-columns: .432fr .488fr;
    justify-content: space-between;
    align-items: flex-start;
}
.reliability__description {
    max-width: 445px;
    margin-top: 12px;
}
.reliability__features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}
.reliability__features li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.reliability__features li:before {
    content: '';
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    border-radius: 12px;
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 45px;
}
.reliability__features li:nth-child(1):before {
    background-image: url(../images/list-icon.svg);
}
.reliability__features li:nth-child(2):before {
    background-image: url(../images/shield-icon.svg);
}
.reliability__features li:nth-child(3):before {
    background-image: url(../images/clock-icon.svg);
}
.reliability__action {
    margin-top: 40px;
}
.reliability__cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.reliability__card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;

    height: 281px;
    padding-left: 44px;
    background-color: #fff;
    border-radius: 12px;
    overflow: auto;
}
.reliability__card-text {
    max-width: 230px;
}
.reliability__card:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 0;
}
.reliability__card:nth-child(1):before {
    content: url(../images/reliability-1.jpg);
}
.reliability__card:nth-child(2):before {
    content: url(../images/reliability-2.jpg);
}
/* tablet layout */
@media (max-width: 992px) {
    .reliability-section {
        padding-block: 60px;
    }
    .reliability {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .reliability__main {
        display: contents;
    }
    .reliability__description {
        max-width: none;
    }
    .reliability__features {
        flex-direction: row;
        margin-top: 30px;
        text-align: left;
    }
    .reliability__features li:before {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        background-size: 30px;
        border-radius: 8px;
    }
    .reliability__action {
        order: 1;
        margin-top: 30px;
    }
    .reliability__cards {
        flex-direction: row;
        margin-top: 30px;
    }
    .reliability__card {
        width: 100%;
        height: 153px;
        padding-left: 36px;
        overflow: clip;
    }
    .reliability__card:nth-child(1):before {
        bottom: -87px;
        right: -51px;
        transform: scale(0.7);
    }
    .reliability__card:nth-child(2):before {
        bottom: -63px;
        right: -44px;
        transform: scale(0.7);
    }
    .reliability__card-text {
        max-width: 165px;
        text-align: left;
        z-index: 1;
    }
}
/* mobile layout */
@media (max-width: 700px) {
    .reliability-section {
        padding-block: 40px;
    }
    .reliability {
        max-width: 415px;
        margin-inline: auto;
    }
    .reliability__features {
        flex-direction: column;
    }
    .reliability__cards {
        flex-direction: column;
        gap: 15px;
    }
    .reliability__card {
        height: 134px;
    }
    .reliability__card:nth-child(1):before {
        bottom: -92px;
        right: -62px;
        transform: scale(0.6);
    }
    .reliability__card:nth-child(2):before {
        bottom: -78px;
        right: -67px;
        transform: scale(0.55);
    }
    .reliability__card-text {
        max-width: 140px;
    }
}
/*</editor-fold>*/

/*<editor-fold desc="Media composition section">*/
.media-composition-section {
    margin-block: 118px;
}
.media-composition-image {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(50% - 960px - 5px);
    height: 761px;
    width: 756px;
    border-radius: 12px;
}
.media-composition {
    width: 57%;
    padding-block: 101px;
    margin-left: auto;

    display: grid;
    gap: 70px;
}
/* tablet layout */
@media (max-width: 992px) {
    .media-composition-section {
        margin-block: 60px;
    }
    .media-composition-image {
        width: 394px;
        height: 396px;
        left: -2px;
        border-radius: 6px;
    }
    .media-composition {
        width: 46%;
        padding-block: 0;

        gap: 30px;
    }
}
/* mobile layout */
@media (max-width: 767px) {
    .media-composition-section {
        margin-block: 0 40px;
    }
    .media-composition-image {
        position: relative;
        width: 100%;
        height: auto;
        transform: none;
    }
    .media-composition {
        width: 100%;
        max-width: 500px;
        padding-top: 28px;
        margin-inline: auto;
        text-align: center;
    }
}
/*</editor-fold>*/

/*<editor-fold desc="Advantages section">*/
.advantages-section {
    margin-bottom: 118px;
}
.advantages-decor-wrapper {
    position: absolute;
    height: 100%;
    width: 1920px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}
@media (max-width: 1500px) {
    .advantages-decor-wrapper {
        width: 1600px;
    }
}
@media (max-width: 1180px) {
    .advantages-decor-wrapper {
        display: none;
    }
}
.advantages-decor-wrapper img {
    border-radius: 12px;
}
.advantages-image-mobile {
    display: none;
}
.advantages-image-tablet {
    display: none;
}
.advantages-wrapper {
    max-width: 666px;
    margin-inline: auto;
    min-height: 748px;
    align-content: center;
}
.advantages-title {
    margin-bottom: 60px;
    text-align: center;
}
.advantages {
    display: grid;
    justify-items: center;
    gap: 53px;
}
.advantages__group {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.advantages__item {
    width: 100%;
    max-width: 257px;
    text-align: center;
}
.advantages__item-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 62px;
    height: 62px;
    margin-inline: auto;
    background-color: var(--light-orange);
    border-radius: 12px;
}
.advantages__item-title {
    margin-top: 15px;
}
.advantages__item-text {
    margin-top: 15px;
}
/* tablet layout */
@media (max-width: 991px) {
    .advantages-section {
        padding-block: 60px;
        margin-bottom: 0;
    }
    .advantages-wrapper {
        max-width: none;
        min-height: auto;
    }
    .advantages-title {
        margin-bottom: 30px;
    }
    .advantages-layout {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
        width: calc(720px + (100vw - 720px) / 2);
    }
    .advantages {
        justify-items: flex-start;
        gap: 30px;
    }
    .advantages__group {
        display: contents;
    }
    .advantages__item {
        max-width: none;
        width: auto;
        display: flex;
        gap: 15px;
        text-align: left;
    }
    .advantages__item-title {
        margin-top: 0;
    }
    .advantages__item-icon {
        width: 48px;
        height: 48px;
    }
    .advantages__item-icon img {
        width: 36px;
        height: 36px;
    }
    .advantages__item-text {
        margin-top: 8px;
    }
    .advantages-image-tablet {
        display: block;
        border-radius: 12px 0 0 12px;
    }
}
/* mobile layout */
@media (max-width: 575px) {
    .advantages-section {
        padding-block: 0 40px;
    }
    .advantages-image-mobile {
        display: block;
        width: 100%;
    }
    .advantages-wrapper {
        margin-top: 30px;
    }
    .advantages-layout {
        width: auto;
    }
    .advantages__item-icon {
        width: 40px;
        height: 40px;
    }
    .advantages__item-icon img {
        width: 30px;
        height: 30px;
    }
    .advantages-image-tablet {
        display: none;
    }
}
/*</editor-fold>*/

/*<editor-fold desc="FAQ preview section">*/
.faq-section {
    padding-block: 118px;
    background-color: var(--light-blue-2);
}
.faq-title {
    text-align: center;
}
.faq {
    margin-top: 50px;
}
/* tablet layout */
@media (max-width: 992px) {
    .faq-section {
        padding-block: 60px;
    }
    .faq {
        margin-top: 40px;
    }
}
/* mobile layout */
@media (max-width: 575px) {
    .faq-section {
        padding-block: 40px;
    }
    .faq {
        margin-top: 30px;
    }
}
/*</editor-fold>*/

/*<editor-fold desc="Leak section">*/
.leak-section {
    padding-block: 95px;
    text-align: center;
    color: white;
    background: url(../images/leak-bg.jpg) center / cover;
}
.leak {
    display: grid;
    gap: 13px;
    margin-bottom: 60px;
}
.leak__badge {
    max-width: fit-content;
    margin-inline: auto;
    border: 1px solid white;
}
/* tablet layout */
@media (max-width: 992px) {
    .leak-section {
        padding-block: 60px;
        background-image: url(../images/leak-bg-tablet.jpg);
    }
}
/* mobile layout */
@media (max-width: 575px) {
    .leak-section {
        padding-block: 40px;
        background-image: url(../images/leak-bg-mobile.jpg);
    }
    .leak {
        gap: 15px;
        margin-bottom: 237px;
    }
}
/*</editor-fold>*/

/*<editor-fold desc="Legal content section">*/
.legal-content {
    padding-block: 118px;
    background-color: var(--light-blue-2);
}
.legal-content h1 {
    margin-bottom: 60px;
    text-align: center;
}
.legal-content p {
    margin-top: 20px ;
}
.legal-content a {
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% 1px;
    text-decoration: none;
    transition: background-size .3s;
}
.legal-content a:hover,
.legal-content a:focus-visible {
    background-size: 77% 1px;
}
/* tablet layout */
@media (max-width: 992px) {
    .legal-content {
        padding-block: 60px;
    }
    .legal-content h1 {
        margin-bottom: 40px;
    }
}
/* mobile layout */
@media (max-width: 575px) {
    .legal-content {
        padding-block: 40px;
    }
    .legal-content h1 {
        margin-bottom: 30px;
    }
}
/*</editor-fold>*/

/*<editor-fold desc="Contact section">*/
.contact-section {
    padding-block: 60px 118px;
}
.contact {
    max-width: 646px;
    margin-inline: auto;
    text-align: center;
}
.contact h1 {
    margin-bottom: 30px;
}
.contact p {
    margin-bottom: 18px;
}
.contact p + p {
    margin-bottom: 30px;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: space-between;
    text-align: left;
}
.contact-grid__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.contact-grid__item-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    border-radius: 12px;
    background-color: var(--light-orange-2);
}
.contact-image-container {
    width: 540px;
    height: 416px;
    margin: 80px auto 0;
    border-radius: 12px;
    overflow: clip;
}
.contact-image {
    transform: translate(-177px, -44px);
}
/* tablet layout */
@media (max-width: 991px) {
    .contact-section {
        padding-block: 60px;
    }
    .contact {
        max-width: none;
    }
    .contact h1 {
        margin-bottom: 16px;
    }
    .contact p {
        margin-bottom: 16px;
    }
    .contact p + p {
        margin-bottom: 30px;
    }
    .contact-grid__item {
        gap: 15px;
    }
    .contact-grid__item-icon {
        width: 48px;
        height: 48px;
        border-radius: 8px;
    }
    .contact-grid__item-icon img {
        transform: scale(.83);
    }
    .contact-image-container {
        width: 100%;
        height: 300px;
        margin-top: 30px;
    }
    .contact-image {
        width: 100%;
        transform: translateY(-17%);
    }
}
/* mobile layout */
@media (max-width: 575px) {
    .contact-section {
        padding-block: 0 40px;
    }
    .contact h1 {
        margin-bottom: 15px;
    }
    .contact p {
        margin-bottom: 15px;
    }
    .contact-image-container {
        height: 212px;
    }
    .contact-grid {
        justify-self: center;
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .contact-grid__item {
        flex-direction: row;
    }
    .contact-grid__item-icon {
        width: 40px;
        height: 40px;
        border-radius: 7px;
    }
    .contact-grid__item-icon img {
        transform: scale(.7);
    }
    .contact-image {
        position: relative;
        left: 50%;
        width: clamp(100%, calc(360.784px + 37.255vw), 150%);
        transform: translate(-50%, -9%);
    }
}
@media (max-width: 400px) {
    .contact-grid {
        justify-self: flex-start;
    }
}
/*</editor-fold>*/

/*<editor-fold desc="">*/

/* tablet layout */
@media (max-width: 992px) {

}
/* mobile layout */
@media (max-width: 575px) {

}
/*</editor-fold>*/

/*<editor-fold desc="Footer">*/
.site-footer {
    padding-block: 76px 81px;
    background-color: var(--dark-blue);
    color: white;
}
.site-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-footer__nav {
    display: flex;
    gap: 40px;
}
.site-footer__nav a {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
}
.site-footer__nav a:hover {
    text-decoration: underline;
}
.site-footer__separator {
    height: 1px;
    margin-block: 35px;
    background-color: #fff;
}
.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    font-size: 14px;
    font-weight: 400;
}
.site-footer__bottom b {
    font-weight: 800;
}
.site-footer__text {
    max-width: 444px;
}
/* tablet layout */
@media (max-width: 992px) {
    .site-footer {
        padding-block: 60px;
    }
    .site-footer__nav {
        gap: 30px;
    }
    .site-footer__nav a {
        font-size: 16px;
    }
    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    .site-footer__text {
        max-width: none;
    }
}
/* mobile layout */
@media (max-width: 575px) {
    .site-footer {
        padding-block: 32px 42px;
    }
    .site-footer__separator {
        margin-block: 40px;
    }
    .site-footer__nav {
        flex-direction: column;
        gap: 14px;
    }
    .site-footer__nav a {
        font-size: 14px;
    }
    .site-footer__bottom {
        gap: 40px;
        text-align: left;
        font-size: 12px;
    }
}
/*</editor-fold>*/

/*<editor-fold desc="Menu">*/
/* body */
@media (max-width: 992px) {
    body.is-menu-open:after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.8);
        z-index: 1;
        pointer-events: none;
    }
}
/* header */
@media (max-width: 992px) {
    .is-menu-open.site-header {
        overflow-x: clip;
    }
}
/* navigation */
@media (max-width: 992px) {
    .is-menu-open .site-header__row {
        position: relative;
    }
    .is-menu-open .site-header__row > .site-nav {
        display: flex;
        position: absolute;
        right: -20px;
        top: -22px;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 90px 55px 40px 55px;
        border-radius: 0 0 12px 12px;
        background: var(--light-blue);
        z-index: 2;
    }
    .is-menu-open .site-nav > .site-nav {
        display: contents;
    }
}
/* menu toggle button */
.site-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 24px;
    height: 24px;
    padding: 7px 3px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}
.site-menu-toggle span {
    width: 18px;
    height: 2px;
    background-color: var(--blue);
}
@media (max-width: 992px) {
    .site-menu-toggle {
        display: flex;
    }
    .is-menu-open .site-menu-toggle {
        z-index: 3;
    }
    .is-menu-open .site-menu-toggle span:nth-child(1) {
        transform: translateY(3px) rotate(45deg);
    }
    .is-menu-open .site-menu-toggle span:nth-child(2) {
        transform: translateY(-3px) rotate(-45deg);
    }
}
/* header cta button */
@media (max-width: 575px) {
    body:not(.is-menu-open) .site-header__cta {
        display: none;
    }
}
.is-menu-open .site-header__cta {
    margin-top: 10px;
}
/*</editor-fold>*/

.hero-section--how-it-works {
    padding-block: 118px;
    text-align: center;
}
@media (max-width: 992px) {
    .hero-section--how-it-works {
        padding-block: 110px 60px;
    }
}
@media (max-width: 767px) {
    .hero-section--how-it-works {
        padding-block: 23px 40px;
    }
}
