:root {
    --green: #008A47;
    --light_green: #03D66F;
    --rgba_green: rgba(0, 242, 125, 0.3);
    --red: #9E0726;
    --orange: #E78625;
    --orange1: #FF8001;
    --dark_orange: #b36a19;
    --light_orange: #FFB66C;
    --rgba_orange: rgba(239, 120, 0, 0.2);
    --black: #000000;
    --black2: #202021;
    --white: #ffffff;
    --gray: #706F6F;
    --light_gray: #ACACAC;
    --light_gray2: #F1F0F0;
}

main {
    max-width: 1920px;
    margin: 0 auto;
}

html, body {
    font-size: 20px;
    margin: 0;
    padding: 0;
    font-weight: 500;
    overflow-x: hidden;
    background-color: #ffffff;
    color-scheme: light;
}

* {
    box-sizing: border-box;
    font-family: "Gilroy", sans-serif;
}

img {
    max-width: 100%;
}

svg {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    transition: all.4s ease;
    text-decoration: none;
    display: inline-block;
}

a:hover {
    color: var(--green);
}

.success_trigger {
    display: none;
}

:active,
:focus {
    outline: none;
}

svg [fill],
svg [stroke] {
    transition: all.4s ease;
}

*::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 7px;
}

*::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: var(--black);
}

*::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background: var(--orange);
}

.header-callback-icon {
    display: none;
}

.custom_button {
    border-radius: 10px;
    background-color: var(--orange);
    color: var(--black);
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    transition: all.4s ease;
    cursor: pointer;
    border: none;
    padding: 15px 30px;
    text-transform: uppercase;
    box-shadow: 0 0 20px -4px var(--light_orange);
}

.custom_button:hover {
    background-color: var(--light_orange);
    color: var(--black);
}

.header-callback {
    font-size: 14px;
    padding: 12px 30px;
    box-shadow: none;
}

.presentation-submit {
    width: 100%;
}

header {
    padding: 8px 0;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    transition: all.4s ease;
}

header.out {
    transform: translate(0, -100%);
}

.header-phone-wrap,
.header-phone-wrap.mobile {
    display: none;
}

.header-contact-block {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-menu-wrap {
    margin-left: 180px;
}

.header-phone {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--white);
}

.header-phone:hover {
    color: var(--orange);
}

