:root {
    --black: #2E2E2E;
    --white: #FFFFFF;
    --font-primary: "Inter", sans-serif;
    --trans: all .2s ease;
    --orange: #EA580C;
    --gray: #6D6D6D;
    --light-grey: #F5F7FA;
    --red: #FF0000;
    --width-container: 1170px;
    --header-height: 81px;
    --block-paddding: 120px;
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    margin-top: var(--header-height) !important;
}

body {
    font-family: var(--font-primary);
    color: var(--black);
    background-color: var(--white);
    font-weight: 400;
    overflow-x: hidden;
}

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

p {
    font-weight: 400;
    line-height: 150%;
    color: var(--black);
}

img {
    height: auto;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

details>summary {
    list-style: none;
}

details>summary::marker,
details>summary::-webkit-details-marker {
    display: none;
}

input[type=number] {
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

.container {
    width: var(--width-container);
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 16px 24px 15px;
    font-family: var(--font-primary);
    border: 1px solid transparent;
    border-radius: 32px;
    background: var(--orange);
    color: var(--black);
    font-size: 15px;
    font-weight: 500;
    line-height: 100%;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--trans);
    text-align: center;
    outline: none;
}

.btn:hover {
    background: #F96416;
}

.btn-transparent-orange {
    background: transparent;
    color: var(--orange);
    border: 1px solid var(--orange);
}

.btn-transparent-orange:hover {
    color: #9A4112;
    border: 1px solid #9A4112;
    background: transparent;
}

.btn-transparent-black {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}

.btn-transparent-black:hover {
    color: #9A4112;
    border: 1px solid #9A4112;
    background: transparent;
}

.block-padding {
    padding: var(--block-paddding) 0;
}

.block-padding-top {
    padding-top: var(--block-paddding);
}

.title {
    font-size: 56px;
    font-weight: 500;
    line-height: 130%;
}

.sbutitle {
    display: inline-block;
    color: var(--gray);
    font-size: 15px;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
    padding: 12px 16px;
    background-color: #CEF9F3;
    border-radius: 32px;
    margin-bottom: 24px;
}

.text {
    font-size: 15px;
}

.label {
    color: var(--gray);
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 4px;
}

.inp-item {
    margin-bottom: 16px;
    position: relative;
}

.inp {
    padding: 11px 15px;
    color: var(--black);
    border-radius: 8px;
    border: 1px solid #D1D1D1;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    font-family: var(--font-primary);
    background-color: #fff;
    width: 100%;
    outline: none;
}

.inp::placeholder {
    color: var(--gray);
}

.inp:focus {
    border: 1px solid var(--gray);
}

.inp.error-input {
    border: 1px solid var(--red);
}

.error-label {
    position: absolute;
    bottom: -19px;
    left: 0;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 500;
    line-height: 150%;
    color: var(--red) !important;
}


/* Header */
.header {
    padding: 16px 0;
    background-color: var(--white);
    border-bottom: 1px solid #CEF9F3;
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99;
}

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

.logo {
    line-height: 0;
}

.header-menu {
    display: flex;
    align-items: center;
    list-style-type: none;
}

.header-menu li {
    margin-right: 32px;
}

.header-menu li:last-child {
    margin-right: 0;
}

.header-menu li a {
    text-decoration: none;
    color: var(--black);
    transition: var(--trans);
    font-size: 15px;
    font-weight: 500;
    line-height: 150%;
    text-transform: uppercase;
}

.header-menu li a:hover {
    color: var(--orange);
}

.header-buttons {
    display: flex;
}

.header-buttons .btn:nth-child(2) {
    margin-left: 16px;
}

.header-mobile,
.mobile-menu {
    display: none;
}


/* Head */
.head {
    padding: 90px 0 248px;
    background-color: var(--light-grey);
    overflow: hidden;
}

.head .container {
    position: relative;
}

.head-map-background {
    position: absolute;
    top: -125px;
    right: -285px;
    max-width: 1000px;
}

.head-content {
    position: relative;
    z-index: 2;
    max-width: 687px;
}

.head-title {
    font-size: 72px;
    font-weight: 500;
    line-height: 120%;
}

.head-text {
    margin: 40px 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 120%;
    max-width: 444px;
}

.head-buttons {
    display: flex;
    align-items: flex-start;
}

.head-buttons .btn:nth-child(2) {
    margin-left: 24px;
}


/* About */
.about-items-grid {
    margin-top: 48px;
}

.about-items-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.about-items-grid__item {
    width: calc(33.33% - (24px * 2) / 3);
    padding: 24px 32px 40px;
    border-radius: 24px;
    background: var(--light-grey);
}

.about-items-grid__item,
.about-items-grid-image {
    margin-bottom: 24px;
}

.about-items-grid-image {
    width: calc(66.66% - 24px / 3);
    line-height: 0;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.about-items-grid-image img {
    border-radius: 24px;
    position: absolute;
    bottom: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}

.about-items__icon {
    line-height: 0;
}

.about-items-grid .about-items__icon {
    text-align: center;
}

.about-items__icon img {
    max-width: 80px;
    min-width: 80px;
}

.about-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 140%;
}

.about-items-grid__item .about-title {
    margin: 24px 0 16px;
}

.about-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    position: relative;
}

