.action_btn {
    width: 10.16vw;
    height: 2.66vw;
    font-weight: 700;
    background: #fff !important;
    color: #18181b !important;
    cursor: pointer;
    outline: none;
    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;
    text-align: center;
    position: relative;
    -webkit-transition: all .2s
    ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s
    ease-in-out;
    overflow: hidden !important;
    border: none !important;
}

.action_btn:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    color: #18181b;
}

.action_btn:focus, .action_btn:visited {
    outline: none;
    color: #18181b;
}

.breadcrumbs_wrapper a {
    background-image: linear-gradient(175deg, #fff 0%, #fff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.breadcrumbs_wrapper a:visited, .breadcrumbs_wrapper a:focus {
    background-image: linear-gradient(175deg, #fff 0%, #fff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.breadcrumbs_wrapper a:hover {
    background-image: linear-gradient(175deg, #f74e5d 0%, #c446ff 100%);
}

.preloader_block {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 1010;
    background: #18181B;
    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;
    /*display: none;*/
}

.loader{
    width: 100px;
    height: 100px;
    margin: 50px auto 0;
    position: relative;
}
.loader .circle{
    background: -o-linear-gradient(45deg, #337aff, #572ff3, #e81f6c, #f1c726);
    background: linear-gradient(45deg, #337aff, #572ff3, #e81f6c, #f1c726);
    background-size: 200%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 15px rgba(0,0,0,0.3);
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-animation: colorfull-spin 2s alternate infinite;
    animation: colorfull-spin 2s alternate infinite;
}
.loader .circle:nth-child(1){
    width: 80px;
    height: 80px;
    z-index: 1;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}
.loader .circle:nth-child(2){
    width: 60px;
    height: 60px;
    z-index: 2;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
.loader .circle:nth-child(3){
    width: 40px;
    height: 40px;
    z-index: 3;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
.loader .circle:nth-child(4){
    background: -o-linear-gradient(45deg, #337aff, #572ff3, #e81f6c, #f1c726);
    background: linear-gradient(45deg, #337aff, #572ff3, #e81f6c, #f1c726);
    background-size: 200%;
    width: 20px;
    height: 20px;
    z-index: 4;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}
@-webkit-keyframes colorfull-spin{
    0%{
        border-radius: 50%;
        -webkit-transform: translateX(-50%) translateY(-50%) rotate(0);
        transform: translateX(-50%) translateY(-50%) rotate(0);
        background-position: 0 50%;
    }
    20%{
        border-radius: 50%;
        -webkit-transform: translateX(-50%) translateY(-50%) rotate(0);
        transform: translateX(-50%) translateY(-50%) rotate(0);
    }
    50%{ background-position: 100% 50%; }
    90%{
        border-radius: 5%;
        -webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
        transform: translateX(-50%) translateY(-50%) rotate(90deg);
    }
    100%{
        border-radius: 5%;
        -webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
        transform: translateX(-50%) translateY(-50%) rotate(90deg);
        background-position: 0 50%;
    }
}
@keyframes colorfull-spin{
    0%{
        border-radius: 50%;
        -webkit-transform: translateX(-50%) translateY(-50%) rotate(0);
        transform: translateX(-50%) translateY(-50%) rotate(0);
        background-position: 0 50%;
    }
    20%{
        border-radius: 50%;
        -webkit-transform: translateX(-50%) translateY(-50%) rotate(0);
        transform: translateX(-50%) translateY(-50%) rotate(0);
    }
    50%{ background-position: 100% 50%; }
    90%{
        border-radius: 5%;
        -webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
        transform: translateX(-50%) translateY(-50%) rotate(90deg);
    }
    100%{
        border-radius: 5%;
        -webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
        transform: translateX(-50%) translateY(-50%) rotate(90deg);
        background-position: 0 50%;
    }
}

/*Header*/

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 5.78vw;
    font-weight: 500;
    z-index: 1000;
    display: flex;
    justify-content: center;
    transition: all .2s linear;
}

header:after {
    position: absolute;
    content: '';
    background: #4f4f4f;
    height: 0.05vw;
    width: 83.33vw;
    bottom: 0;
    left: auto;
    right: auto;
}

header.scrolled {
    background: #000;
    transition: all .2s linear;
}

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

.logo {
    width: 8.59vw;
    display: flex;
}

.header__menu {
    width: 23.44vw;
}

.header__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-transform: uppercase;
}

.header__list li a, .footer__list li a {
    transition: all .2s linear;
    color: #a1a1aa;
}

.header__list li a:hover, .footer__list li a:hover {
    transition: all .2s linear;
    color: #fff;
}

.header__list li a:visited, .header__list li a:focus,
.footer__list li a:visited, .footer__list li a:focus {
    color: #a1a1aa;
}



/*Footer*/

footer {
    position: relative;
}

footer .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .wrapper .footer__menu {
    max-width: 23.65vw;
    width: 100%;
}

footer .wrapper .footer__list {
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
}

footer .wrapper .logo {
    width: 10.63vw;
}

footer .wrapper .copyright_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

footer .wrapper .copyright_text p {
    color: #828282;
}

footer .wrapper .copyright_text a {
    background: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

footer .wrapper .copyright_text a:hover {
    background-image: linear-gradient(175deg, #f74e5d 0%, #c446ff 100%);
}

.pages_links__block {
    display: none;
}

.pages_link_special {
    margin: 0 0.26vw 0 0;
    padding: 0 0.26vw 0 0;
    border-right: 0.05vw solid #fff;
}

/* Pages */

.first_screen {
    height: 60.21vw;
    min-height: 47vw;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.first_screen .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    position: relative;
    z-index: 10;
}

.first_screen .wrapper h1 {
    font-weight: 700;
    line-height: 114%;
    text-align: center;
}

.color_text {
    background: linear-gradient(175deg, #f74e5d 0%, #c446ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.first_screen .wrapper .subtitle {
    line-height: 162%;
    text-align: center;
    color: #fee9e7;
}

.first_screen_slider .swiper-slide {
    width: 35.42vw;
    height: 26.56vw;
    display: flex;
    align-items: center;
}

.first_screen_slider .swiper-slide-active div {
    width: 100%;
    height: 100%;
    transition: all .3s linear;
    border-radius: 1.77vw;
    overflow: hidden;
}

.first_screen_slider .swiper-slide-active .slide-video iframe {
    width: 100%;
    height: 100%;
}

.first_screen_slider .swiper-slide-prev {
    display: flex;
    justify-content: flex-end;
}

.first_screen_slider .swiper-slide-prev .slide-media,
.first_screen_slider .swiper-slide-next .slide-media {
    width: 66%;
    transition: all .3s linear;
    border-radius: 1.56vw;
    overflow: hidden;
}

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

.about_us .wrapper .left {
    max-width: 38.13vw;
    width: 100%;
}

.about_us .wrapper .left h2 {
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
}

.about_us .wrapper .left .desc span {
    font-weight: 700;
    text-transform: uppercase;
}

.about_us .wrapper .left .desc p:not(:last-child), .projects_single__first_screen .elem .left .desc p:not(:last-child) {
    margin: 0 0 1.56vw;
}

.about_us .wrapper .right {
    max-width: 19.69vw;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_us .wrapper .right:after {
    position: absolute;
    content: '';
    background-image: url("../img/ellipse_1.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 42.81vw;
    height: 47.19vw;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    z-index: -1;
}

.about_us .wrapper .right .image_block {
    width: 100%;
}

.partners {
    position: relative;
    z-index: 5;
}

/*.partners:after {*/
/*    filter: blur(210px);*/
/*    background: #000;*/
/*    position: absolute;*/
/*    content: '';*/
/*    top: 0;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*}*/

.partners_slider .slide__inner {
    display: flex;
    justify-content: center;
}

.partners_slider .slide__inner .image_block {
    width: 5.57vw;
}

.services .wrapper {
    position: relative;
}

.services .wrapper:before, .services .wrapper:after {
    position: absolute;
    content: '';
    background: linear-gradient(175deg, #f74e5d 0%, #c446ff 100%);
    height: 0.1vw;
    width: 26.04vw;
    top: 21.5vw;
    bottom: auto;
}

.services .wrapper:before {
    left: -20vw;
    right: auto;
}

.services .wrapper:after {
    left: auto;
    right: -20vw;
}

.services .title, .projects .title, .contacts .title {
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

.services .subtitle, .projects .subtitle {
    line-height: 144%;
    text-align: center;
    max-width: 55.31vw;
    width: 100%;
}

.services .elem {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 59.27vw;
    width: 100%;
    position: relative;
}

/*.services .elem:after {*/
/*    position: absolute;*/
/*    content: '';*/
/*    background-image: url(../img/services_bg.png);*/
/*    background-repeat: no-repeat;*/
/*    background-position: center;*/
/*    background-size: cover;*/
/*    width: 85.31vw;*/
/*    height: 48.39vw;*/
/*    top: -18vw;*/
/*    bottom: auto;*/
/*    left: auto;*/
/*    right: auto;*/
/*    z-index: -1;*/
/*}*/

.services .elem .item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30%;
}

.services .elem .item .image_block {
    transition: all .3s linear;
}

.services .elem .item:hover .image_block {
    transform: scale(1.05);
    transition: all .3s linear;
}

.services .elem .item .text_block {
    text-align: center;
    /*position: relative;*/
    /*z-index: 3;*/
}

.link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.services .elem .item .text_block .btn_block {
    position: relative;
    z-index: 5;
}

.consult_btn {
    transition: all .3s linear;
}

.consult_btn:hover {
    transition: all .3s linear;
    transform: scale(1.05);
}

.info {
    background: linear-gradient(135deg, #f74e5d 0%, #280050 100%);
    position: relative;
    z-index: 5;
}

.info:after {
    filter: blur(210px);
    background: linear-gradient(135deg, #f74e5d 0%, #280050 100%);
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.info .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 87%;
    margin: 0 0 0 auto;
}

.info .wrapper .btn_block {
    width: fit-content;
}

.projects_slider .swiper-slide {
    transition: all .3s linear;
}

.projects_slider .swiper-slide:hover {
    transition: all .3s linear;
    transform: scale(1.02);
}

.projects_slider .slide__inner {
     overflow: hidden;
     position: relative;
     height: 26.61vw;
 }

.projects_slider .slide__inner .image_block {
    height: 100%;
}

.projects_slider .slide__inner .text_block {
    position: absolute;
    bottom: 0;
    top: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.projects_slider .slide__inner .text_block .text_bg {
    position: absolute;
    width: 21.46vw;
    height: 17.29vw;
    top: -6vw;
    right: calc(50% - 10vw);
}

.projects_slider .slide__inner .text_block h3 {
    position: relative;
    width: 60%;
    text-align: right;
}

.projects_slider .slide__inner .text_block h3 .color_text {
    background-image: linear-gradient(175deg, #fff 0%, #fff 100%);
}

.projects_slider .slide__inner .text_block .logo_icon {
    width: 1.72vw;
    position: relative;
}

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

.projects_nav .swiper-pagination {
    position: relative;
    bottom: 0 !important;
    width: fit-content !important;
    display: flex;
    align-items: center;
}

.projects_nav .swiper-button-next, .projects_nav .swiper-button-prev {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    margin: 0 !important;
}

.swiper-button-next, .swiper-button-prev {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 1.04vw;
    height: 1.77vw;
}

.swiper-button-next {
    background-image: url("../img/next.png");
}

.swiper-button-prev {
    background-image: url("../img/prev.png");
}

.swiper-button-next:after, .swiper-button-prev:after {
    display: none !important;
}

.swiper-pagination-bullet {
    background: #fff !important;
    width: 0.73vw !important;
    height: 0.73vw !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: linear-gradient(175deg, #f74e5d 0%, #c446ff 100%) !important;
    width: 1.15vw !important;
    height: 1.15vw !important;
}

.contacts {
    height: 100vh;
}

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

.contacts .bg_image .image_block {
    width: 63.28vw;
    height: 30.63vw;
    margin: auto;
}

.contacts .wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contacts .wrapper .elem {
    display: flex;
    justify-content: space-between;
    max-width: 46.35vw;
    width: 100%;
}

.contacts .wrapper .left {
    max-width: 20.83vw;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contacts .wrapper .left .item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contacts .wrapper .left a {
    transition: all .3s linear;
}

.contacts .wrapper .left a:hover {
    transition: all .3s linear;
    transform: scale(1.05);
}

.contacts .wrapper .left .item .title {
    text-transform: none;
}

.contacts .wrapper .right {
    max-width: 20.1vw;
    width: 100%;
}

input[type="text"], input[type="email"] {
    border: none !important;
    color: #000;
    outline: none !important;
    border-radius: 0.26vw;
    height: 1.67vw;
    padding: 0 0.52vw;
    font-size: 0.83vw;
    font-family: var(--font-family);
    width: 100%;
}

textarea {
    border: none !important;
    color: #000;
    outline: none !important;
    border-radius: 0.26vw;
    resize: none;
    height: 4.17vw;
    font-size: 0.83vw;
    padding: 0.26vw 0.52vw;
    font-family: var(--font-family);
    width: 100%;
}

*::placeholder {
    color: #9aa6ac;
    font-size: 0.83vw;
    font-family: var(--font-family);
}

.wpcf7-response-output {
    display: none !important;
}

.wpcf7-not-valid-tip {
    position: absolute;
    color: #fff;
    font-size: 0.73vw;
}

.submit_field {
    position: relative;
}

.submit_field p {
    display: flex;
    justify-content: center;
}

.submit_field .action_btn {
    width: 8.18vw;
    height: 2.81vw;
    font-size: 0.94vw;
    border-radius: 0.26vw;
}

.wpcf7-spinner {
    position: absolute;
    top: 0;
    right: 0;
}

.form_block {
    background: linear-gradient(175deg, #f74e5d 0%, #c446ff 100%);
    max-width: 40vw;
}

.form_block__inner {
    text-align: center;
}

.projects_single__first_screen h1 {
    text-align: center;
}

.projects_single__first_screen article h2, .projects_single__first_screen article p,
.terms_conditions__page article h2, .terms_conditions__page article p {
    margin: 0 0 1.04vw;
}

.projects_single__first_screen article ul, .projects_single__first_screen article ol,
.terms_conditions__page article ul, .terms_conditions__page article ol {
    margin: 0 0 1.04vw;
    padding: 0 0 0 1.3vw;
}

.projects_single__first_screen article ul,
.terms_conditions__page article ul {
    list-style: disc;
}

.projects_single__first_screen article ol,
.terms_conditions__page article ol {
    list-style: decimal;
}

.alignleft, .alignright {
    margin-top: 1.5em;
}

.projects_single__first_screen .elem {
    display: flex;
    justify-content: space-between;
}

.projects_single__first_screen .elem .left {
    max-width: 38.13vw;
    width: 100%;
}

.projects_single__first_screen .elem .left h2 {
    font-weight: 700;
    line-height: 112%;
    text-transform: uppercase;
}

.projects_single__first_screen .elem .left .desc span {
    font-weight: 700;
    text-transform: uppercase;
}

.projects_single__first_screen .elem .right {
    max-width: 34.38vw;
    width: 100%;
}

.project_single_video {
    overflow: hidden;
}

.error-404 .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.error-404 .wrapper .title {
    font-size: 15.63vw;
    font-weight: 700;
    line-height: 1.2;
}


#support_modal .input_field, #support_modal .textarea_field  {
    text-align: left;
}







/* Media */

@media screen and (max-width: 1440px) {
    body {
        font-size: 1.11vw !important;
    }

    .container_1768, .container_1492 {
        max-width: 100% !important;
        padding: 0 1.74vw !important;
    }

    .action_btn {
        width: 13.55vw;
        height: 3.55vw;
    }

    header {
        height: 7.71vw;
    }

    header:after {
        height: 0.07vw;
        width: 111.11vw;
    }

    .logo {
        width: 11.45vw;
    }

    .header__menu {
        width: 31.25vw;
    }

    footer .wrapper .footer__menu {
        max-width: 31.53vw;
    }

    footer .wrapper .logo {
        width: 14.17vw;
    }

    .pages_link_special {
        margin: 0 0.35vw 0 0;
        padding: 0 0.35vw 0 0;
        border-right: 0.07vw solid #fff;
    }

    .first_screen {
        height: 80.28vw;
        min-height: 62.67vw;
    }

    .first_screen_slider .swiper-slide {
        width: 47.22vw;
        height: 35.42vw;
    }

    .first_screen_slider .swiper-slide-active div {
        border-radius: 3.05vw;
    }

    .first_screen_slider .swiper-slide-prev div,
    .first_screen_slider .swiper-slide-next div {
        border-radius: 2.08vw;
    }

    .about_us .wrapper .left {
        max-width: 50.84vw;
    }

    .about_us .wrapper .left .desc p:not(:last-child), .projects_single__first_screen .elem .left .desc p:not(:last-child) {
        margin: 0 0 2.08vw;
    }

    .about_us .wrapper .right {
        max-width: 26.25vw;
    }

    .about_us .wrapper .right:after {
        width: 57.08vw;
        height: 62.92vw;
    }

    .services .wrapper:before, .services .wrapper:after {
        height: 0.13vw;
        width: 34.72vw;
        top: 28.67vw;
    }

    .services .wrapper:before {
        left: -26.67vw;
    }

    .services .wrapper:after {
        right: -26.67vw;
    }

    .services .subtitle, .projects .subtitle {
        max-width: 73.75vw;
    }

    .services .elem {
        max-width: 79.03vw;
    }

    .services .elem:after {
        width: 113.75vw;
        height: 64.52vw;
        top: -24.00vw;
    }

    .projects_slider .slide__inner .text_block .text_bg {
        width: 28.61vw;
        height: 23.05vw;
        top: -8.00vw;
        right: calc(50% - 13.33vw);
    }

    .projects_slider .slide__inner .text_block .logo_icon {
        width: 2.29vw;
    }

    .swiper-button-next, .swiper-button-prev {
        width: 1.39vw;
        height: 2.36vw;
    }

    .swiper-pagination-bullet {
        width: 0.97vw !important;
        height: 0.97vw !important;
    }

    .swiper-pagination-bullet-active {
        width: 1.53vw !important;
        height: 1.53vw !important;
    }

    .contacts .bg_image .image_block {
        width: 84.37vw;
        height: 40.84vw;
    }

    .contacts .wrapper .elem {
        max-width: 61.80vw;
    }

    .contacts .wrapper .left {
        max-width: 27.77vw;
    }

    .contacts .wrapper .right {
        max-width: 26.80vw;
    }

    input[type="text"], input[type="email"] {
        border-radius: 0.35vw;
        height: 2.23vw;
        padding: 0 0.69vw;
        font-size: 1.11vw;
    }

    textarea {
        border-radius: 0.35vw;
        height: 5.56vw;
        font-size: 1.11vw;
        padding: 0.35vw 0.69vw;
    }

    *::placeholder {
        font-size: 1.11vw;
    }

    .wpcf7-not-valid-tip {
        font-size: 0.97vw;
    }

    .submit_field .action_btn {
        width: 10.91vw;
        height: 3.75vw;
        font-size: 1.25vw;
        border-radius: 0.35vw;
    }

    .form_block {
        max-width: 53.33vw;
    }

    .projects_single__first_screen article h2, .projects_single__first_screen article p,
    .terms_conditions__page article h2, .terms_conditions__page article p {
        margin: 0 0 1.39vw;
    }

    .projects_single__first_screen article ul, .projects_single__first_screen article ol,
    .terms_conditions__page article ul, .terms_conditions__page article ol {
        margin: 0 0 1.39vw;
        padding: 0 0 0 1.73vw;
    }

    .error-404 .wrapper .title {
        font-size: 20.84vw;
    }

    .projects_single__first_screen .elem .left {
        max-width: 48.61vw;
    }

    .projects_single__first_screen .elem .right {
        max-width: 45.83vw;
    }

    .projects_slider .slide__inner {
        height: 35.42vw;
    }

    .partners_slider .slide__inner .image_block {
        width: 7.43vw
    }
}

@media screen and (orientation: portrait) {
    body {
        font-size: 1.56vw !important;
    }

    .action_btn {
        width: 19.05vw;
        height: 4.99vw;
    }

    header {
        height: 10.84vw;
    }

    header:after {
        height: 0.09vw;
        width: 156.24vw;
    }

    .burger {
        display: flex !important;
        z-index: 1500;
        margin: 0 1.95vw 0 0;
    }

    .ham {
        width: 6.25vw;
    }

    .logo {
        width: 16.11vw;
        z-index: 1500;
    }

    .header__menu {
        position: absolute;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        max-width: 100%;
        -webkit-transform: translateY(-150%);
        -ms-transform: translateY(-150%);
        transform: translateY(-150%);
        padding: 11.72vw 0 4.88vw;
        opacity: 0;
        -webkit-transition: all .4s linear;
        -o-transition: all .4s linear;
        transition: all .4s linear;
        z-index: 1200;
        top: 0;
        left: 0;
        height: auto;
        -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 50, 100, 0.07);
        box-shadow: 0px 5px 15px 0px rgba(0, 50, 100, 0.07);
        background: #000;
    }

    .header__menu.active {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        -webkit-transition: all .4s linear;
        -o-transition: all .4s linear;
        transition: all .4s linear;
    }

    .header__list {
        flex-direction: column;
    }

    .header__list li:not(:last-child) {
        margin: 0 0 2.93vw;
    }

    /*.header__menu {*/
    /*    width: 43.95vw;*/
    /*}*/

    footer .wrapper .footer__menu {
        max-width: 44.34vw;
    }

    footer .wrapper .logo {
        width: 19.93vw;
    }

    .pages_link_special {
        margin: 0 0.49vw 0 0;
        padding: 0 0.49vw 0 0;
        border-right: 0.09vw solid #fff;
    }

    .first_screen {
        height: 112.89vw;
        min-height: 88.12vw;
    }

    .first_screen_slider .swiper-slide {
        width: 66.41vw;
        height: 49.8vw;
    }

    .first_screen_slider .swiper-slide-active div {
        border-radius: 4.29vw;
    }

    .first_screen_slider .swiper-slide-prev div,
    .first_screen_slider .swiper-slide-next div {
        border-radius: 2.93vw;
    }

    .about_us .wrapper, .projects_single__first_screen .elem {
        flex-direction: column;
    }

    .about_us .wrapper .left, .projects_single__first_screen .elem .left {
        max-width: 100%;
        margin: 0 0 4.88vw;
    }

    .about_us .wrapper .left .desc p:not(:last-child), .projects_single__first_screen .elem .left .desc p:not(:last-child) {
        margin: 0 0 2.93vw;
    }

    .about_us .wrapper .right, .projects_single__first_screen .elem .right {
        max-width: 100%;
    }

    .about_us .wrapper .right .image_block {
        width: 66%;
    }

    .about_us .wrapper .right:after {
        width: 80.27vw;
        height: 88.12vw;
    }

    .services .wrapper:before, .services .wrapper:after {
        height: 0.19vw;
        width: 48.83vw;
        top: 40.31vw;
    }

    .services .wrapper:before {
        left: -37.5vw;
        display: none;
    }

    .services .wrapper:after {
        right: -37.5vw;
        display: none;
    }

    .services .subtitle, .projects .subtitle, .services .elem {
        max-width: 100%;
    }

    .services .elem .item h3, .services .elem .item p {
        min-height: 8.79vw;
        display: flex;
        align-items: center;
    }

    .services .elem:after {
        width: 160.0vw;
        height: 90.73vw;
        top: -33.75vw;
    }

    .info .wrapper {
        width: 100%;
        margin: 0;
    }

    .projects_slider .slide__inner .text_block .text_bg {
        width: 40.39vw;
        height: 32.43vw;
        top: -11.25vw;
        right: calc(50% - 18.75vw);
    }

    .projects_slider .slide__inner .text_block .logo_icon {
        width: 3.23vw;
    }

    .swiper-button-next, .swiper-button-prev {
        width: 1.95vw;
        height: 3.32vw;
    }

    .swiper-pagination-bullet {
        width: 1.37vw !important;
        height: 1.37vw !important;
    }

    .swiper-pagination-bullet-active {
        width: 2.16vw !important;
        height: 2.16vw !important;
    }

    .contacts {
        height: auto;
    }

    .contacts .bg_image .image_block {
        width: 100%;
        height: auto;
    }

    .contacts .title {
        margin: 0 0 4.88vw;
    }

    .contacts .wrapper .elem {
        max-width: 86.91vw;
    }

    .contacts .wrapper .left {
        max-width: 39.06vw;
    }

    .contacts .wrapper .right {
        max-width: 37.69vw;
    }

    input[type="text"], input[type="email"] {
        border-radius: 0.49vw;
        height: 3.13vw;
        padding: 0 0.97vw;
        font-size: 1.56vw;
    }

    textarea {
        border-radius: 0.49vw;
        height: 7.82vw;
        font-size: 1.56vw;
        padding: 0.49vw 0.97vw;
    }

    *::placeholder {
        font-size: 1.56vw;
    }

    .wpcf7-not-valid-tip {
        font-size: 1.37vw;
    }

    .submit_field .action_btn {
        width: 15.34vw;
        height: 5.27vw;
        font-size: 1.76vw;
        border-radius: 0.49vw;
    }

    .form_block {
        max-width: 75vw;
    }

    .projects_single__first_screen article h2, .projects_single__first_screen article p,
    .terms_conditions__page article h2, .terms_conditions__page article p {
        margin: 0 0 1.95vw;
    }

    .projects_single__first_screen article ul, .projects_single__first_screen article ol,
    .terms_conditions__page article ul, .terms_conditions__page article ol {
        margin: 0 0 1.95vw;
        padding: 0 0 0 2.44vw;
    }

    .error-404 .wrapper .title {
        font-size: 29.31vw;
    }

    .projects_slider .slide__inner {
        height: 49.8vw;
    }

    .container_1768, .container_1492 {
        padding: 0 2.44vw !important;
    }

    .header__list li:not(:last-child) {
        margin: 0 0 2.6vw;
    }

    .action_btn:hover, .services .elem .item:hover .image_block, .consult_btn:hover,
    .projects_slider .swiper-slide:hover, .contacts .wrapper .left a:hover {
        transform: none;
        transition: none;
    }

    .partners_slider .slide__inner .image_block {
        width: 10.45vw;
    }
}

@media screen and (max-width: 1100px) and (orientation: landscape) {
    body {
        font-size: 1.56vw !important;
    }

    .action_btn {
        width: 19.05vw;
        height: 4.99vw;
    }

    header {
        height: 10.84vw;
    }

    header:after {
        height: 0.09vw;
        width: 156.24vw;
    }

    .burger {
        display: flex !important;
        z-index: 1500;
        margin: 0 1.95vw 0 0;
    }

    .ham {
        width: 6.25vw;
    }

    .logo {
        width: 16.11vw;
        z-index: 1500;
    }

    .header__menu {
        position: absolute;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        max-width: 100%;
        -webkit-transform: translateY(-150%);
        -ms-transform: translateY(-150%);
        transform: translateY(-150%);
        padding: 11.72vw 0 4.88vw;
        opacity: 0;
        -webkit-transition: all .4s linear;
        -o-transition: all .4s linear;
        transition: all .4s linear;
        z-index: 1200;
        top: 0;
        left: 0;
        height: auto;
        -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 50, 100, 0.07);
        box-shadow: 0px 5px 15px 0px rgba(0, 50, 100, 0.07);
        background: #000;
    }

    .header__menu.active {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        -webkit-transition: all .4s linear;
        -o-transition: all .4s linear;
        transition: all .4s linear;
    }

    .header__list {
        flex-direction: column;
    }

    .header__list li:not(:last-child) {
        margin: 0 0 2.93vw;
    }

    /*.header__menu {*/
    /*    width: 43.95vw;*/
    /*}*/

    footer .wrapper .footer__menu {
        max-width: 44.34vw;
    }

    footer .wrapper .logo {
        width: 19.93vw;
    }

    .pages_link_special {
        margin: 0 0.49vw 0 0;
        padding: 0 0.49vw 0 0;
        border-right: 0.09vw solid #fff;
    }

    .first_screen {
        height: 112.89vw;
        min-height: 88.12vw;
    }

    .first_screen_slider .swiper-slide {
        width: 66.41vw;
        height: 49.8vw;
    }

    .first_screen_slider .swiper-slide-active div {
        border-radius: 4.29vw;
    }

    .first_screen_slider .swiper-slide-prev div,
    .first_screen_slider .swiper-slide-next div {
        border-radius: 2.93vw;
    }

    .about_us .wrapper, .projects_single__first_screen .elem {
        flex-direction: column;
    }

    .about_us .wrapper .left, .projects_single__first_screen .elem .left {
        max-width: 100%;
        margin: 0 0 4.88vw;
    }

    .about_us .wrapper .left .desc p:not(:last-child), .projects_single__first_screen .elem .left .desc p:not(:last-child) {
        margin: 0 0 2.93vw;
    }

    .about_us .wrapper .right, .projects_single__first_screen .elem .right {
        max-width: 100%;
    }

    .about_us .wrapper .right .image_block {
        width: 66%;
    }

    .about_us .wrapper .right:after {
        width: 80.27vw;
        height: 88.12vw;
    }

    .services .wrapper:before, .services .wrapper:after {
        height: 0.19vw;
        width: 48.83vw;
        top: 40.31vw;
    }

    .services .wrapper:before {
        left: -37.5vw;
        display: none;
    }

    .services .wrapper:after {
        right: -37.5vw;
        display: none;
    }

    .services .subtitle, .projects .subtitle, .services .elem {
        max-width: 100%;
    }

    .services .elem .item h3, .services .elem .item p {
        min-height: 8.79vw;
        display: flex;
        align-items: center;
    }

    .services .elem:after {
        width: 160.0vw;
        height: 90.73vw;
        top: -33.75vw;
    }

    .info .wrapper {
        width: 100%;
        margin: 0;
    }

    .projects_slider .slide__inner .text_block .text_bg {
        width: 55vw;
        height: 33.43vw;
        top: -12.25vw;
        right: calc(50% - 25.75vw);
    }

    .projects_slider .slide__inner .text_block .logo_icon {
        width: 3.23vw;
    }

    .swiper-button-next, .swiper-button-prev {
        width: 1.95vw;
        height: 3.32vw;
    }

    .swiper-pagination-bullet {
        width: 1.37vw !important;
        height: 1.37vw !important;
    }

    .swiper-pagination-bullet-active {
        width: 2.16vw !important;
        height: 2.16vw !important;
    }

    .contacts {
        height: auto;
    }

    .contacts .bg_image .image_block {
        width: 100%;
        height: auto;
    }

    .contacts .title {
        margin: 0 0 4.88vw;
    }

    .contacts .wrapper .elem {
        max-width: 86.91vw;
    }

    .contacts .wrapper .left {
        max-width: 39.06vw;
    }

    .contacts .wrapper .right {
        max-width: 37.69vw;
    }

    input[type="text"], input[type="email"] {
        border-radius: 0.49vw;
        height: 3.13vw;
        padding: 0 0.97vw;
        font-size: 1.56vw;
    }

    textarea {
        border-radius: 0.49vw;
        height: 7.82vw;
        font-size: 1.56vw;
        padding: 0.49vw 0.97vw;
    }

    *::placeholder {
        font-size: 1.56vw;
    }

    .wpcf7-not-valid-tip {
        font-size: 1.37vw;
    }

    .submit_field .action_btn {
        width: 15.34vw;
        height: 5.27vw;
        font-size: 1.76vw;
        border-radius: 0.49vw;
    }

    .form_block {
        max-width: 75vw;
    }

    .projects_single__first_screen article h2, .projects_single__first_screen article p,
    .terms_conditions__page article h2, .terms_conditions__page article p {
        margin: 0 0 1.95vw;
    }

    .projects_single__first_screen article ul, .projects_single__first_screen article ol,
    .terms_conditions__page article ul, .terms_conditions__page article ol {
        margin: 0 0 1.95vw;
        padding: 0 0 0 2.44vw;
    }

    .error-404 .wrapper .title {
        font-size: 29.31vw;
    }

    .projects_slider .slide__inner {
        height: 49.8vw;
    }

    .container_1768, .container_1492 {
        padding: 0 2.44vw !important;
    }

    .header__list li:not(:last-child) {
        margin: 0 0 2.6vw;
    }

    .action_btn:hover, .services .elem .item:hover .image_block, .consult_btn:hover,
    .projects_slider .swiper-slide:hover, .contacts .wrapper .left a:hover {
        transform: none;
        transition: none;
    }

    .partners_slider .slide__inner .image_block {
        width: 10.45vw;
    }
}

@media screen and (max-width: 768px) and (orientation: portrait) {
    body {
        font-size: 2.08vw !important;
    }

    .action_btn {
        width: 25.40vw;
        height: 6.65vw;
    }

    header {
        height: 14.45vw;
    }

    header:after {
        height: 0.13vw;
        width: 208.33vw;
    }

    .ham {
        width: 8.33vw;
    }

    .logo {
        width: 21.48vw;
    }

    footer .wrapper .footer__menu {
        max-width: 59.13vw;
    }

    footer .wrapper .logo {
        width: 26.58vw;
    }

    .pages_link_special {
        margin: 0 0.65vw 0 0;
        padding: 0 0.65vw 0 0;
        border-right: 0.13vw solid #fff;
    }

    .first_screen {
        height: 150.53vw;
        min-height: 117.50vw;
    }

    .first_screen_slider .swiper-slide {
        width: 88.54vw;
        height: 66.41vw;
    }

    .first_screen_slider .swiper-slide-active div {
        border-radius: 5.73vw;
    }

    .first_screen_slider .swiper-slide-prev div,
    .first_screen_slider .swiper-slide-next div {
        border-radius: 3.90vw;
    }

    .about_us .wrapper .left .desc p:not(:last-child), .projects_single__first_screen .elem .left .desc p:not(:last-child) {
        margin: 0 0 3.90vw;
    }

    .about_us .wrapper .right:after {
        width: 107.03vw;
        height: 117.98vw;
    }

    .about_us .wrapper .left, .projects_single__first_screen .elem .left {
        margin: 0 0 8vw;
    }

    .about_us .wrapper .right .image_block {
        width: 75%;
    }

    .services .wrapper:before, .services .wrapper:after {
        height: 0.25vw;
        width: 65.10vw;
        top: 53.75vw;
    }

    .services .wrapper:before {
        left: -50vw;
    }

    .services .wrapper:after {
        right: -50vw;
    }

    .services .subtitle, .projects .subtitle {
        max-width: 138.28vw;
    }

    .services .elem {
        flex-direction: column;
        row-gap: 6.51vw;
    }

    .services .elem .item {
        width: 80%;
    }

    .services .elem .item .item__inner {
        width: 100%;
    }

    .services .elem .item .text_block {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .services .elem .item h3, .services .elem .item p {
        min-height: auto;
    }

    .services .elem:after {
        width: 213.28vw;
        height: 120.98vw;
        top: -45vw;
    }

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

    .info .wrapper h2 {
        margin: 0 0 6.51vw !important;
        text-align: center;
        line-height: 1.2;
    }

    .info .wrapper .btn_block {
        width: 100%;
    }

    .projects_slider .slide__inner .text_block .text_bg {
        width: 53.65vw;
        height: 43.23vw;
        top: -15vw;
        right: calc(50% - 25vw);
    }

    .projects_slider .slide__inner .text_block .logo_icon {
        width: 4.30vw;
    }

    .swiper-button-next, .swiper-button-prev {
        width: 2.60vw;
        height: 4.43vw;
    }

    .swiper-pagination-bullet {
        width: 1.83vw !important;
        height: 1.83vw !important;
    }

    .swiper-pagination-bullet-active {
        width: 2.88vw !important;
        height: 2.88vw !important;
    }

    .contacts .wrapper .elem {
        max-width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .contacts .wrapper .left {
        max-width: 52.08vw;
        margin: 0 0 6.51vw;
    }

    .contacts .wrapper .right {
        max-width: 50.25vw;
    }

    input[type="text"], input[type="email"] {
        border-radius: 0.65vw;
        height: 4.18vw;
        padding: 0 1.30vw;
        font-size: 2.08vw;
    }

    textarea {
        border-radius: 0.65vw;
        height: 10.43vw;
        font-size: 2.08vw;
        padding: 0.65vw 1.30vw;
    }

    *::placeholder {
        font-size: 2.08vw;
    }

    .wpcf7-not-valid-tip {
        font-size: 1.83vw;
    }

    .submit_field .action_btn {
        width: 20.45vw;
        height: 7.03vw;
        font-size: 2.35vw;
        border-radius: 0.65vw;
    }

    .form_block {
        max-width: 100vw;
    }

    .projects_single__first_screen article h2, .projects_single__first_screen article p,
    .terms_conditions__page article h2, .terms_conditions__page article p {
        margin: 0 0 2.60vw;
    }

    .projects_single__first_screen article ul, .projects_single__first_screen article ol,
    .terms_conditions__page article ul, .terms_conditions__page article ol {
        margin: 0 0 2.60vw;
        padding: 0 0 0 3.25vw;
    }

    .error-404 .wrapper .title {
        font-size: 39.08vw;
    }

    .projects_single__first_screen .elem .left, .projects_single__first_screen .elem .right {
        max-width: 100%;
    }

    .projects_slider .slide__inner {
        height: 66.41vw;
    }

    .header__menu {
        padding: 17vw 0 9vw;
    }

    .container_1768, .container_1492 {
        padding: 0 3.26vw !important;
    }

    .partners_slider .slide__inner .image_block {
        width: 13.93vw;
    }
}

@media screen and (max-width: 480px) {
    body {
        font-size: 3.32vw !important;
    }

    .action_btn {
        width: 40.64vw;
        height: 10.64vw;
    }

    header {
        height: 23.12vw;
    }

    header:after {
        height: 0.20vw;
        width: 333.32vw;
    }

    .header__menu {
        padding: 30vw 0 10vw;
    }

    .ham {
        width: 13.33vw;
    }

    .logo {
        width: 34.36vw;
    }

    footer .wrapper .footer__menu {
        max-width: 94.60vw;
    }

    footer .wrapper .logo {
        width: 42.52vw;
    }

    .pages_link_special {
        margin: 0 1.04vw 0 0;
        padding: 0 1.04vw 0 0;
        border-right: 0.20vw solid #fff;
    }

    .container_1768, .container_1492 {
        padding: 0 4.17vw !important;
    }

    .first_screen {
        height: auto;
        min-height: auto;
        padding-bottom: 15.63vw;
    }

    .first_screen .wrapper {
        padding: 33.33vw 4.17vw 0;
    }

    .first_screen h1, .projects_single__first_screen h1 {
        font-size: 9vw !important;
    }

    .first_screen_slider .swiper-slide {
        width: 100%;
        height: 66vw;
    }

    .first_screen_slider .swiper-slide-active div {
        border-radius: 9.16vw;
    }

    .first_screen_slider .swiper-slide-prev div,
    .first_screen_slider .swiper-slide-next div {
        border-radius: 6.24vw;
    }

    h2 {
        font-size: 8.5vw !important;
    }

    .about_us .wrapper .left .desc p:not(:last-child), .projects_single__first_screen .elem .left .desc p:not(:last-child) {
        margin: 0 0 6.24vw;
    }

    .about_us .wrapper .right .image_block {
        width: 100%;
    }

    .about_us .wrapper .right:after {
        width: 171.24vw;
        height: 188.76vw;
    }

    .services .wrapper:before, .services .wrapper:after {
        height: 0.40vw;
        width: 104.16vw;
        top: 86.00vw;
    }

    .services .elem {
        row-gap: 10.42vw;
    }

    .services .elem:after {
        width: 341.24vw;
        height: 193.56vw;
        top: -72.00vw;
    }

    .services .elem .item {
        width: 100%;
    }

    .services .elem .item h3, .services .elem .item p {
        justify-content: center;
        width: 100%;
    }

    .projects_slider .slide__inner .text_block .text_bg {
        width: 110.84vw;
        height: 69.16vw;
        top: -24.00vw;
        right: calc(50% - 48vw);
    }

    .projects_slider .slide__inner .text_block .logo_icon {
        width: 6.88vw;
    }

    .swiper-button-next, .swiper-button-prev {
        width: 4.16vw;
        height: 7.08vw;
    }

    .swiper-pagination-bullet {
        width: 2.92vw !important;
        height: 2.92vw !important;
    }

    .swiper-pagination-bullet-active {
        width: 4.60vw !important;
        height: 4.60vw !important;
    }

    .contacts .wrapper .left, .contacts .wrapper .right {
        max-width: 100%;
    }

    input[type="text"], input[type="email"] {
        border-radius: 1.04vw;
        height: 6.68vw;
        padding: 0 2.08vw;
        font-size: 3.32vw;
    }

    textarea {
        border-radius: 1.04vw;
        height: 16.68vw;
        font-size: 3.32vw;
        padding: 1.04vw 2.08vw;
    }

    *::placeholder {
        font-size: 3.32vw;
    }

    .wpcf7-not-valid-tip {
        font-size: 2.92vw;
    }

    .submit_field .action_btn {
        width: 32.72vw;
        height: 11.24vw;
        font-size: 3.76vw;
        border-radius: 1.04vw;
    }

    .form_block {
        max-width: 160.00vw;
    }

    .projects_single__first_screen article h2, .projects_single__first_screen article p,
    .terms_conditions__page article h2, .terms_conditions__page article p {
        margin: 0 0 4.16vw;
    }

    .projects_single__first_screen article ul, .projects_single__first_screen article ol,
    .terms_conditions__page article ul, .terms_conditions__page article ol {
        margin: 0 0 4.16vw;
        padding: 0 0 0 5.20vw;
    }

    .error-404 .wrapper .title {
        font-size: 46vw;
    }

    .projects_slider .slide__inner {
        height: 106.25vw;
    }

    footer .wrapper .footer__list {
        flex-direction: column;
        align-items: center;
    }

    .header__list li:not(:last-child), footer .wrapper .footer__list li:not(:last-child) {
        margin: 0 0 4.17vw;
    }

    .partners_slider .slide__inner .image_block {
        width: 22.29vw;
    }
}