/* Define colors */

:root {
    --clr-background: #F9F9F9;
    --clr-accent: #AA957C;
    --clr-biege: #EBDBCA;
    --clr-brown: #38322E;
    --clr-black: #0E0D0A;
}


/* Global CSS */

*,
::before,
::after {
    box-sizing: border-box;
}


body,
button,
input,
textarea {
    font-family: 'Gotham Pro', Arial, Helvetica, sans-serif;
}


body {
    margin: 0;
    color: var(--clr-black);
    line-height: 24px;
    background-color: var(--clr-background);
}


img {
    max-width: 100%;
    height: auto;
}


a {
    color: inherit;
    text-decoration: none;
    transition: color 300ms ease;
}

a:hover {
    color: var(--clr-accent);
}


button {
    cursor: pointer;
}


input {
    height: 48px;
    padding: 0 18px;
    font-size: 14px;
    background-color: #ffffff;
    border: 1px solid var(--clr-accent);
    border-radius: 4px;
    transition: border-color 300ms ease;
}

input:focus {
    border-color: var(--clr-biege);
    outline: none;
}

input::placeholder {
    color: #575653;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

h2 {
    font-size: 36px;
    line-height: 1;
}


/* Title */

.title {
    margin-bottom: 70px;
}

h2.title__heading {
    line-height: 42px;
}


.title--center {
    text-align: center;
}


/* Buttons */

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 48px;
    padding: 0 24px;
    font-size: 16px;
    line-height: 15px;
    border: none;
    border-radius: 4px;
    overflow: hidden;
}


.button--primary {
    color: #ffffff;
    background-color: var(--clr-black);
}

.button--primary::after {
    content: "";
    position: absolute;
    top: -50px;
    left: -75px;
    width: 50px;
    height: 155px;
    background: #ffca8a;
    transform: rotate(35deg);
    opacity: .25;
    transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
}

.button--primary:hover {
    color: #ffffff;
}

.button--primary:hover::after {
    left: 140%;
}


.button--secondary {
    font-weight: 500;
    background-color: transparent;
    border: 2px solid var(--clr-black);
    transition: color 300ms ease, background-color 300ms ease;
}

.button--secondary:hover {
    color: #ffffff;
    background-color: var(--clr-black);
}


.button--secondary.button--white {
    color: #ffffff;
    border-color: #ffffff;
}

.button--secondary:hover.button--white {
    color: var(--clr-black);
    background-color: #ffffff;
}


.button--iconed > svg {
    margin-right: 10px;
    transition: fill 300ms ease;
}

.button--iconed.button--secondary:hover > svg {
    fill: #ffffff;
}


/* Input */

.input__input {
    display: block;
    width: 100%;
}


.input--iconed .input__wrap {
    position: relative;
}

.input--iconed .input__input {
    padding-left: 45px;
}

.input--iconed .input__input:focus + .input__icon {
    fill: var(--clr-accent);
}

.input--iconed .input__icon {
    position: absolute;
    top: 18px;
    left: 18px;
    pointer-events: none;
    transition: fill 300ms ease;
}


/* Form */

.form {
    transition: opacity 300ms ease;
}

.form__fields {
    min-width: unset;
    margin: 0;
    padding: 0;
    border: none;
}

.form__response {
    /* height: 0; */
    margin-top: 32px;
    /* overflow: hidden;
    transition: height 300ms ease; */
}

/* .form__response > div {
    padding: 12px;
    border: 1px solid yellowgreen;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 300ms ease;
} */

.form__footer {
    margin-top: 36px;
}


.form--sending {
    opacity: .3;
    pointer-events: none;
}


/* Form Grid */

.form-row:not(:last-child) {
    margin-bottom: 8px;
}


/* Grid */

.container {
    max-width: 1162px;
    margin: 0 auto;
    padding: 0 25px;
}


/* CSS Icons */