.header-callback-wrap {
    margin-left: 55px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.header-callback-wrap .header-callback:last-child {
    margin-left: 20px;

}

.header-callback-wrap-item {
    width: 100%;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

.header-callback-wrap-item .header-callback:last-child {
    margin-left: 0;
}

.header-callback-wrap-item:last-child {
    margin-bottom: 0;
}

.header-callback-wrap-item {
    margin-bottom: 15px;
}

.header-menu-open {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px 0;
    width: 45px;
    cursor: pointer;
    justify-content: flex-end;
}

.header-menu-open-item {
    display: block;
    height: 3px;
    background: var(--white);
    margin-bottom: 7px;
    border-radius: 5px;
    flex: 0 0 100%;
    transition: max-width.4s ease, background-color.4s ease;
}

.header-menu-open-item:last-child {
    margin-bottom: 0;
    max-width: 69%;
}


.header-menu-open:hover .header-menu-open-item,
.header-menu-open.open_menu .header-menu-open-item {
    background: var(--orange);
}

.header-menu-open:hover .header-menu-open-item:last-child,
.header-menu-open.open_menu .header-menu-open-item:last-child {
    max-width: 100%;
}

.header-menu-close {
    position: absolute;
    left: 130px;
    top: 65px;
    cursor: pointer;
}

.header-menu-close:hover svg [fill] {
    fill: var(--orange);
}

.header-menu-close:hover svg [stroke] {
    stroke: var(--orange);
}

.header-menu-list {
    min-width: 576px;
}

.header-menu {
    position: fixed;
    background: var(--black2);
    height: calc(100vh - 100px);
    right: 0;
    transform: translate(100%);
    box-shadow: 0 0 50px -2px rgba(0,0,0,.4);
    top: 100px;
    padding: 150px 160px 100px 130px;
    transition: all.4s ease;
    overflow-y: auto;
}

.menu-bg {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 60px;
    max-height: calc(100% - 140px);
}

.header-menu.open {
    transform: translate(0);
}

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

.header-menu-item {
    margin-bottom: 20px;
}

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

.header-menu-link {
    color: var(--white);
    font-weight: 600;
    font-size: 24px;
}


.logo-block {
    display: flex;
    align-items: center;
}

.logo-block-divider {
    width: 2px;
    height: 53px;
    background-color: var(--green);
    margin: 0 15px;

    display: none;
}

.logo-block-slogan {
    display: flex;
    align-items: center;
    font-weight: 400;
    line-height: 34px;
    max-width: 200px;
    color: var(--white);
    font-size: 16px;

    display: none;
}

.first_screen {
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.first_screen_image {
    position: relative;
}

.first_screen_image video {
    width: 100%;
    display: block;
}

.first_screen_image:after {
    content: '';
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0,0,0,.5);
}

.first_screen img {
    display: block;
}

.first_screen-content {
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 4;
    top: 50%;
    transform: translate(0, -50%);
}

.first_screen-title {
    font-size: 6.5vw;
    line-height: 6.5vw;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 15px;
}

.first_screen-subtitle {
    font-size: 2.5vw;
    line-height: 3.5vw;
    font-weight: 900;
    color: var(--white);
}

.first_screen-subtitle span {
    color: var(--orange);
    display: block;
}


.presentation-form-wrapper {
    padding-right: 55px;
    display: flex;
    justify-content: flex-end;
}

.presentation-form {
    flex: 0 0 100%;
    max-width: 450px;
    padding: 50px 40px;
    border-radius: 5px;
    background-color: rgba(255,255,255,.5);
    backdrop-filter: blur(10px);
}

.presentation-form-title {
    font-size: 1.5vw;
    font-weight: 800;
    margin-bottom: 35px;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.5vw;
}

.form-row {
    display: flex;
    align-items: center;
    width: 100%;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-group:last-child {
    margin-top: 45px;
    margin-bottom: 0;
}

.form-label {
    position: absolute;
    left: 20px;
    font-size: 16px;
    color: var(--light_gray);
    top: 15px;
    transition: all.4s ease;
    opacity: 1;
    visibility: visible;
}

.form-group.active .form-label {
    opacity: 0;
    visibility: hidden;
    left: -100px;
}

.form-group.error .label-checkbox,
.form-group.error .form-control,
.form-group.error .form-label {
    color: var(--red);
    border-color: var(--red);
}

.form-control {
    height: 50px;
    font-size: 16px;
    font-weight: 400;
    padding-left: 20px;
    transition: all.4s ease;
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--light_gray);
    background-color: var(--white);
}

.form-group.active .form-control {
    border-color: var(--orange);
}

.delivery {
    position: relative;
    z-index: 5;
    margin-bottom: 100px;
}

.delivery-wrap {
    position: relative;
    max-width: 1280px;
    margin: 0 auto 0;
    padding: 55px 30px 60px;
    background: linear-gradient(180deg, var(--green) 0%, var(--light_green) 100%);
    border-radius: 5px;
}

.label-checkbox {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    margin-left: 10px;
    transition: all.3s ease;
    cursor: pointer;
}

.input-checkbox {
    position: relative;
    top: 2px;
}

.input-checkbox:checked + .label-checkbox,
.label-checkbox:hover {
    color: var(--orange);
}

.form-group-checkbox {
    display: flex;
}

.delivery-title {
    margin-bottom: 55px;
    font-size: 36px;
    line-height: 50px;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.delivery-title span {
    /* background: rgba(255,255,255,.8); */
    /* box-shadow: 0 0 20px -2px rgba(255, 255, 255, .5); */
    border-radius: 5px;
    padding: 10px 10px 10px;
    max-width: 170px;
    position: relative;
    top: 31px;
    display: inline-block;
}

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

.delivery-item {
    flex: 0 0 calc(100% / 3);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 50px;
    border-right: 1px solid var(--white);
}

.delivery-item:last-child {
    border-right: none;
}

.delivery-item span {
    color: var(--white);
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.delivery-item .icon {
    margin-right: 24px;
    min-width: max-content;
}


.title {
    font-weight: 700;
    font-size: 48px;
    line-height: 50px;
    text-transform: uppercase;
    text-align: center;
    backdrop-filter: blur(5px);
    width: fit-content;
    margin: 0 auto 100px;
    border-radius: 5px;
    padding: 0 10px;
}

.title.light {
    color: var(--white);
}

.format-top {
    display: flex;
    margin-bottom: 50px;
    justify-content: center;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--light_gray);
}

.format-top-item {
    flex: 0 0 calc(100% / 2 - 125px);
    margin-right: 100px;
    display: flex;
    align-items: center;
    background: var(--white);
    transition: all.4s ease;
    box-shadow: 0px 0px 50px rgba(151, 151, 151, 0.15);
    border-radius: 10px;
}

.format-top-item-image {
    border-radius: 10px 0 0 10px;
    max-width: 255px;
    min-width: 255px;
    min-height: 270px;
    background: var(--orange);
    position: relative;
}

.format-top-item-image img {
    transform: scale(1.25) translate(0, -50%);
    position: absolute;
    transition: all.4s ease;
    transform-origin: top;
    left: -40px;
    top: 50%;
}

.format-top-item:hover {
    box-shadow: 0px 0px 50px rgba(151, 151, 151, 0.45);
}

.format-top-item:hover .format-top-item-image img {
    transform: scale(1) translate(0, -50%);
    left: 0;
}

.format-top-item:last-child {
    margin-right: 0;
}

.format-top-item-caption {
    flex: 1 0 calc(100% - 255px);
    padding: 15px 45px;
    text-align: center;
}

.format-top-item-caption hr {
    margin: 35px 0;
}

.format-top-item-caption-text,
.format-top-item-caption-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 15px;
}

.format-top-item-caption-text {
    color: var(--green);
    display: flex;
    align-items: center;
    margin-bottom: 0;
    justify-content: center;
}

.format-top-item-caption-text.orange {
    color: var(--orange);
}

.format-top-item-caption-text span {
    margin-right: 10px;
}

.format-table-row-block {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.format-table-title {
    flex: 0 0 160px;
    font-size: 24px;
    font-weight: 600;
    min-width: 160px;
}

.format-table-title.green {
    color: var(--green);
}

.format-table-col {
    text-align: center;
    margin-right: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    height: 50px;
    font-size: 22px;
    font-weight: 600;
}

.format-table-col.yellow {
    background: linear-gradient(90deg, var(--orange1) 0%, var(--rgba_orange) 111.97%);
}

.format-table-col.green {
    background: linear-gradient(90deg, var(--green) 0%, var(--rgba_green) 111.97%);
}

.format-table-col span {
    margin: 0 7px;
}

.format-table-col div {
    display: none;
    margin-right: 10px;
}

.format-table-col:nth-child(2) {
    flex: 0 0 calc(25% - 35px);
}

.format-table-col:nth-child(3) {
    flex: 0 0 calc(28% - 35px);
}

.format-table-col:nth-child(4) {
    margin-right: 0;
    flex: 0 0 calc(47% - 160px);
}

.format-table-row-block.title-block {
    margin-bottom: 35px;
}

.format-table-row-block.title-block .format-table-col {
    font-size: 36px;
    font-weight: 900;
}

.format {
    margin-bottom: 120px;
}

.format-text {
    font-size: 20px;
    text-align: center;
    margin-top: 25px;
    font-weight: 600;

}

.format-buttons {
    margin-top: 35px;
    display: flex;
    display: none;
    justify-content: center;
}





























.map_block {
    background: url('../images/map_block_bg.jpg') center center/cover no-repeat;
    padding: 90px 0;
}

.map_block-image {
    text-align: right;
}

.map_block-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    border-bottom: 1px solid var(--white);
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
}

.map_block-item:last-child {
    border-bottom: none;
}

.map_block-item-title {
    color: var(--red);
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-bottom: none;
}

.map_block-col {
    flex: 0 0 35%;
}

.map_block-col:last-child {
    text-align: right;
    flex: 0 0 30%;
}

.map_block-title {
    margin-bottom: 120px;
}

.owner-avatar-block {
    padding-top: 60px;
}

.owner-avatar-block img {
    position: relative;
    border-radius: 20px;
    z-index: 2;
}

.owner-avatar-block svg {
    position: relative;
    z-index: 1;
    margin-left: -57px;
    margin-top: -200px;
}

.owner {
    overflow-x: hidden;
    padding: 110px 0 120px;
}

.owner-text-block {
    padding: 100px 60px;
    background: var(--light_gray2);
    position: relative;
    border-radius: 30px;
}

.owner-text {
    position: relative;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    z-index: 1;
}

.owner-text-image {
    display: none;
    float: left;
    margin-right: 15px;
    max-width: 40%;
}

.owner-text span {
    color: var(--orange);
}

.owner-text-block:before {
    content: '';
    z-index: 0;
    position: absolute;
    top: 0;
    left: 50px;
    width: 100vw;
    background: var(--light_gray2);
    height: 100%;
}

.owner-right-bubbles {
    z-index: 0;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translate(0, -50%);
    max-height: calc(100% - 100px);
}

.steps_map {
    background: url('../images/steps-middle.png') center left no-repeat, url('../images/steps_right.png') top right no-repeat;
    overflow-x: hidden;
    padding: 75px 0 100px;
}

.steps_map-item {
    display: flex;
    max-width: 1152px;
    margin: 0 auto 10px;
}

.steps_map-item-wrap {
    width: calc(50% - 40px);
    background: rgba(255,255,255,.5);
    backdrop-filter: blur(5px);
    box-shadow: 0px 0px 50px rgba(151, 151, 151, 0.15);
    height: 120px;
    align-items: center;
    border-radius: 30px;
    position: relative;
    padding: 20px 130px 20px 30px;
    text-align: right;
    display: flex;
    font-size: 20px;
    line-height: 30px;
    max-width: 576px;
}

.steps_map-item-number {
    position: absolute;
    right: -30px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps_map-item-number svg {
    flex: 0 0 auto;
}

.steps_map-item-number span {
    font-weight: 800;
    font-size: 72px;
    line-height: 70px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
}

.steps_map-item:nth-child(2n) {
    justify-content: flex-end;
}

.steps_map-item:nth-child(2n) .steps_map-item-wrap {
    text-align: left;
    padding: 20px 30px 20px 130px;
}

.steps_map-item:nth-child(2n) .steps_map-item-number {
    right: unset;
    left: -30px;
}


.steps_map-item-icon {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    margin: 0 16px;
}

.steps_map-item-text {
    flex: 1;
}

.steps_map-banner {
    max-width: 900px;
    margin: 40px auto 0;
    border: 2px solid var(--light_green);
    border-radius: 20px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
}

.steps_map-banner-icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps_map-banner-text {
    color: var(--black2);
    font-size: 16px;
    line-height: 26px;
}

.steps_map-icon-next {
    margin: 45px 0 30px;
    display: flex;
    justify-content: center;
}

.steps_map-buttons {
    display: flex;
    justify-content: center;
}

.steps_map-button {
    border-radius: 50px;
    background-color: var(--white);
    border: 1px solid var(--green);
    box-shadow: none;
    font-weight: 800;
    font-size: 30px;
    width: 100%;
    max-width: 900px;
    max-width: 576px;
    text-align: center;
    padding: 12px;
    text-transform: none;
}

.steps_map-button:hover {
    color: var(--white);
    background-color: var(--green);
    box-shadow: 0 0 20px -5px var(--light_green);
}

.gallery {
    padding-bottom: 120px;
    display: none;
}

.gallery-buttons {
    margin-top: 90px;
    justify-content: center;
    display: flex;
}

.gallery-button {
    min-width: 380px;
    text-align: center;
}

.gallery-item-wrap {
    height: 700px;
    display: flex;
    justify-content: space-between;
}

.gallery-item {
    position: relative;
    height: 100%;
    margin-right: 16px;
}

.gallery-item.one {
    width: calc(50% - 5.33333px);
}

.gallery-item.two {
    width: calc(25% - 5.33333px);
}

.gallery-item:last-child {
    margin-right: 0;
}

.gallery-item .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: all.4s ease;
}

.gallery-item.two .image {
    height: calc(50% - 8px);
}

.gallery-item.two .image:last-child {
    top: calc(50% + 8px);
}

.gallery-arrow-wrapper {
    position: absolute;
    top: 50%;
    height: 0;
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 35px;
}

.gallery-arrow {
    cursor: pointer;
}

.gallery-arrow.swiper-button-disabled {
    opacity: .5;
    cursor: not-allowed;
}

.gallery-arrow.swiper-button-disabled:hover svg [fill],
.gallery-arrow.swiper-button-disabled svg [fill] {
    fill: #626161;
}

.gallery-arrow:hover svg [fill] {
    fill: var(--orange);
}

.gallery-carousel {
    height: 100%;
}

.gallery-slide-item {
    position: relative;
    height: 100%;
}

.gallery-slide-item .image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.delivery_check {
    background: url('../images/delivery_check-bg.jpg') center center/cover no-repeat;
    padding: 100px 0;
}

.delivery_check-image {
    position: relative;
}

.delivery_check-cta {
    display: inline-block;
    margin-bottom: 30px;
    padding: 14px 28px;
    font-size: 15px;
}

@media screen and (max-width: 991px) {
    .delivery_check-cta {
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

.delivery_check-title-block {
    font-weight: 800;
    font-size: 32px;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
}

.delivery_check-title-block .green {
    color: var(--light_green);
}

.delivery_check-text {
    color: var(--white);
    opacity: .85;
    max-width: 420px;
    margin: 0 0 30px;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
}

.delivery_check-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.delivery_check-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.delivery_check-list-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery_check-list-label {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}

.delivery_check-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 2px solid var(--light_green);
    border-radius: 16px;
    padding: 18px 22px;
    max-width: 460px;
}

.delivery_check-banner-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery_check-banner-title {
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
}

.delivery_check-banner-desc {
    color: var(--white);
    opacity: .8;
    font-size: 13px;
    line-height: 19px;
}




.why_wasabi {
    padding: 110px 0;
    margin-top: 40px;
}

.why_wasabi-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.why_wasabi-item {
    margin-bottom: 60px;
    margin-right: 60px;
    width: calc(100% / 4 - 45px);
}

.why_wasabi-item-icon {
    margin-bottom: 25px;
    min-height: 75px;
    display: flex;
    justify-content: center;
}

.why_wasabi-item-text {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    text-align: center;
}

.why_wasabi-item:nth-child(4n) {
    margin-right: 0;
}



















.sign_up {
    background: linear-gradient(180deg, var(--green) 0%, var(--light_green) 100%);
    padding: 75px;
}

.sign_up-title {
    margin-bottom: 30px;
}

.sign_up-subtitle {
    color: var(--white);
    text-align: center;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    max-width: 768px;
    margin: 0 auto 50px;
}

.sign_up .form-label {
    color: var(--white);
    font-size: 18px;
    top: 19px;
}

.sign_up .form-control {
    height: 60px;
    color: var(--white);
    background: transparent;
    border-color: var(--white);
}

.sign_up .label-checkbox {
    color: var(--white);
}

.sign_up .input-checkbox:checked + .label-checkbox,
.sign_up .label-checkbox:hover {
    color: var(--white);
}

.sign_up .form-row {
    margin-bottom: 30px;
}

.sign_up .form-row:last-child {
    margin-bottom: 0;
}

.form-row-centered {
    justify-content: center;
}

.sign_up .form-group {
    margin-bottom: 0;
    flex: 0 0 calc(100% / 4 - 30px);
    margin-right: 40px;
}

.sign_up .form-group:last-child {
    margin-right: 0;
    margin-top: 0;
}

.sign_up .form-group.form-group-checkbox {
    flex: 0 0 calc(100% / 2);
    text-align: center;
    justify-content: center;
}

.sign_up .custom_button {
    width: 100%;
    padding: 19px 30px;
    max-width: 100%;
}



.footer-rights {
    margin-top: 20px;
    text-align: center;
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
}

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

.footer-socials span {
    line-height: 16px;
    color: var(--white);
    font-size: 18px;
}

.footer-phones {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-phones .header-phone {
    display: flex;
    flex-wrap: wrap;
}

.footer-phones .header-phone-wrap {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-end;
}

.footer-phones .header-phone-wrap:last-child {
    margin-bottom: 0;
}

.footer-phones .header-phone svg {
    margin-right: 10px;
}

.footer-socials span,
.footer-socials a {
    margin-right: 25px;
}

.footer-socials a:last-child {
    margin-right: 0;
}

.footer-socials a:hover svg [fill] {
    fill: var(--orange);
}





















.why_wasabi-arguments {
    padding-top: 50px;
}

.why_wasabi-arguments .why_wasabi-list {
    justify-content: center;
    align-items: center;
}

.why_wasabi-arguments .why_wasabi-item {
    margin-bottom: 0;
}

.why_wasabi-arguments .why_wasabi-item:last-child {
    margin-right: 0 !important;
}

.why_wasabi-arguments .title {
    margin-bottom: 60px;
    backdrop-filter: unset;
    padding: 0;
}

.why_wasabi-arguments .why_wasabi-item img {
    display: block;
    max-width: 100%;
}

.why_wasabi-arguments .why_wasabi-item a {
    max-width: 150px;
}

.why_wasabi-arguments .why_wasabi-item-icon {
    margin-bottom: 0;
    min-height: fit-content;
}

.arguments {
    margin-bottom: 50px;
}

.arguments-title {
    margin-bottom: 150px;
}

.arguments-item {
    font-size: 26px;
    line-height: 30px;
    font-weight: 700;
    position: relative;
    margin-bottom: 50px;
}

.arguments-item span {
    color: var(--orange)
}

.arguments-item:before {
    content: attr(data-id)".";
    font-size: 48px;
    font-weight: 700;
    line-height: 50px;
    position: absolute;
    top: 0;
    left: -80px;
    color: var(--green);
}

.arguments-image {
    width: fit-content;
    position: absolute;
    right: 200px;
    top: 0;
}

.arguments-image:after {
    content: '';
    top: -40px;
    height: calc(100% + 80px);
    width: 200vw;
    right: 270px;
    position: absolute;
    z-index: -1;
    background-color: var(--green);
    border-radius: 0px 30px 30px 0px;
}

.arguments-image img {
    max-width: unset;
    border-radius: 60px;
    filter: drop-shadow(0px 0px 20px rgba(0,0,0,.25));
}



















.success_popup,
.callback_popup {
    max-width: 450px;
    background: var(--white);
    margin: 0 auto;
    padding: 60px 35px 70px;
}

.callback_popup .form-group:last-of-type {
    margin-bottom: 0;
    margin-top: 40px;
}

.callback_popup .custom_button {
    width: 100%;
}

.success_popup .mfp-close,
.callback_popup .mfp-close {
    color: var(--gray);
    font-size: 40px;
    opacity: 1;
    transition: all.4s ease;
}

.success_popup .mfp-close:hover,
.callback_popup .mfp-close:hover {
    color: var(--orange);
}

.callback-title {
    margin-bottom: 50px;
    font-size: 18px;
    line-height: 25px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
}

.callback-subtitle {
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    text-align: center;
}









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

.partners-logos__item {
    margin-right: 30px;
    min-width: calc(33% - 20px);
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-logos__item a {
    display: block;
    width: 100%;
}

.partners-logos__item img {
    max-height: 100%;
    max-width: 180px;
}

.partners-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 15px;
}



















footer {
    background: var(--gray);
    padding: 50px 0 15px;
}

@media screen and (max-width: 1699px) {
    .presentation-form {
        padding: 35px 40px 20px;
    }

    .presentation-form .form-group:last-child {
        margin-top: 25px;
    }

    .presentation-form-title {
        margin-bottom: 25px;
    }

    .format-top-item {
        flex: 0 0 calc(100% / 2 - 25px);
        margin-right: 50px;
    }

    .format-top-item-image img {
        transform: scale(1.2) translate(0, -50%);
        left: -30px;
    }

    .gallery-item-wrap {
        height: 600px;
    }

    .delivery_check-image:before {
        top: -150px;
    }

    .delivery_check-bubbles {
        min-width: 15%;
        top: -60px;
    }

    .delivery_check-text {
        margin-bottom: 60px;
    }

    .why_wasabi-item-text {
        font-size: 16px;
        line-height: 24px;
    }
}

@media screen and (max-width: 1439px) {
    .header-menu-wrap {
        margin-left: 90px;
    }

    .header-menu {
        padding: 100px 100px 60px 100px;
    }

    .header-menu-close {
        left: 100px;
        top: 55px;
    }

    .header-menu-link {
        font-size: 20px;
    }

    .header-menu-item {
        margin-bottom: 15px;
    }

    .logo-block-slogan {
        line-height: 26px;
    }

    .header-menu {
        top: 100px;
        height: calc(100vh - 71px);
    }

    .presentation-form .form-control {
        height: 40px;
        padding-left: 15px;
    }

    .presentation-form .form-label {
        left: 15px;
        top: 10px;
    }

    .presentation-form-title {
        font-size: 2vw;
        line-height: 2.2vw;
    }

    .presentation-submit {
        font-size: 16px;
    }

    .delivery-wrap {
        max-width: 960px;
        padding: 40px 20px;
    }

    .delivery-item {
        padding: 0 30px;
    }

    .delivery-item .icon {
        min-width: 75px;
    }

    .delivery-item span {
        font-size: 16px;
        line-height: 20px;
    }

    .format-top-item-caption-text, .format-top-item-caption-title {
        font-size: 22px;
        line-height: 22px;
    }

    .format-top {
        margin-bottom: 35px;
    }

    .format-buttons {
        margin-top: 40px;
    }

    .format-top-item-caption hr {
        margin: 20px 0;
    }

    .format-table-row-block.title-block {
        margin-bottom: 20px;
    }

    .format-table-col {
        font-size: 18px;
    }

    .format-table-row-block.title-block .format-table-col {
        font-size: 28px;
    }

    .title {
        margin-bottom: 70px;
    }

    .sign_up-title {
        margin-bottom: 20px;
    }

    .map_block-item {
        font-size: 18px;
    }

    .map_block-item-title {
        font-size: 12px;
    }

    .steps_map-item {
        max-width: 960px;
    }

    .steps_map-item-wrap {
        width: calc(50% - 10px);
        font-size: 18px;
        height: 100px;
        line-height: 26px;
        max-width: 480px;
    }

    .steps_map-item-number span {
        font-size: 52px;
        line-height: 50px;
    }

    .steps_map-item-number {
        width: 110px;
        height: 110px;
        right: -10px;
    }

    .steps_map-item:nth-child(2n) .steps_map-item-number {
        left: -10px;
    }

    .steps_map-item-number svg {
        max-width: calc(100% - 22px);
    }

    .steps_map-button {
        max-width: 768px;
        font-size: 24px;
    }

    .gallery-item-wrap {
        height: 500px;
    }

    .delivery_check-image:before {
        top: -150px;
    }

    .delivery_check-bubbles {
        min-width: 20%;
        top: -30px;
    }

    .delivery_check-image .image {
        min-width: 80%;
    }

    .why_wasabi-item-text {
        font-size: 15px;
        line-height: 22px;
    }

    .why_wasabi-item {
        margin-right: 30px;
        margin-bottom: 30px;
        width: calc(100% / 4 - 23px);
    }

    .sign_up .form-control,
    .sign_up .form-label {
        font-size: 16px;
    }

    .sign_up .custom_button {
        padding: 19px;
        font-size: 16px;
    }

    .sign_up-subtitle {
        font-size: 22px;
    }
}

@media screen and (max-width: 1199px) {
    .header-menu-wrap {
        margin-left: 55px;
    }

    .header-menu {
        padding: 100px 50px 50px;
    }

    .header-menu-list {
        min-width: 480px;
    }

    .header-menu-close {
        left: 50px;
    }

    .logo-block-divider {
        height: 45px;
    }

    .logo-block-slogan {
        font-size: 13px;
        line-height: 24px;
    }

    .header-menu {
        top: 100px;
        height: calc(100vh - 64px);
    }

    .first_screen img {
        width: 100%;
        min-width: 100%;
    }

    .presentation-form .form-group:last-child {
        margin-top: 15px;
    }

    .presentation-form {
        padding: 20px 30px;
    }

    .presentation-form-title {
        margin-bottom: 15px;
    }

    .first_screen-content {
        top: calc(50% + 30px);
    }

    .delivery-title {
        margin-bottom: 40px;
    }

    .format-top-item-image {
        max-width: 165px;
        min-width: 165px;
        min-height: 210px;
    }

    .format-top-item-caption {
        padding: 15px 25px;
    }

    .format-top-item-caption-text, .format-top-item-caption-title {
        font-size: 20px;
    }

    .format-table-row-block.title-block .format-table-col {
        font-size: 24px;
    }

    .format-table-col {
        font-size: 16px;
    }

    .title {
        font-size: 40px;
        line-height: 42px;
        margin-bottom: 50px;
    }

    .sign_up-title {
        margin-bottom: 20px;
    }

    .format-table-title {
        font-size: 20px;
    }

    .arguments-image {
        right: 150px;
    }

    .arguments-image:after {
        right: 150px;
    }

    .arguments-item {
        font-size: 20px;
        line-height: 24px;
    }

    .arguments-item:before {
        font-size: 38px;
        line-height: 40px;
    }

    .arguments-item {
        margin-bottom: 25px;
    }

    .map_block-col {
        flex: 0 0 40%;
    }

    .map_block-col:nth-child(2) {
        flex: 0 0 25%;
    }

    .map_block-col:last-child {
        flex: 0 0 35%;
    }

    .arguments-image {
        right: 0;
    }

    .arguments-image:after {
        right: 250px;
    }

    .arguments-image img {
        transform: scale(.7);
        transform-origin: top;
    }

    .owner-text-block {
        padding: 60px 40px;
    }

    .owner-text {
        line-height: 24px;
        font-size: 16px;
    }

    .steps_map-button {
        max-width: 576px;
        font-size: 20px;
    }

    .gallery-item-wrap {
        height: 400px;
    }

    .gallery-buttons {
        margin-top: 70px;
    }

    .gallery {
        padding-bottom: 100px;
    }

    .delivery_check-image .image {
        top: -20px;
    }

    .delivery_check-bubbles {
        top: -70px;
        left: 40px;
    }

    .delivery_check-text {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 80px;
    }

    .why_wasabi-list {
        justify-content: center;
    }

    .why_wasabi-item {
        margin-bottom: 60px;
        margin-right: 60px;
        width: calc(100% / 3 - 40px);
    }

    .why_wasabi-item-text {
        font-size: 16px;
        line-height: 24px;
    }

    .why_wasabi-item:nth-child(3n) {
        margin-right: 0;
    }

    .why_wasabi {
        padding: 0 0 90px;
    }

    .sign_up .form-control {
        height: 50px;
    }

    .sign_up .form-label {
        top: 15px;
    }

    .sign_up .form-group {
        margin-right: 20px;
        flex: 0 0 calc(100% / 4 - 15px);
    }

    .sign_up .custom_button {
        padding: 16px;
        font-size: 14px;
        line-height: 18px;
    }

    .sign_up-subtitle {
        line-height: 26px;
    }

    .sign_up .form-group.form-group-checkbox {
        flex: 0 0 100%;
    }


    .arguments {
        margin-bottom: 100px;
    }
}

@media screen and (max-width: 991px) {
    .header-phone-wrap {
        display: none;
    }

    .header-phone-wrap.mobile {
        display: block;
    }

    .header-callback-wrap {
        margin-left: 0;
    }

    .header-callback:hover,
    .header-callback {
        background: transparent;
        padding: 0;
        width: 35px;
        height: 35px;
    }
.header-lang-wrap{
    margin-left: auto;
    left: -17px;
}
    .header-callback-icon svg [fill] {
        fill: var(--orange);
    }

    .header-callback:hover .header-callback-icon svg [fill]:nth-child(2),
    .header-callback-icon svg [fill]:nth-child(2) {
        fill: #222222;
    }

    .header-callback:hover .header-callback-icon svg [fill] {
        fill: var(--green);
    }

    .header-callback-icon {
        display: block;
    }

    .header-callback-text {
        display: none;
    }

    .header-menu-wrap {
        margin-left: 35px;
    }

    .presentation-form-wrapper {
        padding: 0;
    }

    .presentation-form {
        margin: 0 auto;
        box-shadow: 0 0 20px -2px rgba(0,0,0,.3);
    }

    .first_screen-content {
        top: 140px;
        transform: translate(0, 0);
    }

    .first_screen_title-wrapper {
        max-width: 450px;
        margin: 0 auto 40px;
        text-align: center;
    }

    .delivery-item {
        flex-wrap: wrap;
    }

    .delivery-item span {
        max-width: 190px;
    }

    .delivery-item span,
    .delivery-item .icon {
        flex: 0 0 100%;
        text-align: center;
        margin: 0;
    }

    .delivery-item .icon {
        margin-bottom: 20px;
    }

    .delivery-item .icon svg {
        margin: 0 auto;
    }

    .format-table-title {
        font-size: 18px;
        flex: 0 0 120px;
        min-width: 120px;
    }

    .format-table-col {
        margin-right: 15px;
    }

    .format-table-col:nth-child(2) {
        flex: 0 0 calc(25% - 15px);
    }

    .format-table-col:nth-child(3) {
        flex: 0 0 calc(28% - 15px);
    }

    .format-table-col:nth-child(4) {
        flex: 0 0 calc(47% - 120px);
    }

    .format-table-row-block.title-block .format-table-col {
        font-size: 20px;
        line-height: 20px;
    }

    .format-table-row-block.title-block {
        margin-bottom: 15px;
    }

    .format-top {
        flex-wrap: wrap;
    }

    .format-top-item {
        margin-bottom: 15px;
        flex: 0 0 100%;
        margin-right: 0;
    }

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

    .arguments-image {
        display: none;
    }

    .arguments {
        margin-bottom: 50px;
    }

    .arguments-item {
        display: flex;
    }

    .arguments-item:before {
        position: relative;
        left: 0;
        margin-right: 15px;
        display: inline-block;
    }

    .owner-avatar-block,
    .map_block-image {
        display: none;
    }

    .owner-text-image {
        display: inline;
    }

    .owner {
        padding: 75px 0;
    }

    .steps_map-item-wrap {
        width: 70%;
    }

    .steps_map-item {
        margin-bottom: 20px;
    }

    .steps_map {
        background-size: 30%;
    }

    .gallery-item-wrap {
        height: 300px;
    }

    .gallery-buttons {
        margin-top: 50px;
    }

    .gallery {
        padding-bottom: 80px;
    }

    .gallery-button {
        min-width: 280px;
    }

    .delivery_check-image:before {
        top: -190px;
        left: 0px;
    }

    .delivery_check-bubbles {
        top: -50px;
        min-width: 25%;
        left: 40px;
        height: 300px;
    }

    .delivery_check {
        padding: 70px 0;
    }

    .delivery_check-text {
        font-size: 18px;
        line-height: 24px;
    }

    .why_wasabi-item {
        margin-bottom: 60px;
        margin-right: 60px;
        width: calc(100% / 2 - 30px);
    }

    .why_wasabi-item:nth-child(3n) {
        margin-right: 60px;
    }

    .why_wasabi-item:nth-child(4n) {
        margin-right: 60px;
    }

    .why_wasabi-item:nth-child(2n) {
        margin-right: 0;
    }

    .sign_up .form-row {
        flex-wrap: wrap;
    }

    .sign_up .form-group {
        flex: 0 0 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .sign_up .form-group:last-child {
        margin-bottom: 30px;
        margin-top: 0;
    }

    .sign_up {
        padding: 75px 0 45px;
    }

    .footer-socials,
    footer .logo-block {
        justify-content: center;
        margin-bottom: 30px;
    }

    .footer-phones .header-callback-icon {
        display: none;
    }

    .footer-phones .header-callback-text {
        display: flex;
    }

    .footer-phones .header-callback-wrap {
        margin: 0;
    }

    .footer-phones .header-callback {
        width: fit-content;
        height: unset;
        padding: 15px 30px;
        background: var(--orange);
    }

    .header-callback-wrap-item {
        justify-content: center;
        text-align: center;
    }

    .footer-phones .header-callback:hover {
        background: var(--light_orange);
        box-shadow: 0 0 20px -5px var(--light_orange);
    }

    .footer-phones,
    .footer-phones .header-phone-wrap {
        justify-content: center;
    }

    footer {
        padding: 50px 0;
    }

    .presentation-form-title {
        font-size: 4vw;
        line-height: 5.2vw;
    }

    .first_screen_image {
        overflow: hidden;
    }

    .first_screen_image video {
        width: 200%;
        position: relative;
        display: block;
        left: -50%;
    }

    .sign_up .form-row {
        margin-bottom: 0;
    }



    .why_wasabi-arguments .why_wasabi-item {
        margin-bottom: 50px;
        width: calc(100% / 3 - 60px);
    }

    .why_wasabi-arguments .why_wasabi-item:nth-child(2n) {
        margin-right: 60px;
    }
}

@media screen and (max-width: 767px) {
    .first_screen-title {
        margin: 10px;
    }

    .first_screen-subtitle {
        font-size: 3.5vw;
        line-height: 4.5vw;
    }

    .presentation-form,
    .first_screen_title-wrapper {
        max-width: 390px;
    }

    .first_screen_title-wrapper {
        margin: 0 auto 25px;
    }

    .delivery-title {
        font-size: 28px;
        line-height: 34px;
    }

    .first_screen-content {
        position: relative;
        top: 0;
        padding: 120px 0 100px;
    }

    .first_screen_image {
        position: absolute;
        left: 0;
        top: 0;
    }

    .delivery-list {
        flex-wrap: wrap;
    }

    .delivery-item:nth-child(2) {
        border-right: none;
    }

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

    .delivery-item {
        margin-bottom: 40px;
        flex: 0 0 calc(100% / 2);
    }

    .format-top-item-image {
        max-width: 185px;
        min-width: 185px;
        min-height: 200px;
    }

    .format-top-item-image img {
        left: -20px;
    }

    .format-bottom .row:first-child {
        flex-direction: column;
    }

    .format-table-row-block.title-block {
        display: none;
    }

    .format-table-row-block {
        flex-wrap: wrap;
    }

    .format-table-title,
    .format-table-col:nth-child(2),
    .format-table-col:nth-child(3),
    .format-table-col:nth-child(4),
    .format-table-col {
        flex: 0 0 100%;
        margin-bottom: 10px;
    }

    .format-table-col {
        padding: 0 15px;
    }

    .format-table-col div {
        display: block;
        margin-right: auto;
    }

    .format-buttons {
        margin-top: 15px;
    }

    .title {
        font-size: 34px;
        line-height: 38px;
    }

    .delivery {
        margin-bottom: 50px;
    }

    .arguments-item {
        font-size: 18px;
        line-height: 24px;
    }

    .map_block {
        padding: 50px 0;
    }

    .map_block-title {
        margin-bottom: 30px;
    }

    .map_block-item {
        font-size: 14px;
    }

    .map_block-item-title {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .arguments {
        margin-bottom: 70px;
    }

    .steps_map-item-wrap {
        width: 90%;
        font-size: 16px;
        height: 80px;
        line-height: 22px;
    }

    .steps_map-item-number {
        width: 90px;
        height: 90px;
    }

    .steps_map-item-number span {
        font-size: 36px;
        line-height: 40px;
    }

    .gallery-item-wrap {
        flex-direction: column;
        height: fit-content;
    }

    .gallery-item.two,
    .gallery-item.one {
        width: 100%;
        margin-bottom: 15px;
        padding-bottom: 40%;
    }

    .gallery-item.one {
        height: 50vw;
        padding: 0;
    }

    .gallery-item.two .image {
        width: calc(50% - 8px);
        height: 100%;
    }

    .gallery-item.two .image:last-child {
        top: 0;
        left: calc(50% + 8px);
    }

    .delivery_check {
        overflow: hidden;
    }

    .delivery_check-bubbles {
        opacity: .3;
        position: absolute;
        width: 50%;
        height: 500px;
        left: 0;
        transform: translate(-50%);
    }

    .delivery_check-image:before {
        width: 100%;
        padding-bottom: 100%;
        transform: translate(-30%);
    }

    .why_wasabi-item-text {
        font-size: 14px;
        line-height: 20px;
    }

    .sign_up-subtitle {
        font-size: 18px;
        line-height: 22px;
    }

    .callback_popup {
        max-width: 320px;
        padding: 50px 25px;
    }

    .callback-title {
        font-size: 14px;
        margin-bottom: 25px;
        line-height: 20px;
    }

    .callback_popup .form-group:last-of-type {
        margin-top: 30px;
    }

    .label-checkbox {
        font-size: 14px;
        line-height: 16px;
    }

    .partners-logos__item img {
        max-width: 100%;
    }
}

@media screen and (max-width: 575px) {

    .logo-block {
        width: 100px;
    }

    footer .logo-block {
        width: unset;
    }

    .logo-block-slogan,
    .logo-block-divider {
        display: none;
    }

    .header-menu {
        width: 100%;
        height: calc(100vh - 62px);
        top: 62px;
        padding: 100px 20px;
        text-align: center;
    }

    .header-menu-close {
        left: 20px;
    }

    .header-menu-link {
        white-space: pre-wrap;
    }

    .header-menu-list {
        max-width: 100%;
        min-width: 100%;
    }

    .delivery-title {
        font-size: 24px;
        line-height: 30px;
    }

    .presentation-form {
        padding: 20px;
        backdrop-filter: blur(5px);
    }

    .presentation-submit {
        font-size: 14px;
    }

    .format-top-item-image img {
        left: 0;
        transform: scale(1) translate(0, -50%);
    }

    .format-top-item:last-child,
    .format-top-item {
        flex-wrap: wrap;
        margin: 0 auto 30px;
        max-width: 350px;
    }

    .format-top-item-image {
        height: 300px;
        border-radius: 0;
    }

    .format-top {
        padding-bottom: 20px;
    }

    .format-top-item-image,
    .format-top-item-caption {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .partners-text {
        font-size: 16px;
        text-align: center;
        line-height: 24px;
    }

    .arguments-item {
        font-size: 16px;
        line-height: 20px;
    }

    .arguments-item:before {
        font-size: 26px;
        line-height: 30px;
    }

    .title {
        font-size: 24px;
        line-height: 30px;
    }

    .owner-right-bubbles {
        display: none;
    }

    .owner-text-block {
        padding: 40px;
    }

    .owner-text-block:before {
        display: none;
    }

    .owner-text {
        line-height: 21px;
        font-size: 14px;
    }

    .owner-text-image {
        float: unset;
        width: 100%;
        margin-bottom: 15px;
        margin-right: 0;
        max-width: 100%;
    }

    .steps_map-item-wrap {
        padding: 20px 80px 20px 15px;
        min-height: 60px;
        height: fit-content;
        font-size: 14px;
        line-height: 18px;
    }

    .steps_map-item-number {
        height: 100px;
        right: -30px;
        width: 100px;
    }

    .steps_map-item:nth-child(2n) .steps_map-item-wrap {
        padding: 20px 15px 20px 80px;
    }

    .steps_map-item:nth-child(2n) .steps_map-item-number {
        left: -30px;
    }

    .steps_map-button {
        font-size: 18px;
    }

    .gallery-item.two {
        width: 100%;
        margin-bottom: 15px;
        padding-bottom: 35%;
    }

    .gallery-item.one {
        height: 70vw;
    }

    .gallery-button {
        min-width: fit-content;
    }

    .delivery_check-text {
        font-size: 16px;
        margin-bottom: 50px;
        line-height: 22px;
    }

    .why_wasabi-item {
        width: 100%;
        max-width: 320px;
        margin: 0 auto 40px;
    }

    .why_wasabi-item:nth-child(3n) {
        margin: 0 auto 40px;
    }

    .why_wasabi-item:nth-child(4n) {
        margin: 0 auto 40px;
    }

    .why_wasabi-item:nth-child(2n) {
        margin: 0 auto 40px;
    }

    .why_wasabi {
        padding: 0 0 60px;
    }

    .sign_up {
        padding: 50px 0 70px;
    }

    .menu-bg {
        display: none;
    }

    .first_screen-title {
        font-size: 9.5vw;
        line-height: 10.5vw;
    }

    .first_screen-content {
        padding: 100px 0 100px;
    }

    .first_screen_title-wrapper {
        margin: 0 auto 35px;
    }

    .delivery-title span {
        display: block;
        top: 10px;
        margin: 0 auto 25px;
    }

    .owner {
        padding: 0;
    }



    .why_wasabi-arguments .why_wasabi-item {
        margin-bottom: 50px;
        width: 100%;
        margin-right: auto;
    }

    .why_wasabi-arguments .why_wasabi-item:nth-child(2n) {
        margin-right: auto;
    }

    .why_wasabi-arguments .why_wasabi-item:last-child {
        margin-right: auto !important;
    }

    .why_wasabi-arguments .title {
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 420px) {

    .first_screen-subtitle {
        font-size: 5vw;
        line-height: 6.5vw;
    }

    .delivery-item {
        border-right: none;
        flex: 0 0 100%;
    }

    .gallery-item.two {
        width: 100%;
        margin-bottom: 15px;
        padding-bottom: 50%;
    }
}

@media screen and (max-width: 374px) {


    .partners-logos {
        flex-wrap: wrap;
    }

    .partners-logos__item {
        min-width: 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }

    .partners-logos__item a {
        text-align: center;
    }

    .partners-logos__item img {
        max-width: 160px;
    }

    .steps_map-item-wrap {
        padding: 20px 20px 20px 50px;
        width: 100%;
    }

    .steps_map-item-number svg {
        max-width: calc(100% - 10px);
        left: 5px;
        top: 5px;
    }

    .steps_map-item-number span {
        font-size: 22px;
        line-height: 30px;
    }

    .steps_map-item-number {
        height: 50px;
        right: unset;
        left: -10px;
        top: -10px;
        width: 50px;
    }

    .steps_map-item:nth-child(2n) .steps_map-item-wrap {
        padding: 20px 50px 20px 20px;
    }

    .steps_map-item:nth-child(2n) .steps_map-item-number {
        left: unset;
        right: -10px;
    }
}


























/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
    opacity: 0;

    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;



    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
    opacity: 1;

    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);

    opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.8;
}
/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}



/**
 * Fade-move animation for second dialog
 */

/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
    opacity: 0;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;

    -webkit-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
    -moz-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
    -ms-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
    -o-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
    transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );

}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
    opacity: 1;
    -webkit-transform: translateY(0) perspective( 600px ) rotateX( 0 );
    -moz-transform: translateY(0) perspective( 600px ) rotateX( 0 );
    -ms-transform: translateY(0) perspective( 600px ) rotateX( 0 );
    -o-transform: translateY(0) perspective( 600px ) rotateX( 0 );
    transform: translateY(0) perspective( 600px ) rotateX( 0 );
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
    opacity: 0;

    -webkit-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
    -moz-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
    -ms-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
    -o-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
    transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
    opacity: 0;

    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
    opacity: 0.8;
}
/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
    opacity: 0;
}
.header-lang-wrap {
    position: relative;
    margin-right: -42px;
    margin-left: 30px;
}

.header-lang-wrap a {
    color: #e78625;
}

.header-lang-wrap span {
    color: #fff;
}
.footer-socials a:last-child svg {
    max-width: 42px;
	fill: #fff;
}
.logo-block img {
    max-width: 182px;
}

/* ===== YAMI 2.0 rebrand additions ===== */

.yami-logo {
    max-width: 240px !important;
    width: 100%;
    height: auto;
}

.sign_up-logo {
    text-align: center;
    margin-bottom: 30px;
}

.form-group-icon .form-label {
    left: 46px;
}

.form-group-icon.active .form-label {
    left: -100px;
}

.form-group-icon .form-control {
    padding-left: 46px;
}

.form-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--light_gray);
    z-index: 2;
    pointer-events: none;
    display: flex;
}

