@font-face {
    font-family: 'Object Sans Slanted';
    src: url('font/ObjectSans-Slanted.eot');
    src: local('Object Sans Slanted'), local('ObjectSans-Slanted'), url('font/ObjectSans-Slanted.eot?#iefix') format('embedded-opentype'), url('font/ObjectSans-Slanted.woff2') format('woff2'), url('font/ObjectSans-Slanted.woff') format('woff'), url('font/ObjectSans-Slanted.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Object Sans SlantedHeavy';
    src: url('font/ObjectSans-HeavySlanted.eot');
    src: local('ObjectSans-HeavySlanted'), local('ObjectSans-HeavySlanted'), url('font/ObjectSans-HeavySlanted.eot?#iefix') format('embedded-opentype'), url('font/ObjectSans-HeavySlanted.woff2') format('woff2'), url('font/ObjectSans-HeavySlanted.woff') format('woff'), url('font/ObjectSans-HeavySlanted.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Object Sans Regular';
    src: url('font/ObjectSans-Regular.eot');
    src: local('Object Sans Regular'), local('ObjectSans-Regular'), url('font/ObjectSans-Regular.eot?#iefix') format('embedded-opentype'), url('font/ObjectSans-Regular.woff2') format('woff2'), url('font/ObjectSans-Regular.woff') format('woff'), url('font/ObjectSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Object Sans Heavy';
    src: url('font/ObjectSans-Heavy.eot');
    src: local('Object Sans Heavy'), local('ObjectSans-Heavy'), url('font/ObjectSans-Heavy.eot?#iefix') format('embedded-opentype'), url('font/ObjectSans-Heavy.woff2') format('woff2'), url('font/ObjectSans-Heavy.woff') format('woff'), url('font/ObjectSans-Heavy.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

.wall {
    background: url('back.jpg');
    background-size: cover;
}

html,
body {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

body {
    background: #585858;
    text-align: center;
    font-family: 'Object Sans Regular';
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

body:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.scene {
    display: inline-block;
    vertical-align: middle;
    -webkit-perspective: 5px;
    perspective: 5px;
    -webkit-perspective-origin: 50% 50%;
    perspective-origin: 50% 50%;
    position: relative;
}

.wrap {
    position: absolute;
    width: 1000px;
    height: 1000px;
    left: -500px;
    top: -500px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-animation: move 20s infinite linear;
    animation: move 20s infinite linear;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.wrap:nth-child(2) {
    -webkit-animation: move 20s infinite linear;
    animation: move 20s infinite linear;
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
}

.wall {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    -webkit-animation: fade 20s infinite linear;
    animation: fade 20s infinite linear;
    -webkit-animation-delay: 0;
    animation-delay: 0;
}

.wrap:nth-child(2) .wall {
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
}

.wall-right {
    -webkit-transform: rotateY(90deg) translateZ(500px);
    transform: rotateY(90deg) translateZ(500px);
}

.wall-left {
    -webkit-transform: rotateY(-90deg) translateZ(500px);
    transform: rotateY(-90deg) translateZ(500px);
}

.wall-top {
    -webkit-transform: rotateX(90deg) translateZ(500px);
    transform: rotateX(90deg) translateZ(500px);
}

.wall-bottom {
    -webkit-transform: rotateX(-90deg) translateZ(500px);
    transform: rotateX(-90deg) translateZ(500px);
}

.wall-back {
    -webkit-transform: rotateX(180deg) translateZ(500px);
    transform: rotateX(180deg) translateZ(500px);
}

@-webkit-keyframes move {
    0% {
        -webkit-transform: translateZ(-500px) rotate(0deg);
        transform: translateZ(-500px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateZ(500px) rotate(0deg);
        transform: translateZ(500px) rotate(0deg);
    }
}

@keyframes move {
    0% {
        -webkit-transform: translateZ(-500px) rotate(0deg);
        transform: translateZ(-500px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateZ(500px) rotate(0deg);
        transform: translateZ(500px) rotate(0deg);
    }
}

@-webkit-keyframes fade {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.content {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    font-family: 'Object Sans Regular';
    background: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.content.modal-active {
    background: #000;
}

.preview {
    width: 100%;
    height: calc(100% - (70 * 100vw / 1920));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@-webkit-keyframes col-wraps {
    0% {
        height: 0;
    }

    100% {
        height: 100%;
    }
}

@keyframes col-wraps {
    0% {
        height: 0;
    }

    100% {
        height: 100%;
    }
}

@-webkit-keyframes col-content {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes col-content {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.column-logo-wrap,
.column-info-wrap,
.column-menu-wrap {
    width: calc(275 * 100vw / 1920);
    height: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: calc(70 * 100vw / 1920);
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    z-index: 2;
}

.preview.start-animation .column-logo-wrap,
.preview.start-animation .column-info-wrap,
.preview.start-animation .column-menu-wrap {
    -webkit-animation: col-wraps 1s ease;
    animation: col-wraps 1s ease;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.column-info-wrap {
    width: calc(321 * 100vw / 1920);
}

.preview.start-animation .column-info-wrap {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.column-menu-wrap {
    width: calc(109 * 100vw / 1920);
}

.preview.start-animation .column-menu-wrap {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.column-info-wrap.modal-active,
.column-menu-wrap.modal-active {
    opacity: 0;
}

.column-logo,
.column-info,
.column-menu {
    width: 100%;
    background-color: #E5E5E5;
    height: 100%;
}

.column-logo-wrap img,
.column-info-text,
.column-menu-text {
    opacity: 0;
}

.preview.start-animation .column-logo-wrap img,
.preview.start-animation .column-info-text,
.preview.start-animation .column-menu-text {
    -webkit-animation: col-content 1s ease;
    animation: col-content 1s ease;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.column-logo-wrap img {
    width: 100%;
    height: calc(399 * 100vw / 1920);
    min-height: calc(399 * 100vw / 1920);
    margin-top: calc(70 * 100vw / 1920);
}

.preview.start-animation .column-logo-wrap img {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.column-info-text {
    height: calc(133 * 100vw / 1920);
    min-height: calc(133 * 100vw / 1920);
    margin-top: calc(70 * 100vw / 1920);
    font-size: calc(24 * 100vw / 1920);
    line-height: calc(29 * 100vw / 1920);
    color: #fff;
    text-align: left;
    font-weight: normal;
    letter-spacing: 0.02em;
}

.preview.start-animation .column-info-text {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

.column-menu-text {
    will-change: transform;
    text-align: left;
    font-family: 'Object Sans Heavy';
    height: calc(136 * 100vw / 1920);
    min-height: calc(136 * 100vw / 1920);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: calc(70 * 100vw / 1920);
    font-size: calc(18 * 100vw / 1920);
    line-height: calc(24 * 100vw / 1920);
    font-weight: 800;
    color: #E5E5E5;
}

.preview.start-animation .column-menu-text {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.column-menu-text a {
    -ms-flex-item-align: start;
    align-self: flex-start;
    cursor: pointer;
    position: relative;
    margin-bottom: calc(8 * 100vw / 1920);
}

.column-menu-text a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    margin-bottom: calc(-5 * 100vw / 1920);
    width: 0;
    height: calc(3 * 100vw / 1920);
    background: #eee;
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s;
}

.column-menu-text a:hover::before {
    width: 100%;
}

/*modal*/

.modal {
    position: fixed;
    overflow-y: scroll;
    width: 100%;
    height: 100%;
    /*top: 100vh;*/
    left: 0;
    z-index: 555;
    padding-left: calc(415 * 100vw / 1920);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    visibility: hidden;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    top: 0;
    will-change: opacity;
}

.modal.active {
    visibility: visible;
}

.modal-title,
.modal-content,
.modal-cases-wrap {
    will-change: transform;
    transform: translateY(100vh);
    transition: all .3s;
}

.modal.active .modal-title,
.modal.active .modal-content,
.modal.active .modal-cases-wrap {
    transform: translateY(0vh);
}

.modal:not(.active) {
    opacity: 0;
}

.modal.modal-cases {
    background: #E31C1C;
    padding: 0px;
}

.modal.modal-team {
    background: #334CF5;
    padding: 0px;
}

.cases-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    padding-left: calc(120 * 100vw / 1920);
    padding-right: calc(120 * 100vw / 1920);
    padding-top: calc(70 * 100vw / 1920);
    padding-bottom: calc(70 * 100vw / 1920);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.cases-layer.team-layer-text {
    flex-direction: column;
}

.modal-cases-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.cases-layer img {
    width: 90%;
}

.cases-layer img.svg-circle {
    width: 32%;
    animation: load 2s infinite linear;
    transform-origin: center;
}

@keyframes load {

    0%,
    to {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.social-wrap {
    position: absolute;
    top: calc(70 * 100vw / 1920);
    right: calc(70 * 100vw / 1920);
    background: #E5E5E5;
    padding: calc(16 * 100vw / 1920);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    transition: 0.4s;
    transition-delay: 2.5s;
    opacity: 0;
}

.social-wrap img,
.social-wrap svg {
    width: calc(36 * 100vw / 1920);
}

.social-wrap a:first-child img {
    margin-right: calc(32 * 100vw / 1920);
}

.social-wrap a:last-child svg {
    margin-left: calc(32 * 100vw / 1920);
}

.social-wrap a {
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}

.social-wrap a:hover {
    -webkit-transform: scale(.85);
    -ms-transform: scale(.85);
    transform: scale(.85);
}

.preview.start-animation .social-wrap {
    opacity: 1;
}

.preview.start-animation.end-animation .social-wrap {
    transition-delay: 0s;
    transition: 0.2s;
}

.preview.start-animation .social-wrap.modal-active {
    opacity: 0;
}

.cases-layer-title {
    font-size: calc(64 * 100vw / 1920);
    line-height: calc(66 * 100vw / 1920);
    color: #FFFFFF;
    margin-bottom: calc(20 * 100vw / 1920);
    display: inline-block;
    font-family: 'Object Sans SlantedHeavy';
}

.team-layer-title-after {
    font-size: calc(36 * 100vw / 1920);
}

.cases-layer.button {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.cases-layer-button {
    width: calc(231 * 100vw / 1920);
    height: calc(65 * 100vw / 1920);
    line-height: calc(65 * 100vw / 1920);
    font-size: calc(24 * 100vw / 1920);
    color: #E31C1C;
    background: #FFFFFF;
    display: inline-block;
    cursor: pointer;
    -webkit-transition: letter-spacing .3s;
    -o-transition: letter-spacing .3s;
    transition: letter-spacing .3s;
}

.cases-layer-button.team-layer-button {
    color: #334CF5;
}

.cases-layer-button:hover {
    letter-spacing: 3px;
}

.modal::-webkit-scrollbar,
.window::-webkit-scrollbar {
    width: 0 !important
}

.modal-close,
.window-close {
    position: fixed;
    top: calc(70 * 100vw / 1920);
    right: calc(70 * 100vw / 1920);
    width: calc(32 * 100vw / 1920);
    height: calc(32 * 100vw / 1920);
    cursor: pointer;
    z-index: 444;
    -webkit-transition: opacity .2s, -webkit-transform .6s;
    transition: opacity .2s, -webkit-transform .6s;
    -o-transition: transform .6s, opacity .2s;
    transition: transform .6s, opacity .2s;
    transition: transform .6s, opacity .2s, -webkit-transform .6s;
}

.modal-close:hover,
.window-close:hover {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.modal-close img,
.window-close img {
    width: calc(32 * 100vw / 1920);
}

.modal-title {
    position: fixed;
    height: 100%;
    width: calc(50 * 100vw / 1920);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.modal-column-title {
    background-color: #E5E5E5;
    width: 100%;
    height: 100%;
}

.modal-title .title {
    color: #E5E5E5;
    font-size: calc(48 * 100vw / 1920);
    line-height: calc(50 * 100vw / 1920);
    height: calc(272 * 100vw / 1920);
    min-height: calc(272 * 100vw / 1920);
    margin: 70px 0px;
    margin-top: calc(70 * 100vw / 1920);
    margin-bottom: calc(70 * 100vw / 1920);
    font-family: 'Object Sans Heavy';
}

.modal-title .title span {
    -webkit-transform: rotate(-90deg) translate(calc(-224 * 100vw / 1920), calc(-8 * 100vw / 1920));
    -ms-transform: rotate(-90deg) translate(calc(-224 * 100vw / 1920), calc(-8 * 100vw / 1920));
    transform: rotate(-90deg) translate(calc(-224 * 100vw / 1920), calc(-8 * 100vw / 1920));
    display: block;
}

.modal-content {
    height: 100%;
    width: 100%;
    /*overflow-y:scroll;*/
    padding-left: calc(100 * 100vw / 1920);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: left;
    padding-top: calc(140 * 100vw / 1920);
}

.modal-content::-webkit-scrollbar {
    width: 0 !important
}

/**/

.modal-content-items-wrap {
    margin-top: calc(70 * 100vw / 1920);
    margin-bottom: calc(70 * 100vw / 1920);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.modal-content-items-wrap .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: calc(70 * 100vw / 1920);
    margin-bottom: calc(35 * 100vw / 1920);
}

.modal-content-items-wrap .item>img {
    width: calc(240 * 100vw / 1920);
    margin-right: calc(70 * 100vw / 1920);
}

.modal-content-title {
    font-size: calc(48 * 100vw / 1920);
    line-height: calc(49 * 100vw / 1920);
    margin-left: calc(70 * 100vw / 1920);
    position: relative;
    color: #E5E5E5;
    display: inline-block;
}

.modal-content-title:after {
    content: attr(number);
    display: block;
    position: absolute;
    right: calc(-39 * 100vw / 1920);
    top: calc(-12 * 100vw / 1920);
    font-size: calc(18 * 100vw / 1920);
    line-height: calc(19 * 100vw / 1920);
    color: #E5E5E5;
    font-family: 'Object Sans Heavy';
}

.modal-content-title:before {
    content: "";
    display: block;
    position: absolute;
    right: calc(-14 * 100vw / 1920);
    top: calc(-12 * 100vw / 1920);
    width: calc(2 * 100vw / 1920);
    height: calc(32 * 100vw / 1920);
    -webkit-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    transform: rotate(-30deg);
    background: #E5E5E5;
}

.title-partner {
    font-size: calc(36 * 100vw / 1920);
    line-height: calc(37 * 100vw / 1920);
    margin-bottom: calc(35 * 100vw / 1920);
    font-family: 'Object Sans Heavy';
    position: relative;
    display: inline-block;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

.modal-content-items-wrap .item:hover .title-partner {
    color: #000;
}

.title-partner::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 0;
    height: 100%;
    padding: 5px;
    opacity: 0;
    background: #eee;
    -webkit-transition: width .3s, opacity .3s;
    -o-transition: width .3s, opacity .3s;
    transition: width .3s, opacity .3s;
    z-index: -1;
}

.modal-content-items-wrap .item:hover .title-partner::before {
    width: 100%;
    opacity: 1;
}

.social-partner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.social-partner a {
    display: inline-block;
    margin-right: calc(35 * 100vw / 1920);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}

.social-partner a:hover {
    -webkit-transform: scale(.85);
    -ms-transform: scale(.85);
    transform: scale(.85);
}

.social-partner img {
    width: calc(36 * 100vw / 1920);
}

.social-partner a:last-child {
    margin-right: 0px;
}

.modal-content-items-wrap .item .price {
    display: block;
    font-size: calc(24 * 100vw / 1920);
    opacity: 0.5;
}

.modal-content-items-wrap .item button,
.modal-services .complex button,
.modal-services input[type='submit'],
.window button {
    font-size: calc(24 * 100vw / 1920);
    font-family: inherit;
    padding: calc(20 * 100vw / 1920) calc(28 * 100vw / 1920);
    box-sizing: border-box;
    border: calc(2 * 100vw / 1920) solid #e5e5e5;
    border-radius: 100px;
    background: none;
    color: #e5e5e5;
    display: block;
    cursor: pointer;
    transition: background .3s, color .3s;
    margin-top: calc(35 * 100vw / 1920);
}

.modal-content-items-wrap .item button:hover,
.modal-services .complex button:hover,
.modal-services input[type='submit']:hover,
.window button:hover {
    background: #e5e5e5;
    color: #000000;
}

.modal-services .title-partner {
    margin-bottom: calc(15 * 100vw / 1920);
    line-height: 120%;
}

.modal-services .modal-content-items-wrap .item:hover .title-partner::before {
    width: 0;
    opacity: 0;
}

.modal-services .modal-content-items-wrap .item:hover .title-partner {
    color: inherit;
}

.modal-services .complex {
    margin-top: calc(70 * 100vw / 1920);
    margin-bottom: calc(70 * 100vw / 1920);
    margin-left: calc(70 * 100vw / 1920);
    margin-right: calc(160 * 100vw / 1920);
    height: calc(240 * 100vw / 1920);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(70 * 100vw / 1920);
    background: url('/images/services/complex.png') no-repeat center/cover;
    border-radius: 1000px;
    box-sizing: border-box;
    text-align: left;
}

.modal-services .complex .title {
    font-family: 'Object Sans Heavy';
    font-size: calc(36 * 100vw / 1920);
    line-height: calc(37 * 100vw / 1920);
    margin-bottom: calc(36 * 100vw / 1920);
    display: block;
}

.modal-services .complex .price {
    font-size: calc(36 * 100vw / 1920);
    line-height: calc(37 * 100vw / 1920);
}

.modal-services .complex button {
    margin-top: 0;
}

/* .modal-services .item-info-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
} */


.modal-services .more {
    margin-left: calc(70 * 100vw / 1920);
    margin-bottom: calc(48 * 100vw / 1920);
    font-size: calc(32 * 100vw / 1920);
    opacity: .5;
}

.modal-services form {
    margin-left: calc(70 * 100vw / 1920);
    padding-bottom: calc(70 * 100vw / 1920);
    display: flex;
    flex-direction: column;
    width: calc(100% - calc(230 * 100vw / 1920));
    font-size: calc(24 * 100vw / 1920);
}

.modal-services form .title {
    margin-bottom: calc(48 * 100vw / 1920);
    font-family: 'Object Sans Heavy';
    font-size: calc(48 * 100vw / 1920);
    line-height: calc(37 * 100vw / 1920);
}

.modal-services .row {
    display: flex;
    width: 100%;
    align-items: center;
    gap: calc(24 * 100vw / 1920);
    margin-bottom: calc(32 * 100vw / 1920);
}

.modal-services input:not([type='submit']) {
    width: 100%;
    background: none;
    border: none;
    font-family: inherit;
    font-size: inherit;
    border-bottom: 2px solid #E5E5E5;
    padding-bottom: calc(12 * 100vw / 1920);
    color: #fff;
}

.modal-services input:not([type='submit'])::placeholder {
    transition: opacity .2s;
}

.modal-services input:not([type='submit']):focus {
    outline: 0;
}

.modal-services input:not([type='submit']):focus::placeholder {
    opacity: 0;
}

.modal-services input[type='submit'] {
    align-self: flex-start;
    margin-top: 0;
}

/*PRODUCTION*/

.modal-products .modal-content {
    padding-left: calc(120 * 100vw / 1920);
    padding-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.block-production {
    width: calc(490 * 100vw / 1920);
    padding-left: calc(70 * 100vw / 1920);
    padding-right: calc(70 * 100vw / 1920);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: calc(100% - (70 * 100vw / 1920));
}

.production-logo {
    width: 100%;
}

.block-production.stillonly {
    margin-bottom: calc(70 * 100vw / 1920);
    background: url('/images/soback.jpg');
    background-size: cover;
    color: #E5E5E5;
}

.block-production.fullyloaded {
    background: -webkit-gradient(linear, left top, right top, from(#B7DDD2), to(#E6B1DA));
    background: -o-linear-gradient(left, #B7DDD2 0%, #E6B1DA 100%);
    background: linear-gradient(90deg, #B7DDD2 0%, #E6B1DA 100%);
    margin-top: calc(70 * 100vw / 1920);
    margin-left: calc(70 * 100vw / 1920);
    color: #000;
}

.production-title {
    margin-top: calc(35 * 100vw / 1920);
    font-family: 'Object Sans Heavy';
    font-size: calc(24 * 100vw / 1920);
    line-height: calc(25 * 100vw / 1920);
}

.production-description {
    margin-top: calc(70 * 100vw / 1920);
    font-size: calc(14 * 100vw / 1920);
    line-height: calc(29 * 100vw / 1920);
}

.production-link {
    margin-top: calc(70 * 100vw / 1920);
    font-family: 'Object Sans Heavy';
    font-size: calc(24 * 100vw / 1920);
    line-height: calc(25 * 100vw / 1920);
    color: #E31C1C;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

.production-link:hover {
    opacity: .7;
}

.mobile-menu {
    display: none;
}

.svg-mob-x {
    display: none;
}

/* ... window */

.window {
    position: absolute;
    overflow-y: scroll;
    width: calc(100% - calc(535 * 100vw / 1920));
    height: 100%;
    min-height: 100%;
    left: 0;
    z-index: 666;
    margin-left: calc(535 * 100vw / 1920);
    padding-top: calc(70 * 100vw / 1920);
    padding-bottom: calc(153 * 100vw / 1920);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    visibility: hidden;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    top: 0;
    will-change: opacity;
    opacity: 0;
    background: rgba(0, 0, 0, 0.8);
    text-align: left;
}

.window.opened {
    visibility: visible;
    opacity: 1;
}

.window .header {
    margin-bottom: calc(64 * 100vw / 1920);
    display: block;
    width: 80%;
}

.window .title {
    font-family: 'Object Sans Heavy';
    font-size: calc(36 * 100vw / 1920);
    line-height: calc(37 * 100vw / 1920);
    display: block;
    margin-bottom: calc(24 * 100vw / 1920);
}

.window .subtitle {
    opacity: .5;
    font-size: calc(24 * 100vw / 1920);
    line-height: calc(29 * 100vw / 1920);
    display: block;
}

.window button {
    margin-top: calc(48 * 100vw / 1920);
}

.window .text {
    font-size: calc(24 * 100vw / 1920);
    line-height: calc(25 * 100vw / 1920);
}

.window .item {
    margin-bottom: calc(64 * 100vw / 1920);
}


.window .desc {
    font-family: 'Object Sans Heavy';
    margin-bottom: calc(24 * 100vw / 1920);
}

.window ul {
    padding-inline-start: 0;
    width: calc(100% - calc(172 * 100vw / 1920));
}

.window li {
    line-height: calc(29 * 100vw / 1920);
    padding-inline-start: 0;
    list-style: none;
    margin-bottom: calc(29 * 100vw / 1920);
    padding-left: calc(36 * 100vw / 1920);
    position: relative;
}

.window li::before {
    content: "·";
    font-size: calc(32 * 100vw / 1920);
    height: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

@media (min-width:600px) and (orientation:portrait) {
    .svg-pc-x {
        display: none;
    }

    .svg-mob-x {
        display: inline-block;
    }

    .preview {
        height: calc(100% - (50 * 100vw / 768));
    }

    .column-logo-wrap {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin-left: calc(50 * 100vw / 768);
        width: calc(138 * 100vw / 768);
        min-width: calc(138 * 100vw / 768);
    }

    .column-logo-wrap img {
        height: auto;
        min-height: auto;
        margin-top: calc(50 * 100vw / 768);
    }

    .column-info-wrap {
        width: calc(233 * 100vw / 768);
        margin-left: calc(50 * 100vw / 768);
    }

    .column-info-text {
        height: calc(105 * 100vw / 768);
        min-height: calc(105 * 100vw / 768);
        margin-top: calc(50 * 100vw / 768);
        font-size: calc(18 * 100vw / 768);
        line-height: calc(18 * 100vw / 768);
    }

    .column-menu-text a {
        margin-bottom: calc(32 * 100vw / 1920);
    }

    .column-menu-wrap {
        width: calc(150 * 100vw / 768);
        margin-left: calc(50 * 100vw / 768);
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-top: calc(50 * 100vw / 768);
    }

    .column-menu {
        display: none;
    }

    .column-menu-text {
        height: calc(119 * 100vw / 768);
        min-height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: 0px;
        font-size: calc(24 * 100vw / 768);
        line-height: calc(25 * 100vw / 768);
    }

    /*MODAL*/
    .modal {
        background-color: #000;
        padding: calc(50 * 100vw / 768);
    }

    .modal-close,
    .window-close {
        top: calc(50 * 100vw / 768);
        right: calc(50 * 100vw / 768);
        width: calc(24 * 100vw / 768);
        height: calc(24 * 100vw / 768);
    }

    .modal-close img,
    .window-close img {
        width: calc(24 * 100vw / 768);
    }

    .modal-title {
        height: auto;
        position: relative;
        width: 100%;
    }

    .modal-title .title {
        font-size: calc(24 * 100vw / 768);
        line-height: calc(25 * 100vw / 768);
        height: auto;
        min-height: auto;
        margin-top: calc(50 * 100vw / 768);
        margin-bottom: calc(50 * 100vw / 768);
        text-align: center;
        width: 100%;
    }

    .modal-title .title span {
        -webkit-transform: rotate(0deg) translate(0, 0);
        -ms-transform: rotate(0deg) translate(0, 0);
        transform: rotate(0deg) translate(0, 0);
    }

    .modal-column-title {
        display: none;
    }

    .modal-content {
        padding-left: 0px;
        padding-top: 0px;
        text-align: center;
    }

    .modal-content-title {
        font-size: calc(18 * 100vw / 768);
        line-height: calc(18 * 100vw / 768);
        margin-left: 0px;
        margin-bottom: calc(50 * 100vw / 768);
    }

    .modal-content-title:before {
        right: calc(-5 * 100vw / 768);
        top: calc(-4 * 100vw / 768);
        width: calc(1 * 100vw / 768);
        height: calc(12 * 100vw / 768);
    }

    .modal-content-title:after {
        right: calc(-14 * 100vw / 768);
        top: calc(-4 * 100vw / 768);
        font-size: calc(6 * 100vw / 768);
        line-height: calc(6 * 100vw / 768);
    }

    .modal-content-items-wrap {
        padding-left: calc(50 * 100vw / 768);
        padding-right: calc(50 * 100vw / 768);
    }

    .modal-content-items-wrap .item {
        margin-left: calc(50 * 100vw / 768);
        margin-bottom: calc(50 * 100vw / 768);
        text-align: left;
    }

    .modal-content-items-wrap .item>img {
        width: calc(100 * 100vw / 768);
        margin-right: calc(25 * 100vw / 768);
    }

    .title-partner {
        font-size: calc(16 * 100vw / 768);
        line-height: calc(17 * 100vw / 768);
        margin-bottom: calc(15 * 100vw / 768);
    }

    .social-partner a {
        margin-right: calc(15 * 100vw / 768);
    }

    .social-partner img {
        width: calc(14 * 100vw / 768);
    }

    .modal-content-items-wrap .item .price {
        font-size: calc(14 * 100vw / 768);
    }

    .modal-services input:not([type='submit']) {
        padding-bottom: calc(8 * 100vw / 768);
    }

    .modal-content-items-wrap .item button,
    .modal-services .complex button,
    .modal-services input[type='submit'],
    .window button {
        font-size: calc(14 * 100vw / 768);
        padding: calc(8 * 100vw / 768) calc(12 * 100vw / 768);;
    }

    .modal-services .complex {
        margin-left: calc(100 * 100vw / 768);
        margin-bottom: calc(50 * 100vw / 768);
        margin-right: calc(50 * 100vw / 768);
    }

    .modal-services .more {
        width: 100%;
        font-size: calc(16 * 100vw / 768);
    }

    .modal-services form {
        margin-left: calc(100 * 100vw / 768);
        width: calc(100% - calc(170 * 100vw / 768));
        font-size: calc(16 * 100vw / 768);
        padding-bottom: calc(64 * 100vw / 768);
    }

    .modal-services form .title {
        font-size: calc(18 * 100vw / 768);
        line-height: calc(18 * 100vw / 768);
    }

    .modal-services input[type='submit'] {
        width: 100%;
    }


    /**/
    .cases-layer-title {
        font-size: calc(36 * 100vw / 768);
        line-height: calc(37 * 100vw / 768);
        width: calc(350 * 100vw / 768);
    }

    .team-layer-title-after {
        font-size: calc(20 * 100vw / 768);
    }

    .cases-layer img.svg-circle {
        width: 48%;
    }

    .cases-layer-button {
        width: 100%;
        height: calc(75 * 100vw / 768);
        line-height: calc(75 * 100vw / 768);
        font-size: calc(24 * 100vw / 768);
    }

    .cases-layer.button {
        padding: 0px;
    }

    /**/
    .modal-products .modal-content {
        position: relative;
        padding-left: 0px;
        height: calc(100% - 75 * 100vw / 768);
    }

    .block-production {
        width: calc(325 * 100vw / 768);
        height: calc(460 * 100vw / 768);
        min-height: calc(460 * 100vw / 768);
        padding-left: calc(50 * 100vw / 768);
        padding-right: calc(50 * 100vw / 768);
        position: absolute;
    }

    .block-production.stillonly {
        left: 20px;
        margin-bottom: 0px;
    }

    .block-production.fullyloaded {
        right: 20px;
        bottom: 80px;
    }

    .production-title {
        margin-top: calc(25 * 100vw / 768);
        font-size: calc(17 * 100vw / 768);
        line-height: calc(19 * 100vw / 768);
    }

    .production-description {
        margin-top: calc(25 * 100vw / 768);
        font-size: calc(12 * 100vw / 768);
        line-height: calc(18 * 100vw / 768);
        text-align: center;
    }

    .production-link {
        margin-top: calc(25 * 100vw / 768);
        font-size: calc(24 * 100vw / 768);
        line-height: calc(25 * 100vw / 768);
    }

    .social-wrap {
        top: calc(25 * 100vw / 768);
        right: calc(25 * 100vw / 768);
        padding: calc(9 * 100vw / 768);
    }

    .social-wrap img,
    .social-wrap svg {
        width: calc(20 * 100vw / 768);
    }

    .social-wrap a:first-child img {
        margin-right: calc(19 * 100vw / 768);
    }

    .social-wrap a:last-child svg {
        margin-left: calc(19 * 100vw / 768);
    }

    /* ... window */

    .window {
        width: 100%;
        margin-left: 0;
        padding: calc(70 * 100vw / 768);
    }

    .window .title {
        font-size: calc(24 * 100vw / 768);
        line-height: calc(29 * 100vw / 768);
    }

    .window .subtitle {
        font-size: calc(16 * 100vw / 768);
        line-height: calc(19 * 100vw / 768);
    }

    .window .text {
        font-size: calc(14 * 100vw / 768);
        line-height: calc(17 * 100vw / 768);
    }

    .window li {
        line-height: calc(19 * 100vw / 768);
    }
}

@media (max-width:599px) and (orientation:portrait) {
    .svg-pc-x {
        display: none;
    }

    .svg-mob-x {
        display: inline-block;
    }

    .preview {
        height: calc(100% - (25 * 100vw / 375));
    }

    @-webkit-keyframes col-wraps {
        0% {
            height: 100%;
            opacity: 0;
        }

        100% {
            height: 100%;
            opacity: 1;
        }
    }

    @keyframes col-wraps {
        0% {
            height: 100%;
            opacity: 0;
        }

        100% {
            height: 100%;
            opacity: 1;
        }
    }

    .social-wrap {
        top: calc(25 * 100vw / 375);
        right: calc(25 * 100vw / 375);
        padding: calc(9 * 100vw / 375);
    }

    .social-wrap img,
    .social-wrap svg {
        width: calc(20 * 100vw / 375);
    }

    .social-wrap a:first-child img {
        margin-right: calc(19 * 100vw / 375);
    }

    .social-wrap a:last-child svg {
        margin-left: calc(19 * 100vw / 375);
    }

    .column-logo-wrap {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin-left: calc(25 * 100vw / 375);
        width: calc(90 * 100vw / 375);
        min-width: calc(90 * 100vw / 375);
    }

    .column-logo-wrap img {
        height: calc(88 * 100vw / 375);
        min-height: calc(88 * 100vw / 375);
        margin-top: 0px;
        -webkit-transform: rotate(90deg) translate(calc(14 * 100vw / 375), 0px);
        -ms-transform: rotate(90deg) translate(calc(14 * 100vw / 375), 0px);
        transform: rotate(90deg) translate(calc(14 * 100vw / 375), 0px);
    }

    .column-info-wrap {
        position: absolute;
        height: auto;
        bottom: calc(111 * 100vw / 375);
        width: calc(243 * 100vw / 375);
        margin-left: calc(25 * 100vw / 375);
    }

    .column-menu-text {
        position: absolute;
        top: 0px;
        height: 100%;
        margin-top: 0px;
        background: #e5e5e5;
        width: 100%;
        -webkit-transform: translateX(100vw);
        -ms-transform: translateX(100vw);
        transform: translateX(100vw);
        -webkit-transition: 0.2s;
        -o-transition: 0.2s;
        transition: 0.2s;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: calc(24 * 100vw / 375);
        line-height: calc(25 * 100vw / 375);
        color: #E31C1C;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        padding-right: calc(25 * 100vw / 375);
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .column-menu-text a {
        margin-bottom: calc(25 * 100vw / 375);
        -ms-flex-item-align: end;
        align-self: flex-end;
    }

    .column-menu-text a:last-child {
        margin-bottom: 0px;
    }

    .column-menu-text.active-menu {
        -webkit-transform: translateX(0vw);
        -ms-transform: translateX(0vw);
        transform: translateX(0vw);
    }

    .column-logo,
    .column-info {
        background: none;
    }

    .column-info-text {
        height: auto;
        min-height: auto;
        margin-top: 0px;
        font-size: calc(18 * 100vw / 375);
        line-height: calc(18 * 100vw / 375);
    }

    .column-menu {
        height: calc(60 * 100vw / 375);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-right: calc(25 * 100vw / 375);
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .column-menu-wrap {
        width: 100%;
        overflow: hidden;
        position: relative;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin-left: calc(25 * 100vw / 375);
    }

    .mobile-menu {
        display: block;
        position: absolute;
        z-index: 222;
    }

    .mobile-menu span {
        display: block;
        width: 24px;
        height: 2px;
        background-color: #E31C1C;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        -webkit-transform-origin: 100%;
        -ms-transform-origin: 100%;
        transform-origin: 100%;
    }

    .mobile-menu span:nth-child(2) {
        margin: 5px 0px;
        width: 16px;
        margin-left: 8px;
    }

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

    .mobile-menu.active span:nth-child(1) {
        -webkit-transform: rotate(-45deg) translate(2px, -2px);
        -ms-transform: rotate(-45deg) translate(2px, -2px);
        transform: rotate(-45deg) translate(2px, -2px);
    }

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

    /*MODAL*/
    .modal {
        background-color: #000;
        padding: calc(25 * 100vw / 375);
    }

    .modal-close,
    .window-close {
        top: calc(25 * 100vw / 375);
        right: calc(25 * 100vw / 375);
        width: calc(24 * 100vw / 375);
        height: calc(24 * 100vw / 375);
    }

    .modal-close img,
    .window-close img {
        width: calc(24 * 100vw / 375);
    }

    .modal-title {
        height: auto;
        position: relative;
        width: 100%;
    }

    .modal-title .title {
        font-size: calc(24 * 100vw / 375);
        line-height: calc(25 * 100vw / 375);
        height: auto;
        min-height: auto;
        margin-top: calc(49 * 100vw / 375);
        margin-bottom: calc(25 * 100vw / 375);
        text-align: center;
        width: 100%;
    }

    .modal-title .title span {
        -webkit-transform: rotate(0deg) translate(0, 0);
        -ms-transform: rotate(0deg) translate(0, 0);
        transform: rotate(0deg) translate(0, 0);
    }

    .modal-column-title {
        display: none;
    }

    .modal-content {
        padding-left: 0px;
        padding-top: 0px;
        text-align: center;
    }

    .modal-content-title {
        font-size: calc(18 * 100vw / 375);
        line-height: calc(18 * 100vw / 375);
        margin-left: 0px;
        margin-bottom: calc(25 * 100vw / 375);
    }

    .modal-content-title:before {
        right: calc(-5 * 100vw / 375);
        top: calc(-4 * 100vw / 375);
        width: calc(1 * 100vw / 375);
        height: calc(12 * 100vw / 375);
    }

    .modal-content-title:after {
        right: calc(-14 * 100vw / 375);
        top: calc(-4 * 100vw / 375);
        font-size: calc(6 * 100vw / 375);
        line-height: calc(6 * 100vw / 375);
    }

    .modal-content-items-wrap .item {
        margin-left: 0px;
        margin-bottom: calc(25 * 100vw / 375);
        text-align: left;
    }

    .modal-content-items-wrap .item>img {
        width: calc(100 * 100vw / 375);
        margin-right: calc(25 * 100vw / 375);
    }

    .title-partner {
        font-size: calc(16 * 100vw / 375);
        line-height: calc(17 * 100vw / 375);
        margin-bottom: calc(15 * 100vw / 375);
    }

    .social-partner a {
        margin-right: calc(15 * 100vw / 375);
    }

    .social-partner img {
        width: calc(14 * 100vw / 375);
    }

    .modal-services .complex {
        flex-direction: column;
        height: calc(150 * 100vw / 375);
        margin-left: 0;
        margin-right: 0;
        text-align: center;
        padding: calc(20 * 100vw / 375);
        margin-bottom: calc(32 * 100vw / 375);
        border-radius: 32px;
    }

    .modal-services .complex .title {
        font-size: calc(16 * 100vw / 375);
        margin-bottom: calc(20 * 100vw / 375);
        line-height: calc(16 * 100vw / 375);
    }

    .modal-services .complex .price {
        font-size: calc(14 * 100vw / 375);
    }

    .modal-content-items-wrap .item button,
    .modal-services .complex button,
    .modal-services input[type='submit'],
    .window button {
        font-size: calc(14 * 100vw / 375);
        padding: calc(12 * 100vw / 375) calc(16 * 100vw / 375);
    }

    .modal-content-items-wrap .item .price {
        font-size: calc(14 * 100vw / 375);
    }

    .modal-services .more {
        font-size: calc(16 * 100vw / 375);
        margin-top: calc(32 * 100vw / 375);
        margin-bottom: calc(48 * 100vw / 375);
        margin-left: 0;
    }

    .modal-services form {
        margin-left: 0;
        width: 100%;
        text-align: left;
        padding-bottom: calc(70 * 100vw / 375);
    }

    .modal-services form .title {
        font-size: calc(20 * 100vw / 375);
        margin-bottom: calc(32 * 100vw / 375);
    }

    .modal-services .row {
        flex-direction: column;
        gap: calc(12 * 100vw / 375);
        margin-bottom: calc(12 * 100vw / 375);
    }

    .modal-services input:not([type='submit']) {
        font-size: calc(16 * 100vw / 375);
        padding-bottom: calc(8 * 100vw / 375);
        margin-bottom: calc(12 * 100vw / 375);
    }

    .modal-services input[type='submit'] {
        width: 100%;
    }

    .modal-services .modal-content-items-wrap {
        margin: 0;
    }

    /**/
    .cases-layer-title {
        font-size: calc(36 * 100vw / 375);
        line-height: calc(37 * 100vw / 375);
        width: calc(160 * 100vw / 375);
    }

    .cases-layer-title.team-layer-title {
        width: calc(220 * 100vw / 375);
    }

    .team-layer-title-after {
        font-size: calc(20 * 100vw / 360);
    }

    .cases-layer img.svg-circle {
        width: 60%;
    }

    .cases-layer-button {
        width: 100%;
        height: calc(75 * 100vw / 375);
        line-height: calc(75 * 100vw / 375);
        font-size: calc(24 * 100vw / 375);
    }

    .cases-layer.button {
        padding: 0px;
    }

    /**/
    .block-production {
        width: 100%;
        height: calc(460 * 100vw / 375);
        min-height: calc(460 * 100vw / 375);
        padding-left: calc(50 * 100vw / 375);
        padding-right: calc(50 * 100vw / 375);
    }

    .modal-products .modal-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-left: 0px;
    }

    .block-production.fullyloaded {
        margin-left: 0px;
        margin-bottom: calc(100 * 100vw / 375);
    }

    .production-title {
        margin-top: calc(25 * 100vw / 375);
        font-size: calc(17 * 100vw / 375);
        line-height: calc(19 * 100vw / 375);
    }

    .production-description {
        margin-top: calc(25 * 100vw / 375);
        font-size: calc(12 * 100vw / 375);
        line-height: calc(18 * 100vw / 375);
        text-align: center;
    }

    .production-link {
        margin-top: calc(25 * 100vw / 375);
        font-size: calc(24 * 100vw / 375);
        line-height: calc(25 * 100vw / 375);
    }

    /* ... window */

    .window {
        width: 100%;
        margin-left: 0;
        padding: calc(52 * 100vw / 375) calc(25 * 100vw / 375);
    }

    .window .title {
        font-size: calc(24 * 100vw / 375);
        line-height: calc(26 * 100vw / 375);
        margin-bottom: calc(16 * 100vw / 375);
    }

    .window .subtitle {
        font-size: calc(16 * 100vw / 375);
        line-height: calc(18 * 100vw / 375);
        margin-bottom: calc(24 * 100vw / 375);
    }

    .window button {
        margin-bottom: calc(32 * 100vw / 375);
    }

    .window .text {
        font-size: calc(16 * 100vw / 375);
        line-height: calc(25 * 100vw / 375);
    }

    .window li {
        line-height: calc(25 * 100vw / 375);
    }
}