.plus {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plus::before,
.plus::after {
    content: "";
    position: absolute;
    display: block;
    width: 2px;
    height: 10px;
    background-color: var(--clr-black);
}

.plus::before {
    transform: rotateZ(90deg);
}


/* Site Header */

.site-header {
    position: absolute;
    top: 48px;
    right: 0;
    left: 0;
    z-index: 100;
}

.site-header__inner {
    display: flex;
    align-items: center;
}


/* Logo */

.logo {
    margin-right: 65px;
}

.logo__image--mobile {
    display: none;
}


/* Navigation */

.navigation__toggle {
    display: none;
    width: 22px;
    padding: 0;
    background-color: transparent;
    border: 0;
    border-radius: unset;
}

.navigation__toggle > div {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: transform 300ms ease, opacity 300ms ease;
}

.navigation__toggle > div:nth-child(2) {
    margin: 4px 0;
}

.navigation__menu {
    display: flex;
    font-size: 15px;
    line-height: 18px;
}

.navigation__menu .menu-item:not(:last-child) {
    margin-right: 40px;
}


/* Menu */

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
}


/* Menu Item */

.menu-item > a {
    display: block;
    width: fit-content;
}


/* Site Footer */

.site-footer {
    padding: 86px 0 76px;
    font-size: 14px;
    background-color: var(--clr-black);
}

.site-footer__container {
    display: grid;
    grid-template-columns: 40% 23.86% 23.86% 1fr;
}


/* Footer Logo */

.footer-logo {
    display: inline-block;
    text-align: center;
}

.footer-logo > svg {
    fill: #ffffff;
}

.footer-logo__mobile {
    display: none;
}

.footer-logo__socials {
    position: relative;
    margin-top: 56px;
    padding-top: 60px;
}

.footer-logo__socials::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: calc(50% - 50px);
    width: 100px;
    height: 1px;
    background: #FFFFFF;
}

.footer-logo__socials > a:not(:last-child) {
    margin-right: 60px;
}


/* Socials */

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

.socials > a > svg {
    fill: #FFFFFF;
    transition: fill 300ms ease;
}

.socials > a:hover > svg {
    fill: var(--clr-accent);
}


/* Footer Menu */

.footer-menu {
    color: #ffffff;
}

.footer-menu__title {
    margin-bottom: 10px;
    font-weight: bold;
}

.site-footer__col > .footer-menu__title {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 18px;
    color: #fff;
}

/**
 *  Language Switcher
 */

.lang-switcher__wrapper{
    display: none;
    position: absolute;
    top: 91px;
    left: 25px;
    z-index: 999;
}

.navigation--expanded .lang-switcher__wrapper{
    display: block;
}

.lang-switcher {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 82px;
    padding: 12px 16.5px;
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    line-height: 18px;
    text-transform: uppercase;
}

.lang-switcher--mobile{
    min-width: 82px;
}

.lang-switcher .lang-switcher__current {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #fff;
    cursor: default;
}

.lang-switcher.lang-switcher:hover .lang-switcher__current > svg {
    transform: rotateZ(-90deg);
}

.lang-switcher .lang-switcher__list {
    list-style: none;
    position: absolute;
    top: 103%;
    margin: 0;
    padding: 12px;
    background: var(--black-color);
    border: 1px solid #fff;
    border-radius: 4px;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease, transform 300ms ease;
}

.lang-switcher.lang-switcher:hover .lang-switcher__list {
    transform: translateY(0);
    opacity: 1;
    pointer-events: initial;
}

.lang-switcher__item:not(:last-child){
    margin-bottom: 6px;
}

.lang-switcher .lang-switcher__list a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: color 300ms ease;
}

.lang-switcher .lang-switcher__list a:hover {
    color: var(--clr-accent);
}

.lang-switcher__current{
    color: #fff;
}

.lang-switcher--mobile > a {
    text-decoration: none;
}

.lang-switcher--mobile > a:not(:last-child) {
    margin-right: 10px;
}

.lang-switcher--mobile > a[href] {
    font-weight: 400;
}

.lang-switcher--mobile > a[href]:hover {
    color: var(--clr-accent);
}

.lang-switcher--mobile .lang-switcher__item a{
    color: #fff;
}


/* Sections */

#advantages {
    padding: 128px 0;
}

#faq {
    padding: 128px 0;
    background-color: var(--clr-biege);
}

#testimonials {
    padding: 128px 0;
}

#contacts {
    padding-bottom: 112px;
}


/* Hero */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--clr-biege);
    overflow: hidden;
}