.form-group-icon.active .form-icon {
    color: var(--orange);
}

.sign_up-logo .yami-logo {
    max-width: 220px !important;
}

.first_screen-title {
    color: var(--white);
}

.first_screen-title span {
    color: var(--orange);
}

/* Owner / founder story */
.owner-eyebrow {
    text-align: center;
    color: var(--orange);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
}

.owner-lead {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 28px;
    color: var(--gray);
}

.owner-title {
    margin-bottom: 20px;
}

.owner-substep {
    padding: 18px 0;
    border-bottom: 1px solid var(--light_gray2);
}

.owner-substep:first-of-type {
    padding-top: 0;
}

.owner-substep-title {
    font-weight: 700;
    font-size: 19px;
    color: var(--black2);
    margin-bottom: 6px;
    position: relative;
    padding-left: 22px;
}

.owner-substep-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
}

.owner-substep-text {
    font-size: 16px;
    line-height: 26px;
    color: var(--gray);
    padding-left: 22px;
}

.owner-highlight {
    margin-top: 24px;
    padding: 20px 24px;
    border: 1px solid var(--orange);
    border-radius: 10px;
    background: var(--rgba_orange);
    font-size: 16px;
    line-height: 26px;
    color: var(--black2);
}

.owner-highlight span {
    color: var(--dark_orange);
    font-weight: 700;
}

