/*!
Theme Name: Dodotap
Author: Petro Pasteruk
 */
@font-face {
    font-family: 'ObjectSans-Heavy';
    src: url('./fonts/ObjectSans-Heavy.otf');
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --width-loader: 125px;
}

html {
    scroll-behavior: smooth;
}

button {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

input, textarea {
    appearance: none !important;
    -webkit-appearance: none !important;
    outline: none;
}

input:focus, textarea:focus {
    outline-offset: unset;
}

#wrapper {
    min-height: 100%;
    padding-bottom: 612px;
    overflow: hidden;
}

#wrapper.none-footer {
    padding-bottom: 0;
}

.d-none {
    display: none !important;
}

/* Global */
.container {
    max-width: 1120px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    font-family: 'ObjectSans-Heavy', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 24px;
    overflow: hidden;
}

.logo.blue {
    position: relative;
    color: #0669f7;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.logo.blue:before {
    content: 'Dodotap.';
    font-family: 'ObjectSans-Heavy', sans-serif;
    text-transform: uppercase;
    font-size: 24px;
    color: #231e57;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    height: 100%;
    overflow: hidden;
}

.logo.blue:hover {
    text-shadow: 0 1px 0 rgb(255, 255, 255), 0 -1px 0 rgb(255, 255, 255),
    1px 0 0 rgb(255, 255, 255), -1px 0 0 rgb(255, 255, 255),
    1px 1px 0 rgb(255, 255, 255), 1px -1px 0 rgb(255, 255, 255),
    -1px 1px 0 rgb(255, 255, 255), -1px -1px 0 rgb(255, 255, 255);
}

.logo.blue:hover:before {
    height: 0;
}

.logo.white {
    color: #fff;
}

.btn--imprint {
    position: relative;
    max-width: 260px;
    width: 100%;
    height: 60px;
    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;
    background: -o-linear-gradient(
            159.64deg,
            #ffffff 1.51%,
            rgba(255, 255, 255, 0.5) 74.57%
    );
    background: linear-gradient(
            290.36deg,
            #ffffff 1.51%,
            rgba(255, 255, 255, 0.5) 74.57%
    );
    -webkit-box-shadow: 0 7px 15px rgba(18, 50, 111, 0.3);
    box-shadow: 0 7px 15px rgba(18, 50, 111, 0.3);
    opacity: 0.7;
    border-radius: 16px;
    border: 1px solid rgba(143, 177, 255, 0.4);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.02em;
    color: #0669f7;
    text-decoration: none;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
}

.btn--imprint:hover {
    opacity: 1;
    border-radius: 20px;
    -webkit-box-shadow: 0 7px 15px rgba(18, 50, 111, 0.1);
    box-shadow: 0 7px 15px rgba(18, 50, 111, 0.1);
}

.btn--imprint__img {
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    pointer-events: none;
    overflow: hidden;
}