.hero__content {
    position: absolute;
    left: calc((100% - 1112px) / 2);
}

.hero__heading {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 56px;
    line-height: 54px;
    text-transform: uppercase;
}

.hero__overtitle {
    margin-bottom: 24px;
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
}

.hero__desc {
    max-width: 284px;
    margin-bottom: 48px;
}

.hero__quote {
    position: absolute;
    display: none;
}

.hero__image {
    display: block;
    height: 100vh;
    margin-left: auto;
    object-fit: cover;
}


/* Apparatus */

.apparatus {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
}

.apparatus__image-wrap {
    position: relative;
    margin-bottom: -164px;
    padding-top: 26px;
}

.apparatus__image-wrap::before {
    content: "";
    position: absolute;
    display: block;
    width: 356px;
    height: 802px;
    top: 0;
    left: 10px;
    background-color: var(--clr-brown);
    border-radius: 0 0 168px 168px;
}

.apparatus__image {
    position: relative;
    max-width: unset;
}

.apparatus__content {
    padding-left: 78px;
}

.apparatus__heading {
    margin-bottom: 36px;
}

.apparatus__desc {
    margin-bottom: 48px;
    font-size: 18px;
}

.apparatus__desc p:first-child {
    margin-top: 0;
}

.apparatus__desc p:last-child {
    margin-bottom: 0;
    color: #DB6363;
}

.apparatus__badge {
    position: absolute !important;
    bottom: -254px;
    left: calc(50% + 312px);
}


/* Application */

.application {
    position: relative;
    padding-top: 290px;
    background-color: #E8E8EA;
    overflow: hidden;
}

.application__content {
    position: absolute;
    top: 240px;
    left: calc((100% - 1112px) / 2);
    z-index: 2;
}

.application__heading {
    margin-bottom: 36px;
}

.application__desc {
    max-width: 326px;
    margin-bottom: 36px;
    font-size: 18px;
}


/* Application Schema */

.application-schema {
    position: relative;
    display: flex;
    justify-content: center;
}

.application-schema__list {
    position: absolute;
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 20px;
    z-index: 3;
}

.application-schema__item {
    position: absolute;
}

.application-schema__item:nth-child(1){
    width: 334px;
    top: 325px;
    right: 283px;
    text-align: right;
}

.application-schema__item:nth-child(2){
    width: 334px;
    top: 404px;
    right: 283px;
    text-align: right;
}

.application-schema__item:nth-child(3){
    width: 334px;
    top: 483px;
    right: 283px;
    text-align: right;
}

.application-schema__item:nth-child(4){
    width: 334px;
    top: 562px;
    right: 283px;
    text-align: right;
}

.application-schema__item:nth-child(5){
    width: 222px;
    top: 641px;
    right: 283px;
    text-align: right;
}

.application-schema__item:nth-child(6){
    width: 162px;
    top: 162px;
    left: 313px;
}

.application-schema__item:nth-child(7){
    width: 308px;
    top: 241px;
    left: 313px;
}

.application-schema__item:nth-child(8){
    width: 116px;
    top: 320px;
    left: 313px;
}

.application-schema__item:nth-child(9){
    width: 248px;
    top: 399px;
    left: 313px;
}

.application-schema__item:nth-child(10){
    width: 359px;
    top: 478px;
    left: 313px;
}

.application-schema__item:nth-child(11){
    width: 300px;
    top: 580px;
    left: 313px;
}

.application-schema__lines {
    position: absolute;
    top: 142px;
    left: calc(50% - 272px);
    z-index: 1;
    user-select: none;
    pointer-events: none;
}

.application-schema__image {
    position: relative;
    left: 30px;
    user-select: none;
    pointer-events: none;
}


/* Badge */

.badge {
    position: relative;
    display: inline-block;
}

.badge > svg {
    position: relative;
    display: block;
    font-size: 14px;
    animation: kf_spin 10s linear infinite;
    z-index: 1;
}

.badge__logo {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.badge__logo > svg {
    display: block;
}


/* CTA */

.cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 94px 0;
    color: #ffffff;
    text-align: center;
    background-image: url(../img/action.webp);
    background-size: cover;
    background-position: center;
}