/* Why YAMI 2.0 — 3 cards */
.delivery-title span {
    position: static;
    top: auto;
    max-width: none;
    padding: 0;
    display: inline;
}

.delivery-subtitle {
    text-align: center;
    color: var(--white);
    opacity: .8;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 45px;
}

.delivery-list {
    align-items: stretch;
    gap: 0;
}

.delivery-item {
    flex-direction: column;
    flex-wrap: nowrap;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .35);
    padding: 0 30px;
}

.delivery-item span,
.delivery-item .icon {
    flex: 0 0 auto;
}

.delivery-item:last-child {
    border-right: none;
}

.delivery-item .icon {
    margin-right: 0;
    margin-bottom: 16px;
}

.delivery-item .icon svg {
    width: 44px;
    height: 44px;
}

.delivery-item span {
    font-size: 18px;
}

.delivery-item-desc {
    color: var(--white);
    opacity: .8;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    margin-top: 8px;
    width: 100%;
    max-width: 320px;
}

.delivery-item span {
    width: 100%;
}

.delivery-quote {
    text-align: center;
    color: var(--white);
    font-size: 22px;
    line-height: 34px;
    font-weight: 700;
    max-width: 720px;
    margin: 55px auto 0;
}

/* Financial model — simplified */
.format-single {
    text-align: center;
    padding: 40px 0 20px;
}