.about-text {
    padding-left: 36px;
}

.about-text::before {
    content: '';
    width: 20px;
    height: 24px;
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 20 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.875 12.5H18.125M18.125 12.5L12.1667 6M18.125 12.5L12.1667 19" stroke="%23148C89" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.about-box {
    margin-bottom: 48px;
    margin-top: 48px;
    display: flex;
    justify-content: space-between;
}

.about-items {
    width: 565px;
}

.about-items.fill {
    background-color: var(--light-grey);
    border-radius: 24px;
    padding: 24px 0;
}

.about-items__item {
    display: flex;
    align-items: center;
    padding: 31px;
    border-radius: 24px;
}

.about-items.border .about-items__item {
    border: 1px solid #148C89;
    margin-bottom: 24px;
}

.about-items.border .about-items__item:last-child {
    margin-bottom: 0;
}

.about-items.fill .about-items__item {
    padding: 24px 32px;
}

.about-image {
    width: 564px;
    height: inherit;
    line-height: 0;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.about-image img {
    border-radius: 24px;
    position: absolute;
    bottom: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}

.about-items__content {
    margin-left: 24px;
}

.about-block-middle {
    border-top: 1px solid #9EF1E6;
    border-bottom: 1px solid #9EF1E6;
}

.about-items .about-title {
    margin-bottom: 8px;
}


/* Why */
.why {
    background-color: var(--light-grey);
}

.why-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.why-content .title,
.why-text {
    max-width: 565px;
}

.why-text {
    font-weight: 500;
}

.why-items {
    display: flex;
    justify-content: space-between;
    max-width: 1070px;
    margin: 96px 0 72px;
}

.why-item {
    position: relative;
    font-size: 24px;
    font-weight: 500;
    line-height: 140%;
    padding-left: 40px;
}

.why-item::before {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.36702 8.40521L7.59721 12L1.36702 15.5947C1.01594 15.7973 0.895853 16.2455 1.09844 16.5966L2.56603 19.1372C2.76862 19.4878 3.21733 19.6084 3.56842 19.4058L9.7986 15.811V23.0001C9.7986 23.4052 10.1272 23.7334 10.5324 23.7334H13.4676C13.8728 23.7334 14.2014 23.4052 14.2014 23.0001V15.8106L20.4316 19.4053C20.7827 19.6079 21.2314 19.4874 21.434 19.1367L22.9016 16.5966C23.1041 16.246 22.9841 15.7973 22.633 15.5947L16.4028 12L22.633 8.40521C22.9841 8.20263 23.1041 7.75391 22.9016 7.40329L21.434 4.86272C21.2314 4.51209 20.7827 4.39201 20.4316 4.59414L14.2014 8.18888V0.999849C14.2014 0.594679 13.8728 0.26651 13.4676 0.26651H10.5324C10.1272 0.26651 9.7986 0.594679 9.7986 0.999849V8.18933L3.56842 4.59459C3.21733 4.39201 2.76862 4.51209 2.56603 4.86318L1.09844 7.40375C0.895853 7.75437 1.01594 8.20263 1.36702 8.40521Z" fill="%23148C89"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 5px;
    left: 0;
}


/* Contact */
.contact {
    overflow: hidden;
}

.contact-box {
    display: flex;
    justify-content: space-between;
}

.contact-content,
.contact-form {
    width: 565px;
}

.contact-content p {
    margin-top: 16px;
    font-weight: 500;
}

.contact-form textarea {
    resize: none;
    height: 211px;
}

.agreement {
    margin: 40px 0;
}

.checkbox {
    position: relative;
}

.checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkbox label {
    position: relative;
    display: block;
    padding-left: 36px;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    cursor: pointer;
    border: 1px solid transparent;
}

.checkbox label::before {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="23" height="23" rx="1.5" stroke="%23D1D1D1"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0px;
    left: 0;
}

.checkbox input:checked+label::before {
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="23" height="23" rx="1.5" stroke="%232E2E2E"/><path d="M7.07153 11.1429L10.9287 15L16.9287 9" stroke="%232E2E2E" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.checkbox input.error-input+label {
    border: 1px solid var(--red);
}

/* Footer */
.footer {
    padding: 100px 0;
    background-color: #148C89;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
}

.footer-main {
    display: flex;
    align-items: flex-start;
}

.footer-menu {
    list-style-type: none;
    margin-right: 120px;
}

.footer-menu li {
    margin-bottom: 16px;
}

.footer-menu li:last-child {
    margin-bottom: 0;
}

.footer-menu li a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
    text-transform: uppercase;
    color: var(--black);
    transition: var(--trans);
}

.footer-menu li a:hover {
    color: var(--white);
}

.footer-links {
    margin-top: 56px;
    max-width: 719px;
    margin-left: auto;
}

.footer-links__item {
    line-height: 0;
    transition: var(--trans);
    border: 1px solid transparent;
    border-radius: 7px;
    text-decoration: none;
}

.footer-links__item:hover {
    border: 1px solid var(--white);
}

.footer-links__item:nth-child(2) {
    margin-left: 16px;
}

.footer-links__title {
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links-wrapper {
    display: flex;
}

.footer-copyright {
    color: var(--black);
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    margin-top: 64px;
}

.footer .btn-transparent-black:hover {
    color: var(--white);
    border: 1px solid var(--white);
}



.popup {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 30%);
    display: flex;
    justify-content: center;
    overflow-y: scroll;
    transition: var(--trans);
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 20px 0;
}

.popup::-webkit-scrollbar {
    display: none;
}

.popup.active {
    visibility: visible !important;
    opacity: 1;
}

.popup-wrapper {
    margin-top: auto;
    margin-bottom: auto;
    background: var(--white);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.popup-thank .popup-wrapper {
    width: 400px;
}

.popup-close {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 5px;
    cursor: pointer;
    z-index: 2;
}

.popup-close__icon {
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 19L19 1" stroke="%23FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M1 1L19 19" stroke="%23FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.popup.active .popup-close__icon {
    transition: all 0.3s ease;
}

.popup-close:hover .popup-close__icon {
    transform: rotate(-90deg);
}

.popup-thank-content {
    padding: 40px 32px;
    text-align: center;
}

.popup-thank__title {
    font-size: 40px;
    font-weight: 500;
    line-height: 150%;
}

.popup-thank__text {
    font-size: 24px;
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 40px;
}

.popup-top-background {
    height: 200px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.popup-top-background img {
    position: absolute;
    bottom: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}



#loader {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loader.active {
    visibility: visible;
}

.loading {
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--orange);
    --_m:
        conic-gradient(#0000 10%, #000),
        linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
}

@keyframes l3 {
    to {
        transform: rotate(1turn)
    }
}



.page-wrapper {
    padding: 80px 0px;
    background-color: var(--white);
}

.title-404 {
    color: var(--black);
    text-align: center;
}

.page-content {
    font-weight: 300;
    font-size: 18px;
    line-height: 32px;
    color: var(--black);
    word-wrap: break-word;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    margin: 20px 0 10px;
    font-weight: 600;
}

.page-content p,
.page-content li {
    margin: 10px 0;
}

.page-content hr {
    margin: 20px 0;
}

.page-content ul,
.page-content ol {
    padding-left: 20px;
}

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

.page-content a {
    color: var(--orange);
}

.page-content strong,
.page-content b {
    font-weight: 600;
}

.page-title {
    font-weight: 600;
    margin-bottom: 48px !important;
}


/* Responsive */
@media screen and (max-width: 1199px) {
    :root {
        --width-container: 960px;
    }

    .footer-menu {
        margin-right: 100px;
    }


    /* Head */
    .head-map-background {
        max-width: 800px;
    }


    /* About */
    .about-items-grid__item {
        width: calc(33.33% - (16px * 2) / 3);
        padding: 24px 24px 40px;
    }

    .about-items-grid__item,
    .about-items-grid-image {
        margin-bottom: 16px;
    }

    .about-items-grid-image {
        width: calc(66.66% - 16px / 3);
    }

    .about-image {
        width: 470px;
    }

    .about-items {
        width: 465px;
    }


    /* Why */
    .why-content .title,
    .why-text {
        width: 470px;
    }

    /* Contact */
    .contact-content,
    .contact-form {
        width: 470px;
    }

    /* Footer */
    .footer-links {
        max-width: 679px;
    }
}

@media screen and (max-width: 1023px) {
    :root {
        --width-container: 720px;
        --header-height: 80px;
        --block-paddding: 100px;
    }

    .title {
        font-size: 46px;
    }

    .header {
        padding: 23.5px 0;
    }

    .header-desk-elem {
        display: none;
    }

    .mobile-menu {
        display: block;
        position: relative;
        width: 26px;
        height: 20px;
        cursor: pointer;
    }

    .mobile-menu span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--black);
        border-radius: 1px;
        transition: transform 0.3s ease, opacity 0.3s ease;
        top: 50%;
    }

    .mobile-menu span:nth-child(1) {
        transform: translateY(-8px);
    }

    .mobile-menu span:nth-child(2) {
        transform: translateY(0%);
        transition: none;
    }

    .mobile-menu span:nth-child(3) {
        transform: translateY(8px);
    }

    .header-wrapper.active .mobile-menu span:nth-child(1) {
        transform: rotate(45deg);
    }

    .header-wrapper.active .mobile-menu span:nth-child(2) {
        opacity: 0;
    }

    .header-wrapper.active .mobile-menu span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .header-wrapper.active .mobile-menu span:nth-child(1) {
        transform: rotate(45deg);
        top: 50%;
    }

    .header-wrapper.active .mobile-menu span:nth-child(2) {
        opacity: 0;
    }

    .header-wrapper.active .mobile-menu span:nth-child(3) {
        transform: rotate(-45deg);
        top: 50%;
    }

    .header-menu {
        padding-left: 16px;
    }

    .header-mobile {
        display: flex;
        z-index: 99;
        padding: 53px 0;
        position: fixed;
        top: var(--header-height);
        right: -1000px;
        width: 100%;
        height: 100%;
        background: var(--white);
        transition: all 0.4s ease;
        flex-direction: column;
        justify-content: flex-start;
        overflow-y: scroll;
    }

    .header-wrapper.active .header-mobile {
        right: 0;
    }

    .header-menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-menu li {
        margin-right: 0;
        margin-bottom: 24px;
    }

    .header-mobile .btn {
        margin-top: 40px;
    }

    .footer-wrapper {
        flex-direction: column;
    }

    .footer-main {
        margin-top: 36px;
        justify-content: space-between;
    }

    .footer {
        padding: 80px 0;
    }

    .footer-menu {
        margin-right: 48px;
    }

    .footer-links {
        max-width: 100%;
        margin-top: 40px;
    }

    /* Head */
    .head {
        padding: 355px 0 100px;
    }

    .head-map-background {
        top: -430px;
        right: -35px;
        max-width: 750px;
    }

    .head-title {
        font-size: 56px;
    }

    .head-text {
        max-width: 100%;
        margin: 32px 0;
    }


    /* About */
    .about-items-grid-image {
        width: 100%;
        height: 360px;
    }

    .about-items-grid__item {
        width: calc(50% - 12px);
        padding: 24px;
    }

    .about-items-grid__item {
        margin-bottom: 24px;
    }

    .about-title {
        font-size: 20px;
    }

    .about-items__icon img {
        max-width: 64px;
        min-width: 64px;
    }

    .about-items-grid__item .about-title {
        margin: 24px 12px;
    }

    .about-box {
        flex-direction: column;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .about-items {
        width: 100%;
    }

    .about-items__item {
        padding: 23px;
    }

    .about-image {
        width: 100%;
        height: 360px;
        margin-top: 24px;
    }

    .about-image img {
        top: -250px;
    }

    .about-items-grid {
        margin-top: 40px;
    }

    /* Why */
    .why-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .why-content .title,
    .why-text {
        width: 100%;
    }

    .why-content .title {
        max-width: 655px;
        margin-bottom: 40px;
    }

    .why-items {
        margin: 64px 0;
    }

    .why-item {
        font-size: 20px;
    }

    .why-item::before {
        top: 3px;
    }

    /* Contact */
    .contact-box {
        flex-direction: column;
    }

    .contact-content,
    .contact-form {
        width: 100%;
    }

    .contact-form {
        margin-top: 40px;
    }

    .contact-content {
        max-width: 520px;
    }
}

@media screen and (max-width: 767px) {
    :root {
        --width-container: 540px;
    }

    .title {
        font-size: 40px;
    }

    .footer-main {
        flex-wrap: wrap;
    }

    .footer-menu {
        margin-bottom: 40px;
    }

    /* Head */
    .head-title {
        font-size: 48px;
    }

    .head-map-background {
        top: -480px;
        right: -20px;
        max-width: 680px;
    }


    /* About */
    .about-items-grid__item {
        width: calc(50% - 8px);
        padding: 20px 12px;
    }

    .about-items-grid-image {
        height: 290px;
    }

    .about-image img {
        top: -150px;
    }

    /* Why */
    .why-items {
        flex-direction: column;
    }

    .why-items {
        margin: 40px 0;
    }

    .why-item {
        margin-bottom: 40px;
    }

    .why-item:last-child {
        margin-bottom: 0;
    }

}

@media screen and (max-width: 574px) {
    :root {
        --width-container: 380px;
        --block-paddding: 64px;
    }

    .header-buttons {
        flex-direction: column;
    }

    .header-buttons .btn:nth-child(2) {
        margin-left: 0;
        margin-top: 24px;
    }

    .btn {
        width: 100%;
    }

    .footer-main {
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .footer-menu {
        margin-right: 0px;
        margin-left: 16px;
    }

    .footer-menu:first-child {
        margin-left: 0;
    }

    .footer {
        padding: 64px 0;
    }

    .footer-copyright {
        margin-top: 48px;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links-wrapper {
        justify-content: center;
    }

    .sbutitle {
        font-size: 14px;
    }

    .title {
        font-size: 32px;
    }

    /* Head */
    .head-title {
        font-size: 36px;
    }

    .head {
        padding: 250px 0 100px;
    }

    .head-map-background {
        top: -356px;
        right: -20px;
        max-width: 510px;
    }

    .head-buttons {
        flex-direction: column-reverse;
    }

    .head-buttons .btn:nth-child(2) {
        margin-left: 0;
        margin-bottom: 24px;
    }

    .head-text {
        font-size: 18px;
    }


    /* About */
    .about-items-grid__item {
        width: 100%;
    }

    .about-items-grid__item {
        padding: 20px;
    }

    .about-items-grid {
        margin-top: 32px;
    }

    .about-image {
        height: 320px;
    }

    .about-image img {
        top: -65px;
    }

    .about-items__item,
    .about-items.fill .about-items__item {
        padding: 20px;
    }

    .about-items.fill {
        padding: 16px 0;
    }

    /* Why */
    .why-content .title {
        margin-bottom: 24px;
    }

    /* Popup */
    .popup-thank .popup-wrapper {
        width: 94%;
        max-width: 400px;
    }
}

@media screen and (max-width: 410px) {
    :root {
        --width-container: calc(100% - 30px);
    }

    .footer-menu {
        margin-left: 0;
    }

    .footer-main {
        flex-direction: column;
    }

    .sbutitle {
        padding: 12px;
        font-size: 13px;
    }

    .title {
        font-size: 28px;
    }

    /* Head */
    .head-text {
        margin: 16px 0 24px;
    }

    .head {
        padding: 200px 0 60px;
    }

    .head-map-background {
        top: -300px;
        right: -15px;
        max-width: 430px;
    }


    /* About */
    .about-items-grid-image {
        height: 220px;
    }

    /* Popup */
    .popup-thank-content {
        padding: 32px 24px;
    }
}

@media screen and (max-width: 360px) {
    .title {
        font-size: 24px;
    }

    /* Heaad */
    .head-title {
        font-size: 30px;
    }

    .head-map-background {
        display: none;
    }

    .head {
        padding: 75px 0 60px;
    }


    /* About */
    .about-items__item {
        flex-direction: column;
    }

    .about-items-grid__item .about-title {
        margin: 16px 12px;
    }

    .about-items__content {
        margin-left: 0;
        margin-top: 16px;
    }

    .about-image img {
        top: 0;
    }

    /* Why */
    .why-item {
        margin-bottom: 28px;
    }

    /* Contact */
    .checkbox label {
        font-size: 14px;
    }

    .contact-form textarea {
        height: 170px;
    }

    /* Popup */
    .popup-top-background {
        height: 170px;
    }

    .popup-thank__text {
        font-size: 20px;
    }

    .popup-thank__title {
        font-size: 36px;
    }
}