.cta__heading {
    margin-bottom: 14px;
    font-size: 64px;
    line-height: 61px;
}

.cta__subheading {
    max-width: 245px;
    font-weight: bold;
    font-size: 18px;
    line-height: 30px;
}

.cta__form {
    width: 100%;
    max-width: 332px;
    margin-top: 36px;
}


/* Advantages */

.advantages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 46px 0;
}


/* Advantage */

.advantage {
    padding-right: 75px;
}

.advantage__icon {
    display: block;
}

.advantage__content {
    padding-left: 18px;
}

.advantage__title {
    margin-bottom: 36px;
    font-weight: bold;
    font-size: 24px;
    line-height: 24px;
}


/* FAQ Item */

.faq-item {
    padding: 24px 0;
    border-top: 1px solid var(--clr-accent);
}

.faq-item:last-child {
    border-bottom: 1px solid var(--clr-accent);
}

.faq-item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    font-size: 24px;
    line-height: 32px;
    text-align: left;
    text-transform: uppercase;
    background: none;
    border: none;
}

.faq-item__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-color: var(--clr-black);
    border-radius: 50%;
    overflow: hidden;
}

.faq-item__icon::before,
.faq-item__icon::after {
    background-color: #ffffff;
}

.faq-item__icon::after {
    transition: transform 300ms ease, opacity 300ms ease;
}

.faq-item__body {
    height: 0;
    overflow: hidden;
    transition: height 300ms ease;
}

.faq-item__content {
    padding-top: 20px;
    opacity: 0;
    transition: opacity 300ms ease;
}

.faq-item__content p:first-child {
    margin-top: 0;
}

.faq-item__content p:last-child {
    margin-bottom: 0;
}


.faq-item--expanded .faq-item__icon::after {
    transform: translateY(100%);
    opacity: 0;
}

.faq-item--expanded .faq-item__content {
    opacity: 1;
}


/* Testimonials */

.testimonials {
    display: grid;
    grid-template-columns: 500px 1fr;
    grid-gap: 80px;
}

.testimonials__nav {
    position: relative;
}

.testimonials__nav::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 136px;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, #F9F9F9 0%, rgba(255, 255, 255, 0) 87.96%);
    pointer-events: none;
}

.testimonials__nav-items {
    height: 432px;
    padding-right: 18px;
    overflow: auto;
}

.testimonials__nav-items::-webkit-scrollbar {
    width: 3px;
}

.testimonials__nav-items::-webkit-scrollbar-track {
    background-color: #D7D7D7;
    box-shadow: inset 0 0 0 1px var(--clr-background);
}

.testimonials__nav-items::-webkit-scrollbar-thumb {
    background-color: var(--clr-accent);
}

.testimonials__content {
    position: relative;
    padding-top: 58px;
}

.testimonials__content .swiper-scrollbar {
    position: relative;
    height: 3px;
    margin: 25px 0;
    background-color: transparent;
}

.testimonials__content .swiper-scrollbar::before {
    content: "";
    position: absolute;
    display: block;
    height: 1px;
    width: 100%;
    top: 1px;
    left: 0;
    background-color: #D7D7D7;
}

.testimonials__content .swiper-scrollbar-drag {
    height: 100%;
    background-color: var(--clr-accent);
    border-radius: unset;
}

.testimonials__content .swiper-pagination {
    position: unset;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}


/* Testimonials Nav Item */

.testimonials-nav-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 18px;
    font-size: 18px;
    line-height: 24px;
    text-align: unset;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: background-color 300ms ease, border-color 300ms ease;
}

.testimonials-nav-item__image {
    flex-shrink: 0;
    margin-right: 18px;
    border-radius: 50%;
}

.testimonials-nav-item__name {
    font-weight: bold;
}


.testimonials-nav-item--active {
    background-color: #f0f0f0;
    border-color: #e7e7e7;
    pointer-events: none;
}


/* Testimonial */

.testimonial {
    position: absolute;
    transform: scale(0.9);
    opacity: 0;
    transition: transform 300ms ease, opacity 300ms ease;
    pointer-events: none;
}

.testimonial__content {
    line-height: 28px;
    text-align: center;
}