.btn--imprint__no-hover {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.btn--imprint__hover {
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    height: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.btn--imprint:hover .btn--imprint__hover {
    height: 100%;
}

.btn--imprint__hover > img {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.btn--transparent {
    background: rgba(255, 255, 255, 0.1);
    -webkit-box-shadow: 10px 20px 60px rgba(58, 65, 123, 0.25),
    0 7px 15px rgba(18, 50, 111, 0.3);
    box-shadow: 10px 20px 60px rgba(58, 65, 123, 0.25),
    0 7px 15px rgba(18, 50, 111, 0.3);
    -webkit-backdrop-filter: blur(110px);
    backdrop-filter: blur(110px);
    border: 1px solid #fff;
    height: 68px;
    text-align: center;
    border-radius: 24px;
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
    max-width: 300px;
    width: 100%;
    -webkit-transition: all 0.7s;
    -o-transition: all 0.7s;
    transition: all 0.7s;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.btn--transparent:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 100%;
    background: -o-linear-gradient(
            159.64deg,
            #ffffff 1.51%,
            rgba(255, 255, 255, 0.5) 74.57%
    );
    background: linear-gradient(
            290.36deg,
            #ffffff 1.51%,
            rgba(255, 255, 255, 0.5) 74.57%
    );
    z-index: -1;
    -webkit-transform: translateX(-120%) skew(30deg);
    -ms-transform: translateX(-120%) skew(30deg);
    transform: translateX(-120%) skew(30deg);
    -webkit-transition: all 0.7s;
    -o-transition: all 0.7s;
    transition: all 0.7s;
    -webkit-backface-visibility: hidden;
}

.btn--transparent.active,
.btn--transparent:hover {
    color: #0669f7;
    background-position-x: 300px;
}

.btn--transparent.active:before,
.btn--transparent:hover:before {
    -webkit-transform: translateX(-10%) skew(30deg);
    -ms-transform: translateX(-10%) skew(30deg);
    transform: translateX(-10%) skew(30deg);
}

.title--blue {
    font-weight: 600;
    font-size: 44px;
    line-height: 44px;
    color: #2d67ee;
}

.title--white {
    font-weight: 600;
    font-size: 44px;
    line-height: 44px;
    color: #fff;
}

.title--dark {
    font-weight: 600;
    font-size: 44px;
    line-height: 44px;
    color: #231e57;
}

.title--limited {
    max-width: 512px;
}

.intro-title--big {
    font-weight: 400;
    font-size: 76px;
    line-height: 92px;
    color: #231e57;
    max-width: 710px;
    margin-bottom: 24px;
}

.desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}

.link {
    font-weight: 400;
    font-size: 14px;
    color: #231e57;
    opacity: 0.7;
    text-decoration: none;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.link:after {
    content: url('./images/arrow-top-left-silver.svg');
    margin-left: 6px;
    margin-top: -2px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.link:hover {
    -webkit-transform: translate(3px, -2px);
    -ms-transform: translate(3px, -2px);
    transform: translate(3px, -2px);
}

.link:hover:after {
    -webkit-transform: translate(6px, -5px);
    -ms-transform: translate(6px, -5px);
    transform: translate(6px, -5px);
}

.big-link {
    background: rgba(255, 255, 255, 0.6);
    -webkit-box-shadow: 0 20px 60px rgba(124, 124, 124, 0.3);
    box-shadow: 0 20px 60px rgba(124, 124, 124, 0.3);
    -webkit-backdrop-filter: blur(100px);
    backdrop-filter: blur(100px);
    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;
    border: 2px solid rgba(150, 150, 150, 0.25);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    color: #403b7d;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.big-link > span {
    line-height: 12px;
    border-bottom: 1px solid #403b7d;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-bottom: 6px;
    position: relative;
}

.big-link > span:after {
    content: url('./images/arrow-top-left-silver-bg.svg');
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    height: 0;
    overflow: hidden;
}

.big-link img {
    margin-left: 6px;
}

.big-link:hover > span:after {
    height: 100%;
}

.big-link:hover {
    background: rgba(255, 255, 255, 0.9);
}

.link-underline-animation {
    text-decoration: none;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.link-underline-animation:before {
    content: '';
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: -100%;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.link-underline-animation:hover:before {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.input-wrap {
    position: relative;
    margin-bottom: 14px;
}

.input {
    height: 54px;
    border-radius: 14px;
    border: none;
    padding: 0 22px;
    font-size: 14px;
    font-weight: 400;
    transition: all .5s;
}

.input:focus-visible,
.input:focus,
.input:active {
    outline: none;
}

.input.phone {
    font-size: 16px;
}

.input-wrap.incorrectly .input,
.input-wrap.required .input {
    border: 1px solid #FF2433 !important;
}

.input-wrap.incorrectly:after,
.input-wrap.required:before {
    opacity: 1;
}

.intro {
    height: 100vh;
    overflow: hidden;
    position: relative;
    min-height: 700px;
}

.intro-bg {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100vw;
    height: 100%;
}

.middle-screen,
.small-screen {
    display: none;
}

.intro__socials.blue--bg .intro__link:before {
    background: #2d67ee;
}

.two-intro {
    position: relative;
    overflow: hidden;
}

.two-intro__backgrounds {
    pointer-events: none;
    list-style: none;
}

.two-intro__bg-item {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    overflow: hidden;
}

.two-intro__bg-item:nth-of-type(1) {
    left: 0;
}

.two-intro__bg-item:nth-of-type(2) {
    right: 0;
}

.two-intro__bg {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.two-intro__img-animation {
    position: absolute;
    bottom: -25%;
    left: 0;
    -webkit-transform: rotate(35deg) translateY(0);
    -ms-transform: rotate(35deg) translateY(0);
    transform: rotate(35deg) translateY(0);
    -webkit-animation: twoImagesAnimation 10s linear infinite alternate;
    animation: twoImagesAnimation 10s linear infinite alternate;
    animation-delay: .5s;
}

.two-intro > .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}

.two-intro .intro__heading {
    padding-bottom: 0;
    padding-top: 0;
    /*padding: 0;*/
    display: flex;
    /*align-items: center;*/
    justify-content: center;
}

.intro__heading {
    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;
    width: 50%;
    padding-top: 247px;
    padding-bottom: 30px;
    padding-right: 90px;
}

.intro__breadcrumbs {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 5px;
}

.intro__breadcrumbs:before {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #231e57;
    opacity: 0.7;
    margin-right: 10px;
}

.intro__breadcrumb {
    margin-right: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.intro__breadcrumb.active {
    margin-right: 0;
    pointer-events: none;
}

.intro__breadcrumb.active:before {
    content: '/';
    margin-right: 7px;
    font-size: 14px;
    color: #646087;
}

.intro__breadcrumbs-link {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.intro__breadcrumbs-link:before {
    content: '';
    width: 100%;
    height: 1px;
    background: #000;
    bottom: 0;
    position: absolute;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.intro__breadcrumbs-link:hover:before {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.intro__breadcrumb.active .intro__breadcrumbs-link {
    color: #646087;
    font-weight: 400;
}

.intro__breadcrumb.active .intro__breadcrumbs-link:before {
    display: none;
}

.two-intro__title {
    font-weight: 500;
    font-size: 32px;
    line-height: 90px;
    color: #231e57;
}

.two-intro__desc {
    font-size: 16px;
    line-height: 28px;
    color: #231e57;
    opacity: 0.8;
    margin-bottom: 58px;
    max-width: 460px;
}

.two-intro__btn {
}

.intro__animation {
    position: absolute;
    width: 50vw;
    height: 100%;
    /*background: deepskyblue;*/
    right: 0;
    top: 0;
}

.section-name {
    font-weight: 400;
    font-size: 14px;
    line-height: 36px;
    color: rgba(35, 30, 87, 0.7);
    position: relative;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.section-name:before {
    content: '';
    background: #231e57;
    opacity: 0.7;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    margin-right: 15px;
}

.section-name:after {
    content: '';
    height: 47px;
    width: 47px;
    border: 1px solid #918fa9;
    border-radius: 50%;
    opacity: 0.3;
    position: absolute;
    right: -32px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.label-block {
    font-weight: 400;
    font-size: 14px;
    color: #231e57;
    opacity: 0.5;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    text-transform: capitalize;
    position: absolute;
}

.label-block:before {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #231e57;
    top: 50%;
    left: -15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.label-block:after {
    content: '';
    position: absolute;
    width: 47px;
    height: 47px;
    border-radius: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: calc(100% - 9px);
    border: 1px solid rgba(35, 30, 87, 0.3);
}

.iti {
    width: 100%;
}

.iti.open .phone {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.iti.open .iti__selected-flag {
    border-radius: 14px 0 0 0;
}

/*.iti .phone {*/
/*    -webkit-transition: none;*/
/*    -o-transition: none;*/
/*    transition: none;*/
/*}*/

.iti__selected-flag {
    padding-left: 20px;
    border-radius: 14px 0 0 14px;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type='text'],
.iti--allow-dropdown input[type='tel'],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type='text'],
.iti--separate-dial-code input[type='tel'] {
    padding-left: 65px;
}

.iti__flag-box,
.iti__country-name {
    color: #fff;
}

.iti__arrow {
    border: none;
    background: url('./images/iti_arrow.svg') no-repeat center center;
    background-size: cover;
    height: 11px;
    width: 10px;
    -webkit-transition: -webkit-transform 0.2s ease-in;
    transition: -webkit-transform 0.2s ease-in;
    -o-transition: transform 0.2s ease-in;
    transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
}

.iti__arrow--up {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.modal__block--white .iti__arrow {
    background: url('./images/iti_arrow-black.svg') no-repeat center center;
    border: none;
    background-size: cover;
    height: 11px;
    width: 10px;
}

.iti__country-list {
    background-color: #739dff;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    width: 100%;
    top: 54px;
    border: none;
    scrollbar-width: none;
}

.iti__country-list::-webkit-scrollbar {
    display: none;
}

.iti__selected-flag {
    position: absolute;
    top: 0;
    left: 0;
    height: 54px;
}

.iti__flag-container {
    width: 100%;
}

.iti__divider {
    display: none;
}

.iti__dial-code {
    color: #231e57;
}

.iti__country-list .iti__country:not(:last-child) {
    border-bottom: 1px solid rgba(145, 143, 169, 0.6);
}

.modal__block--white .iti__country-list {
    background-color: #f3f9ff;
}

.modal__block--white .iti__country-name,
.modal__block--white .iti__dial-code {
    color: #918fa9;
}

.modal__block--white .iti__country-list .iti__country:not(:last-child) {
    border-bottom: 1px solid rgba(145, 143, 169, 0.12);
}

.iti__country {
    padding: 12px;
}

.iti__selected-dial-code {
    /*color: #fff;*/
    display: none;
}

/*.modal__block--white .iti__selected-dial-code {*/
/*  color: #000;*/
/*}*/

.toast-title,
.toast-message {
    font-size: 14px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 20px;
}

/* \Global */

/* Header */
.header {
    position: fixed;
    height: 83px;
    top: 0;
    left: 50%;
    width: 100%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 5;
}

body.admin-bar .header {
    top: 32px;
}

.header__logo {
}

.header__controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__btn {
    background: #ffffff;
    -webkit-box-shadow: 0 2px 4px rgba(70, 96, 147, 0.2);
    box-shadow: 0 2px 4px rgba(70, 96, 147, 0.2);
    border-radius: 30px;
    padding: 8px 21px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 14px;
    color: #0669f7;
    text-decoration: none;
    margin-right: 18px;
    height: 36px;
    position: relative;
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    display: inline-block;
    border: 1px solid #fff;
}

/*.header__btn.revert:before {*/
/*  content: '';*/
/*  position: absolute;*/
/*  top: -1px;*/
/*  left: -1px;*/
/*  bottom: -1px;*/
/*  right: -1px;*/
/*  background: linear-gradient(*/
/*    -276.5deg,*/
/*    rgba(255, 255, 255, 0.1) 5.19%,*/
/*    rgba(255, 255, 255, 0.5) 92.45%*/
/*  );*/
/*  border-radius: 30px;*/
/*  z-index: -1;*/
/*  transform: rotate(-180deg);*/
/*}*/

.header__btn:hover {
    background: #0669f7;
    color: #ffffff;
}

.header__btn.revert {
    background: #0669f7;
    color: #ffffff;
    z-index: 10;
    border: 1px solid #fff;
}

.header__btn.revert:hover {
    background: #ffffff;
    color: #0669f7;
}

.header__burger {
    width: 50px;
    height: 36px;
    background: #ffffff;
    -webkit-box-shadow: 0 2px 4px rgba(70, 96, 147, 0.2);
    box-shadow: 0 2px 4px rgba(70, 96, 147, 0.2);
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    border-radius: 30px;
    cursor: pointer;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border: 1px solid #fff;
}

.header__burger:before,
.header__burger:after {
    content: '';
    height: 2px;
    background: #0669f7;
    margin-left: 13px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.header__burger:before {
    width: 25px;
    margin-bottom: 5px;
}

.header__burger:after {
    width: 18px;
}

.header__burger:hover {
    background: #0669f7;
}

.header__burger:hover:before,
.header__burger:hover:after {
    background: #ffffff;
}

/* \Header */

/* Main menu */
.main-menu__wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
    z-index: 7;
}

.main-menu__wrapper.active {
    pointer-events: initial;
}

.main-menu {
    padding-top: 35px;
    padding-bottom: 136px;
    background: #2d67ee;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    z-index: 1;
}

.main-menu__wrapper.active .main-menu {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.main-menu__heading {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 125px;
}

.main-menu__logo {
}

.main-menu__controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-menu__languages {
    list-style: none;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border: 1px solid #ffffff;
    border-radius: 10px;
    margin-right: 35px;
    height: 36px;
    position: relative;
}

.main-menu__slider {
    position: absolute;
    width: 46px;
    top: -1px;
    bottom: -1px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #ffffff;
    border-radius: 10px;
    left: -1px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.main-menu__language > a,
.lang-item > a {
    font-weight: 500;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    padding: 0 14px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
}

.main-menu__contact {
}

.main-menu__close {
    height: 36px;
    width: 50px;
    border: none;
    cursor: pointer;
    background: #0669f7;
    -webkit-box-shadow: 0 2px 4px rgba(70, 96, 147, 0.2);
    box-shadow: 0 2px 4px rgba(70, 96, 147, 0.2);
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    border-radius: 30px;
    position: relative;
    color: #fff;
    padding: 6px 25px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin-right: 0;
}

.main-menu__close svg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.main-menu__close:hover {
    background: #ffffff;
}

.main-menu__close:hover path {
    fill: #0669f7;
}

.main-menu__list {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.main-menu__list .menu-item {
    position: relative;
}

.main-menu__list .menu-item:before {
    content: '';
    position: absolute;
    background: #ffffff;
    opacity: 0.5;
    width: 1px;
    height: 41px;
    right: -85px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.main-menu__list .menu-item:nth-last-of-type(1):before {
    display: none;
}

.main-menu__list a {
    font-weight: 600;
    font-size: 2.2vmax;
    line-height: 45px;
    color: #ffffff;
    text-decoration: none;
    position: relative;
}

.main-menu__list a:before {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border: 0 solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 0;
}

.main-menu__list a:hover:before {
    width: 62px;
    height: 65px;
    border-width: 1px;
}

.main-menu__shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    opacity: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    pointer-events: none;
}

.main-menu__wrapper.active .main-menu__shadow {
    opacity: 1;
    pointer-events: initial;
}

.main-menu__mobile,
.main-menu__tablet,
.main-menu__tablet.footer__submit {
    display: none;
}

/* \Main menu */

/* Intro */
.intro__socials {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.intro__social {
    padding-right: 40px;
    position: relative;
}

.intro__social:after {
    content: '';
    height: 30px;
    width: 1px;
    background: #669ecb;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;
}

.intro__social:nth-last-of-type(1):after {
    display: none;
}

.intro__social:nth-last-of-type(1) {
    padding-right: 0;
}

.intro__link {
    list-style: none;
    font-weight: 500;
    font-size: 14px;
    color: #231e57;
    text-decoration: none;
    position: relative;
}

.intro__link:before {
    content: '';
    position: absolute;
    background: #ffffff;
    opacity: 0.15;
    border: 1px solid rgba(255, 255, 255, 0.5);
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.intro__link:hover:before {
    width: 34px;
    height: 34px;
}

/* \Intro */

/* Projects */
.projects {
    position: relative;
    max-height: 820px;
    height: 820px;
    overflow: hidden;
}

.projects .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}

.projects__content-bg {
    position: absolute;
    width: 50%;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    z-index: -1;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.project__swither-bg {
    position: absolute;
    height: 100%;
    width: 50vw;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: -2;
    -o-object-fit: cover;
    object-fit: cover;
}

.projects__switcher,
.projects__content {
    padding: 114px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*justify-content: center;*/
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 50%;
    height: 100%;
}

.projects__switcher {
    padding-right: 174px;
    max-height: 820px;
}

.web .projects__switcher {
    justify-content: center;
}

.projects__heading {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 55px;
}

.projects__title {
    font-weight: 400;
    font-size: 36px;
    line-height: 44px;
    color: #231e57;
}

.projects__link {
}

.projects__list {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.projects__item {
    width: calc(100% / 3 - 20px);
    margin-bottom: 30px;
    cursor: pointer;
}

.projects__item.active {
}

.projects__img {
    border: 1px solid transparent;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    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;
    padding: 3px;
    border-radius: 30px;
    min-width: 108px;
    max-width: 108px;
    margin: 0 auto;
}

.projects__img > img {
    max-height: 100px;
}

.projects__caption {
    font-weight: 500;
    font-size: 16px;
    line-height: 48px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #231e57;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.projects__item.active .projects__caption {
    font-weight: 700;
}

.projects__content {
    padding-left: 216px;
}

.projects-all {
    list-style: none;
    position: relative;
    width: 100%;
    height: 100%;
}

.project {
    position: absolute;
    margin-bottom: 160px;
    opacity: 0;
    /*border: 1px solid #fff;*/
    border-radius: 25px;
}

.project {
    top: 120%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: opacity 0.3s, -webkit-transform 1s;
    -o-transition: opacity 0.3s, transform 1s;
    transition: opacity 0.3s, transform 1s, -webkit-transform 1s;
}

.project.active {
    -webkit-transform: translate(-50%, -120%);
    -ms-transform: translate(-50%, -120%);
    transform: translate(-50%, -120%);
    opacity: 1;
}

.project__slider {
    list-style: none;
    position: relative;
    height: 595px;
    width: 290px;
}

.web .project__slider {
    width: 540px;
    height: 345px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.web .project {
    top: 50%;
}

.web .project.active {
    transform: translate(-50%, -50%);
}

.web .project__pagination {
    right: -30px;
}

.project__slide {
    position: absolute;
    /*background: linear-gradient(257.4deg, rgba(255, 255, 255, 0.5) 21.49%, rgba(255, 255, 255, 0.25) 82.13%);*/
    -webkit-box-shadow: 0 30px 100px rgba(0, 0, 0, 0.15);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.15);
    /*backdrop-filter: blur(110px);*/
    border-radius: 24px;
    font-size: 0;
    padding: 15px 13px;
    height: 100%;
    width: 100%;
    background: url('./images/phone-substrate.png') no-repeat center center;
    background-size: cover;
    top: 15px;
    left: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.web .project__slide {
    background: url('./images/web-substrate.png') no-repeat center center;
}

.project.big.initial {
    right: -15px;
}

.project.big.initial .project__slider {
    right: -50px;
    height: 350px;
    width: 560px;
}

.project.big.initial .project__pagination {
    right: -80px;
}

.project.big.initial .project__link {
    bottom: -95px;
    left: 120px;
}

.project.big.initial .project__slide {
    background: url('./images/web-substrate.png') no-repeat left center;
    background-size: cover;
    padding: 15px 18px;
}

.project__slide.active {
    opacity: 1;
    pointer-events: initial;
}

.project__slide > img {
    width: 100%;
}

.project__link {
    position: absolute;
    bottom: -49px;
    left: -71px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.project__link.active {
    opacity: 1;
    pointer-events: initial;
}

.project__pagination {
    list-style: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -150px;
}

.project__item {
    width: 6px;
    height: 15px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    margin-bottom: 15px;
    -webkit-transition: all 1.3s;
    -o-transition: all 1.3s;
    transition: all 1.3s;
    cursor: pointer;
}

.project__item:nth-last-of-type(1) {
    margin-bottom: 0;
}

.project__item.active {
    background: #ffffff;
    border-radius: 4px;
    height: 26px;
    cursor: initial;
}

.project.initial {
    top: 50%;
    right: 55px;
    left: initial;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1;
    border: none;
}

.project.initial .project__pagination {
    right: -150px;
}

.project.initial .project__link {
    opacity: 1;
}

/* \Projects */

/* Footer */
.footer {
    height: 612px;
    margin-top: -612px;
    background: #2d67ee;
    padding-top: 90px;
    padding-bottom: 60px;
    color: #fff;
}

.footer__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer__tablet {
    display: none;
}

.footer__block {
    width: 50%;
    position: relative;
}

.footer__block:nth-of-type(1) {
    padding-right: 90px;
    border-right: 1px solid #fff;
}

.footer__block:nth-of-type(2) {
    padding-left: 118px;
}

.footer__heading {
    padding-left: 13px;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    display: inline-block;
}

.footer__block:nth-of-type(1) .footer__heading {
    margin-bottom: 25px;
}

.footer__block:nth-of-type(2) .footer__heading {
    margin-bottom: 45px;
}

.footer__heading:after {
    content: '';
    width: 3px;
    height: 3px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.footer__heading:before {
    content: '';
    width: 47px;
    height: 47px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    position: absolute;
    right: -24px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.footer__email {
    font-weight: 800;
    font-size: 44px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    color: #ffffff;
    position: relative;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.footer__email:hover {
    padding-left: 8px;
}

.footer__email:after {
    content: url('./images/footer-email_arrow.svg');
    position: absolute;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
}

.footer__email:hover:after {
    opacity: 1;
    -webkit-transform: translate(45px, -50%);
    -ms-transform: translate(45px, -50%);
    transform: translate(45px, -50%);
}

.footer__phones {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 64px;
}

.footer__phone {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
}

.footer__nav {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 105px;
    padding-right: 75px;
}

.footer__item,
.footer__nav > .menu-item {
    margin-bottom: 14px;
    width: calc(100% / 3);
}

.footer__link,
.footer__nav > .menu-item > a {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    text-decoration: none;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.footer__link:before,
.footer__nav > .menu-item > a:before {
    content: '';
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: -100%;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.footer__link:hover:before,
.footer__nav > .menu-item > a:hover:before {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.footer__languages {
    margin-bottom: 19px;
}

.footer__socials .intro__link {
    color: #fff;
}

.footer__socials .intro__social:after {
    background: #669ecb;
}

.footer__contact {
    margin-bottom: 100px;
    position: relative;
}

.loader-wrapper {
    background: #2d67ee;
    border-radius: 10px;
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transition: all .5s;
}

.loader-wrapper.visible {
    opacity: 1;
    pointer-events: initial;
}

.form-loader {
    top: 0;
    left: 0;
}

.loader {
    position: absolute;
    left: calc(50% - calc(var(--width-loader) / 2));
    top: calc(50% - calc(var(--width-loader) / 2));
    perspective: 1000px;
}

.loader-done {
    position: absolute;
    display: none;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    border-top-left-radius: 3px;
    width: calc(var(--width-loader) / 6);
    height: calc(var(--width-loader) / 3);
    top: calc(var(--width-loader) / 2 - 22px);
    left: calc(var(--width-loader) / 2 - 10px);
    transform: rotateZ(220deg);
    animation: loaderFadeIn 0.6s;
}

.circle-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--width-loader);
    height: var(--width-loader);
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}

.circle-loader::before {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    padding: 3px;
    border-radius: 100%;
    background: linear-gradient(
            45deg,
            #fff 0%,
            #fff,
            #fff,
            #fff 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.circle-loader.c1 {
    animation: rx 2s infinite, gradientMove 0.75s infinite;
}

.circle-loader.c2 {
    animation: ry 1s infinite, gradientMove 0.25s infinite;
}

.circle-loader.c3 {
    animation: rz 1.5s infinite, gradientMove 0.5s infinite;
}

.loader.done .circle-loader.c1,
.loader.done .circle-loader.c2,
.loader.done .circle-loader.c3 {
    animation: rfinal 0.25s;
}

.loader.done .loader-done {
    display: block;
}

.footer__input {
    width: 100%;
    background: #739dff;
    color: #fff;
    border: 1px solid #739dff;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.footer__input:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(115, 157, 255, 0.7);
}

.footer__input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.footer__input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.8);
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.footer__input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.footer__input::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.footer__input::placeholder {
    color: rgba(255, 255, 255, 0.8);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.footer__input:focus,
.footer__input:focus-visible,
.footer__input:active {
    background: rgba(115, 157, 255, 0.7);
    outline: none;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.footer__input:focus::-webkit-input-placeholder, .footer__input:focus-visible::-webkit-input-placeholder, .footer__input:active::-webkit-input-placeholder {
    color: #8ca3d6;
}

.footer__input:focus::-moz-placeholder, .footer__input:focus-visible::-moz-placeholder, .footer__input:active::-moz-placeholder {
    color: #8ca3d6;
}

.footer__input:focus:-ms-input-placeholder, .footer__input:focus-visible:-ms-input-placeholder, .footer__input:active:-ms-input-placeholder {
    color: #8ca3d6;
}

.footer__input:focus::-ms-input-placeholder, .footer__input:focus-visible::-ms-input-placeholder, .footer__input:active::-ms-input-placeholder {
    color: #8ca3d6;
}

.footer__input:focus::placeholder,
.footer__input:focus-visible::placeholder,
.footer__input:active::placeholder {
    color: #8ca3d6;
}

.footer__submit {
    margin-top: 30px;
    position: relative;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    height: 60px;
    max-width: 265px;
    width: 100%;
    background: #ffffff;
    opacity: 0.9;
    border-radius: 14px;
    border: none;
    font-weight: 500;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-decoration: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    letter-spacing: 0.02em;
    color: #0669f7;
}

.footer__submit:hover {
    opacity: 1;
    border-radius: 20px;
}

.footer__submit-img {
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    pointer-events: none;
    overflow: hidden;
}

.footer__submit-img > img {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    max-height: 100%;
}

.footer__submit-hover {
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    height: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.footer__submit:hover .footer__submit-hover {
    height: 100%;
}

.footer__submit-hover > img {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    height: 60px;
}

.footer__copyright {
    font-weight: 400;
    font-size: 12px;
    color: #ffffff;
    opacity: 0.6;
}

.footer__copyright > a {
    color: #ffffff;
}

.footer__copyright > a:hover {
    text-decoration: none;
}

.footer__top-wrap {
    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;
    position: absolute;
    bottom: 21px;
    right: 0;
    width: 47px;
    height: 47px;
}

.footer__top {
    background: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
}

.footer__top:hover {
    width: 47px;
    height: 47px;
}

.footer__top:hover:before,
.footer__top:hover:after {
    top: 17px;
}

.footer__top:hover:before {
    opacity: 0;
}

.footer__top:hover:after {
    opacity: 1;
}

.footer__top:before,
.footer__top:after {
    position: absolute;
    left: 50%;
    top: 14px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.footer__top:before {
    content: url('./images/footer-arrow.svg');
}

.footer__top:after {
    content: url('./images/slider-arrow-hover-small.svg');
    opacity: 0;
}

/* \Footer */

/* Modals */
.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 33;
    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;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.modal.active {
    opacity: 1;
    pointer-events: initial;
}

.modal__content {
    position: relative;
    z-index: 3;
    max-width: 1240px;
    width: 100%;
    margin-right: 15px;
    margin-left: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 30px;
}

.modal__block {
    width: 50%;
}

.modal__block:nth-of-type(1),
.join__block:nth-of-type(1) {
    background: #0669f7;
    padding: 70px 94px 70px 65px;
    border-radius: 30px 0 0 30px;
}

.modal__block:nth-of-type(2),
.join__block:nth-of-type(2) {
    background: url('./images/contact-form_bg.jpg') no-repeat center;
    background-size: cover;
    padding: 74px 55px 74px 70px;
    border-radius: 0 30px 30px 0;
}

.modal__heading {
}

.modal__title {
    font-weight: 600;
    font-size: 44px;
    line-height: 44px;
    color: #ffffff;
    margin-bottom: 16px;
}

.modal__input,
.contact.reverse .input-wrap .input {
    background: #f3f9ff;
    width: 100%;
    color: #000;
    border: 1px solid #f3f9ff;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

textarea.modal__input._description {
    height: 124px;
    padding: 15px 22px;
}

.modal__input:active,
.modal__input:focus-visible,
.modal__input:focus,
.modal__input:hover,
.contact.reverse .input-wrap .input:active,
.contact.reverse .input-wrap .input:focus-visible,
.contact.reverse .input-wrap .input:focus,
.contact.reverse .input-wrap .input:hover {
    outline: none;
    background: #f3f9ff;
    opacity: 0.5;
    border: 1px solid rgba(45, 103, 238, 0.3);
}

.modal__input::-webkit-input-placeholder,
.contact.reverse .input-wrap .input::-webkit-input-placeholder {
    font-weight: 400;
    color: #918fa9;
}

.modal__input::-moz-placeholder,
.contact.reverse .input-wrap .input::-moz-placeholder {
    font-weight: 400;
    color: #918fa9;
}

.modal__input:-ms-input-placeholder,
.contact.reverse .input-wrap .input:-ms-input-placeholder {
    font-weight: 400;
    color: #918fa9;
}

.modal__input::-ms-input-placeholder,
.contact.reverse .input-wrap .input::-ms-input-placeholder {
    font-weight: 400;
    color: #918fa9;
}

.modal__input::placeholder,
.contact.reverse .input-wrap .input::placeholder {
    font-weight: 400;
    color: #918fa9;
}

.modal-form__control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

.modal-form__control > .input-wrap,
.modal-form__control > .iti {
    width: calc(50% - 10px);
}

.modal-form__control.notice {
    margin-bottom: 14px;
}

.modal-form__control.notice:after {
    content: '*one of the fields above is required';
    position: absolute;
    font-weight: 400;
    font-size: 11px;
    line-height: 28px;
    color: #918fa9;
    bottom: -10px;
    right: 0;
}

.select2 {
    width: 100% !important;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 14px 14px 0 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50% !important;
    right: 22px !important;
    -webkit-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
}

.select2-container--open,
.select2-container--open .select2-dropdown--below,
.select2-container--open .select2-dropdown--above {
    background: #f3f9ff !important;
    border: none;
}

.select2-dropdown {
    border-radius: 0 0 14px 14px;
    overflow: hidden;
}

.select2-results__option {
    padding: 10px 6px 10px 30px;
}

.select2-selection {
    background: #f3f9ff !important;
    border: none !important;
    height: 54px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 22px;
    padding-right: 22px;
    border-radius: 14px !important;
}

.modal__load-wrap {
    display: block;
    cursor: pointer;
}

.modal__load {
    display: none;
}

.modal__load-wrap .modal-file__add {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #0669f7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.modal__load-wrap .modal-file__add.none {
    display: none;
}

.modal-file {
    display: none;
    position: relative;
}

.modal-file.visible {
    display: inline-block;
}

.modal-file__name {
    pointer-events: none;
    color: #0669f7;
    padding: 5px 40px 5px 15px;
    background: #f3f9ff;
    border-radius: 10px;
}

.modal-file__name > i {
    margin-right: 5px;
}

.modal-file__remove {
    position: absolute;
    font-size: 14px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f3f9ff;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    transition: all .5s;
    cursor: pointer;
    color: #918fa9;
}

.modal-file__remove:hover {
    filter: brightness(.8);
    opacity: .7;
}

.modal__load-wrap svg {
    height: 15px;
}

.modal__close {
    background: none;
    border: none;
    cursor: pointer;
    top: 31px;
    right: 24px;
    position: absolute;
}

.modal__close.mobile {
    display: none !important;
}

.modal__shadow {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    /*backdrop-filter: blur(50px);*/
    z-index: 2;
}

/* \Modals */

/* Cookies */
#cookie-notice {
    width: 100%;
    max-width: 1120px;
    min-width: initial !important;
    left: 50% !important;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 10px !important;
    height: 85px !important;
    border-radius: 30px;
    background: url('./images/cookie_bg.jpg') no-repeat top right !important;
    background-size: cover !important;
    z-index: 6 !important;
}

#cookie-notice.cookie-notice-hidden {
    display: none !important;
}

#cookie-notice .cookie-notice-container {
    height: 100%;
    text-align: left;
    padding-left: 56px;
    padding-right: 56px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cn-close-icon#cn-close-notice {
    display: none;
}

.cn-text-container {
    color: #231e57;
    font-size: 16px;
    line-height: 28px;
    max-width: 680px;
    padding-left: 66px;
    margin: 0 !important;
    position: relative;
}

.cn-text-container:before {
    content: '';
    height: 44px;
    width: 44px;
    background: url('./images/cookie.svg') no-repeat center center;
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.cn-text-container > a {
    font-weight: 600;
    color: #231e57;
}

.cn-text-container > a:hover {
    text-decoration: none;
}

.cn-buttons-container {
    max-width: 265px;
    width: 100%;
}

#cookie-notice .cn-button {
    margin: 0 !important;
    width: 100%;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

/* \Cookies */

/* Join modal */
.join-modal {
}

.join-modal__content {
}

.join-modal__block {
}

.join-modal__heading {
}

.join-modal__title {
}

.join-modal__desc {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 14px;
}

.join-modal__tags {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.join-modal__tag {
    background: #ffffff;
    -webkit-box-shadow: 0 2px 4px rgba(70, 96, 147, 0.2);
    box-shadow: 0 2px 4px rgba(70, 96, 147, 0.2);
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    padding: 5px 16px;
    border-radius: 30px;
    margin-right: 18px;
    margin-bottom: 14px;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #918fa9;
}

.join-modal__load-wrap {
    margin-top: 14px;
    margin-bottom: 80px;
}

.join-modal__submit {
    background: #0669f7;
    color: #ffffff;
    max-width: 170px;
    opacity: 1;
}

/* \Join modal */

/* Stages */
.stages {
    padding-top: 100px;
    position: relative;
}

.stages__mobile-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.stages .contact {
    box-shadow: none !important;
}

.stages .contact .iti__selected-flag {
    height: 100%;
}

.stages__content {
    overflow: hidden;
    position: relative;
    /*padding-bottom: 180px;*/
    padding-bottom: 140px;
}

.stages__title {
    margin-bottom: 37px;
}

.stages__wrapper {
    position: relative;
    z-index: 1;
}

.stages__pagination {
    margin-bottom: 30px;
}

.stages__slider {
    width: 100%;
    background: -webkit-gradient(
            linear,
            left top, right top,
            from(rgba(45, 103, 238, 0.3)),
            to(rgba(189, 0, 255, 0.3))
    );
    background: -o-linear-gradient(
            left,
            rgba(45, 103, 238, 0.3) 0%,
            rgba(189, 0, 255, 0.3) 100%
    );
    background: linear-gradient(
            90deg,
            rgba(45, 103, 238, 0.3) 0%,
            rgba(189, 0, 255, 0.3) 100%
    );
    border-radius: 20px;
    height: 5px;
    position: relative;
}

.stages__slider > span {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 5px;
    border-radius: 20px;
    background: -webkit-gradient(linear, left top, right top, from(#2d67ee), to(#bd00ff));
    background: -o-linear-gradient(left, #2d67ee 0%, #bd00ff 100%);
    background: linear-gradient(90deg, #2d67ee 0%, #bd00ff 100%);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.stages__steps {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.stages__step {
    text-align: center;
    font-weight: 500;
    font-size: 12px;
    line-height: 28px;
    color: #0669f7;
    opacity: 0.3;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.stages__step.active {
    opacity: 1;
}

.stages__slides {
    position: relative;
    min-height: 500px;
}

.stages__slide {
    pointer-events: none;
    opacity: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.stages__slide.active {
    pointer-events: initial;
    opacity: 1;
}

.stages__img {
    width: 55%;
}

.stages__content {
    padding-left: 20px;
}

.stages__sup-caption {
    font-weight: 400;
    font-size: 14px;
    line-height: 36px;
    color: #231e57;
    opacity: 0.5;
    margin-bottom: 5px;
}

.stages__caption {
    font-weight: 500;
    font-size: 28px;
    line-height: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #0669f7;
    margin-bottom: 16px;
}

.stages__caption:before {
    content: '';
    width: 4px;
    height: 4px;
    background: #0669f7;
    border-radius: 50%;
    margin-right: 9px;
}

.stages__desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #231e57;
}

.stages__controls {
    position: absolute;
    right: 0;
    top: 410px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 45%;
    padding-left: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.stages__number-slides {
    font-size: 0;
}

.stages__number-slides > span {
    font-weight: 600;
    line-height: 44px;
    color: #231e57;
}

.stages__number-slides > span:nth-of-type(1) {
    font-size: 60px;
}

.stages__number-slides > span:nth-of-type(2) {
    font-size: 20px;
}

.stages__buttons {
}

.stages__button {
    background: -o-linear-gradient(
            314.7deg,
            rgba(255, 255, 255, 0.2) 13.09%,
            rgba(255, 255, 255, 0.2) 87.7%
    );
    background: linear-gradient(
            135.3deg,
            rgba(255, 255, 255, 0.2) 13.09%,
            rgba(255, 255, 255, 0.2) 87.7%
    );
    -webkit-backdrop-filter: blur(90px);
    backdrop-filter: blur(90px);
    border-radius: 50%;
    border: 1px solid rgba(33, 81, 252, 0.05);
    cursor: pointer;
}

.stages__button > img {
    width: 6px;
}

.stages__button.prev {
    width: 39px;
    height: 39px;
    margin-right: 51px;
}

.stages__button.next {
    display: inline-block;
    width: 132px;
    height: 132px;
    position: relative;
}

.stages__image-wrap {
    overflow: hidden;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 50%;
    height: 8px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    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;
    width: 91px;
}

.stages__image {
    width: 91px;
    position: absolute;
    right: 0;
    top: 0;
}

.stages__button.next:hover .stages__image-wrap {
    width: 28px;
}

.stages__text {
    position: absolute;
    font-weight: 800;
    font-size: 96px;
    line-height: 95px;
    letter-spacing: 0.05em;
    color: #0669f7;
    white-space: nowrap;
    opacity: 0.2;
    z-index: 0;
    text-transform: uppercase;
}

.stages__text.one {
    bottom: 145px;
    -webkit-animation: scrollText 40s infinite linear;
    animation: scrollText 40s infinite linear;
}

.stages__text.two {
    bottom: 30px;
    -webkit-animation: scrollTextReverse 40s infinite linear;
    animation: scrollTextReverse 40s infinite linear;
}

.stages__text > span {
    margin-right: 55px;
}

/* Stages */

/* Cooperation */
.cooperation {
    padding-bottom: 131px;
}

.cooperation__title {
    margin-bottom: 50px;
}

.cooperation__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cooperation__item.big--item {
    width: calc(50% - 12px);
    height: 100%;
}

.cooperation__list {
    list-style: none;
    width: calc(50% - 12px);
    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;
}

.cooperation__item {
    height: calc(50% - 12px);
    border-radius: 30px;
    padding: 52px;
}

.cooperation__caption {
    font-weight: 600;
    font-size: 30px;
    line-height: 44px;
    color: #ffffff;
    margin-bottom: 34px;
}

.cooperation__desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #ffffff;
}

.cooperation__image-wrapper {
    margin-top: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/*.cooperation__image {*/
/*    width: 126px;*/
/*}*/

.cooperation__image {
    height: 280px;
}

.cooperation__image img {
    -webkit-transition: -webkit-transform 0.5s ease-in;
    transition: -webkit-transform 0.5s ease-in;
    -o-transition: transform 0.5s ease-in;
    transition: transform 0.5s ease-in, -webkit-transform 0.5s ease-in;
    height: 100%;
}

.cooperation__image:nth-child(1) img {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

.cooperation__image:nth-child(2) img {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}

.cooperation__arrow-1,
.cooperation__arrow-2 {
    position: absolute;
    width: 0;
    overflow: hidden;
    -webkit-transition: width 0.5s ease-in;
    -o-transition: width 0.5s ease-in;
    transition: width 0.5s ease-in;
}

.cooperation__arrow-1 img,
.cooperation__arrow-2 img {
    width: 99px;
    min-width: 99px;
}

.cooperation__arrow-1 {
    left: 254px;
    top: -45px;
}

.cooperation__arrow-2 {
    left: 91px;
    bottom: -50px;
}

.cooperation__item.big--item:hover .cooperation__arrow-1,
.cooperation__item.big--item:hover .cooperation__arrow-2 {
    width: 99px;
}

.cooperation__item.big--item:hover .cooperation__image img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/* \Cooperation */

/* Contact block */
.contact__wrapper {
    padding-bottom: 43px;
}

.stages .contact__wrapper {
    padding-bottom: 0;
}

.contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 0 26px 70px rgba(23, 0, 88, 0.1);
    box-shadow: 0 26px 70px rgba(23, 0, 88, 0.1);
    border-radius: 30px;
    -webkit-transform: translateY(-90px);
    -ms-transform: translateY(-90px);
    transform: translateY(-90px);
}

.contact__block {
    width: 50%;
}

.contact__block .stages-contact__block--mobile {
    display: none;
    position: absolute;
    z-index: -1;
}

.contact__block:nth-of-type(1) {
    border-radius: 30px 0 0 30px;
    padding: 48px 120px 48px 48px;
    overflow: hidden;
}

.contact__block:nth-of-type(2) {
    background: #0669f7;
    border-radius: 0 30px 30px 0;
    padding: 85px 63px 85px 42px;
}


.contact.reverse .contact__block:nth-of-type(1) {
    background: #0669f7;
}

.contact.reverse .contact__block:nth-of-type(2) {
    background: url('./images/contact_bg.jpg') no-repeat;
    background-size: cover;
}

.contact.reverse .contact__title {
    color: #fff;
}

.contact.reverse .contact__desc {
    color: #ffff;
    opacity: .6;
}

/*.contact.reverse .input {*/
/*    background: #f3f9ff;*/
/*    font-weight: 400;*/
/*    color: #918fa9;*/
/*    border: 1px solid #f3f9ff;*/
/*}*/

/*.contact.reverse .input:active,*/
/*.contact.reverse .input:focus-visible,*/
/*.contact.reverse .input:focus,*/
/*.contact.reverse .input:hover {*/
/*    outline: none;*/
/*    background: #f3f9ff;*/
/*    opacity: 0.5;*/
/*    border: 1px solid rgba(45, 103, 238, 0.3);*/
/*}*/

/*.contact.reverse .input::-webkit-input-placeholder,*/
/*.contact.reverse .input::-moz-placeholder,*/
/*.contact.reverse .input:-ms-input-placeholder,*/
/*.contact.reverse .input::-ms-input-placeholder,*/
/*.contact.reverse .input::placeholder {*/
/*    font-weight: 400;*/
/*    color: #918fa9;*/
/*}*/

.contact__heading {
}

.contact__title {
    margin-bottom: 16px;
}

.contact__desc {
    font-size: 16px;
    line-height: 28px;
    color: #231e57;
}

.contact__form {
    margin-bottom: 0;
}

.contact__form .input {
}

.contact__form .footer__submit {
}

/* \Contact block */

/* Websites */
.websites {
    background: #2d67ee;
    padding-top: 78px;
    padding-bottom: 140px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.websites > .container {
}

.websites__title {
    margin-bottom: 35px;
}

.swither {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    position: relative;
}

.swither__buttons {
    list-style: none;
}

.swither__btn {
    position: absolute;
    background: -o-linear-gradient(
            159.64deg,
            rgba(255, 255, 255, 0.2) 1.51%,
            rgba(255, 255, 255, 0.1) 74.57%
    );
    background: linear-gradient(
            290.36deg,
            rgba(255, 255, 255, 0.2) 1.51%,
            rgba(255, 255, 255, 0.1) 74.57%
    );
    -webkit-box-shadow: 10px 20px 40px rgba(0, 0, 0, 0.25);
    box-shadow: 10px 20px 40px rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(150px);
    backdrop-filter: blur(150px);
    border-radius: 30px;
    border: 1px solid #fff;
    padding: 25px 34px;
    z-index: 1;
    max-width: 257px;
    cursor: pointer;
    -ms-overflow-style: none;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.swither__btn.active {
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px);
}

.swither__btn:nth-of-type(1) {
    top: -130px;
    right: 20px;
}

.swither__btn:nth-of-type(2) {
    left: -100px;
    bottom: 94px;
}

.swither__btn:nth-of-type(3) {
    padding-top: 50px;
    padding-bottom: 50px;
    bottom: -63px;
    right: -85px;
    max-width: 301px;
}

.swither__heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: center;
    align-content: center;
    margin-bottom: 10px;
}

.swither__caption {
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
}

.swither__number {
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    opacity: 0.7;
}

.swither__desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
}

.swither__list {
    list-style: none;
    position: relative;
    height: 535px;
}

.swither__circle {
    position: absolute;
    width: 690px;
    height: 690px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.34);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.swither__item {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
}

.swither__img {
    max-width: 842px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.swither__item.active .swither__img {
    opacity: 1;
    pointer-events: initial;
}

.switherSlider {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    display: none;
}

.switherSlider img {
    width: 100%;
}

.switherSlider .swiper-slide {
    background: -o-linear-gradient(
            159.64deg,
            rgba(255, 255, 255, 0.2) 1.51%,
            rgba(255, 255, 255, 0.1) 74.57%
    );
    background: linear-gradient(
            290.36deg,
            rgba(255, 255, 255, 0.2) 1.51%,
            rgba(255, 255, 255, 0.1) 74.57%
    );
    -webkit-box-shadow: 10px 20px 40px rgba(0, 0, 0, 0.25);
    box-shadow: 10px 20px 40px rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(150px);
    backdrop-filter: blur(150px);
    border-radius: 30px;
    padding: 40px 28px;
}

.switherSlider .swither__heading {
    margin-top: 24px;
    padding-top: 35px;
    margin-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.switherSlider .swiper-slide,
.switherSlider .swiper-slide-duplicate {
    opacity: 0 !important;
}

.switherSlider .swiper-slide-active {
    opacity: 1 !important;
}

.swither-pagination {
    position: relative;
    top: auto;
    bottom: 0;
    margin-top: 39px;
}

.swither-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.swither-pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    width: 16px;
}

/* \Websites */

/* Case intro */
.case-mobile-intro {
    min-height: 780px;
}

.case-mobile-intro__block {
    height: 50%;
    width: 100%;
    background: var(--color-case);
}

.case-mobile-intro__heading {
    padding-top: 150px;
    background: var(--second-color-case);
}

.case-mobile-intro__heading > .container {
}

.case-mobile-intro .intro__breadcrumbs {
    margin-bottom: 16px;
}

.case-mobile-intro__information {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 50%;
}

.case-mobile-intro__icon {
    height: 116px;
    width: initial;
    margin-right: 44px;
}

.case-mobile-intro__info {
    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;
}

.case-mobile-intro__title {
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    color: var(--color-case);
}

.case-mobile-intro__desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #000000;
}

.case-mobile-intro .tablet {
    display: none;
}

.case-mobile-intro__content {
}

.case-mobile-intro__content > .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.case-mobile-intro__wrapper {
    max-width: 50%;
    padding-top: 50px;
}

.case-mobile-intro__sub-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    color: #ffffff;
    margin-bottom: 34px;
}

.case-mobile-intro__tasks {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.case-mobile-intro__task {
    width: calc(50% - 10px);
    margin-bottom: 24px;
    background: -o-linear-gradient(
            159.64deg,
            rgba(255, 255, 255, 0.2) 1.51%,
            rgba(255, 255, 255, 0.1) 74.57%
    );
    background: linear-gradient(
            290.36deg,
            rgba(255, 255, 255, 0.2) 1.51%,
            rgba(255, 255, 255, 0.1) 74.57%
    );
    -webkit-box-shadow: 10px 20px 40px rgba(0, 72, 55, 0.25);
    box-shadow: 10px 20px 40px rgba(0, 72, 55, 0.25);
    -webkit-backdrop-filter: blur(110px);
    backdrop-filter: blur(110px);
    border-radius: 30px;
    padding: 28px;
    border: 1px solid #fff;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #ffffff;
}

.case-mobile-intro__wrap {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 17px 15px;
    background: url('./images/phone-substrate.png') no-repeat center center;
    background-size: cover;
    border-radius: 24px;
}

.case-mobile-intro__img {
    max-height: 70vh;
    height: 100%;
}

/* \Case intro */

/* Process */
.process-mobile {
    background: -o-linear-gradient(338.56deg, #fefff5 1.34%, #f1ebff 100%);
    background: linear-gradient(111.44deg, #fefff5 1.34%, #f1ebff 100%);
    padding-top: 200px;
    padding-bottom: 200px;
}

.process-mobile > .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.process-mobile__heading {
    width: 40%;
}

.process-mobile__title {
    font-weight: 600;
    font-size: 44px;
    line-height: 44px;
    margin-bottom: 30px;
    color: #231e57;
}

.process-mobile__desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    max-width: 550px;
    color: #000000;
    margin-bottom: 60px;
}

.process-mobile__list {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 52%;
}

.process-mobile__item {
    background: var(--icons-background-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 14px 20px;
    border-radius: 18px;
    margin-right: 20px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 22px;
    color: var(--icons-color);
}

.process-mobile__icon {
    margin-right: 10px;
    height: 33px;
}

/*.process-mobile__levels {*/
/*    list-style: none;*/
/*    display: flex;*/
/*}*/

/*.process-mobile__level {*/
/*    margin-right: 66px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/

/*.process-mobile__number {*/
/*    margin-right: 16px;*/
/*    padding-left: 44px;*/
/*    font-weight: 700;*/
/*    font-size: 48px;*/
/*    line-height: 90px;*/
/*    color: #231E57;*/
/*    position: relative;*/
/*}*/

/*.process-mobile__number:before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    border: 1px solid rgba(0, 0, 0, 0.2);*/
/*    border-radius: 50%;*/
/*    height: 69px;*/
/*    width: 69px;*/
/*    top: 50%;*/
/*    left: 0;*/
/*    transform: translateY(-50%);*/
/*}*/

/*.process-mobile__info {*/
/*    max-width: 166px;*/
/*    font-weight: 400;*/
/*    font-size: 20px;*/
/*    line-height: 26px;*/
/*    color: #231E57;*/
/*}*/

/* \Process */

/* Screen presentation */
.screen-presentation {
    background-size: cover;
    overflow: hidden;
    position: relative;
    z-index: 1;
    /*padding: 114px 0;*/
    display: flex;
    align-items: center;
    min-height: 730px;
    height: 100vh;
}

.screen-presentation.web {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.screen-presentation__bg-img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    max-height: 90%;
}

.screen-presentation > .container {
}

.screen-presentation__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.screen-presentation.web .screen-presentation__wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.screen-presentation__content {
    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: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 40%;
}

.screen-presentation__title {
    font-weight: 600;
    font-size: 44px;
    line-height: 52px;
    color: #ffffff;
    margin-bottom: 82px;
}

.screen-presentation__title-wrap {
    position: absolute;
    top: 137px;
    left: 50%;
    width: 100%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.screen-presentation__buttons {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.screen-presentation__buttons > li {
    width: calc(50% - 13px);
    overflow: hidden;
    border-radius: 20px;
    -webkit-box-shadow: 10px 20px 60px rgba(58, 65, 123, 0.25),
    0 7px 15px rgba(18, 50, 111, 0.3);
    box-shadow: 10px 20px 60px rgba(58, 65, 123, 0.25),
    0 7px 15px rgba(18, 50, 111, 0.3);
    margin-bottom: 16px;
}

.screen-presentation__buttons > li > button {
    box-shadow: none;
}

.screen-presentation.web .screen-presentation__buttons {
    max-width: 214px;
}

.screen-presentation.web .screen-presentation__buttons > li {
    width: 100%;
}

.screen-presentation__btn {
    width: 100%;
    padding: 10px 0;
    height: initial;
    border: 1px solid #fff;
    line-height: 48px;
    cursor: pointer;
}

.screen-presentation__btn.active,
.screen-presentation__btn:hover {
    color: var(--color-case);
}

.screen-presentation__btn:hover,
.screen-presentation__btn.active {
}

.screen-presentation__screens {
    list-style: none;
    position: relative;
    padding: 17px 15px;
    background: url('./images/phone-substrate.png') no-repeat center center;
    background-size: contain;
    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;
}

.screen-presentation__screens.web {
    background: url('./images/web-substrate.png') no-repeat center center;
    background-size: cover;
    border-radius: 20px;
    width: 68%;
    padding: 16px 16px;
    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;
}

.screen-presentation__screens.web .screen-presentation__screen {
    height: initial;
    font-size: 0;
    width: calc(100% - 28px);
}

.screen-presentation__screens.web .screen-presentation__screen > img {
    height: initial;
    width: 100%;
}

.screen-presentation__screens.web .screen-presentation__screen {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.screen-presentation__screens.web .screen-presentation__screen:nth-of-type(1) {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 100%;
}

.screen-presentation__screen {
    position: absolute;
    top: 17px;
    height: 600px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.screen-presentation__screen:nth-of-type(1) {
    position: initial;
}

.screen-presentation__screen.active {
    opacity: 1;
}

.screen-presentation__screen > img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 100%;
}

/* Screen presentation */

/* Case info */
.case-info {
    background: #ecf1fc;
    padding-top: 117px;
    padding-bottom: 135px;
}

.case-info > .container {
}

.case-info__head {
    font-weight: 600;
    font-size: 44px;
    line-height: 52px;
    color: #231e57;
    max-width: 433px;
    margin-bottom: 40px;
}

.case-info__notes {
    margin-bottom: 60px;
}

.case-info__notes__list {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.case-info__note {
    width: calc(100% / 3 - 14px);
    background: #fdf7bf;
    -webkit-box-shadow: 0 10px 15px rgba(27, 35, 55, 0.25);
    box-shadow: 0 10px 15px rgba(27, 35, 55, 0.25);
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 50px;
}

.case-info__note-title {
    font-weight: 700;
    font-size: 50px;
    line-height: 90px;
    color: #231e57;
    margin-bottom: 20px;
}

.case-info__note-title .transparent {
    opacity: 0.25;
}

.case-info__note-desc {
    font-size: 26px;
    line-height: 38px;
    color: #231e57;
}

.case-info__note-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
}

.case-info__map {
    margin-bottom: 70px;
}

.case-info__title {
    font-size: 16px;
    line-height: 28px;
    color: #231e57;
    margin-bottom: 20px;
}

.case-info__img {
    width: 100%;
}

.case-info__wrap {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 60px;
}

.case-info__item {
    width: calc(50% - 57px);
}

.case-info__colors {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.case-info__color {
    height: 260px;
    width: 136px;
    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;
}

.case-info__color:nth-of-type(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.case-info__block-color {
    width: 100%;
    height: 136px;
    border-radius: 30px;
}

.case-info__block-color:nth-of-type(2) {
    height: calc(100% - 154px);
}

.case-info__icons {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: -5px;
}

.case-info__icon-wrap {
    width: calc(21% - 5px);
    margin-bottom: 30px;
    margin-left: 5px;
}

.case-info__icon {
    width: 100px;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 30px;
}

.case-info__icon > img {
    max-width: 44px;
    max-height: 44px;
}

.case-info__technology {
}

.case-info__technology-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.case-info__technology-list {
    max-width: 503px;
    width: 100%;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 23px;
}

.case-info__technology-list.small {
    max-height: 150px;
}

.case-info__technology-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 38px 0;
    border-right: 1px solid #918fa9;
    border-bottom: 1px solid #918fa9;
}

.two .case-info__technology-item {
    width: 50%;
}

.two .case-info__technology-item:nth-of-type(2n) {
    border-right: none;
}

.two .case-info__technology-item:nth-last-of-type(1),
.two .case-info__technology-item:nth-last-of-type(2) {
    border-bottom: none;
}

.three .case-info__technology-item {
    width: calc(100% / 3);
}

.three .case-info__technology-item:nth-of-type(3n) {
    border-right: none;
}

.three .case-info__technology-item:nth-last-of-type(1),
.three .case-info__technology-item:nth-last-of-type(2),
.three .case-info__technology-item:nth-last-of-type(3) {
    border-bottom: none;
}

.case-info__technology-link {
    font-size: 18px;
    line-height: 28px;
    color: #231e57;
    text-decoration: none;
    position: relative;
    background: none;
    cursor: pointer;
    border: none;
}

.case-info__technology-link:before,
.technology__btn:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    background: rgba(45, 103, 238, 0.15);
    border: 1px solid rgba(45, 103, 238, 0.4);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.case-info__technology-link.active:before,
.case-info__technology-link:hover:before {
    width: 65px;
    height: 65px;
}

.case-info__tools-list {
    list-style: none;
    position: relative;
}

.case-info__tools-item:nth-of-type(1) {
    position: initial;
}

.case-info__tools-item {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.case-info__tools-item.active {
    opacity: 1;
}

.case-info__tools {
    max-width: 453px;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.case-info__tool {
    width: calc(25%);
    margin-bottom: 20px;
    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: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.case-info__tool-icon {
    width: 82px;
    max-width: 100%;
    height: 82px;
    background: -o-linear-gradient(
            192.6deg,
            rgba(255, 255, 255, 0.3) 21.49%,
            rgba(255, 255, 255, 0.15) 82.13%
    );
    background: linear-gradient(
            257.4deg,
            rgba(255, 255, 255, 0.3) 21.49%,
            rgba(255, 255, 255, 0.15) 82.13%
    );
    border: 2px solid #ffffff;
    border-radius: 24px;
    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;
    margin-bottom: 6px;
}

.case-info__tool-img {
    max-width: 80%;
}

.case-info__tool-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    color: #231e57;
    opacity: 0.6;
}

/* \Case info */

/* Case animation */
.case-animation {
    height: 820px;
    position: relative;
    overflow: hidden;
    font-size: 0;
}

.case-animation__bg {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100vw;
    height: 100%;
}

.case-animation__slides {
    list-style: none;
    position: absolute;
    height: 100%;
    width: 100%;
    max-width: 1800px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.case-animation__slide {
    position: absolute;
    background: rgba(0, 0, 0, 0.07);
    border-radius: 24px;
    -webkit-box-shadow: 0 30px 100px rgba(0, 0, 0, 0.15);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.15);
    -webkit-transform: rotate(-22deg);
    -ms-transform: rotate(-22deg);
    transform: rotate(-22deg);
    opacity: 0;
    -webkit-animation: moveCaseImages 17s linear infinite;
    animation: moveCaseImages 17s linear infinite;
    animation-delay: 1s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.case-animation__slide:nth-of-type(2n) {
    -webkit-animation: moveCaseImages 15s linear infinite;
    animation: moveCaseImages 15s linear infinite;
    animation-delay: 1s;
}

.case-animation__slide:nth-of-type(1) {
    top: -90px;
    left: calc(100% - 1280px);
}

.case-animation__slide:nth-of-type(2) {
    top: -230px;
    left: calc(100% - 970px);
}

.case-animation__slide:nth-of-type(3) {
    top: -370px;
    left: calc(100% - 655px);
}

.case-animation__slide:nth-of-type(4) {
    top: -510px;
    left: calc(100% - 350px);
}

.case-animation__slide:nth-of-type(5) {
    top: -650px;
    left: calc(100% - 40px);
}

.case-animation__img {
    width: 300px;
}

.web .case-animation__slide {
    opacity: 1;
    -webkit-animation: moveCaseImagesWeb 10s linear infinite;
    animation: moveCaseImagesWeb 10s linear infinite;
    animation-delay: 1s;
}

.web .case-animation__slide:nth-of-type(2n) {
    -webkit-animation: moveCaseImagesWeb 9s linear infinite;
    animation: moveCaseImagesWeb 9s linear infinite;
    animation-delay: 1s;
}

.web .case-animation__img {
    width: 490px;
}

.web .case-animation__slide:nth-of-type(1) {
    top: -75px;
    left: calc(100% - 1250px);
}

.web .case-animation__slide:nth-of-type(2) {
    top: -300px;
    left: calc(100% - 770px);
}

.web .case-animation__slide:nth-of-type(3) {
    top: -116px;
    left: calc(100% - 120px);
}

/* \Case animation */

/* Next project */
.next-project {
    position: relative;
    padding: 90px 0;
}

.next-project .tablet {
    display: none;
}

.next-project > .container {
}

.next-project__info {
}

.next-project__heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 13px;
}

.next-project__icon {
    height: 50px;
    width: initial;
    margin-right: 18px;
}

.next-project__name {
    font-weight: 600;
    font-size: 44px;
    line-height: 52px;
}

.next-project__desc {
    max-width: 581px;
    font-size: 16px;
    line-height: 28px;
    color: #231e57;
}

.next-project__block {
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    width: 460px;
    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;
    padding: 50px 0;
}

.next-project__block > .stages__button {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: -webkit-gradient(
            linear,
            right top, left top,
            from(rgba(255, 255, 255, 0.25)),
            color-stop(102.17%, rgba(255, 255, 255, 0))
    );
    background: -o-linear-gradient(
            right,
            rgba(255, 255, 255, 0.25) 0%,
            rgba(255, 255, 255, 0) 102.17%
    );
    background: linear-gradient(
            270deg,
            rgba(255, 255, 255, 0.25) 0%,
            rgba(255, 255, 255, 0) 102.17%
    );
    -webkit-backdrop-filter: blur(90px);
    backdrop-filter: blur(90px);
    border: none;
}

.next-project__text {
    font-weight: 600;
    color: #000000;
    opacity: 0.1;
    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;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
}

.next-project__text > div:nth-of-type(1) {
    font-size: 182px;
    line-height: 100px;
}

.next-project__text > div:nth-of-type(2) {
    font-size: 100px;
}

.next-project__text.pl > div:nth-of-type(1),
.next-project__text.pl > div:nth-of-type(2),
.next-project__text.de > div:nth-of-type(2) {
    font-size: 105px;
    line-height: 95px;
}

.next-project__text.de > div:nth-of-type(1) {
    font-size: 87px;
}

/* \Next project */

.contact-modal__submit {
    background: #3887f9;
    color: #fff;
}

.contact-modal__submit:hover {
    background: #0669f7;
}

/* Case web intro */
.case-web-intro {
    position: relative;
    min-height: 730px;
}

.case-web-intro .tablet {
    display: none;
}

.case-web-intro__block-bg,
.case-web-intro__images-bg {
    position: absolute;
    height: 100%;
    top: 0;
    z-index: -1;
}

.case-web-intro__block-bg {
    background: var(--second-color-case);
}

.case-web-intro__images-bg {
    background: var(--color-case);
}

.case-web-intro__block-bg {
    width: 57%;
    left: 0;
}

.case-web-intro__images-bg {
    width: 43%;
    right: 0;
}

.case-web-intro__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.case-web-intro__block {
    width: 35%;
}

.case-web-intro__breadcrumbs {
    margin-bottom: 16px;
}

.case-web-intro__heading {
}

.case-web-intro__icon {
}

.case-web-intro__title {
    color: var(--color-case);
}

.case-web-intro__sub-title {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 28px;
    color: #000000;
}

.case-web-intro__wrapper {
}

.case-web-intro__tasks-title {
    font-weight: 600;
    font-size: 28px;
    color: #231e57;
    margin-bottom: 30px;
}

.case-web-intro__tasks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
}

.case-web-intro__task {
    background: var(--color-case);
    border-radius: 30px;
    margin-bottom: 13px;
    width: calc(50% - 10px);
    padding: 31px 18px;
    font-weight: 400;
    font-size: 15px;
    color: #ffffff;
}

.case-web-intro__task:nth-of-type(1) {
    padding: 27px 20px;
    width: 100%;
}

.case-web-intro__images {
    width: calc(65% - 45px);
    padding: 14px 18px;
    background: url('./images/web-substrate.png') no-repeat center center;
    background-size: cover;
    border-radius: 20px;
    -webkit-transform: translateX(70px);
    -ms-transform: translateX(70px);
    transform: translateX(70px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.case-web-intro__img {
    width: 100%;
}

/* \Case web intro */

/* Contacts */
.contacts {
    height: 100vh;
    min-height: 700px;
    position: relative;
}

.contacts .iti .iti .iti__flag-container {
    display: none;
}

.contacts .iti {
    display: block;
}

.contacts__backgrounds {
    list-style: none;
}

.contacts__bg {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    z-index: -1;
}

.contacts__bg > video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.contacts__bg:nth-of-type(1) {
    left: 0;
    background: #2d67ee;
}

.contacts__bg:nth-of-type(2) {
    right: 0;
}

.contacts__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}

.contacts__block {
    width: 50%;
    height: 100%;
    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: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.contacts__block .contacts__phone {
    font-size: 13px;
    width: -moz-fit-content;
    width: fit-content;
}

.contacts .contacts__block .contacts__phone {
    font-size: 16px;
}

.contacts__title {
    font-weight: 600;
    font-size: 44px;
    line-height: 44px;
    color: #ffffff;
    margin-bottom: 15px;
}

.contacts__desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #ffffff;
    margin-bottom: 34px;
    max-width: 372px;
}

.contacts__form {
    max-width: 455px;
    margin-bottom: 0;
}

.contacts__block:nth-of-type(2) {
    padding-left: 95px;
}

.contacts__info {
}

.contacts__heading {
    font-weight: 500;
    font-size: 16px;
    line-height: 44px;
    color: #231e57;
    margin-bottom: 115px;
}

.contacts__heading:after {
    background: #231e57;
}

.contacts__heading:before {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contacts__email {
    color: #0669f7;
}

.contacts__email:after {
    content: url('./images/contacts-email_arrow.svg');
}

.contacts__phones {
    margin-bottom: 133px;
}

.contacts__phone {
    color: #231e57;
}

.contacts__phone:before {
    background: #231e57;
}

.contacts__socials {
}

/* \Contacts */

/* Adaptive */
@media (min-width: 1200px) {
    .main-menu__list a {
        font-size: 24px;
    }
}


@media (max-width: 1440px) {
    .large-screen {
        display: none;
    }

    .middle-screen {
        display: block;
    }

    .project__pagination {
        right: -80px;
    }
}

@media (max-width: 1390px) {
    .web .project__slider {
        width: 490px;
        height: 305px;
    }

    .web .projects__content {
        padding-left: 120px;
    }
}

@media (max-width: 1370px) {
    .project__pagination {
        right: -95px;
    }

    .swither__btn:nth-of-type(2) {
        left: -20px;
    }

    .swither__btn:nth-of-type(3) {
        right: -40px;
    }
}

@media (max-width: 1315px) {
    .project.initial .project__pagination {
        right: -50px;
    }
}

@media (max-width: 1260px) {
    .case-web-intro__images {
        -webkit-transform: translateX(40px);
        -ms-transform: translateX(40px);
        transform: translateX(40px);
    }

    .projects__content {
        padding-left: 90px;
    }
}

@media (max-width: 1240px) {
    .web .project__pagination {
        right: initial;
        left: 50%;
        top: 90%;
        transform: rotate(-90deg);
    }
}

@media (max-width: 1220px) {
    .contacts__info .footer__email {
        font-size: 38px;
    }

    .swither__item .swither__img {
        width: 700px;
    }

    .swither__btn:nth-of-type(2) {
        left: 0;
    }

    .swither__btn:nth-of-type(1) {
        top: -74px;
        right: 55px;
    }

    .swither__btn:nth-of-type(3) {
        right: 90px;
    }

    .swither__circle {
        width: 590px;
        height: 590px;
    }
}

@media (max-width: 1200px) {
    .case-web-intro__images {
        width: calc(65% - 125px);
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .modal-form__control.notice {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .modal-form__control > .input-wrap,
    .modal-form__control > .iti {
        width: 100%;
    }

    .contact-modal__block .modal-form__control {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width: 1170px) {
    .projects.web {
        height: initial;
        background: var(--project-mobile-bg);
        background-size: cover;
        max-height: initial;
    }

    .web .project__slider {
        width: 635px;
    }

    .web .projects__list {
        justify-content: flex-start;
    }

    .web .project__link {
        width: 110px;
        height: 110px;
        font-size: 12px;
        line-height: 48px;
        left: initial;
        right: -70px;
        bottom: -30px;
    }

    .projects.web .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .web .projects__list {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        overflow-x: scroll;
        width: 100%;
        padding-bottom: 15px;
    }

    .web .projects__switcher,
    .web .projects__content {
        width: 100%;
    }

    .web .projects__switcher {
        padding-right: 0;
        padding-top: 84px;
        padding-bottom: 27px;
    }

    .web .projects__item {
        width: 95px;
        margin-right: 8px;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .web .projects__caption {
        line-height: 20px;
        font-weight: 400;
        width: 95px;
    }

    .web .project__swither-bg {
        display: none;
    }

    .web .projects__content {
        padding: 0;
        height: 565px;
    }

    .web .projects__content-bg {
        height: 565px;
        width: 100%;
        bottom: 0;
        top: initial;
        z-index: 1;
    }

    .web .project,
    .web .project.active {
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        left: 50%;
        right: initial;
        top: 60px;
        margin-bottom: 0;
        z-index: 2;
    }

    .web .projects-all .project__slider {
        height: 410px;
    }

    .web .projects-all .project__slide {
        top: 0;
    }

    .web .project__pagination {
        right: initial;
        -webkit-transform: translateX(-50%) rotate(-90deg);
        -ms-transform: translateX(-50%) rotate(-90deg);
        transform: translateX(-50%) rotate(-90deg);
        top: initial;
        left: 50%;
        bottom: -130px;
    }

    .web .projects__heading {
        margin-bottom: 26px;
    }

    .web .projects__title {
        color: #0669f7;
        font-weight: 600;
        font-size: 26px;
        line-height: 32px;
    }

    .web .projects__img {
        max-width: 100%;
        min-width: initial;
        width: 82px;
        height: 82px;
        border-radius: 20px;
        margin-bottom: 5px;
    }

    .web .projects__img > img {
        width: 82px;
        max-width: 96%;
        height: initial;
    }
}

@media (max-width: 1140px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .main-menu__list .menu-item {
        width: calc(100% / 5);
        text-align: center;
    }

    .main-menu__list .menu-item:before {
        right: 0;
    }

    .project.initial .project__pagination {
        right: -25px;
    }

    .projects__switcher {
        padding-right: 100px;
    }

    .projects__item {
        width: calc(100% / 3);
        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;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .cooperation__img {
        width: initial !important;
    }

    #cookie-notice {
        width: calc(100% - 15px);
    }
}

@media (max-width: 1110px) {
    .project {
        left: initial;
        right: 50px;
    }

    .project.active {
        -webkit-transform: translateY(-120%);
        -ms-transform: translateY(-120%);
        transform: translateY(-120%);
    }
}

@media (max-width: 1095px) {
    .contacts__info .footer__email {
        font-size: 32px;
    }

    .projects__switcher {
        padding-right: 60px;
    }

    .projects__content {
        padding-left: 100px;
    }

    .project__pagination {
        right: -24px;
    }

    .modal__block:nth-of-type(1),
    .join__block:nth-of-type(1) {
        padding: 70px 35px 70px 35px;
    }

    .modal__block:nth-of-type(2),
    .join__block:nth-of-type(2) {
        padding: 74px 35px 74px 35px;
    }
}

@media (max-width: 1060px) {
    .footer .footer__email {
        font-size: 40px;
    }

    .next-project__desc {
        max-width: 50%;
    }

    .two-intro .intro__heading {
        padding-right: 50px;
    }
    .cooperation__image {
        height: 250px;
    }
    .cooperation__arrow-1 {
        left: 215px;
    }
    .cooperation__arrow-2 {
        left: 80px;
    }
}

@media (max-width: 1010px) {
    .footer .footer__top-wrap {
        bottom: 35px;
    }

    .footer .footer__block:nth-of-type(1) {
        padding-right: 60px;
    }

    .footer .footer__block:nth-of-type(2) {
        padding-left: 60px;
    }
}

@media (max-width: 985px) {
    .contacts__block:nth-of-type(1) {
        padding-right: 50px;
    }

    .contacts__block:nth-of-type(2) {
        padding-left: 50px;
    }

    .case-info__item {
        width: calc(50% - 25px);
    }

    .case-info__technology-list {
        margin-right: 20px;
    }

    .screen-presentation {
        height: 100%;
    }
}

@media (max-width: 975px) {
    .footer .footer__email {
        font-size: 38px;
    }

    .case-web-intro__block {
        width: 45%;
    }

    #cookie-notice .cookie-notice-container {
        padding-left: 40px;
        padding-right: 40px;
    }
    .cooperation__image {
        height: 200px;
    }
    .cooperation__arrow-1 {
        left: 195px;
    }
    .cooperation__arrow-2 {
        left: 60px;
    }
}

@media (max-width: 930px) {
    .footer .footer__email {
        font-size: 32px;
    }

    .footer .footer__phone {
        font-size: 16px;
    }

    .footer .footer__item,
    .footer__nav > .menu-item {
        margin-bottom: 10px;
    }

    .footer .footer__block:nth-of-type(1) {
        padding-right: 30px;
    }

    .footer .footer__block:nth-of-type(2) {
        padding-left: 30px;
    }

    .process-mobile > .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .process-mobile__heading,
    .process-mobile__list {
        width: 100%;
        max-width: 100%;
    }

    .process-mobile {
        padding: 96px 0;
    }
}

@media (max-width: 900px) {
    .case-info__technology-list {
        max-width: 410px;
    }

    .case-info__color {
        margin-right: 15px;
    }

    .case-info__icon {
        height: 80px;
        width: 80px;
    }

    .case-info__icon > img {
        width: 40%;
    }

    .case-animation__slides {
        left: 80%;
    }

    .projects__content {
        padding-left: 50px;
    }

    .contact-modal__content,
    .join-modal__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 30px 0;
        max-width: 100% !important;
        margin: 0;
    }

    .contact-modal__shadow {
        position: fixed;
    }

    .modal__content {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .contact-modal,
    .join-modal {
        /*overflow-y: overlay;*/
        overflow-x: hidden;
        height: 100%;
        display: block;
    }

    .modal__block:nth-of-type(1),
    .modal__block:nth-of-type(2),
    .join__block:nth-of-type(1),
    .join__block:nth-of-type(2) {
        width: 80%;
    }

    .modal__block:nth-of-type(1),
    .join__block:nth-of-type(1) {
        border-radius: 30px 30px 0 0;
    }

    .modal__block:nth-of-type(2),
    .join__block:nth-of-type(2) {
        border-radius: 0 0 30px 30px;
    }

    .contact-modal .modal__close,
    .join-modal .modal__close {
        top: 54px;
        right: 110px;
    }

    .contact-modal__desc {
        margin-bottom: 30px;
    }

    .modal__block:nth-of-type(1),
    .modal__block:nth-of-type(2),
    .join__block:nth-of-type(1),
    .join__block:nth-of-type(2) {
        width: 90%;
        padding: 45px 35px 45px 35px;
    }

    .contact-modal .modal__close,
    .join-modal .modal__close {
        right: 55px;
    }

    .modal-form__control.notice {
        gap: 0 14px;
    }

    .cooperation__arrow-1 {
        left: 50%;
    }
    .contact-modal__desc,
    .contact-modal__info {
        display: none;
    }

    .contact-modal__desc.mobile {
        display: block;
        color: #231E57;
        opacity: 0.6;
    }

    .contact-modal__content {
        padding: 0;
    }

    .contact-modal__content,
    .contact-modal .modal__block:nth-of-type(1),
    .contact-modal .modal__block:nth-of-type(2) {
        border-radius: 0;
    }

    .contact-modal .modal__block:nth-of-type(1),
    .contact-modal .modal__block:nth-of-type(2) {
        width: 100vw;
    }

    .contact-modal .modal__block:nth-of-type(1) {
        height: 80px;
        position: absolute;
        top: 0;
        padding-top: 14px;
        padding-bottom: 14px;
        margin-bottom: 0;
        display: flex;
        justify-content: center;
        z-index: 2;
    }
    .contact-modal__content {
        padding-top: 80px;
    }
    .contact-modal__title {
        margin-bottom: 0;
    }
    .contact-modal__close.modal__close {
        display: none !important;
    }
    .contact-modal__close.modal__close.mobile {
        display: block !important;
        top: 20px;
        right: 30px;
        z-index: 2;
    }
    .contact-modal__close img {
        width: 40px;
    }
    .contact-modal {
        overflow: hidden;
    }
    .contact-modal .modal__block:nth-of-type(2) {
        height: 100vh;
        overflow-y: scroll;
        overflow-x: hidden;
    }
    .contact-modal__form {
        padding-bottom: 50px;
    }
}

@media (max-width: 890px) {
    .contacts__info .footer__email {
        font-size: 28px;
    }

    .contacts__block .contacts__phone {
        font-size: 16px;
    }

    .next-project__desc {
        max-width: 40%;
        font-size: 14px;
        line-height: 20px;
    }

    .next-project {
        padding: 70px 0;
    }

    .case-web-intro {
        height: initial;
    }
}

@media (max-width: 870px) {
    .case-mobile-intro__desc {
        font-size: 15px;
        line-height: 22px;
    }

    .case-mobile-intro__icon {
        height: 100px;
    }

    .case-mobile-intro {
        min-height: 880px;
    }

    .projects__switcher {
        padding-right: 50px;
    }

    .project__slider {
        width: 250px;
        height: 515px;
    }

    .projects__switcher,
    .projects__content {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .projects__content {
        padding-left: 100px;
    }

    .project,
    .project.active {
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .cooperation__arrow-1 img,
    .cooperation__arrow-2 img,
    .cooperation__arrow-1,
    .cooperation__arrow-2 {
        width: 75px;
        min-width: initial;
    }
    .cooperation__arrow-1 {
        left: 58%;
        top: -35px;
    }
    .cooperation__arrow-2 {
        bottom: -40px;
        left: 70px;
    }
    .cooperation__item.big--item .cooperation__image img {
        transform: none;
    }
    .cooperation__item {
        padding: 20px 25px 40px;
    }
}

@media (max-width: 850px) {
    .project__slider {
        width: 250px;
        height: 510px;
    }

    .stages .contact__block:nth-of-type(1),
    .stages .contact__block:nth-of-type(2) {
        padding-right: 20px;
        padding-left: 20px;
    }

    .stages__slide {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .stages__slides {
        min-height: auto;
    }

    .stages__controls {
        position: relative;
        top: auto;
        bottom: 0;
        margin-top: 50px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
    }

    .stages__slide.active {
        position: relative;
    }

    .stages__content {
        padding-bottom: 0;
        padding-left: 0;
    }

    .contact {
        -webkit-transform: translate(0);
        -ms-transform: translate(0);
        transform: translate(0);
    }

    .stages .contact__wrapper {
        padding-bottom: 40px;
    }
}

@media (max-width: 820px) {
    .cn-buttons-container {
        max-width: 155px;
    }

    #cookie-notice .cn-button {
        height: 50px;
    }

    .cn-text-container {
        padding-left: 60px;
    }
}

@media (max-width: 800px) {
    .contacts__block:nth-of-type(1) {
        padding-right: 25px;
    }

    .contacts__block:nth-of-type(2) {
        padding-left: 25px;
    }

    .case-info__technology-list {
        max-width: 370px;
    }

    .two-intro .intro__heading {
        width: 100%;
        padding-right: 0;
        padding-top: 70px;
        display: block;
    }

    .two-intro .intro__socials {
        display: none;
    }

    .two-intro__bg-item {
        width: 100%;
        height: 50%;
    }

    .two-intro__bg-item:nth-of-type(2) {
        bottom: 0;
        top: initial;
    }

    .two-intro__title {
        line-height: 70px;
    }

    .two-intro .intro__breadcrumbs {
        display: none;
    }

    .two-intro__desc {
        margin-bottom: 31px;
    }
}

@media (max-width: 790px) {
    .case-mobile-intro__block {
        height: initial;
        position: relative;
    }

    .case-mobile-intro {
        height: initial;
        min-height: initial;
    }

    .case-mobile-intro__wrap,
    .case-mobile-intro__desc {
        display: none;
    }

    .case-mobile-intro__wrap.tablet,
    .case-mobile-intro__desc.tablet {
        display: block;
    }

    .case-mobile-intro__wrap {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        position: relative;
        margin-top: -145px;
        max-width: 330px;
    }

    .case-mobile-intro__img {
        height: initial;
        max-height: initial;
        width: 100%;
    }

    .case-mobile-intro__heading {
        padding-top: 105px;
        padding-bottom: 203px;
    }

    .case-mobile-intro .intro__breadcrumbs {
        display: none;
    }

    .case-mobile-intro__icon {
        margin-right: 24px;
        height: 80px;
    }

    .case-mobile-intro__title {
        color: #231e57;
        font-size: 30px;
    }

    .case-mobile-intro__information {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .case-mobile-intro__desc {
        text-align: center;
        max-width: 343px;
        margin: 0 auto;
    }

    .case-mobile-intro__content > .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .case-mobile-intro__wrapper {
        max-width: 100%;
    }

    .case-web-intro {
        padding-top: 0;
    }

    .case-web-intro__images {
        display: none;
    }

    .case-web-intro__images.tablet {
        display: block;
        width: 100%;
        padding: 14px 19px;
    }

    .case-web-intro__block {
        width: 100%;
    }

    .case-web-intro__breadcrumbs {
        display: none;
    }

    .case-web-intro__content {
        padding-top: 105px;
        padding-bottom: 65px;
    }

    .case-web-intro__heading {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .case-web-intro__sub-title {
        text-align: center;
        max-width: 343px;
        margin: 0 auto 20px;
    }

    .case-web-intro__block-bg {
        width: 100%;
    }

    .case-web-intro__images-bg {
        width: 100%;
        top: initial;
        bottom: 0;
        height: 38%;
    }

    .case-web-intro__tasks {
        margin-bottom: 27px;
    }

    .case-web-intro__tasks-title {
        margin-bottom: 7px;
    }

    .swither {
        display: none;
    }

    .switherSlider {
        display: block;
    }
}

@media (max-width: 782px) {
    body.admin-bar .header {
        top: 46px;
    }

    .web .projects-all .project__slider {
        height: 360px;
        width: 565px;
    }
}

@media (max-width: 768px) {
    .middle-screen {
        display: none;
    }

    .project__slide {
        border-radius: 14px;
    }

    .small-screen {
        display: block;
    }

    /*.main-menu__list a {*/
    /*    font-size: 20px;*/
    /*}*/
    .projects {
        height: initial;
    }

    .main-menu__list .menu-item:before {
        height: 35px;
    }

    .footer .footer__phone {
        font-size: 14px;
    }

    .footer .footer__email {
        font-size: 28px;
    }

    .footer .footer__copyright {
        font-size: 10px;
    }

    .contacts__phones {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .contacts__info .footer__email {
        font-size: 24px;
    }

    .case-info__technology-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .case-info__technology-list {
        max-width: 100%;
        margin-right: 0;
    }

    .case-info__tools-list {
        margin: 25px auto 0;
    }

    .case-info__tools {
        max-width: 100%;
    }

    .case-info__tool {
        padding: 0 20px;
        width: initial;
    }

    .case-info__notes__list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .case-info__note {
        width: calc(50% - 10px);
    }

    .case-info__note:nth-of-type(3) {
        margin-top: 20px;
        width: 100%;
    }

    .case-info__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0;
    }

    .case-info__item {
        width: 100%;
        margin-bottom: 60px;
    }

    .case-info__item:nth-last-of-type(1) {
        margin-bottom: 30px;
    }

    .case-info__icon-wrap {
        margin-left: 0;
        margin-right: 0;
        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;
    }

    .case-info__color {
        width: calc(100% / 3 - 5px);
        margin: 0;
    }

    .next-project {
        padding: 62px 0;
    }

    .next-project > .container {
        display: none;
    }

    .next-project > .container.tablet {
        display: block;
    }

    .next-project__head {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 10px;
    }

    .next-project__information {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .next-project__icon {
    }

    .next-project__name {
    }

    .next-project__link {
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        color: #918fa9;
        text-decoration: none;
        border-bottom: 1px solid #918fa9;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .next-project__link:after {
        content: url('./images/arrow-top-left-silver.svg');
        margin-top: -2px;
        margin-left: 5px;
    }

    .next-project__desc {
        max-width: 100%;
        font-size: 14px;
        line-height: 20px;
        color: #231e57;
    }

    .screen-presentation.web .screen-presentation__content {
        max-width: 100%;
        width: 100%;
        margin-bottom: 20px;
    }

    .screen-presentation.web .screen-presentation__buttons {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        width: 100%;
        overflow-x: scroll;
        max-width: 100%;
        padding-bottom: 10px;
    }

    .screen-presentation.web .screen-presentation__buttons > li {
        width: 145px;
        margin-right: 15px;
    }

    .screen-presentation.web .screen-presentation__btn {
        -webkit-box-shadow: none;
        box-shadow: none;
        width: 145px;
        border-radius: 14px;
        background: -o-linear-gradient(
                159.64deg,
                rgba(255, 255, 255, 0.2) 1.51%,
                rgba(255, 255, 255, 0.1) 74.57%
        );
        background: linear-gradient(
                290.36deg,
                rgba(255, 255, 255, 0.2) 1.51%,
                rgba(255, 255, 255, 0.1) 74.57%
        );
        font-weight: 500;
        font-size: 15px;
        line-height: 48px;
        height: 50px;
        padding: 0;
        margin-bottom: 0;
    }

    .screen-presentation.web .screen-presentation__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .screen-presentation.web .screen-presentation__title-wrap {
        position: initial;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        padding: 0;
    }

    .screen-presentation.web {
        padding-top: 100px;
        padding-bottom: 126px;
        min-height: initial;
        height: initial;
    }

    .screen-presentation.web .screen-presentation__title {
        margin-bottom: 20px;
    }

    .screen-presentation__screens.web {
        width: 100%;
        padding: 12px 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .screen-presentation__screens.web .screen-presentation__screen {
        width: calc(100% - 20px);
    }

    .intro-title--big {
        font-size: 48px;
        line-height: 52px;
    }

    .project__slider {
        width: 200px;
        height: 410px;
    }

    .project__link {
        width: 110px;
        height: 110px;
        font-size: 12px;
        line-height: 48px;
        left: initial;
        right: -70px;
        bottom: -30px;
    }

    .project.initial .project__pagination {
        -webkit-transform: rotate(-90deg) translateX(-50%);
        -ms-transform: rotate(-90deg) translateX(-50%);
        transform: rotate(-90deg) translateX(-50%);
        right: initial;
        top: initial;
        left: 50%;
        bottom: -135px;
    }

    .project.big.initial {
        right: initial;
        height: 350px;
        width: 560px;
    }

    .project.big.initial .project__slider {
        right: 0 !important;
    }

    .project.big.initial .project__slide {
        top: 0;
    }

    .project.big.initial .project__link {
        bottom: -40px;
        right: 20px;
        left: initial;
    }

    .project.big.initial .project__pagination {
        right: initial;
        left: 50%;
        bottom: -140px;
        top: initial;
    }

    .projects .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .projects__list {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        overflow-x: scroll;
        width: 100%;
        padding-bottom: 15px;
    }

    .projects__switcher,
    .projects__content {
        width: 100%;
    }

    .projects {
        background: var(--project-mobile-bg);
        background-size: cover;
        max-height: initial;
    }

    .projects__switcher {
        padding-right: 0;
        padding-top: 84px;
        padding-bottom: 27px;
    }

    .projects__item {
        width: 82px;
        margin-right: 8px;
        margin-left: 8px;
        margin-bottom: 0;
    }

    .projects__caption {
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
        width: 95px;
    }

    .project__swither-bg {
        display: none;
    }

    .projects__content {
        padding: 0;
        height: 565px;
    }

    .projects__content-bg {
        height: 565px;
        width: 100%;
        bottom: 0;
        top: initial;
        z-index: 1;
    }

    .project,
    .project.active {
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        left: 50%;
        right: initial;
        top: 60px;
        margin-bottom: 0;
    }

    .project.active {
        z-index: 2;
    }

    .projects-all .project__slider {
        height: 410px;
    }

    .projects-all .project__slide {
        top: 0;
    }

    .project__pagination {
        right: initial;
        -webkit-transform: translateX(-50%) rotate(-90deg);
        -ms-transform: translateX(-50%) rotate(-90deg);
        transform: translateX(-50%) rotate(-90deg);
        top: initial;
        left: 50%;
        bottom: -130px;
    }

    .projects__heading {
        margin-bottom: 26px;
    }

    .projects__title {
        color: #0669f7;
        font-weight: 600;
        font-size: 26px;
        line-height: 32px;
    }

    .projects__img {
        max-width: 100%;
        min-width: initial;
        width: 82px;
        height: 82px;
        border-radius: 20px;
        margin-bottom: 5px;
    }

    .projects__img > img {
        width: 82px;
        max-width: 96%;
        height: initial;
    }
    .big-link> span:after,
    .big-link:hover > span:after {
        display: none;
    }

    .big-link:hover {
        background: rgba(255, 255, 255, 0.6);
    }
}

@media (max-width: 730px) {
    .screen-presentation__screen {
        height: 570px;
    }

    .screen-presentation__buttons > li {
        width: 100%;
    }
    .cooperation__image {
        height: 180px;
    }
}

@media (max-width: 710px) {
    .web .project__link {
        right: 30px;
        bottom: -60px;
    }
}

@media (max-width: 700px) {
    .cn-text-container {
        font-size: 14px;
        line-height: 22px;
        margin-right: 10px !important;
        padding-left: 45px;
    }

    .cn-text-container:before {
        height: 35px;
        width: 35px;
    }

    .cn-buttons-container {
        max-width: 125px;
    }

    #cookie-notice .cn-button {
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 685px) {
    .contacts .contacts__form .footer__submit {
        max-width: 100%;
    }

    .btn--imprint {
        opacity: 1;
        border-radius: 20px;
        -webkit-box-shadow: 0 7px 15px rgba(18, 50, 111, 0.1);
        box-shadow: 0 7px 15px rgba(18, 50, 111, 0.1);
    }

    .btn--imprint .btn--imprint__hover {
        height: 100%;
    }

    .footer__submit-hover > img {
        max-height: 100%;
    }

    .footer__submit {
        opacity: 1;
        border-radius: 20px;
    }

    .contact-modal__submit {
        background: #0669f7;
    }

    .footer__submit .footer__submit-hover {
        height: 100%;
    }

    .link:hover,
    .link:hover:after {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    .header__burger:hover {
        background: #ffffff;
    }

    .header__burger:hover:before,
    .header__burger:hover:after {
        background: #0669f7;
    }

    .btn--transparent:hover {
        background-position-x: initial;
    }

    .btn--transparent:hover:before {
        -webkit-transform: initial;
        transform: initial;
    }

    .case-mobile-intro__content > .container {
        padding-bottom: 39px;
    }

    .header {
        background: rgba(255, 255, 255, 0.7);
        -webkit-backdrop-filter: blur(30px);
        backdrop-filter: blur(30px);
        height: 60px;
    }

    .main-menu__wrapper {
        left: 0;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    .main-menu__heading {
        margin-bottom: 45px;
    }

    .header__email {
        display: none;
    }

    .main-menu {
        padding-bottom: 50px;
        height: 100vh;
        padding-top: 21px;
        overflow-y: scroll;
    }

    .main-menu__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .main-menu__list .menu-item {
        margin-bottom: 45px;
        width: 100%;
    }

    .main-menu__list .menu-item:before {
        right: initial;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 41px;
        height: 1px;
        top: initial;
        bottom: calc(-45px / 2);
    }

    .main-menu__list a {
        font-size: 26px;
        line-height: 32px;
    }

    .main-menu__tablet.main-menu__btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        max-width: 342px;
        opacity: 1;
        margin: 0 auto 28px;
        border: none;
    }

    .main-menu__languages {
        display: none;
    }

    .main-menu__tablet.main-menu__languages {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        max-width: 343px;
        margin: 0 auto;
    }

    .main-menu__language,
    .lang-item {
        width: calc(100% / 3);
    }

    .main-menu__language > a,
    .lang-item > a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
    }

    .main-menu__slider {
        width: calc(100% / 3);
    }

    #wrapper {
        padding-bottom: 760px;
    }

    .footer {
        padding-top: 46px;
        height: 760px;
        margin-top: -760px;
    }

    .footer .footer__content {
        display: none;
    }

    .footer .footer__content.footer__tablet {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer .footer__block {
        width: 100%;
    }

    .footer .footer__head {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 30px;
    }

    .footer .footer__top-wrap {
        position: initial;
    }

    .footer__block:nth-of-type(1) .footer__heading {
        padding-left: 0;
        font-weight: 600;
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 0;
    }

    .footer .footer__block:nth-of-type(1) {
        padding-right: 0;
        border-right: 0;
        padding-bottom: 30px;
        border-bottom: 1px solid #ffffff;
    }

    .footer .footer__heading:after,
    .footer .footer__heading:before {
        display: none;
    }

    .footer__contact {
        margin-bottom: 0;
    }

    .footer .footer__submit {
        max-width: 100%;
        margin-top: 5px;
    }

    .footer .footer__block:nth-of-type(2) {
        padding-top: 32px;
        padding-left: 0;
    }

    .footer .footer__navigation {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 40px;
    }

    .footer .footer__navigation-block {
        font-size: 0;
    }

    .footer .footer__navigation-title {
        font-weight: 600;
        font-size: 18px;
        line-height: 20px;
        color: #ffffff;
        opacity: 0.7;
        margin-bottom: 8px;
    }

    .footer .footer__nav {
        margin-bottom: 0;
        padding-right: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer .footer__item,
    .footer__nav > .menu-item {
        width: initial;
    }

    .footer .input-wrap {
        margin-bottom: 10px;
    }

    .footer .footer__phones {
        margin-top: 0;
        margin-bottom: 25px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer .intro__social {
        padding-right: 0;
        margin-right: 18px;
    }

    .footer .intro__social:nth-last-of-type(1) {
        margin-right: 0;
    }

    .footer .intro__social:after {
        display: none;
    }

    .footer .intro__link {
        font-size: 28px;
    }

    .footer .main-menu__languages {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-right: 0;
    }

    .footer .footer__copyright {
        font-size: 12px;
    }

    .footer .footer__phone:nth-last-of-type(1) {
        margin-bottom: 0;
    }

    .footer .footer__navigation-email,
    .footer .footer__phone,
    .footer .footer__item,
    .footer__nav > .menu-item {
        margin-bottom: 5px;
    }

    .footer .footer__navigation-email,
    .footer .footer__phone,
    .footer .footer__link,
    .footer__nav > .menu-item > a {
        font-weight: 400;
        font-size: 16px;
        color: #ffffff;
        text-decoration: none;
        line-height: initial;
    }

    .footer .footer__top-wrap {
        width: 47px;
        height: 36px;
    }

    .title--blue,
    .title--white {
        font-size: 26px;
        line-height: 32px;
    }

    .policy:before,
    .policy:after {
        display: none;
    }

    .policy {
        padding-top: 102px;
        padding-bottom: 50px;
    }

    .policy__heading {
        margin-bottom: 30px;
    }

    .policy__title {
        margin-bottom: 10px;
    }

    .policy__sub-title {
        font-size: 15px;
        line-height: 22px;
    }

    .policy__caption {
        font-weight: 600;
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 10px;
    }

    .policy__content {
        font-size: 14px;
        line-height: 20px;
    }

    .contacts__bg {
        display: none;
    }

    .contacts__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .contacts {
        background: #0669f7;
        height: initial;
        min-height: 100vh;
        padding-top: 100px;
    }

    .contacts .intro__socials {
        display: flex;
    }

    .contacts__block {
        width: 100%;
    }

    .contacts__block:nth-of-type(1) {
        padding: 0;
    }

    .contacts__desc,
    .contacts .contacts__form {
        max-width: 100%;
    }

    .contacts .contacts__form .footer__submit {
        margin: 5px auto 0;
        height: 50px;
    }

    .contacts__heading {
        display: none;
    }

    .contacts .contacts__form {
        padding-bottom: 50px;
        border-bottom: 1px solid #ffffff;
    }

    .contacts__block:nth-of-type(2) {
        padding-left: 0;
        padding-top: 50px;
        padding-bottom: 22px;
    }

    .contacts__info .footer__email:after {
        display: none;
    }

    .contacts__info .footer__email {
        font-size: 32px;
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 14px;
    }

    .contacts__info .footer__email:hover {
        padding-left: 0;
    }

    .contacts__phones {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        max-width: 370px;
        margin: 0 auto 50px;
    }

    .contacts__block .contacts__phone,
    .contacts__block .intro__link {
        color: #fff;
    }

    .contacts__block .intro__socials.blue--bg .intro__link:before {
        background: #fff;
    }

    .contacts__socials {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .screen-presentation__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .screen-presentation__buttons {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        overflow-x: scroll;
    }

    .screen-presentation__content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .screen-presentation__btn {
        min-width: 145px;
        -webkit-box-shadow: none;
        box-shadow: none;
        font-size: 15px;
        height: 50px;
        padding: 0;
        border-radius: 14px;
        letter-spacing: 0.02em;
    }

    .screen-presentation__buttons > li {
        margin-right: 16px;
    }

    .screen-presentation {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .screen-presentation__title {
        font-size: 26px;
        margin-bottom: 20px;
        line-height: 32px;
    }

    .screen-presentation__bg-img {
        -webkit-transform: translateX(-50%) translateY(0);
        -ms-transform: translateX(-50%) translateY(0);
        transform: translateX(-50%) translateY(0);
        left: 50%;
        top: 40%;
    }

    .case-animation__slide,
    .case-animation__slide:nth-of-type(2n),
    .web .case-animation__slide,
    .web .case-animation__slide:nth-of-type(2n) {
        -webkit-animation: none;
        animation: none;
        opacity: 1;
    }

    .case-animation {
        height: 500px;
    }

    .web .case-animation__img,
    .case-animation__img,
    .small-screen {
        display: none;
    }

    .case-animation,
    .two-intro__bg-item:nth-of-type(2) {
        background: var(--url-bg-animation-mobile) no-repeat center center;
        background-size: cover;
    }

    .intro__socials,
    .two-intro__img-animation {
        display: none;
    }

    .intro__socials.footer__socials {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .section-name {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .section-name:after {
        width: 37px;
        height: 37px;
        right: -15px;
    }

    .desc {
        font-size: 15px;
        line-height: 22px;
        color: #231e57;
        opacity: 0.9;
    }

    .stages {
        background: transparent !important;
        padding-top: 82px;
    }

    .stages__mobile-bg {
        opacity: 1;
    }

    .stages__text.one,
    .stages__text.two {
        display: none;
    }

    .stages__img {
        width: 100%;
    }

    .stages__sup-caption {
        font-size: 12px;
    }

    .stages__caption {
        font-size: 26px;
        margin-bottom: 6px;
    }

    .stages__desc {
        font-size: 14px;
        line-height: 20px;
    }

    .stages__button.next {
        width: 74px;
        height: 74px;
    }

    .stages__button.next .stages__image-wrap,
    .stages__button.next:hover .stages__image-wrap {
        width: 51px;
    }

    .stages__button.prev {
        margin-right: 39px;
    }

    .stages__controls {
        margin-top: 25px;
        margin-bottom: 46px;
        padding-left: 0;
    }

    .stages__step {
        font-size: 10px;
    }

    .cooperation__content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 14px;
    }

    .cooperation__item,
    .cooperation__list,
    .cooperation__item.big--item {
        width: 100%;
        gap: 14px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .cooperation__img {
        width: 100%;
        max-width: 437px;
        margin-left: auto;
        margin-right: auto;
        display: block;
        margin-top: 30px;
    }

    .cooperation__caption {
        font-size: 18px;
        margin-bottom: 6px;
        line-height: 26px;
    }

    .cooperation__desc {
        font-size: 14px;
        line-height: 20px;
    }

    .cooperation__item {
        padding: 22px 18px 60px;
    }

    .cooperation__title {
        margin-bottom: 20px;
    }

    .contact {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .contact__block {
        width: 100%;
    }

    .contact__block:nth-of-type(1) {
        border-radius: 30px 30px 0 0;
        padding: 50px 17px;
        position: relative;
        background: transparent !important;
    }

    .contact__block:nth-of-type(1) .stages-contact__block--mobile {
        display: block;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }

    .contact__block:nth-of-type(2) {
        border-radius: 0 0 30px 30px;
        padding: 52px 18px;
    }

    .contact .footer__submit {
        width: 100%;
        max-width: initial;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
        height: 50px;
    }

    .contact .footer__input {
        height: 45px;
    }

    .contact__title {
        font-size: 30px;
    }

    .contact__desc {
        font-size: 15px;
    }

    .websites {
        padding-top: 101px;
        padding-bottom: 92px;
    }

    .cooperation__image-wrapper {
        -ms-flex-pack: distribute;
        justify-content: space-around;
        margin-top: 15px;
    }
    .cooperation__item.big--item {
        padding-bottom: 60px;
    }

    .contacts__phone:before {
        background: #fff;
    }

    .two-intro .intro__heading {
        padding-top: 60px;
        height: 50%;
        display: flex;
        align-items: center;
    }

    .two-intro__title {
        font-weight: 600;
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 20px;
    }

    .two-intro__desc {
        font-size: 15px;
        line-height: 22px;
    }

    .two-intro__btn {
        border-radius: 16px;
        max-width: 230px;
    }

    .contact-modal .modal__close, .join-modal .modal__close {
        right: 45px;
    }
    .screen-presentation__buttons > li {
        overflow: initial;
        box-shadow: none;
    }
    .cooperation__arrow-1 img,
    .cooperation__arrow-2 img,
    .cooperation__arrow-1,
    .cooperation__arrow-2 {
        width: 95px;
        min-width: initial;
    }
    .cooperation__arrow-1 {
        left: 59%;
        top: -25px;
    }
    .cooperation__arrow-2 {
        bottom: -80px;
        left: 26%;
    }
    .cooperation__item.big--item {
        padding-bottom: 100px;
    }
}

@media (max-width: 615px) {
    #cookie-notice .cookie-notice-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 605px) {
    .cooperation__arrow-1 {
        left: 58%;
        top: -15px;
    }
    .cooperation__arrow-2 {
        bottom: -80px;
        left: 25%;
    }
}

@media (max-width: 590px) {
    .web .projects-all .project__slider {
        height: 248px;
        width: 380px;
    }

    .web .projects__content,
    .web .projects__content-bg {
        height: 445px;
    }

    .web .project, .web .project.active {
        top: 85px;
    }

    .web .project__link {
        right: -10px;
        bottom: -50px;
    }
}

@media (max-width: 575px) {
    #cookie-notice {
        height: initial !important;
    }

    #cookie-notice .cookie-notice-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .cn-text-container {
        max-width: 100%;
        margin-right: 0 !important;
        margin-bottom: 10px !important;
    }

    #cookie-notice {
        background-position: center center !important;
    }

    .cn-text-container:before {
        height: 40px;
        width: 40px;
    }

    .cn-text-container {
        padding-left: 55px;
    }

    .cn-buttons-container {
        max-width: 205px;
    }
}

@media (max-width: 570px) {
    .project.big.initial .project__slider,
    .project.big.initial {
        width: 430px;
        height: 270px;
    }

    .modal__block:nth-of-type(1),
    .modal__block:nth-of-type(2),
    .join__block:nth-of-type(1),
    .join__block:nth-of-type(2) {
        padding: 45px 20px 45px 20px;
    }

    .contact-modal__radios {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width: 550px) {
    .process-mobile__title {
        font-weight: 600;
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 16px;
    }

    .process-mobile__desc {
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 27px;
    }

    .process-mobile__item {
        padding: 14px 16px;
        font-size: 14px;
        margin-right: 14px;
        margin-bottom: 14px;
    }

    .case-web-intro__images-bg {
        height: 35%;
    }

    .intro-title--big {
        max-width: 343px;
        font-weight: 400;
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 22px;
    }

    .section-name:after {
        height: 37px;
        width: 37px;
        right: -12px;
    }
}

@media (max-width: 530px) {
    .case-info__icon-wrap {
        width: calc(100% / 4);
    }
}

@media (max-width: 500px) {
    body.admin-bar .header {
        top: 0;
    }

    .case-mobile-intro__wrap {
        max-width: 300px;
    }

    .join-modal__tag {
        font-size: 12px;
    }
    .cooperation__image {
        height: 230px;
    }
    .cooperation__item.big--item {
        padding-bottom: 90px;
    }

    .cooperation__arrow-1 {
        left: 57%;
        top: -25px;
    }
    .cooperation__arrow-2 {
        bottom: -80px;
        left: 23%;
    }
}

@media (max-width: 450px) {
    .cooperation__image {
        height: 160px;
    }

    .cooperation__arrow-1 img,
    .cooperation__arrow-2 img,
    .cooperation__arrow-1,
    .cooperation__arrow-2 {
        width: 75px;
        min-width: initial;
    }
    .cooperation__arrow-1 {
        left: 59%;
        top: -5px;
    }
    .cooperation__arrow-2 {
        bottom: -70px;
        left: 26%;
    }
    .cooperation__item.big--item {
        padding-bottom: 80px;
    }

    .case-mobile-intro__icon {
        height: 45px;
        margin-right: 9px;
    }

    .case-info__technology-list {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        overflow-x: scroll;
        padding-bottom: 23px;
    }

    .case-info__technology-item {
        width: 200px !important;
        border-bottom: none !important;
        padding: 5px 0;
        border-right: 1px solid #918fa9 !important;
    }

    .case-info__technology-item:nth-last-of-type(1) {
        border-right: none !important;
    }

    .case-info__technology-link {
        width: 150px;
        font-size: 15px;
        line-height: 22px;
    }

    .case-info__technology-link.active,
    .case-info__technology-link:hover {
        font-weight: 600;
    }

    .case-info__technology-link.active:before,
    .case-info__technology-link:hover:before {
        height: 43px;
        width: 43px;
    }

    .case-info__tool {
        padding: 0;
        width: 25%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .case-info__tool-icon {
        width: 74px;
        height: 74px;
    }

    .case-info__tool-img {
        width: 50px;
    }

    .case-info__tool-title {
        font-size: 14px;
        line-height: 28px;
    }

    .case-info__tools-item {
        width: 100%;
    }

    .case-info {
        padding: 80px 0;
    }

    .case-info__head {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 30px;
    }

    .case-info__title {
        font-size: 15px;
        line-height: 22px;
    }

    .case-info__note {
        overflow: hidden;
        padding: 20px 20px 73px;
    }

    .case-info__note-title {
        font-weight: 600;
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 0;
    }

    .case-info__note-desc {
        font-size: 15px;
        line-height: 22px;
    }

    .case-info__notes,
    .case-info__map,
    .case-info__item {
        margin-bottom: 50px;
    }

    .case-info__item:nth-last-of-type(1) {
        margin-bottom: 20px;
    }

    .next-project__name {
        font-size: 26px;
        line-height: 32px;
    }

    .next-project__icon {
        height: 44px;
        margin-right: 10px;
    }

    .next-project__head {
        margin-bottom: 7px;
    }

    .case-web-intro__images-bg {
        height: 28%;
    }

    .case-web-intro__title {
        font-size: 30px;
        line-height: 38px;
    }

    .case-web-intro__heading {
        margin-bottom: 8px;
    }

    .case-web-intro__sub-title {
        font-size: 15px;
        line-height: 22px;
    }

    .case-web-intro__tasks-title {
        font-size: 26px;
        line-height: 32px;
    }

    .case-web-intro__task:nth-of-type(1),
    .case-web-intro__task {
        padding: 16px 15px;
        border-radius: 20px;
        font-size: 14px;
    }

    .case-web-intro__images.tablet {
        padding: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .screen-presentation.web .screen-presentation__title {
        font-size: 26px;
        line-height: 32px;
    }

    .screen-presentation__screens.web {
        padding: 8px 6px;
    }

    .screen-presentation__screens.web .screen-presentation__screen {
        width: calc(100% - 12px);
    }

    .project.big.initial .project__slider,
    .project.big.initial {
        width: 300px;
        height: 190px;
    }

    .project.big.initial .project__slide {
        padding: 10px;
    }

    .project.big.initial .project__pagination {
        bottom: -150px;
    }

    .contact-modal__checkboxes > label {
        margin-right: 0;
    }

    .contact-modal__submit,
    .join-modal__submit {
        max-width: 100%;
    }

    .cn-text-container {
        padding-left: 0;
        text-align: center;
    }

    .cn-text-container:before {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        top: calc(100% + 10px);
    }
    .contact-modal__title {
        font-size: 26px;
        line-height: 32px;
    }
    .contact-modal .modal__block:nth-of-type(1) {
        height: 60px;
    }
    .contact-modal__content {
        padding-top: 50px;
    }
    .contact-modal__close.modal__close {
        top: 20px;
        right: 16px;
    }
    .contact-modal__close img {
        width: 22px;
    }
    .contact-modal .modal__block:nth-of-type(2) {
        padding-top: 25px;
    }
}

@media (max-width: 420px) {
    .footer .footer__navigation-title {
        font-size: 16px;
    }

    .footer .footer__navigation-email,
    .footer .footer__phone,
    .footer .footer__link,
    .footer__nav > .menu-item > a {
        font-size: 14px;
    }

    .footer .footer__phones {
        margin-bottom: 20px;
    }

    .footer .footer__navigation {
        margin-bottom: 35px;
    }

    .footer .footer__copyright {
        font-size: 10px;
    }

    .footer__block:nth-of-type(1) .footer__heading {
        font-size: 24px;
    }

    .input {
        height: 45px;
        padding-left: 16px;
        font-size: 14px;
    }

    .iti__selected-flag {
        height: 45px;
    }

    .iti__country-list {
        top: 45px;
    }

    .footer .footer__submit {
        height: 50px;
    }

    .footer .footer__submit-hover > img {
        height: 50px;
    }

    .contacts__info .footer__email {
        font-size: 26px;
    }

    .contacts__block .contacts__phone {
        font-size: 13px;
    }

    .contacts__desc {
        font-size: 15px;
        line-height: 22px;
    }

    .contacts__title {
        font-size: 30px;
        margin-bottom: 12px;
        line-height: 38px;
    }

    .case-mobile-intro__task {
        font-size: 14px;
        line-height: 20px;
        padding: 15px;
        margin-bottom: 20px;
    }

    .case-mobile-intro__sub-title {
        font-size: 26px;
        margin-bottom: 7px;
    }

    .screen-presentation__screen {
        height: 420px;
    }

    .screen-presentation {
        padding-bottom: 66px;
    }

    .screen-presentation__bg-img {
        top: 50%;
    }

    .screen-presentation__title {
        max-width: 290px;
    }

    .case-info__icon {
        height: 73px;
        width: 73px;
    }

    .portfolio .project.big.initial .project__link {
        left: 60%;
    }
}

@media (max-width: 400px) {
    .stages__step {
        font-size: 8px;
    }

    .web .projects-all .project__slider {
        height: 200px;
        width: 300px;
    }

    .web .project, .web .project.active {
        top: 105px;
    }

    .web .project__link {
        width: 80px;
        height: 80px;
        font-size: 9px;
        bottom: -30px;
    }

    .web .big-link > span {
        padding-bottom: 3px;
    }
}

@media (max-width: 395px) {
    .cn-buttons-container {
        max-width: 155px;
    }
}

@media (max-width: 370px) {
    .case-info__icon {
        height: 60px;
        width: 60px;
        border-radius: 20px;
    }

    .case-info__tool {
        width: calc(100% / 3);
    }

    .case-info__technology {
        padding-bottom: 50px;
    }

    .case-mobile-intro__wrap {
        max-width: 273px;
    }

    .contacts .contacts__block .contacts__phone {
        font-size: 13px;
    }

    .contacts .contacts__block .contacts__phones {
        margin-bottom: 0;
    }

    .contacts {
        min-height: 680px;
    }
}

@media (max-width: 355px) {
    .case-mobile-intro__task {
        width: 100%;
        font-size: 16px;
        padding: 20px 15px;
    }

    .project__link {
        right: -40px;
    }

    .input.phone {
        font-size: 15px;
        padding-left: 60px;
    }

    .input-wrap:after, .input-wrap:before {
        right: 10px;
    }

    .iti__selected-flag {
        padding-left: 15px;
    }
}

/* \Adaptive */