.format-single-text {
    font-size: 22px;
    line-height: 34px;
    color: var(--black2);
    max-width: 640px;
    margin: 0 auto;
}

/* 9 advantages */
.advantage-list {
    max-width: 900px;
    margin: 0 auto;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--light_gray2);
}

.advantage-item:last-child {
    border-bottom: none;
}

.advantage-num {
    flex: 0 0 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.advantage-title {
    font-weight: 700;
    font-size: 19px;
    color: var(--black2);
    margin-bottom: 4px;
}

.advantage-desc {
    font-size: 15px;
    line-height: 24px;
    color: var(--gray);
}

/* Aggregators */
.aggregators {
    padding: 90px 0;
    background: var(--light_gray2);
}

.aggregators-title {
    max-width: 820px;
}

.aggregators-title span {
    color: var(--orange);
}

.aggregators-subtitle {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
    color: var(--gray);
    font-size: 17px;
    line-height: 26px;
}

.aggregators-features {
    max-width: 900px;
    margin: 0 auto 40px;
    border: 2px solid var(--light_green);
    border-radius: 16px;
    padding: 28px 30px 22px;
}

.aggregators-features-title {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--black2);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.aggregators-features-title:before,
.aggregators-features-title:after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--light_gray2);
}

.aggregators-features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}