.testimonial__content p:first-child {
    margin-top: 0;
}

.testimonial__content p:last-child {
    margin-bottom: 0;
}

.testimonial__author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 64px;
    font-size: 18px;
}

.testimonial__image {
    flex-shrink: 0;
    margin-right: 24px;
    border-radius: 50%;
}

.testimonial__name {
    font-weight: bold;
}


.testimonial--active {
    transform: scale(1);
    opacity: 1;
    pointer-events: initial;
}


/* Contacts */

.contacts {
    display: grid;
    grid-template-columns: 370px 1fr;
    grid-gap: 0 112px;
    align-items: center;
}

.contacts__heading {
    margin-bottom: 18px;
}

.contacts__desc {
    margin-bottom: 24px;
}

.contacts__map {
    width: 100%;
    height: 425px;
    border-radius: 4px;
    box-shadow: 0px 10px 40px -15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.contacts__map .gm-style-iw {
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 17px 30px rgba(0, 0, 0, 0.14);
}

.contacts__map .gm-style-iw > button {
    display: none !important;
}

.contacts__map .gm-style-iw-d {
    overflow: auto !important;
}

.contacts__map .gm-style .gm-style-iw-tc {
    display: none;
}

.contacts__map .gm-style .gm-style-iw-t::after {
    display: none;
}


/* Map Info */

.map-info {
    padding: 30px 36px;
    font-family: 'Gotham Pro', Arial, Helvetica, sans-serif;
    font-size: 16px;
    background-color: #ffffff;
    border-radius: 4px;
}

.map-info > a {
    text-decoration: underline;
}


/* Keyframes */

@keyframes kf_spin {
    from { transform: rotateZ(0); }
    to { transform: rotateZ(360deg); }
}


/* Media Queries */

@media screen and (max-width: 1345px) {
    /* Apparatus */
    
    .apparatus__content {
        text-align: center;
    }


    /* Application */

    .application__schema {
        margin-left: 100px;
    }


    /* Application Schema */
    
    .application-schema {
        flex-direction: row-reverse;
        align-items: center;
    }

    .application-schema__list {
        position: unset;
        margin-left: 30px;
    }

    .application-schema__item {
        position: unset;
        text-align: unset !important;
    }

    .application-schema__item:not(:last-child) {
        margin-bottom: 24px;
    }

    .application-schema__lines {
        display: none;
    }
}

@media screen and (max-width: 1162px) {
    /* Hero */

    .hero__content {
        left: 25px;
    }


    /* Application */

    .application__content {
        left: 25px;
    }
}

@media screen and (max-width: 1024px) {
    /* Apparatus */

    .apparatus {
        flex-direction: column;
    }

    .apparatus__content {
        padding-left: unset;
    }

    .apparatus__image-wrap {
        margin-bottom: unset;
    }


    /* Application */

    .application {
        padding: 96px 25px 0;
    }

    .application__content {
        position: unset;
        margin-bottom: 112px;
    }

    .application__schema {
        margin-left: unset;
    }


    /* Application Schema */

    .application-schema {
        flex-direction: column;
        align-items: unset;
    }

    .application-schema__list {
        margin-bottom: 10px;
        margin-left: unset;
    }

    .application-schema__image {
        left: unset;
    }


    /* Advantages */

    .advantages {
        grid-template-columns: unset;
        grid-gap: 48px;
    }


    /* Advantage */

    .advantage {
        padding-right: unset;
    }


    /* Testimonials */

    .testimonials {
        display: unset;
        grid-template-columns: unset;
        grid-gap: unset;
    }

    .testimonials__nav {
        display: none;
    }

    .testimonials__content {
        padding-top: unset;
    }


    /* Testimonial */

    .testimonial {
        position: unset;
        transform: unset;
        opacity: unset;
        pointer-events: unset;
    }

    .testimonial__author {
        margin-top: 25px;
        font-size: 16px;
    }

    .testimonial__image {
        width: 80px;
        height: 80px;
        margin-right: 20px;
    }
}

@media screen and (max-width: 768px) {
    body {
        padding-top: 66px;
    }


    /* Form */

    .form--contacts .form__footer {
        text-align: center;
    }


    /* Title */

    .title {
        margin-bottom: 48px;
    }


    /* Site Header */

    .site-header {
        position: fixed;
        top: 0;
        background-color: var(--clr-black);
    }

    .site-header__inner {
        height: 66px;
    }


    /* Logo */

    .logo {
        margin-right: auto;
    }

    .logo__image--desktop {
        display: none;
    }

    .logo__image--mobile {
        display: block;
    }


    /* Navigation */

    .navigation__toggle {
        display: block;
    }

    .navigation__menu {
        position: fixed;
        flex-direction: column;
        justify-content: center;
        top: 66px;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 25px;
        font-size: 36px;
        line-height: 1;
        background-color: #0e0d0afa;
        backdrop-filter: blur(16px);
        transform: translateX(-100%);
        z-index: 100;
        transition: transform 300ms ease;
    }

    .navigation__menu .menu-item:not(:last-child) {
        margin-right: unset;
        margin-bottom: 18px;
    }

    .navigation__menu a {
        color: #ffffff;
    }


    .navigation--expanded .navigation__toggle > div:nth-child(1) {
        transform: translateY(6px) rotateZ(45deg);
    }

    .navigation--expanded .navigation__toggle > div:nth-child(2) {
        transform: translateX(100%);
        opacity: 0;
    }

    .navigation--expanded .navigation__toggle > div:nth-child(3) {
        transform: translateY(-6px) rotateZ(-45deg);
    }
    
    .navigation--expanded .navigation__menu {
        transform: translateX(0);
    }


    /* Site Footer */

    .site-footer {
        padding: 30px 0;
    }

    .site-footer__container {
        grid-template-columns: unset;
        grid-gap: 30px;
    }


    /* Footer Logo */

    .footer-logo {
        display: block;
    }

    .footer-logo__desktop {
        display: none;
    }

    .footer-logo__mobile {
        display: inline-block;
    }

    .footer-logo__socials {
        margin-top: 22px;
        padding-top: 24px;
    }


    /* Sections */

    #content {
        display: flex;
        flex-direction: column;
    }

    #hero {
        order: 1;
    }

    #apparatus {
        order: 3;
    }

    #application {
        order: 2;
    }

    #cta {
        order: 4;
    }

    #advantages {
        order: 5;
        padding: 96px 0 68px;
    }

    #faq {
        display: none;
        order: 6;
    }

    #testimonials {
        order: 7;
        padding: 0 0 96px;
    }

    #contacts {
        order: 8;
        padding-bottom: 96px;
    }


    /* Hero */

    .hero {
        flex-direction: column-reverse;
    }

    .hero__content {
        position: unset;
        left: unset;
        width: 100%;
        padding: 80px 25px 120px;
    }

    .hero__heading {
        margin-bottom: 20px;
    }

    .hero__overtitle {
        margin-bottom: 20px;
        font-size: 20px;
    }

    .hero__desc {
        max-width: 230px;
    }

    .hero__image {
        display: none;
    }


    /* Apparatus */

    .apparatus {
        padding-top: 96px;
        padding-bottom: 380px;
    }

    .apparatus__image-wrap {
        position: absolute;
        max-width: 140px;
        top: -1330px;
        right: 0;
    }

    .apparatus__image-wrap::before {
        display: none;
    }

    .apparatus__image {
        max-width: 100%;
    }

    .apparatus__heading,
    .apparatus__desc {
        margin-bottom: 42px;
    }
    
    .apparatus__badge {
        bottom: 128px;
        left: unset;
    }


    /* Application */

    .application {
        padding-top: 40px;
        padding-bottom: 96px;
    }

    .application__action {
        justify-content: center;
        width: 100%;
    }


    /* Application Schema */

    .application-schema__image {
        display: none;
        max-width: unset;
    }


    /* CTA */

    .cta {
        padding: 101px 0;
    }

    .cta__heading {
        font-size: 48px;
        line-height: 46px;
    }


    /* Contacts */

    .contacts {
        display: flex;
        flex-direction: column-reverse;
        grid-template-columns: unset;
    }

    .contacts__heading {
        margin-bottom: 24px;
    }

    .contacts__desc {
        display: none;
    }

    .contacts__map {
        margin-bottom: 64px;
    }
}