.aggregators-feature {
    flex: 1 1 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.aggregators-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.aggregators-feature--orange .aggregators-feature-icon {
    background: var(--rgba_orange);
    color: var(--orange);
}

.aggregators-feature--blue .aggregators-feature-icon {
    background: rgba(59, 130, 246, .15);
    color: #3b82f6;
}

.aggregators-feature--green .aggregators-feature-icon {
    background: rgba(0, 138, 71, .12);
    color: var(--green);
}

.aggregators-feature-text {
    font-size: 13px;
    line-height: 19px;
    font-weight: 600;
    color: var(--black2);
}

.aggregators-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.aggregator-tile {
    flex: 0 0 calc(33.333% - 14px);
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid #e6e6e6;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
    transition: transform .2s ease, box-shadow .2s ease;
}

.aggregator-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .1);
}

.aggregator-tile a {
    display: block;
    padding: 24px 22px;
    color: inherit;
}

.aggregator-tile-logo-wrap {
    height: 48px;
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.aggregator-tile-img {
    max-height: 48px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
}

.aggregator-tile-img--round {
    height: 48px;
    width: 48px;
    border-radius: 10px;
}

.aggregator-tile-img--yami {
    max-height: 34px;
    max-width: 170px;
    background: var(--black2);
    padding: 6px 10px;
    border-radius: 6px;
}

.aggregator-tile-logo--text {
    font-weight: 800;
    font-size: 26px;
    line-height: 1;
}

.aggregator-tile-text {
    font-size: 14px;
    line-height: 20px;
    color: var(--gray);
}

.aggregators-banner {
    margin-top: 40px;
    text-align: center;
    font-size: 17px;
    line-height: 26px;
    color: var(--black2);
    font-weight: 500;
}

/* Cities table */
.map_block-intro {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 720px;
    margin: 0 auto 25px;
    flex-wrap: wrap;
}

.map_block-intro-num {
    font-size: 34px;
    font-weight: 800;
    color: var(--red);
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.map_block-intro-num span {
    font-size: 13px;
    font-weight: 400;
    color: var(--white);
    text-transform: none;
}

.map_block-intro-text {
    flex: 1;
    min-width: 260px;
    color: var(--white);
    opacity: .85;
    font-size: 15px;
    line-height: 24px;
}

.map_block-callout {
    max-width: 720px;
    margin: 0 auto 45px;
    padding: 16px 22px;
    border: 1px solid var(--red);
    border-radius: 10px;
    color: var(--white);
    font-size: 15px;
    line-height: 24px;
    text-align: center;
}

.map_block-badge-num {
    display: inline-flex;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--red);
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.map_block-footnote {
    text-align: center;
    color: var(--white);
    opacity: .85;
    font-size: 15px;
    margin-top: 35px;
}

/* CRM block */
.delivery_check-list {
    max-width: 480px;
    margin: -20px auto 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.delivery_check-banner {
    text-align: center;
    max-width: 640px;
    margin: 40px auto 0;
    color: var(--white);
    font-size: 16px;
    line-height: 26px;
    opacity: .9;
}

@media (max-width: 991px) {
    .delivery-item {
        border-right: none !important;
        margin-bottom: 30px;
    }

    .aggregator-tile {
        flex: 0 0 calc(50% - 10px);
    }

    .map_block-intro {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .aggregator-tile {
        flex: 0 0 100%;
    }

    .advantage-item {
        gap: 14px;
    }
}

/* ===== RTL mirroring (Hebrew) ===== */
[dir="rtl"] .form-icon {
    left: auto;
    right: 18px;
}

[dir="rtl"] .form-group-icon .form-label {
    left: auto;
    right: 46px;
}

[dir="rtl"] .form-group-icon.active .form-label {
    right: -100px;
}

[dir="rtl"] .form-group-icon .form-control {
    padding-left: 20px;
    padding-right: 46px;
}

[dir="rtl"] .owner-substep-title,
[dir="rtl"] .owner-substep-text {
    padding-left: 0;
    padding-right: 22px;
}

[dir="rtl"] .owner-substep-title:before {
    left: auto;
    right: 0;
}