/*Elizaveta Romanovna*/
/*https://betsyweb.ru*/
@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-color: #262525;
    --grey-color: #E5E7EB;
    --blue-color: #2563EB;
    --pink-color: #EF52C3;
    --white-color: #FFFFFF;
    --light-white: #F0F0F0;
    --black-color: #000000;
}

:focus, button, button:focus, input, input:focus {
    outline: 0;
}

:after, :before {
    box-sizing: border-box;
}

a {
    color: var(--dark-color);
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
}

b {
    font-weight: 700;
}

.list--unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.overflow {
    overflow: hidden;
}

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
    justify-content: space-around;
}

.align-items-start {
    align-items: flex-start;
}

.align-items-end {
    align-items: flex-end;
}

.align-items-center {
    align-items: center;
}

.align-items-baseline {
    align-items: baseline;
}

.align-items-stretch {
    align-items: stretch;
}

.align-content-start {
    align-content: flex-start;
}

.align-content-end {
    align-content: flex-end;
}

.align-content-center {
    align-content: center;
}

.align-content-between {
    align-content: space-between;
}

.align-content-around {
    align-content: space-around;
}

.align-content-stretch {
    align-content: stretch;
}

.align-self-auto {
    align-self: auto;
}

.align-self-start {
    align-self: flex-start;
}

.align-self-end {
    align-self: flex-end;
}

.align-self-center {
    align-self: center;
}

.align-self-baseline {
    align-self: baseline;
}

.align-self-stretch {
    align-self: stretch;
}

.text-uppercase {
    text-transform: uppercase;
}

.fixed {
    position: fixed;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.sticky {
    position: sticky;
}

.w-100p {
    width: 100%;
}

.h-100p {
    height: 100%;
}

.d-flex {
    display: flex;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-grid {
    display: grid;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.center {
    margin: 0 auto;
    text-align: center;
}

h2 {
    font-size: 90px;
    letter-spacing: -1px;
    line-height: 110%;
}

h3 {
    font-size: 72px;
    line-height: 100%;
}

h4 {
    font-size: 52px;
}

h5 {
    font-size: 36px;
}

.color-blue {
    color: var(--blue-color);
}

.font, h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 100%;
}

body {
    min-height: 100vh;
    font-size: 24px;
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: var(--white-color);
    line-height: 115%;
    overflow-x: hidden;
    background: var(--black-color);
}

.wrap {
    overflow: hidden;
    padding-top: 130px;
}

a {
    color: var(--dark-color);
    text-decoration: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

a:hover {
    color: var(--pink-color);
}

li {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1450px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 25px;
    padding-left: 25px;
    box-sizing: border-box;
    position: relative;
}

.header {
    padding-top: 40px;
    padding-bottom: 40px;
    z-index: 99;
    transition: all 0.5s linear;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.header.is--fixed {
    border-radius: 0 0 45px 45px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
}

.header-logo span, .content-logo span {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--white-color);
    display: inline-block;
    letter-spacing: 3px;
}

.header-menu li:not(:last-of-type) {
    margin-right: 7px;
}

.header-menu li.current-menu-item a {
    background: var(--pink-color);
    border-color: var(--pink-color);
}

.header-menu li a {
    width: 120px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid;
    border-radius: 10px;
    color: var(--light-white);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: border-color 0.2s ease;
}

.header-menu li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--blue-color);
    transform: scale(0);
    transform-origin: center right;
    transition: transform 0.2s ease-out;
    z-index: -1;
}

.header-menu li:hover a::before {
    transform: scale(1);
    background: var(--pink-color);
}

.header-menu li:hover a {
    border-color: var(--pink-color);
}

.noise {
    top: 0;
    width: 100%;
    background: url("../images/noise.png") repeat;
    left: 0;
    height: 120%;
    z-index: 3;
    background-size: 80px auto;
}

.img-topLeft {
    top: 0;
    left: 0;
}

.top-shadow {
    animation: flicker 5s infinite alternate;
}

.img-topLight {
    top: 0;
    right: 0;
}

.img-topLight {
    opacity: 0.8;
    animation: flicker 3s infinite alternate;
}

.arrow-back {
    left: 0;
    width: 114px;
    height: 42px;
    border: 2px solid var(--white-color);
    background: url("../images/arr-back.svg") no-repeat center / 35px 16px;
    border-radius: 40px;
    padding: 0;
    cursor: pointer;
    z-index: 10;
    font-size: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.arrow-back:hover {
    background-image: url("../images/arr-back-black.svg");
}

@keyframes flicker {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.7;
        transform: scale(1);
    }
}

.white-bg {
    background: var(--white-color);
    padding-top: 90px;
    margin-top: 180px;
    z-index: 5;
    color: var(--black-color);
}

.white-bg__nonePadding {
    padding-top: unset;
}

.bg-black {
    background: var(--black-color);
}

.bg-black:before,
.white-bg:before {
    content: '';
    position: absolute;
    top: -179px;
    left: 0;
    width: 100%;
    height: 180px;
}

.bg-black:before {
    background: #FFF url("../images/black-elemTop.svg") no-repeat center top;
    background-size: cover;
}

.white-bg:before {
    background: url("../images/white-elem.svg") no-repeat center top;
    background-size: cover;
}

.careerRoles, .about {
    padding-bottom: 180px;
    margin-bottom: 180px;
}

.about .btn {
    top: -230px;
}

.about .info p {
    font-size: 20px;
    line-height: 100%;
}

.about .info p a {
    font-size: 25px;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.about .info p a img {
    margin-left: 15px;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.about .info p a:hover img {
    transform: translateX(15px);
}

.about .info p a:hover {
    transform: translateX(5px);
}

.about .info-right {
    max-width: 400px;
}

.black-bg {
    width: 100%;
    background: var(--white-color) url("../images/black-elem.svg") no-repeat center top;
    position: relative;
    z-index: 3;
    margin-top: -180px;
    padding-bottom: 100px;
    color: var(--white-color);
    background-size: contain;
}

.black-bg:before,
.black-bg:after {
    position: absolute;
    bottom: 0;
    content: "";
}

.black-bg:before {
    background: url("../images/pink-black.png") no-repeat;
    width: 1351px;
    height: 1024px;
    right: 0;
    border-radius: 0 0 92px 0;
}

.black-bg:after {
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(
            to top,
            #101010 70%,
            rgba(16, 16, 16, 0) 100%
    );

    z-index: -1;
    border-radius: 0 0 92px 92px;
}

.careerTop {
    padding-bottom: 155px;
    z-index: 5;
    display: flex;
    align-items: center;
    height: calc(100vh - 300px);
}

.careerTop-inner
.careerTop {
    height: unset;
}

.careerTopMain .careerTop h1 {
    margin-left: unset;
}

.careerTop h1 {
    font-size: 120px;
    line-height: 100%;
    margin-top: 70px;
    font-weight: 700;
    margin-left: 120px;
}

.careerTop h1 span {
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 200;
    letter-spacing: -2px;
    position: relative;
    padding: 40px 0;
}

.careerTop h1 span:before,
.careerTop h1 span:after {
    content: '';
    height: 2px;
    background: var(--white-color);
    width: 480px;
    margin: 0 auto;
    display: block;
}

.careerTop h1 span:before {
    top: 0;
}

.careerTop h1 span:after {
    bottom: 0;
}

.info h3 {
    text-transform: uppercase;
    line-height: 130%;
}

.info h3 > span {
    display: block;
}

.careerTop-text {
    max-width: 1032px;
    margin-top: 94px;
}

.careerTop-text p:not(:last-of-type) {
    margin-bottom: 50px;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    color: var(--white-color);
    position: relative;
    width: 324px;
    height: 78px;
    background: var(--pink-color);
    border-radius: 43px;
    font-size: 28px;
}

.btn:hover {
    background: var(--blue-color);
    color: var(--white-color);
    letter-spacing: 1px;
}

.btn svg path {
    transition: transform 0.3s ease;
    transform-origin: left center;
}

.btn svg {
    transition: all .2s linear;
    margin-left: 7px;
}

.btn:hover svg {
    transform: translateX(5px) scale(1.1);
}

.img-bottomRight {
    bottom: -100px;
    right: 0;
    z-index: -1;
}

.btnPos .btn {
    top: -200px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.info p {
    font-size: 30px;
    margin-bottom: 10px;
    color: #616161;
}

.info-right {
    font-size: 27px;
    color: var(--dark-color);
    line-height: 120%;
    letter-spacing: -1px;
    max-width: 55%;
    font-weight: 300;
}

.info-right p:not(:last-of-type) {
    margin-bottom: 30px;
}

.logo-bg-grey {
    transform: translateX(-50%);
    left: 50%;
    top: 90px;
    max-width: unset;
    margin: 0 auto;
}

.careerVacancy {
    padding-top: 280px;
    padding-bottom: 20px;
}

.careerVacancy h2 {
    text-transform: uppercase;
}

.careerVacancy h2 > span {
    display: block;
}

.careerVacancy-list__half:first-of-type {
    margin-right: 23px;
}

.careerVacancy-list__half:last-of-type {
    margin-left: 23px;
}

.careerVacancy-list__half {
    width: calc(50% - 23px);
    margin-bottom: 47px;
}

.careerVacancy-block.--has-text {
    padding-top: 100px;
}

.careerVacancy-block:nth-child(3) {
    margin-top: -100px;
}

.careerVacancy-list__item:not(:last-of-type) {
    margin-bottom: 47px;
}

.careerVacancy-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 47px 23px;
}

.careerVacancy-list__item {
    border-radius: 46px;
    background: url("../images/vacancy-bg.png") no-repeat center;
    background-size: cover;
    padding: 30px;
    width: 100%;
}

.careerVacancy-list__text {
    grid-column: 2;
    text-align: center;
    font-size: 36px;
    line-height: 120%;
    margin: 0;

    top: 0;
    left: 0;
    right: 0;
}

.careerVacancy-list__title {
    font-size: 30px;
    color: var(--white-color);
    font-weight: 500;
    text-transform: uppercase;
}

.careerVacancy-list__title img {
    margin-right: 11px;
    display: block;
    width: 60px;
    height: 60px;
}

.careerVacancy-list__top {
    margin-top: 48px;
}

.careerVacancy-list__top span:not(:last-of-type) {
    margin-right: 13px;
}

.careerVacancy-list__top span, .vacancy-date {
    padding: 0 14px;
    border: 1px solid var(--white-color);
    border-radius: 36px;
    display: flex;
    align-items: center;
}

.careerVacancy-list__top span {
    font-size: 16px;
    height: 40px;
}

.vacancy-subtitle {
    font-size: 40px;
    font-weight: 400;
    line-height: 120%;
}

.block-title {
    font-size: 104px;
    font-weight: bold;
    text-transform: uppercase;
}

.vacancy-title {
    margin-bottom: 100px;

}

.vacancy-subtitle {
    margin-bottom: 40px;
}

h1.vacancy-title {
    font-size: 89px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.vacancy-text .simple--list {
    margin: 100px 0;
}

.simple--list li {
    position: relative;
}

.simple--list li:before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--white-color);
    border-radius: 100%;
    display: inline-block;
    margin-right: 14px;
    position: relative;
    top: -3px;
}

.vacancy-text {
    line-height: 150%;
    font-size: 36px;
}

.vacancy-text p > b {
    color: var(--pink-color);
    text-transform: uppercase;
    margin-top: 40px;
    font-weight: 400;
    display: block;
}

.vacancy-title img {
    width: 95px;
    margin-right: 33px;
    align-self: flex-start;
}

.vacancy-date {
    font-size: 24px;
    height: 60px;
    line-height: 60px;
    display: table;
    margin: 82px auto 0;
    padding-left: 20px;
    padding-right: 20px;
}

.careerVacancy-list__top i, .vacancy-date i {
    font-style: normal;
    position: relative;
}

.careerVacancy-list__top i:not(:last-of-type):after, .vacancy-date i:not(:last-of-type):after {
    content: "";
    margin: 0 16px;
    border-radius: 100%;
    background: var(--pink-color);
    width: 3px;
    height: 3px;
    display: inline-block;
    position: relative;
    top: -3px;
}

.careerVacancy-list {
    margin-top: 148px;
}

.careerVacancy-list__op {
    font-size: 19px;
    line-height: 150%;
    margin-top: 30px;
    max-width: 90%;
}

.careerVacancy-list__op b {
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.careerVacancy-list .btn-card {
    margin-top: 30px;
}

.btn-card {
    background: var(--pink-color);
    height: 50px;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--white-color);
    border-radius: 10px;
    transition: all 0.2s linear;
    position: relative;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

.btn-card:hover {
    color: var(--white-color);
    width: 95%;
}

.btn-card::after {
    content: "";
    position: absolute;
    bottom: 12px;
    left: 50%;
    width: 0;
    height: 1px;
    background: currentColor;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.btn-card:hover::after {
    width: 60px;
}

.bg--white {
    background: var(--white-color);
    color: var(--black-color);
}

.bg--whiteBlack {
    background: linear-gradient(to bottom, var(--black-color) 0, var(--white-color) 40%, var(--white-color));
}

.careerVacancy .btn {
    margin-top: 120px;
}

.form-wrap {
    max-width: 1800px;
    padding: 65px 0;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(269.12deg, #010101 0.47%, #313140 100.21%);
    border-radius: 42px;
}

.careerForm {
    padding-top: 115px;
}

.careerForm-subtitle {
    font-size: 48px;
    margin-bottom: 30px;
}

.careerForm h3 {
    font-size: 60px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 100px;
}

.careerForm h3 span,
.block-title span {
    color: var(--blue-color);
}

.blockPreTitle {
    font-size: 36px;
    margin-bottom: 48px;
}

.blockSubtitle {
    font-size: 30px;
    color: var(--dark-color);
    margin-top: 35px;
    opacity: 0.7;
    margin-bottom: 120px;
}

.formImg {
    margin-right: 48px;
    margin-left: -155px;

    width: calc(100% + 155px);
    height: auto;

    border: 1px solid #ffffff;
    border-radius: 30px;
    overflow: hidden;

    display: flex;
}

.formImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 30px;
    overflow: hidden;
}


.formForm {
    width: 811px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    margin: 40px 0;
    align-self: center;
}

.career-form {
    display: flex;
    align-items: stretch;
}

.form-field:first-of-type {
    margin-right: 27px;
}

.form-field:last-of-type {
    margin-left: 27px;
}

.form-field:last-of-type:first-of-type {
    margin-left: 0;
    margin-right: 0;
}

.form-row {
    display: flex;
    justify-content: space-between;
}

.form-row:not(:last-of-type) {
    margin-bottom: 63px;
}

.form-field {
    width: calc(50% - 27px);
}

.form-field.w-100p {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
}

.form-row textarea {
    resize: none;
    height: 46px;
}

input {
    color: var(--white-color);
    font-family: "Jost", sans-serif;
}

.formForm input,
.formForm textarea,
.formForm .file-placeholder {
    width: 100%;
    padding: 8px 0;
    border-right: unset;
    border-top: unset;
    border-left: unset;
    border-bottom: 1px solid var(--white-color);
    background: transparent;
    color: var(--white-color);
    font-family: "Jost", sans-serif;
    font-size: 27px;
}

.formForm label {
    font-size: 21px;
    margin-bottom: 17px;
    color: var(--white-color);
}

.file-field .file-placeholder .clip {
    cursor: pointer;
}

.file-field .file-placeholder .clip img {
    transition: all 0.2s linear;
}

.file-field:hover .file-placeholder .clip img {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

.file-field:hover .file-placeholder .clip {
    border-color: var(--pink-color);
}

.formForm input::placeholder,
.formForm textarea::placeholder,
.formForm .file-placeholder {
    font-family: "Jost", sans-serif;
    font-size: 21px;
    color: #424242;
    font-weight: 400;
}

.file-field input {
    display: none;
}


.clip {
    width: 55px;
    height: 55px;
    border-radius: 100%;
    border: 1px solid #333333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.formForm .file-placeholder {
    padding-right: 60px;
    padding-top: 8px;
    margin-top: 3px;
    white-space: nowrap;
}

.file-placeholder .clip {
    right: 0;
}

.form-row--checkbox label {
    display: flex;
    align-items: center;
    font-size: 21px;
    color: rgba(255, 255, 255, 0.5);
    width: 100%;
}

.form-row--checkbox .checkbox {
    position: relative;
    width: unset;
    margin-bottom: 20px;
}

.form-row--checkbox .checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.form-row--checkbox .checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.form-row--checkbox .box {
    width: 24px;
    height: 24px;
    border-radius: 10px;
    border: 2px solid var(--pink-color);
    transform: rotate(45deg);
    flex-shrink: 0;
    position: relative;
    transition: background 0.2s ease;
}

.form-row--checkbox .box::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 12px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    left: 7px;
    top: 4px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.form-row--checkbox .checkbox input:checked + .box {
    background: var(--pink-color);
}

.form-row--checkbox .checkbox input:checked + .box::after {
    opacity: 1;
}

.form-row--bottom {
    align-items: center;
    justify-content: flex-start;
}

.word-roles {
    font-size: 41px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--dark-color);
    bottom: -60px;
    position: relative;
}

.word-roles img {
    margin-left: 10px;
}

.btn-send {
    height: 73px;
    width: 254px;
    border-radius: 42px;
    border: 1px solid transparent;
    background: linear-gradient(0deg, #EF52C3, #EF52C3) padding-box, linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 76.39%) border-box;
    box-shadow: inset 1px 3px 10px rgba(255, 255, 255, 0.4);
    font-family: "Jost", sans-serif;
    margin-left: 32px;
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s linear;
}

.btn-send:hover {
    transform: translateY(-5px);
}

.btn-send > img {
    margin-left: 10px;
    transition: all 0.2s linear;
}

.btn-send:hover > img {
    transform: translateX(5px);
}

.scroll-memory-btn {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 91px;
    height: 91px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: var(--pink-color);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.scroll-memory-btn svg {
    transition: transform 0.3s ease;
}

.scroll-memory-btn.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-memory-btn.is-up svg {
    transform: rotate(180deg);
}

.blockTop-text .simple--list {
    margin: 100px 0 45px;
}

.blockTop-text {
    position: relative;
    z-index: 5;
}

.home .wrap {
    padding-top: 0;
}

.home .top {
    padding-top: 130px;
}

.blockTop .img-bottomRight,
.home .top {
    z-index: 2;
}

.blockTop-img {
    position: relative;
    z-index: -1;
    margin-top: -50px;
    margin-bottom: -100px;
    max-width: 1150px;
}

.blockTop-img video {
    display: block;
    border: 0;
    outline: none;
    box-shadow: none;
    background: #000;
    -webkit-appearance: none;
}

.blockTop-text .simple--list {
    max-width: 523px;
}

.blockTop-text .simple--list li:before {
    display: none;
}

.blockTop-btn {
    background: url("../images/btn-bg-linear.svg") no-repeat center;
    width: 208px;
    height: 47px;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 300;
    border-radius: 30px;
}

.blockTop-btn img {
    margin-right: 6px;
}

.blockTop-btn:hover {
    border: 2px solid var(--grey-color);
    background: transparent;
}

.planeForm {
    right: 0;
    bottom: 0;
    width: 351px;
    height: auto;
}

.serivices-title {
    margin: 80px 0 140px;
}

.serivices-title h5 {
    max-width: 415px;
    font-weight: 400;
    text-align: right;
    line-height: 120%;
}

.serivices-title h2 span {
    display: block;
}

.serivices-title h2 {
    text-transform: uppercase;
}

.jumpImg {
    position: absolute;
    animation: jumpAnimation 8s linear infinite;
}

.jumpImg__1 {
    width: 163px;
    animation-delay: 0s;
}

.jumpImg__2 {
    width: 155px;
    animation-delay: 2.6s;
}

.jumpImg__3 {
    width: 92px;
    animation-delay: 5.3s;
}

.jumpImg__4 {
    width: 163px;
    animation-delay: 8s;
}

.jumpImg__5 {
    width: 155px;
    animation-delay: 10.6s;
}

.jumpImg__6 {
    width: 92px;
    animation-delay: 13.3s;
}

.jumpImg__7 {
    width: 163px;
    animation-delay: 16s;
}

.jumpImg__8 {
    width: 155px;
    animation-delay: 18.6s;
}

.jumpImg__9 {
    width: 92px;
    animation-delay: 21.3s;
}

.jumpImg__10 {
    width: 163px;
    animation-delay: 24s;
}

.jumpImg__11 {
    width: 155px;
    animation-delay: 26.6s;
}

.jumpImg__12 {
    width: 92px;
    animation-delay: 29.3s;
}

.jumpImg__13 {
    width: 163px;
    animation-delay: 32s;
}

.jumpImg__14 {
    width: 155px;
    animation-delay: 34.6s;
}

.jumpImg__15 {
    width: 92px;
    animation-delay: 37.3s;
}

@keyframes jumpAnimation {
    0% {
        top: 0;
        right: 0;
        width: 80px;
    }
    25% {
        top: 25%;
        right: 5%;
        width: 92px;
    }
    50% {
        top: 30%;
        right: 30%;
        width: 155px;
    }
    75% {
        top: 60%;
        right: 55%;
        width: 163px;
    }
    100% {
        top: 90%;
        right: 60%;
        width: 180px;
    }
}

.services-top {
    padding-bottom: 200px;
}

.services-top__img--lenta {
    width: 1697px;
}

.services-top:after {
    content: '';
    background: url("../images/pink-grad.svg") no-repeat bottom center;
    height: 1100px;
    width: 100%;
    position: absolute;
    bottom: -100%;
    left: 0;
    z-index: -1;
}

.services-top__img {
    top: 60px;
    right: 0;
}

.services-top {
    padding-bottom: 90px;
}

.services-top h1 {
    padding-top: 50px;
    letter-spacing: -2px;
    font-size: 113px;
}

.blog h1 {
    font-weight: 700;
}

.services-top h1 {
    line-height: 100%;
    font-weight: 100;
}

.services-top h1 span {
    display: block;
}

.services-top__text, .blogTop p {
    margin: 70px 0 100px;
}

.services-top__text {
    font-size: 30px;
    line-height: 120%;
    max-width: 755px;
}

.service-list {
    counter-reset: service;
    padding-top: 280px;
}

.service-list__content {
    position: relative;
    z-index: 2;
    padding: 70px 20px;
    background: url("../images/serv-li.png") no-repeat center right;
    background-size: cover;
    border: 3px dotted #FFFAFA;
    border-radius: 10px;
}

.service-list li {
    counter-increment: service;
    position: relative;
    width: 474px;
}

.service {
    background: #000 url("../images/serv-bg.svg");
    background-size: cover;
    padding-bottom: 100px;
    position: relative;
    z-index: 4;
}

.service .word-roles {
    bottom: 110px;
}

.service-list li::before {
    content: counter(service, decimal-leading-zero);
    top: -140px;
    z-index: 1;
    font-size: 300px;
    font-weight: 700;
    line-height: 100%;
    color: #FFFAFA;
    position: absolute;
    display: block;
    font-family: "Antonio", sans-serif;
}

.service-list li:last-child {
    margin-right: 60px;
}

.service-list li:last-child::before {
    right: -84px;
    top: -180px;
}

.service-list li:first-child:after,
.service-list li:nth-child(2):after,
.service-list li:nth-child(3):after {
    border-top: 1px solid var(--white-color);
    content: '';
    position: absolute;
}

.service-list li:first-child:after {
    width: 514px;
    height: 280px;
    right: -740px;
    top: 60px;
    border-right: 1px solid var(--white-color);
}

.service-list li:nth-child(2):after {
    width: 612px;
    height: 143px;
    left: -690px;
    bottom: 120px;
    border-left: 1px solid;
}

.service-list li:nth-child(3):after {
    width: 572px;
    height: 35px;
    right: -610px;
    bottom: 90px;
    border-right: 1px solid var(--white-color);
}

.service-list li:first-child:before {
    right: -174px;
}

.service-list li:nth-child(3)::before {
    right: -214px;
}

.service-list li:nth-child(even) {
    margin-left: auto;
}

.service-list li:nth-child(even),
.service-list li:nth-child(3),
.service-list li:nth-child(4) {
    margin-top: -60px;
}

.service-list li:nth-child(2)::before {
    left: -194px;
    top: -180px;
}

.service-list__title {
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 50px;
    line-height: 110%;
}

.service-list__title img {
    width: 80px;
    margin-right: 20px;
}

.service-list__text {
    font-size: 24px;
    line-height: 120%;
    font-weight: 300;
}

.service-list__text p:not(:last-of-type) {
    margin-bottom: 25px;
}

.trust {
    background: url("../images/black-elem2.svg") no-repeat center top;
    background-size: cover;
    background-color: var(--white-color);
    color: var(--white-color);
    padding-top: 200px;
    padding-bottom: 390px;
    margin-bottom: -190px;
    margin-top: -1px;
    overflow: hidden;
}

.trust-title span {
    font-size: 26px;
    width: 43%;
    font-weight: 300;
    line-height: 140%;
}

.trust-logos {
    margin-top: 200px;
}

.white-bg .content-logo {
    top: -120px;
    left: 0;
    right: 0;
}

@keyframes logoFloat {
    0%,
    35%,
    100% {
        transform: translateY(0);
    }

    10% {
        transform: translateY(-10px);
    }

    20% {
        transform: translateY(-6px);
    }
}

.sources-text {
    padding-top: 200px;
}

.sources-text .info-right {
    max-width: 45%;
}

.sources-text .info-right p {
    font-size: 30px;
    margin-bottom: unset;
    line-height: 140%;
}

.sources-text .info-left h3 {
    font-size: 105px;
}

.case-studies .slick-arrow {
    bottom: 100px;
    top: unset;
}

.case-btn.btn {
    border-radius: 12px;
    background: black;
    width: 180px;
    margin-left: auto;
    margin-top: 20px;
    height: 40px;
    line-height: 40px;
    text-transform: uppercase;
    font-size: 16px;
}

.case-btn.btn:hover {
    background: var(--light-white);
    color: var(--black-color)
}

.sources-slider .slick-arrow {
    bottom: 300px;
}

.contactsTeam-list .slick-arrow {
    bottom: 0;
}

.caseTop-video__slider .slick-arrow {
    width: 96px;
    height: 36px;
}

.sources-swiper .swiper-button-arrow,
.case-studies .slick-arrow,
.sources-slider .slick-arrow {
    width: 141px;
    height: 52px;

}

.caseTop-video__slider .slick-arrow,
.case-studies .slick-arrow,
.sources-swiper .swiper-button-arrow,
.sources-slider .slick-arrow {
    position: absolute;
    border: 2px solid;
    border-radius: 49px;
    padding: 0;
    cursor: pointer;
    z-index: 10;
    font-size: 0;
    transition: all 0.3s ease;
}

.caseTop-video__slider .slick-arrow,
.case-studies .slick-arrow {
    border-color: var(--white-color);
    background: transparent;
}

.sources-swiper .swiper-button-arrow,
.sources-slider .slick-arrow {
    border-color: var(--black-color);
    background: var(--white-color);
}

.sources-swiper .swiper-button-arrow:before,
.sources-slider .slick-arrow::before {
    content: '';
}

.caseTop-video__slider .slick-prev,
.case-studies .slick-prev {
    background-image: url("../images/arr-left-w.svg");
}

.sources-swiper .slick-prev,
.sources-slider .slick-prev {
    background-image: url("../images/arr-left.svg");
}

.sources-swiper {
    position: relative;
    z-index: 23;
}

.sources-swiper .swiper-button-prev,
.case-studies .slick-prev,
.sources-slider .slick-prev {
    transform: translateX(-155px);

}

.arrow-back:hover,
.caseTop-video__slider .slick-next:hover,
.case-studies .slick-next:hover,
.caseTop-video__slider .slick-prev:hover,
.case-studies .slick-prev:hover {
    background-color: var(--white-color);
    border-color: var(--white-color);
}

.caseTop-video__slider .slick-next:hover,
.case-studies .slick-next:hover {
    background-image: url("../images/arr-right.svg");
}

.sources-swiper .swiper-button-prev,
.caseTop-video__slider .slick-prev:hover,
.case-studies .slick-prev:hover {
    background-image: url("../images/arr-left.svg");
}

.caseTop-video__slider .slick-next,
.case-studies .slick-next {
    background-image: url("../images/arr-right-w.svg");
}

.sources-swiper .swiper-button-next,
.sources-slider .slick-next {
    background-image: url("../images/arr-right.svg");
}

.caseTop-video__slider .slick-next,
.caseTop-video__slider .slick-prev {
    background-size: 29px 13px;
}

.sources-swiper .swiper-button-prev:hover,
.sources-slider .slick-prev:hover {
    background-image: url("../images/arr-left-w.svg");
}

.sources-swiper .swiper-button-next:hover,
.sources-slider .slick-next:hover {
    background-image: url("../images/arr-right-w.svg");
}

.sources-swiper .swiper-button-next:hover,
.sources-swiper .swiper-button-prev:hover,
.sources-slider .slick-next:hover, .sources-slider .slick-prev:hover {
    background-color: var(--black-color);
}

.sources-swiper .swiper-button-next,
.sources-swiper .swiper-button-prev,
.case-studies .slick-next,
.sources-slider .slick-next,
.case-studies .slick-prev,
.sources-slider .slick-prev {
    background-size: 43px 19px;
    left: 50%;
}

.sources-swiper .swiper-button-next,
.sources-swiper .swiper-button-prev,
.caseTop-video__slider .slick-next,
.case-studies .slick-next,
.sources-slider .slick-next,
.caseTop-video__slider .slick-prev,
.case-studies .slick-prev,
.sources-slider .slick-prev {
    background-repeat: no-repeat;
    background-position: center;
}

.sources-swiper .swiper-button-next,
.case-studies .slick-next,
.sources-slider .slick-next {
    transform: translateX(14px);
}

.case-studies .slick-arrow.slick-disabled,
.sources-slider .slick-arrow.slick-disabled,
.contactsTeam-list .slick-arrow.slick-disabled {
    opacity: 0.3;
    pointer-events: none;
}

.slick-track {
    display: flex;
}

.caseTop-video__slider .slick-prev {
    right: 160px;
}

.caseTop-video__slider .slick-next {
    right: 40px;
}

.caseTop-video__slider .slick-arrow {
    bottom: 40px;
}

.sources-slider .slick-current .slide-top__img {
    transform: rotate(0);
    position: static;
}

.sources-slider .slick-current .slide-top__img .slide-top__img--big {
    display: none;
}

.sources-slider .slick-current .slide-top__img .slide-top__img--sm {
    display: block;
}

.sources-slider .slick-slide {
    user-select: none;
}

.sources-slider .slick-slide:not(.slick-current) p,
.sources-slider .slick-slide:not(.slick-current) .slide-top__text {
    display: none;
}


.sources-slider {
    position: relative;
    width: 100%;
    padding: 100px 0 500px;
}

.sources-slider .slick-track {
    display: flex;
    align-items: stretch;
    height: 637px;
}

.sources-slider .slick-slide .slide-content p {
    margin-top: auto;
    margin-bottom: auto;
}

.sources-slider .slick-slide {
    height: 100%;
    box-sizing: border-box;
    margin: 0 14px;
    border-radius: 55px;
    border: 3px solid var(--pink-color);
    overflow: hidden;
    color: var(--white-color);
    font-size: 38px;
    line-height: 140%;
    cursor: pointer;
    font-weight: 300;
    transition: transform 0.5s ease;
}

.sources-slider .slick-slide {
    width: 184px;
    box-sizing: border-box;
    transition: width 0.6s ease, transform 0.6s ease;
}

.sources-slider .slick-current {
    width: 815px;
}

.sources-slider .slick-current .slide-content {
    transition: width 0.6s ease;
    background: url("../images/vacancy-bg.png") no-repeat center / cover;
    z-index: 2;
}

.sources-slider .slide-content > * {
    transition: all 0.6s ease;
}

.sources-slider .slick-slide .slide-content {
    height: 100%;
    padding: 65px 40px;
    display: flex;
    flex-direction: column;

    transition: transform 1.6s ease,
    width 1.6s ease;
}

.sources-slider .slick-current {
    border-color: transparent;
    transform: scale(1);

}

.sources-swiper .swiper-button-arrow {
    margin-top: 80px;
}

.sources-swiper .swiper-slide:not(.swiper-slide-active) .slide-content {
    padding: 0;
}

.sources-swiper .swiper-slide:not(.swiper-slide-active) .slide-top__img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 637px;
    height: 100%;
    max-height: 140px;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.sources-swiper .swiper-slide:not(.swiper-slide-active) .slide-top {
    position: relative;
    height: 100%;
    margin-bottom: 0;
}

.sources-swiper .swiper-slide {
    height: 100%;
    overflow: hidden;
    color: var(--white-color);
    font-size: 38px;
    line-height: 140%;
    flex-shrink: 0;
    width: 184px;

    border-radius: 55px;
    border: 3px solid var(--pink-color);
    box-sizing: border-box;
    cursor: pointer;
    font-weight: 300;
}

.swiper-slide.swiper-slide-active {
    width: 815px !important;
}

.sources-swiper .swiper-slide .slide-content {
    height: 100%;
    width: 100%;
    padding: 65px 40px;
    display: flex;
    flex-direction: column;
}

.sources-swiper .swiper-slide {
    transition: .4s;
}

.sources-swiper .swiper-slide p {
    opacity: 0;
    transform: translateY(100vh);
    pointer-events: none;
    width: 100%;
    max-width: 480px;
    will-change: transform, opacity;
}

.sources-swiper .swiper-slide p {
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
}

.sources-swiper .swiper-slide.swiper-slide-active p {
    animation: slideUpFade 1.6s ease forwards;
    pointer-events: auto;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sources-swiper .swiper-slide:not(.swiper-slide-active) p,
.sources-swiper .swiper-slide:not(.swiper-slide-active) .slide-top__text {
    opacity: 0;
    display: none;
}

.sources-swiper .swiper-slide-active {
    background: url("../images/vacancy-bg.png") no-repeat center / cover;
}

.sources-swiper .slide-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sources-swiper .slide-top__text {
    max-width: 440px;
}

.sources-swiper .swiper-slide-active .slide-top__img {
    height: 150px;
}

.sources-swiper .swiper-slide-active .slide-top__img img {
    height: unset;
    max-width: 100%;
}

.sources-swiper .slide-top__img img {
    height: 60%;
    max-width: 30%;
}

.sources-swiper .slide-top__img {
    width: 150px;
    height: 214px;
    padding: 20px;
    background: var(--white-color);
    border-radius: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sources-swiper h3 {
    font-size: 61px;
}

.sources-swiper h5 {
    font-size: 70px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 110%;
}

.sources-swiper {
    overflow: hidden;
    width: 100%;
    padding-bottom: 300px;
    margin-top: 80px;
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
    height: 637px;
    margin-left: 20px;
}

.sources-swiper .swiper-slide .slide-content p {
    margin-top: auto;
    margin-bottom: auto;
}

.sources-slider .slick-current .slide-content {

    background: url("../images/vacancy-bg.png") no-repeat center / cover;
    width: 815px;
    transform: perspective(1200px) rotateY(0deg) scale(1);
    opacity: 1;
}

.sources-slider .slick-current .slide-content {
    width: 815px;
}

.sources-slider .slick-current {
    z-index: 2;
}

.sources-slider .slide-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sources-slider .slide-top__text {
    max-width: 440px;
}

.sources-slider .slide-top__img {
    width: 150px;
    height: 150px;
    padding: 20px;
    background: var(--white-color);
    border-radius: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.45s cubic-bezier(.22, .61, .36, 1);
}

.sources-slider .slick-slide:not(.slick-current) .slide-top {
    position: relative;
    height: 100%;
    margin-bottom: 0;
}

.sources-slider .slick-slide:not(.slick-current) .slide-top__img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 637px;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.sources-slider .slick-current .slide-top__img {
    transform: rotate(0);
    position: static;
}

.sources-slider .slick-slide:not(.slick-current) p,
.sources-slider .slick-slide:not(.slick-current) .slide-top__text {
    display: none;
}

.sources-slider h3 {
    font-size: 61px;
}

.sources-slider h5 {
    font-size: 70px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 110%;
}

.bg--grey {
    border-radius: 40px;
    background: linear-gradient(90deg, #2F2F3E 0%, #020202 100%);
    color: var(--white-color);
}

.contacts .bg--white {
    padding-top: 262px;
    padding-bottom: 60px;
    margin-top: -120px;
}

.contactsTeam-title {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contactsTeam {
    padding-top: 40px;
    padding-bottom: 200px;
    border-radius: 0 0 92px 92px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)),
    url("../images/contact-black-bg2.svg") no-repeat top center;

    background-size: cover;
    position: relative;
}

.contactsTeam-down {
    background: url("../images/arrow-down.svg") no-repeat center;
    width: 62px;
    height: 71px;
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: block;
    animation: arrowDown 5s ease-in-out infinite;
    cursor: pointer;
}

@keyframes arrowDown {
    0%, 13%, 26%, 40%, 100% {
        transform: translateY(0);
    }
    6.5%, 19.5%, 32.5% {
        transform: translateY(10px);
    }
}

.contactsTeam-list {
    position: relative;
    width: 100%;
    margin-top: -100px;
}

.contactsTeam-list li {
    background: url("../images/teamList-bg.png") no-repeat center bottom;
    background-size: 100% auto;
    position: relative;
    margin: 0 20px;
    padding: 55px 46px;
    width: 468px;
    display: flex;
    flex-direction: column;
}

.contactsTeam-list li:after {
    content: '';
    width: 265px;
    height: 189px;
    right: 0;
    top: 0;
    position: absolute;
    background: url("../images/contacts-moon1.png") no-repeat right top;
    z-index: 2;
    border-radius: 0 40px 0 0;
}

.contactsTeam-list li:nth-child(2):after {
    background-image: url("../images/contacts-moon2.png");
}

.contactsTeam-list li:nth-child(3):after {
    background-image: url("../images/contacts-moon3.png");
}

.contactsTeam-list li:before {
    content: '';
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 40px 40px 0 0;
    border-top: 1px solid var(--white-color);
    border-left: 1px solid var(--white-color);
    border-right: 1px solid var(--white-color);
    height: 40%;
    position: absolute;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

.contactsTeam-list li:nth-child(2n) {
    background-image: url("../images/teamList-bg2.png");
    background-size: contain;
}

.contactsTeam-list li:nth-child(3n) {
    background-image: url("../images/teamList-bg3.png");
    background-size: contain;
}

.contacts {
    position: relative;
    overflow-x: hidden;
}

.contactsTop {
    margin: 185px 0;
}

.contactsTop-img {
    top: 0;
    position: absolute;
    z-index: -1;
    max-width: unset;
    width: 1920px;
    right: 0;
}

.contactsTop h1 {
    font-size: 120px;
    line-height: 100%;
    font-weight: 700;
}

.contactsTop h1 span {
    display: block;
}

.contactsTop h5 {
    margin-top: 90px;
    line-height: 125%;
    max-width: 490px;
    font-weight: 300;
}

.contactsTeam-list h4 {
    margin-bottom: 45px;
    position: relative;
    z-index: 3;
}

.contactsTeam-list__img {
    width: 214px;
    height: 214px;
    margin: 0 auto -108px;
    border-radius: 23px;
    z-index: 6;
    position: relative;
}

.contactsTeam-list__img:after {
    content: '';
    background: var(--black-color);
    height: calc(50% + 16px);
    left: -8px;
    right: -8px;
    border-radius: 0 0 32px 32px;
    position: absolute;
    bottom: -8px;
    z-index: -1;
}

.contactsTeam-list__links {
    margin-top: auto;
}

.contactsTeam-list__linksItem {
    background: linear-gradient(293deg, #EF52C3 6%, #070707 116%);
    border-radius: 14px;
    padding: 15px;
    width: calc(50% - 7px);
    position: relative;
    color: var(--white-color);
    flex-direction: column;
    display: flex;
    align-items: flex-start;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.contactsTeam-list__linksItem:hover .contactsTeam-list__externalLink {
    transform: scale(1.5)
}

.contactsTeam-list__linksItem:hover {
    transform: scale(0.9);
    color: var(--grey-color);
    background: linear-gradient(293deg, #EF52C3 10%, #070707 90%);
}

.contactsTeam-list__linksItem:last-of-type:hover {
    background: linear-gradient(313deg, #2563EB 20%, #070707 70%);
}

.contactsTeam-list__linksItem i {
    font-size: 10px;
    font-style: normal;
    display: block;
    line-height: 100%;
    word-break: break-all
}

.contactsTeam-list__linksItem span {
    font-size: 20px;
    margin-top: 15px;
}

.contactsTeam-list__linksItem .contactsTeam-list__externalLink {
    right: 13px;
    top: 13px;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    width: 10px;
}

.contactsTeam-list__linksItem:last-of-type {
    background: linear-gradient(313deg, #2563EB 10%, #070707 98%);
    margin-left: 14px;

}

.contactsTeam-list__text {
    padding: 30px 42px;
    background: var(--white-color);
    border-radius: 30px;
    color: var(--black-color);
    flex-grow: 1;
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    z-index: 3;
}

.contactsTeam-list__text b {
    display: block;
    font-size: 42px;
    margin-top: 125px;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 30px;
    text-align: center;
}

.contactsTeam-list__img img {
    overflow: hidden;
    object-fit: cover;
    border-radius: 23px;
    border: 2px solid var(--white-color);
    height: 100%;
    width: 100%;
    display: block;
}

.btn-transparent {
    width: 280px;
    height: 66px;
    border-radius: 65px;
    border: 1px solid var(--white-color);
    font-weight: bold;
    color: var(--white-color);
    text-transform: capitalize;
    margin-top: auto;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.btn-transparent:hover {
    background: var(--dark-color);
    color: var(--white-color);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

.btn-transparent img {
    margin-left: 7px;
}

.blogInner {
    background: url("../images/bloginner-bg.svg") no-repeat center bottom;
    background-size: contain;
}

.blogInner-text ul {
    margin-bottom: 30px;
    margin-top: 30px;
}

.blogInner-text {
    font-size: 24px;
    line-height: 120%;
    max-width: 84%;
    margin: 0 auto;
}

.blogInner-text p:not(:last-of-type) {
    margin-bottom: 15px;
}

.blogInner-text h2 {
    font-size: 40px;
    max-width: 90%;
    font-weight: 800;
    line-height: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
}

.blog .blockAfterHeader {
    margin-bottom: 74px;
}

.blogPreview-title {
    padding: 0 50px;
}

.blogInner {
    margin-top: 50px;
}

.blogInner h1 {
    font-size: 90px;
}

.blogInner-img {
    height: 430px;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 30px;
}

.blogInner .blogPreview-date {
    margin: 60px 0 70px;
}

.blogPreview-title i,
.blogTags span i {
    width: 35px;
    height: 35px;
    display: block;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    margin-right: 20px;
    border-radius: 10px;
}

.blog .blogTags {
    margin-left: auto;
    margin-right: auto;
    max-width: 1220px;
}

.blogTags.caseTags {
    margin-bottom: 140px;
}

.blogTags.caseTags i img {
    top: 60%;
}

.blogTags.caseTags i {
    width: 106px;
    height: 106px;
    border-radius: 30px;
}

.blogTags.caseTags span:not(:last-of-type):after {
    height: 66px;
    margin: 0 60px;
}

.blogTags.caseTags span {
    font-size: 37px;
}

.blogPreview-title i {
    position: relative;
}

.blogPreview-title i:before,
.blogTags span.is--active i:before,
.blogTags span.active i::after {
    content: '';
    background: radial-gradient(circle, rgba(37, 99, 235, 0.85) 0%, rgba(37, 99, 235, 0.35) 35%, rgba(37, 99, 235, 0.25) 55%, rgba(37, 99, 235, 0) 75%);
    width: 150%;
    height: 150%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.caseTop-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    width: 224px;
    height: 57px;
    cursor: pointer;
    background: var(--pink-color);
    border-radius: 52px;
    margin-left: 40px;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.caseTop-btn.is-playing {
    opacity: 0;
}

.caseTop-btn.is-playing::before {
    content: 'Pause';
}

.caseTop-btn::before {
    content: 'Play';
}

.caseTop-btn:hover:before,
.caseTop-btn:hover:after {
    border-color: var(--blue-color);
}

.caseTop-btn::before,
.caseTop-btn::after {
    content: "";
    position: absolute;
    inset: -4px;
    border: 2px solid var(--pink-color);
    border-radius: inherit;
    animation: pulseOut 2s ease-out infinite;
    opacity: 0;
}

.caseTop-btn::after {
    animation-delay: 1s;
}

@keyframes pulseOut {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
        opacity: 0;
    }
}

.caseTop-btn:hover {
    background: var(--blue-color);
}

.caseTop-btn span {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.caseTop-btn:hover span:before {
    border-left-color: var(--pink-color);
}

.caseTop-btn span::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 14px solid var(--blue-color);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 2px;
}


.caseTop-video {
    right: 0;
    left: 0;
    overflow: hidden;
    border-radius: 0 40px 40px 0;
}

.caseTop-video video {
    height: auto;
    overflow: hidden;
    border-radius: 0 40px 40px 0;
    width: 100%;
}

.casesTop-number {
    margin-right: 210px;
    width: calc(50% - 250px);
}

.casesTop-number__first {
    margin-right: auto;
}

.casesTop-number__second {
    margin: 60px auto;
}

.casesTop-number__third {

}

.casesTop-number__item b {
    display: block;
    line-height: 100%;
    font-size: 100px;
    font-weight: 500;
}

.casesTop-number__item p {
    font-size: 18px;
    line-height: 120%;
    margin-top: 20px;
    max-width: 220px;
}

.casesTop-text, .caseTop-forSlider {
    height: calc(50% - 4px);
}

.casesTop-text h1 {
    font-size: 133px;
    position: relative;
    font-weight: 800;
    line-height: 90%;
}

.casesTop-text h1 > span {
    color: var(--pink-color);
    display: block;
}

.casesTop-text h1 i {
    font-style: normal;
    position: absolute;
    line-height: 120%;
    font-size: 20px;
    font-weight: 400;
    left: 260px;
    top: 45px;
    max-width: 160px;
    width: 100%;
}

.casesTop-text p {
    font-size: 24px;
    line-height: 120%;
    margin-top: 30px;
    max-width: 585px;
    font-weight: 300;
}

.w-50p {
    width: 50%;
}

.casesTop {
    height: 1040px;
}

.casesTop:before {
    content: '';
    position: absolute;
    background: url("../images/moonSunPink.svg") no-repeat bottom left;
    background-size: contain;
    left: 0;
    bottom: -65%;
    display: block;
    width: 752px;
    height: 1475px;
}

.casesTop .w-50p {
    width: calc(50% - 4px);
}

.casesTop-left__item {
    border-radius: 0 40px 40px 0;
    border-bottom: 1px solid var(--white-color);
    border-top: 1px solid var(--white-color);
    border-right: 1px solid var(--white-color);
    height: calc(50% - 4px);
}

.casesTop-right {
    border-radius: 40px 0 0 40px;
    border-bottom: 1px solid var(--white-color);
    border-top: 1px solid var(--white-color);
    border-left: 1px solid var(--white-color);
    background: url("../images/case-bg-right.png") no-repeat 15px center;
}

.case-studies {
    color: var(--white-color);
    padding-bottom: 200px;
    position: relative;
}

.caseTop-video__slider .slick-next,
.caseTop-video__slider .slick-prev {
    color: #2563EB;
    opacity: 1;
    transform: scale(1.1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.caseTop-video__slider .slick-next:hover,
.caseTop-video__slider .slick-prev:hover {
    animation: unset;
}

.caseTop-video__slider .slick-prev {
    animation: arrow-pulse-prev 2s ease-in-out infinite;
}

.caseTop-video__slider .slick-next {
    animation: arrow-pulse 2s ease-in-out infinite;
}

@keyframes arrow-pulse {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(5px);
        opacity: 0.7;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes arrow-pulse-prev {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-5px);
        opacity: 0.7;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


.case-studies__content {
    padding: 32px;
}

.case-studies__content p {
    margin: 0 20px;
    text-align: left;
}

.case-studies__content h5 {
    text-transform: uppercase;
    font-weight: 500;
    margin: 40px 20px;
    text-align: left;
}

.case-studies__content--img {
    border-radius: 25px;
    display: block;
    overflow: hidden;
    height: 366px;
    position: relative;
}

.case-studies__content--img img {
    height: 100%;
    max-width: unset;
    max-height: unset;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    display: block;
}

.case-studies .slick-slide {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center center;
    opacity: 0.3;
    transform: scale(0.8);
    z-index: 0;
    border-radius: 30px;
    width: 470px;
    background: transparent;
    cursor: pointer;
}

.case-studies__content ul {
    text-align: left;
    margin: 0 20px 0 40px;
    margin-top: 9px;
}

.case-studies__content ul li {
    list-style: disc;
}

.case-studies .slick-track {
    transform-style: preserve-3d;
}

.case-studies .caseSlider-bgText {
    transition: all 0.2s linear;
}

.case-studies .slick-center .caseSlider-bgText {
    display: block;
    left: 0;
    top: 0;
    right: 0;
}

.case-studies .slick-center {
    transform: scale(1) perspective(500px) rotateY(0deg);
    opacity: 1;
    z-index: 2;

}

.case-studies .slick-slide.slick-active:not(.slick-current) {
    transform: perspective(500px) scale(0.9) rotateY(15deg);
    z-index: 1;
}

.case-studies .slick-slide:nth-child(3n + 1) {
    background: var(--pink-color);
}

.case-studies .slick-slide:nth-child(3n + 2) {
    background: #707070;
}

.case-studies .slick-slide:nth-child(3n) {
    background: var(--blue-color);
}

.case-studies .slick-center + .slick-slide.slick-active:not(.slick-current),
.case-studies .slick-center + .slick-slide.slick-active:not(.slick-current) + .slick-slide.slick-active {
    transform: perspective(500px) scale(0.9) rotateY(-15deg);
}

.caseTitle {
    margin: 100px 0;
}

.caseTitle h2 {
    text-transform: uppercase;
    font-weight: bold;
    text-align: right;
}

.caseTitle h2 i {
    font-style: normal;
    color: var(--blue-color);
}

.caseTitle h2 > span {
    display: block;
}

.caseTitle .word-roles {
    bottom: unset;
    color: var(--white-color);
}

.caseTitle-bgImg {
    left: 20%;
}

.blogTop {
    height: 800px;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
    margin-top: 50px;
    padding: 90px;
}

.blogTop-img:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.blogTop-content {
    max-width: 50%;
    z-index: 3;
}

.blogPreview-text p {
    -webkit-line-clamp: 5;
}

.blogPreview-text p,
.blogTop-content p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blogTop-content p {
    -webkit-line-clamp: 3;
}

.z-index-10 {
    z-index: 10;
}

.blogList .word-roles {
    color: var(--white-color);
    bottom: unset;
    margin: 114px 0;
}

.blogTop-img img {
    width: 100%;
}

.blogTop-img,
.blogInner-img img {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    position: absolute;
    display: block;
    max-width: unset;
    max-height: unset;
    z-index: -1;
    margin: 0 !important;
}

.form-row.form-row--bottom.form-row--checkbox .checkbox {
    margin-bottom: 0;
}

.google-recaptcha-message {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.google-recaptcha-message a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
}

.grecaptcha-badge {
    visibility: hidden;
}

.blogTop p {
    font-size: 30px;
    line-height: 120%;
}

.blogTop h1 {
    font-size: 97px;
    text-transform: uppercase;
    font-weight: 800;
}

.blogTags {
    margin: 130px 0 60px;
}

.blogTags > span > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blogPreview-tag {
    height: 45px;
    line-height: 45px;
    padding: 0 14px;
    background: var(--pink-color);
    border-radius: 42px;
    display: table;
    text-align: center;
    color: var(--white-color);
    font-size: 16px;
}

.blogPreview:hover .blogPreview-img {
    transform: translateY(-10px);
    box-shadow: 0 2px 25px 0 rgba(255, 255, 255, 0.75);
}

.blogPreview {
    position: relative;
}

.blogPreview-link {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blogPreview-date {
    font-size: 17px;
    font-weight: 500;
    margin: 20px 0;
}

.blogPreview-text {
    transition: all 0.2s linear;
}

.blogPreview-text h5 {
    text-transform: uppercase;
    max-width: 90%;
    font-weight: 700;
}

.blogPreview-text p {
    line-height: 140%;
    font-size: 16px;
    margin-top: 20px;
    font-weight: 400;
}

.blogPreview-img {
    width: 604px;
    height: 430px;
    flex-shrink: 0;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    margin-left: 55px;
    transition: all 0.2s linear;
    box-shadow: 0 2px 30px 0 rgba(255, 255, 255, 0.5);
}

.blogPreview-img img {
    display: block;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blogTags span,
.blogTags span i {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.blogTags span {
    display: flex;
    font-size: 23px;
    align-items: center;
    position: relative;
    cursor: pointer;
    line-height: 100%;
}

.blogTags span:hover i {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.blogTags span:hover {
    color: var(--blue-color);
}

.blogTags span:not(:last-of-type):after {
    content: '';
    height: 40px;
    width: 1px;
    background: var(--white-color);
    display: inline-block;
    margin: 0 20px;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.blogPreview-title i img {
    max-width: 45px;

}

.blogPreview-title i img,
.blogTags span i img {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: none;
}

.blogPreview-title i img {
    top: 20%;
}

.paginationBlock {
    margin: 0 auto;
    max-width: 600px;
}

.paginationBlock ul.pagination {
    max-width: 300px;
    margin: 40px auto;
    justify-content: center;
}

.page-numbers.prev,
.page-numbers.next {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    border: 1px solid var(--white-color);
    color: var(--white-color);
}

.paginationBlock ul.pagination li.pagination-item .page-numbers.dots {
    font-size: 40px;
    width: 50px;
    height: 50px;
    line-height: 30px;
}

.paginationBlock ul.pagination li.pagination-item .page-numbers:not(.dots) {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paginationBlock ul.pagination li.pagination-item .page-numbers:not(.dots):not(.prev):not(.next) {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 1px solid var(--white-color);
    font-size: 20px;
    color: var(--white-color);
    width: 50px;
    height: 50px;
}

.paginationBlock ul.pagination li.pagination-item .page-numbers.current {
    background: var(--blue-color);
    border-color: var(--blue-color)
}

.paginationBlock ul.pagination li {
    border-radius: unset;
    padding: 0;
    border: none;
    width: auto;
    margin-right: 10px;
    margin-bottom: 10px;
}

.blogList {
    margin-top: 42px;
    padding-bottom: 100px;
}

.blogList-blog {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    max-width: 100%;
    flex-wrap: wrap;
}

.blogList-blog li {
    margin-bottom: 42px;
}

.blogList-blog li:nth-child(3n) {
    margin-right: 0;
}

.blogList-slider {
    padding-bottom: 40px;
    overflow: hidden;
    padding-top: 40px;
}

.vacancy-text {
    margin-top: 80px;
}

.blogList-slider .slick-list {
    padding: 0;
}


.blogList .blogList-slider ul.slick-dots {
    margin-top: 150px;
}

.blogList .blogList-slider ul.slick-dots li {
    width: unset;
    margin-right: unset;
}

.slick-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.slick-dots li {
    list-style: none;
    margin: 0 5px;
    padding: 0;
}

.slick-dots li button {
    width: 8px;
    height: 8px;
    padding: 0;
    background: #B7B7B7;
    border-radius: 50%;
    border: none;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button {
    width: 56px;
    height: 8px;
    background: #EF52C3;
    border-radius: 42px;
}

.blogList-slider .slick-slide {
    padding: 0 21px;
    box-sizing: border-box;
}

.blogList-slider .slick-list {
    margin: 0 -21px;
}

.blogList-blog li {
    width: calc(33.333% - 28px);
    margin-right: 42px;
    flex-shrink: 0;
}

.blogList ul li {
    display: flex;
    flex-direction: column;
}

.blogList-link {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blogList li:hover .blogList-img {
    transform: translateY(-10px);
    box-shadow: 0 2px 25px 0 rgba(255, 255, 255, 0.75);
}

.blogList-img {
    box-shadow: 0 2px 30px 0 rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 28px;
    height: 297px;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.blogList-img img {
    display: block;
}

.blogList li:hover
.blogList-text {
    opacity: 0.8;
}

.blogList-text b {
    font-weight: 500;
    font-size: 23px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.blogList-text span {
    font-size: 17px;
    margin-top: 30px;
    font-weight: 500;
    display: block;
}

.blogList-text p {
    font-size: 16px;
    line-height: 100%;
    margin-top: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.greyForm.form--subscribe .greyFormImg {
    max-width: 415px;
}

.greyForm {
    padding: 20px 20px 20px 80px;
}

.greyForm h3 {
    text-transform: uppercase;
    margin-bottom: 48px;
}

.greyForm h3 span {
    color: var(--pink-color);
    display: block;
}

.greyForm-social a:not(:last-of-type) {
    margin-right: 36px;
}

.greyForm-social a {
    width: 124px;
    height: 124px;
    border-radius: 100%;
    border: 5px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s linear;
}

.greyForm-text {
    max-width: 620px;
    margin-right: 60px;
}

.greyForm-form {
    height: 70px;
}

.greyForm-form input {
    border-radius: 7px;
    border: 1px solid var(--white-color);
    background: transparent;
    height: 100%;
    padding: 0 20px;
    font-size: 25px;
    color: var(--white-color);
}

.greyForm-form input::placeholder {
    color: #a8a8a8;

}

.greyForm-bottom p {
    font-size: 24px;
    margin-bottom: 40px;
    line-height: 120%;
    font-weight: 400;
}

.greyForm-btn {
    background: var(--pink-color);
    width: 89px;
    border-radius: 0 7px 7px 0;
    right: 0;
    top: -1px;
    bottom: -1px;
    border: unset;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.greyForm-btn svg {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.greyForm-btn:hover {
    background: var(--blue-color);
}

.greyForm-btn:hover svg {
    transform: rotate(45deg);
}

.greyForm-social a svg {
    fill: var(--white-color);
    transition: all 0.2s linear;
}

.greyForm-social a:hover {
    transform: scale(1.1);
}

.greyForm-social a:hover svg {
    fill: var(--pink-color);
    transform: rotate(10deg) translateY(-5px);
}

.greyFormImg {
    border-radius: 30px;
    border: 1px solid var(--white-color);
}

.greyFormImg img {
    border-radius: 30px;
    overflow: hidden;
}

.servicesCard {
    background: url("../images/contact-black-bg2.svg") no-repeat top center;
    padding-top: 200px;
    background-size: cover;
    padding-bottom: 200px;
    border-radius: 0 0 92px 92px;
    transition: all 0.2s linear;
}

.servicesTabs-left {
    width: 36%;
    margin-right: 35px;
}

.servicesTabs-content__top h5 {
    margin-right: 40px;
    text-transform: uppercase;
    font-weight: 500;
}

.servicesTabs-content__top span {
    width: 148px;
    height: 148px;
    display: block;
    flex-shrink: 0;
    border-radius: 35px;
    overflow: hidden;
}

.servicesTabs-content__text {
    font-size: 21px;
    line-height: 120%;
    max-width: 85%;
    margin-top: 30px;
}

.servicesForm {
    padding-top: 220px;
    margin-top: -100px;
}

.servicesTabs-content__text ul {
    margin-bottom: 20px;
}

.servicesTabs-content__text ul li {
    list-style: disc inside;
}

.servicesTabs-content__text p:not(:last-of-type) {
    margin-bottom: 20px;
}

.servicesTabs-right {
    width: 65%;
}

.servicesTabs-list {
    counter-reset: services;
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--white-color);
    position: relative;
    z-index: 32;
}


.servicesTabs-item:not(:last-of-type) {
    margin-bottom: 30px;
}

.servicesTabs-item:hover {
    background: linear-gradient(
            to right,
            transparent,
            var(--pink-color)
    );
}

.servicesTabs-item svg {
    margin-left: auto;
    fill: var(--blue-color);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.servicesTabs-item:before {
    content: counter(services, decimal-leading-zero);
    font-size: 30px;
    margin-right: 27px;
}

.servicesTabs-item.is-active {
    background: var(--pink-color);
    border-color: var(--pink-color)
}

.servicesTabs-item.is-active svg,
.servicesTabs-item:hover svg {
    fill: var(--white-color);
}

.servicesTabs {
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.servicesTabs-content {
    display: none;
    padding: 45px 50px;
    background: #0D0D0D url("../images/service-bg.png") no-repeat;
    background-size: 100% auto;
    max-height: 100%;
    overflow: hidden;
    height: 662px;
    position: relative;
    border-radius: 20px;
}

.servicesTabs-content.is--expanded {
    height: unset;
}

.servicesTabs-content.is--expanded:after {
    display: none;
}

.servicesTabs-content.is--expanded
.servicesTabs-content__btn {
    position: unset;
    bottom: unset;
    margin-top: 20px;
}

.servicesTabs-content::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 205px;
    pointer-events: none;
    background: linear-gradient(
            180.85deg,
            rgba(17, 17, 17, 0) 0.81%,
            rgba(17, 17, 17, 0.94) 47.59%,
            #111111 99.27%
    );
}

.servicesTabs-content__btn {
    font-size: 19px;
    width: 178px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    position: absolute;
    bottom: 35px;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    left: 0;
    right: 0;
    margin: 0 auto;
    border: 1px solid;
    z-index: 3;
    color: var(--white-color);
}

.servicesTabs-content.is-active {
    display: block;
}

.servicesTabs-item h5 {
    line-height: 100%;
    letter-spacing: -2px;
}

.servicesTabs-item h5 span {
    display: block;
}

.servicesTabs-item {
    border: 1px solid;
    color: var(--white-color);
    border-radius: 20px;
    height: 143px;
    display: flex;
    align-items: center;
    counter-increment: services;
    padding: 35px 45px;
    cursor: pointer;
}

.servicesTabs-item {
}

.errorPage .footer a {
    color: var(--white-color);
}

.errorPage .footer a:hover {
    color: var(--pink-color);
}

.errorPage .footer {
    background: var(--dark-color);
    color: var(--white-color);
    border-radius: 16px 16px 0 0
}

.errorPage-content__text {
    max-width: 790px;
    margin-left: auto;
    margin-right: auto;
}

.errorPage-lenta {
    opacity: 0.8;
    top: -20%;
}

.errorPage .footer-social a {
    border-color: rgba(255, 255, 255, 0.1)
}

.footer-social a svg,
.footer-logo svg {
    fill: var(--black-color);
}

.errorPage .footer-social a svg,
.errorPage .footer-logo svg {
    fill: var(--white-color);
    max-width: 100%;
    height: auto;
}

.footer-logo svg {
    max-width: 100%;
    height: auto;
}

.errorPage-content {

    padding-bottom: 80px;
}

.errorPage-content h1 {
    font-size: 519px;
    font-weight: bold;
    position: relative;
    z-index: -1;
}

.errorPage-content__text p {
    font-size: 36px;
    line-height: 120%;
    margin: 60px 0 70px;
}

.errorPage-content__text span {
    font-size: 98px;
    font-weight: 300;
    line-height: 120%;
}

.footer {
    background: var(--white-color);
    padding: 86px 0 40px;
    color: var(--black-color);
}

.footer-logo {
    flex-shrink: 0;
}

.footer-top {
    margin-bottom: 42px;
}

.footer-menu li {
    font-size: 26px;
    margin-left: 77px;
}

.footer-email span {
    position: relative;
    display: flex;
    align-items: center;
}

.footer-email span:after {
    content: "";
    height: 42px;
    width: 1px;
    background: var(--dark-color);
    display: inline-block;
    margin: 0 13px;
    top: 0;
}

.footer-email a {
    font-size: 18px;
    display: block;
    line-height: 100%;
}

.footer-links {
    margin-left: 248px;
    margin-right: auto;
}

.footer-links a:not(:last-of-type) {
    margin-right: 16px;
}

.footer-social a:not(:last-of-type) {
    margin-right: 16px;
}

.footer-social a {
    border: 2px solid rgba(38, 37, 37, 0.1);
    width: 53px;
    height: 53px;
    border-radius: 100%;
    transition: transform 0.25s ease;
}

.footer-social a:hover {
    transform: scale(1.1);
    border-style: dotted;
    border-width: 3px;
}

.blogInner h1,
.blogInner h2,
.blogInner h3,
.blogInner h4,
.blogInner h5,
.blogInner h6 {
    margin: 20px 0 15px;
    font-weight: 600;
}

.blogInner p {
    line-height: 1.6;
}

.blogInner p:not(:last-of-type) {
    margin-bottom: 10px;
}

.blogInner h3 {
    margin-bottom: 15px;
}

.blogInner ul,
.blogInner ol {
    margin: 10px 0 15px;
    padding-left: 20px;
}

.blogInner ul {
    list-style: disc;
}

.blogInner ol {
    list-style: decimal;
}

.blogInner li:not(:last-child) {
    margin-bottom: 5px;
}

.blogInner a {
    color: inherit;
    text-decoration: underline;
}

.blogInner blockquote {
    margin: 15px 0;
    padding-left: 15px;
    border-left: 3px solid currentColor;
}

.blogInner img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    overflow: hidden;
    border-radius: 28px;
}

.blogInner table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.blogInner th,
.blogInner td {
    padding: 8px 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.blogInner th {
    font-weight: 600;
}

.header-mobileElem {
    display: none;
}

.form-row.form-row--bottom.form-row--checkbox .checkbox {
    margin-bottom: 0;
}

.google-recaptcha-message {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.google-recaptcha-message a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
}

.grecaptcha-badge {
    visibility: hidden;
}

.form-row.form-row--message {
    flex-direction: column;
}

.form-message {
    color: #fff;
    margin-top: 36px;
    position: absolute;
}

.form-row.form-row--bottom.form-row--checkbox .checkbox a {
    text-decoration: underline;
    color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 1920px) {
    .formImg {
        margin-left: -50px;
        width: calc(100% + 50px);
    }
}

@media screen and (max-width: 1730px) {

    .casesTop-number {
        margin-right: 300px;
        width: calc(50% - 330px);
    }

    .container {
        max-width: 1200px;
    }

    .header.is--fixed {
        max-width: 1260px;
    }

    h2 {
        font-size: 68px;
    }

    h3 {
        font-size: 68px;
    }

    h4 {
        font-size: 36px;
    }

    h5, .errorPage-content__text p {
        font-size: 25px;
    }

    h6 {
        font-size: 28px;
    }

    .header-menu li a {
        width: 84px;
        height: 30px;
        border-radius: 6px;
    }

    .careerTop h1 {
        font-size: 85px;
        margin-top: 15px;
    }

    .careerTop h1 span {
        font-size: 45px;
        padding: 28px 0;
    }

    .careerTop-text {
        margin-top: 60px;
    }

    .img-topLeft {
        width: 466px;
        height: 578px;
    }

    .top-shadow {
        width: 702px;
        height: 737px;
    }

    .img-topLight {
        width: 100%;
        height: auto;
    }

    .img-bottomRight {
        width: 419px;
        height: 446px;
    }

    body {
        font-size: 18px;
    }

    .btn {
        width: 257px;
        height: 55px;
        font-size: 20px;
    }

    .info p {
        font-size: 21px;
    }

    .info-right p:not(:last-of-type) {
        margin-bottom: 21px;
    }

    h3 {
        font-size: 50px;
    }

    .container-wide {
        max-width: 1280px;
    }

    .white-bg {
        margin-top: 120px;
    }

    .white-bg:before {
        height: 156px;
        top: -155px;
    }

    .careerTopMain .white-bg:before {
        height: 155px;
        top: -153px;
    }

    .logo-bg-grey {
        width: 1575px;
    }

    .contactsTop h1 {
        font-size: 84px;
    }

    .contactsTop {
        margin: 60px 0
    }

    .contactsTop-img {
        width: 1120px;
    }

    .contactsTeam-down {
        top: 15px;
        width: 43px;
        height: 50px;
        background-size: contain;
    }

    .contactsTop h5 {
        margin-top: 65px;
        max-width: 360px;
    }


    .contactsTeam-list__text {
        padding: 20px 30px;
    }

    .greyForm {
        padding-left: 65px;
    }

    .greyFormImg {
        max-width: 350px;
    }

    .greyForm-social a {
        width: 90px;
        height: 90px;
    }

    .greyForm-social a svg {
        max-width: 40px;
        max-height: 40px;
    }

    .footer-logo {
        max-width: 280px;
    }

    .footer-menu li {
        font-size: 20px;
        margin-left: 50px;
    }

    .footer-links {
        margin-left: 258px;
    }

    .contactsTeam-list li {
        width: 392px;
        padding: 40px 35px;
    }

    .contactsTeam-list__img {
        width: 150px;
        height: 150px;
        margin-bottom: -80px;
    }

    .contactsTeam-list__text b {
        font-size: 30px;
        margin-top: 100px;
        margin-bottom: 20px;
    }

    .btn-transparent {
        width: 220px;
        height: 46px;
    }

    .contactsTeam-list__linksItem {
        padding: 10px;
    }

    .contactsTeam-list__linksItem i {
        font-size: 9px;
        margin-top: 5px;
    }

    .scroll-memory-btn {
        width: 70px;
        height: 70px;
        right: 25px;
    }

    .scroll-memory-btn svg {
        width: 25px;
    }

    .contactsTeam-title {
        height: 350px;
    }

    .contacts .bg--white {
        padding-top: 180px;
        padding-bottom: 40px;
        margin-top: -120px;
    }

    .contactsTeam {
        padding-bottom: 70px;
        border-radius: 0 0 45px 45px;
    }

    .errorPage-content h1 {
        font-size: 360px;
    }

    .errorPage-content__text span {
        font-size: 68px;
        margin: 45px 0 55px;
    }

    .errorPage-content__text {
        max-width: 530px;
    }

    .casesTop {
        height: 730px;
    }

    .casesTop-right {
        background-size: cover;
    }

    .casesTop-number__item b {
        font-size: 70px;
    }

    .casesTop-text h1 {
        font-size: 106px;
    }

    .casesTop-text h1 i {
        left: 220px;
        top: 25px;
    }

    .casesTop-text p {
        font-size: 21px;
        margin-top: 10px;
        max-width: 425px;
    }

    .casesTop:before {
        width: 522px;
        height: 1015px;
    }

    .casesTop-number__item p {
        margin-top: 10px;
    }

    .blogTags.caseTags i {
        border-radius: 10px;
        width: 75px;
        height: 75px;
    }

    .blogTags.caseTags span i img {
        max-width: 98px;
    }

    .caseTitle {
        margin: 70px 0;
    }

    .blogTags.caseTags span {
        font-size: 28px;
    }

    .blogTags.caseTags span:not(:last-of-type):after {
        margin: 0 40px;
    }

    .case-studies .slick-slide {
        width: 330px;
    }

    .case-studies__content {
        padding: 22px;
    }

    .case-studies__content--img {
        height: 256px;
    }

    .case-studies__content h5 {
        margin: 30px 15px;
    }

    .btnPos .btn {
        top: -190px;
    }

    .block-title {
        font-size: 74px;
    }

    .blockSubtitle {
        font-size: 22px;
        margin-bottom: 90px;
    }

    .form-wrap {
        max-width: 96%;
        padding: 30px 0;
    }

    .form-wrap .container {
        margin-left: 0;
        margin-right: 0;
    }

    .formImg {
        margin-right: 34px;
        margin-left: unset;
        width: 100%;

    }

    .formForm {
        width: 720px;
    }

    .form-field:first-of-type {
        margin-right: 18px;
    }

    .form-field:last-of-type {
        margin-left: 18px;
    }

    .formForm label {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .formForm input,
    .formForm textarea,
    .formForm .file-placeholder {
        font-size: 19px;
    }

    .form-row:not(:last-of-type) {
        margin-bottom: 40px;
    }

    .btn-send {
        height: 50px;
        width: 178px;
        border-radius: 30px;
    }

    .captcha {
        height: 50px;
    }

    .captcha img {
        max-height: 100%;
    }

    .planeForm {
        width: 320px;
    }

    .services-top h1 {
        font-size: 80px;
    }

    .services-top__img--lenta {
        width: 1210px;
    }

    .services-top__text {
        font-size: 21px;
        max-width: 530px;
    }

    .jumpImg {
        position: absolute;
        animation: jumpAnimation 8s linear infinite;
    }

    .jumpImg__1 {
        animation-delay: 0s;
        transform: scale(0.7);
        width: 114px;
    }

    .jumpImg__2 {
        animation-delay: 2.6s;
        transform: scale(0.7);
        width: 109px;
    }

    .jumpImg__3 {
        animation-delay: 5.3s;
        transform: scale(0.7);
        width: 64px;
    }

    .jumpImg__4 {
        animation-delay: 8s;
        transform: scale(0.7);
        width: 114px;
    }

    .jumpImg__5 {
        animation-delay: 10.6s;
        transform: scale(0.7);
        width: 109px;
    }

    .jumpImg__6 {
        animation-delay: 13.3s;
        transform: scale(0.7);
        width: 64px;
    }

    .jumpImg__7 {
        animation-delay: 16s;
        transform: scale(0.7);
        width: 114px;
    }

    .jumpImg__8 {
        animation-delay: 18.6s;
        transform: scale(0.7);
        width: 109px;
    }

    .jumpImg__9 {
        animation-delay: 21.3s;
        transform: scale(0.7);
        width: 64px;
    }

    .jumpImg__10 {
        animation-delay: 24s;
        transform: scale(0.7);
        width: 114px;
    }

    .jumpImg__11 {
        animation-delay: 26.6s;
        transform: scale(0.7);
        width: 109px;
    }

    .jumpImg__12 {
        animation-delay: 29.3s;
        transform: scale(0.7);
        width: 64px;
    }

    .jumpImg__13 {
        animation-delay: 32s;
        transform: scale(0.7);
        width: 114px;
    }

    .jumpImg__14 {
        animation-delay: 34.6s;
        transform: scale(0.7);
        width: 109px;
    }

    .jumpImg__15 {
        animation-delay: 37.3s;
        transform: scale(0.7);
        width: 64px;
    }

    @keyframes jumpAnimation {
        0% {
            top: 0;
            right: 0;
            transform: scale(0.7);
        }
        25% {
            top: 25%;
            right: 5%;
            transform: scale(0.8);
        }
        50% {
            top: 30%;
            right: 30%;
            transform: scale(1);
        }
        75% {
            top: 60%;
            right: 55%;
            transform: scale(1.1);
        }
        100% {
            top: 90%;
            right: 60%;
            transform: scale(1.25);
        }
    }

    .careerTopMain .careerTop-text p:not(:last-of-type) {
        margin-bottom: 30px;
    }

    .careerTopMain .careerTop-text {
        max-width: 710px;
    }

    .careerForm h3 {
        font-size: 44px;
        margin-bottom: 70px;
    }

    .careerForm-subtitle {
        font-size: 34px;
        margin-bottom: 22px;
    }

    .careerForm {
        padding-top: 90px;
    }

    .careerTopMain .word-roles {
        bottom: -30px;
    }

    .careerRoles, .about {
        padding-bottom: 130px;
        margin-bottom: 130px;
    }

    .careerRoles + .black-bg {
        margin-top: -130px;
    }

    .careerVacancy {
        padding-top: 140px;
    }

    .blogList-img {
        border-radius: 20px;
        height: 210px;
    }

    .blogPreview-img {
        width: 495px;
        height: 360px;
        box-shadow: 0 1px 25px 0 rgba(255, 255, 255, 0.53);
    }

    .blogTags span i {
        width: 48px;
        height: 48px;
    }

    .blogTags span {
        font-size: 20px;
    }

    .blogList-text span, .blogList-text p {
        margin-top: 20px;
    }

    .blogTop h1 {
        font-size: 68px;
    }

    .blogTop {
        height: 560px;
        border-radius: 22px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
        position: relative;
        margin-top: 35px;
        padding: 63px;
    }

    .blogTop-img {
        max-width: 100%;
    }

    .blogTags {
        margin-top: 110px;
    }

    .blogTop p {
        margin: 50px 0 70px;
    }

    .blogTags span:not(:last-of-type):after {
        margin: 0 15px;
    }

    .service-list li::before {
        font-size: 210px;
    }

    .service-list li:first-child:before {
        right: -114px;
    }

    .service-list li:first-child:after {
        width: 360px;
        right: -558px;
        top: 42px;
    }

    .service-list li:nth-child(2)::before {
        left: -134px;
        top: -110px;
    }

    .service-list li:nth-child(2):after {
        width: 482px;
        left: -570px;
    }

    .service-list li:nth-child(3)::before {
        right: -144px;
    }

    .service-list li:nth-child(3):after {
        width: 422px;
        right: -460px;
    }

    .service-list li:last-child::before {
        right: -54px;
        top: -130px;
    }

    .service-list {
        padding-top: 200px;
    }

    .sources-slider .slick-current .slide-content {
        width: 570px;
    }

    .home .white-bg:before {
        height: 171px;
        top: -170px;
    }

    .home .bg-black:before {
        content: '';
        position: absolute;
        top: -130px;
        left: 0;
        width: 100%;
        height: 180px;
    }

    .sources-swiper,
    .sources-slider {
        padding-bottom: 200px;
    }

    .sources-swiper .swiper-button-arrow,
    .sources-slider .slick-arrow {
        bottom: 70px;
    }

    .blogInner-img {
        height: 300px;
    }

    .blogList .blogList-slider ul.slick-dots {
        margin-top: 100px;
    }

    .blogInner-text h2 {
        font-size: 36px;
    }

    .blogInner-text {
        font-size: 21px;
    }

    .blogInner h1 {
        font-size: 70px;
    }

    .blogInner .blogPreview-date {
        margin: 50px 0 55px;
    }

    .contactsTeam {
        padding-top: 90px;
    }

    .contactsTeam-list {
        margin-top: -50px;
    }

    .servicesCard {
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 1440px) {
    body, .footer-email a {
        font-size: 16px;
    }

    .greyForm-text p {
        font-size: 21px;
        margin-bottom: 30px;
    }

    .greyForm-form {
        height: 50px;
    }

    .greyForm-form input {
        font-size: 20px;
    }

    .greyForm-btn {
        width: 69px;
    }

    .greyForm-btn svg {
        width: 17px;
    }

    .footer-links {
        margin-left: 288px
    }

    .contactsTeam-list {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
        display: grid;
    }

    .contactsTeam-list li {
        width: unset;
        padding: 35px 20px;
        margin: 0;
        min-height: 600px;
    }

    .contactsTeam-list li:after {
        background-size: contain;
        width: 185px;
        height: 132px;
    }

    .contactsTeam-list__linksItem .contactsTeam-list__icon {
        width: 19px;
    }

    .contactsTeam-list__text {
        padding: 10px 20px;
    }

    .contactsTeam-list__linksItem span {
        font-size: 14px;
    }

    .footer-top {
        align-items: flex-start;
    }

    .footer-logo {
        max-width: 220px;
    }

    .footer-menu {
        margin-top: 6px;
    }


    .btn-transparent {
        width: 190px;
    }

    .contactsTop h1 {
        font-size: 70px;
    }

    .contactsTop h5 {
        font-size: 21px;
    }

    .contactsTeam {
        padding-top: 80px;
        margin-bottom: 60px;
    }

    .errorPage-content h1 {
        font-size: 306px;
    }

    .errorPage-content__text span {
        font-size: 60px;
        margin: 40px 0 45px;
    }

    .errorPage-content__text {
        max-width: 451px;
    }

    .btn {
        font-size: 18px;
    }

    .case-studies .slick-slide {
        width: 250px;
    }

    .case-studies__content--img {
        height: 190px;
    }

    .case-studies__content {
        padding: 15px;
    }

    .case-studies__content h5 {
        margin: 30px 0 15px;
        font-size: 20px;
    }

    .case-studies__content p {
        margin: 0;
    }

    .swiper-slide.swiper-slide-active {
        width: 570px !important;
    }

    .sources-swiper .swiper-slide-active .slide-top__img {
        height: 105px;
    }

    .sources-swiper .swiper-slide-active .slide-top__img img {
        max-width: 95%;
    }

    .sources-swiper .swiper-button-next, .sources-swiper .swiper-button-prev,
    .case-studies .slick-next, .sources-slider .slick-next, .case-studies .slick-prev, .sources-slider .slick-prev {
        background-size: 40px 15px;
    }

    .sources-swiper .swiper-button-arrow,
    .case-studies .slick-arrow,
    .sources-slider .slick-arrow {
        width: 100px;
        height: 36px;
    }

    .sources-swiper .swiper-button-prev,
    .case-studies .slick-prev, .sources-slider .slick-prev {
        transform: translateX(-115px);
    }

    .blogTags.caseTags i {
        border-radius: 10px;
        width: 55px;
        height: 55px;
    }

    .casesTop {
        height: 540px;
    }

    .blogTags.caseTags span {
        font-size: 22px;
    }

    .blogTags {
        margin-top: 80px;
    }

    .blogTags.caseTags {
        margin-bottom: 90px;
    }

    .casesTop-number__item b {
        font-size: 56px;
    }

    .casesTop-number__item p {
        font-size: 14px;
        max-width: 100px;
    }

    .casesTop-text h1 {
        font-size: 62px;
    }

    .casesTop:before {
        width: 386px;
        height: 765px;
    }

    .form-wrap {
        padding: 15px 0;
        overflow: hidden;
    }

    .formForm {
        width: 55%;
        margin: 60px 0;
    }

    .planeForm {
        width: 150px;
        bottom: -20px;
    }

    .form-row:not(:last-of-type) {
        margin-bottom: 25px;
    }

    .form-wrap .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .careerTop h1 {
        font-size: 70px;
    }

    .careerTop .arrow-back {
        left: 15px;
    }

    .services-top__img--lenta {
        width: 1120px;
        max-width: unset;
    }

    .services-top h1 {
        font-size: 65px;
        padding-top: 20px;
    }

    .blockTop-img {
        max-width: 1050px;
    }

    .services-top__text {
        max-width: 480px;
        margin-top: 30px;
    }

    .services-top:after {
        height: 100%;
        width: 100%;
        bottom: -80%;
        background-size: contain;
    }

    .services-top__img {
        right: -90px;
    }

    .servicesCard {
        padding-top: 110px;
    }

    .serivices-title {
        margin: 10px 0 90px;
    }

    .servicesTabs-item {
        height: 100px;
    }

    .servicesTabs-content {
        height: 492px;
        padding: 35px 40px;
    }

    .servicesTabs-content__top span {
        width: 100px;
        height: 100px;
        border-radius: 25px;
    }

    .servicesTabs-content::after {
        height: 145px;
    }

    .servicesTabs-content__btn {
        bottom: 20px;
    }

    .serivices-title h5 {
        max-width: 295px;
    }

    .careerVacancy-list__item {
        border-radius: 30px;
    }

    .careerVacancy-list__title {
        font-size: 16px;
    }

    .careerVacancy-list__title img {
        width: 35px;
        height: 35px;
    }

    .careerVacancy-list__top span {
        font-size: 10px;
        height: 28px;
    }

    .careerVacancy-list {
        margin-top: 80px;
    }

    .careerTopMain .word-roles {
        bottom: -10px;
        font-size: 22px;
    }

    .careerVacancy-list__op {
        font-size: 14px;
    }

    .careerVacancy-list__top i:not(:last-of-type):after, .vacancy-date i:not(:last-of-type):after {
        margin: 0 4px;
    }

    .careerTopMain .word-roles img {
        height: 22px;
        width: 22px;
    }

    .careerVacancy-list__text {
        font-size: 24px;
        margin-bottom: 40px;
        margin-top: 20px;
    }

    .black-bg:before {
        background-size: contain;
        background-position: bottom right;
        width: 90%;
        height: 100%;
    }

    .careerVacancy .btn {
        margin-top: 60px;
    }

    .careerRoles + .black-bg {
        padding-bottom: 40px;
    }

    .logo-bg-grey {
        width: 1000px;
        top: 130px;
    }

    .careerTop h1 span:before, .careerTop h1 span:after {
        width: 320px;
    }

    .careerTopMain .word-roles {
        bottom: -30px;
    }

    .careerTop h1 {
        line-height: 90%;
    }

    .careerTop h1 span {
        padding: 15px 0;
    }

    .careerTopMain .careerTop h1 span {
        font-size: 36px;
    }

    .careerTopMain .careerTop h1 {
        font-size: 60px;
        text-align: center;
    }

    .blogPreview-img {
        width: 450px;
        height: 327px;
    }

    .blogPreview-text h5 {
        font-size: 18px;
        max-width: 80%;
    }

    .blogPreview-text p, .blogPreview-date {
        font-size: 12px;
    }

    .blogPreview-tag {
        height: 30px;
        line-height: 30px;
        font-size: 14px;
    }

    .blogTags span i {
        width: 35px;
        height: 35px;
    }

    .blogTags span {
        font-size: 12px;
    }

    .blogTags span i img {
        max-width: 46px;
    }

    .blogTags span:not(:last-of-type):after {
        margin: 0 15px;
        height: 25px;
    }

    .blogList-img {
        border-radius: 14px;
        height: 100%;
        box-shadow: 0 1px 12px 0 rgba(255, 255, 255, 0.75);
    }

    .blogList {
        padding-bottom: 10px;
    }

    .blogList-text b {
        font-size: 18px;
    }

    .blogList-text span, .blogList-text p {
        font-size: 12px;
    }

    .blogTop {
        height: 420px;
        padding: 50px;
    }

    .blogTop h1 {
        font-size: 50px;
    }

    .blogList-blog li {
        width: calc(33.333% - 14px);
        margin-right: 21px;
    }

    .blogList-slider .slick-list {
        margin: 0;
    }

    .blogList-slider .slick-slide {
        padding: 0 8px;
    }

    .blogList .blogList-slider ul.slick-dots {
        margin-top: 70px;
    }

    .blogTop-content {
        display: flex;
        flex-direction: column;
        height: 100%;
        max-width: 390px;
    }

    .blogTop p {
        font-size: 20px;
        margin: auto 0;
    }

    .sources-swiper .swiper-slide,
    .sources-slider .slick-slide {
        font-size: 32px;
    }

    .sources-swiper .swiper-wrapper,
    .sources-slider .slick-track {
        height: 450px;
    }

    .sources-swiper h5,
    .sources-slider h5 {
        font-size: 50px;
    }

    .sources-swiper .swiper-slide,
    .sources-slider .slick-slide {
        border-radius: 40px;
    }

    .sources-swiper .slide-top__img,
    .sources-slider .slide-top__img {
        width: 105px;
        height: 105px;
        border-radius: 25px;
    }

    .sources-swiper .swiper-slide,
    .sources-slider .slick-slide {
        margin: 0 10px;
    }

    .sources-swiper .swiper-slide .slide-content,
    .sources-slider .slick-slide .slide-content {
        min-width: 130px;
        padding: 45px 30px;
    }

    .sources-swiper,
    .sources-slider {
        padding-bottom: 140px;
    }

    .sources-swiper .swiper-button-arrow,
    .sources-slider .slick-arrow {
        bottom: 40px;
    }

    .trust-logos img {
        max-width: unset;
        width: 1340px;
    }

    .trust-logos {
        margin-top: 60px;
    }

    .service-list__text {
        font-size: 21px;
    }

    .service-list li {
        width: 390px;
    }

    .service-list__content {
        padding: 35px 15px;
    }

    .service-list li::before {
        font-size: 180px;
        top: -100px;
    }

    .service-list li:first-child:before {
        right: -100px;
    }

    .service-list li:nth-child(2)::before {
        left: -104px;
    }

    .service-list li:first-child:after {
        width: 300px;
        right: -468px;
        top: 42px;
        height: 210px;
    }

    .service-list__title {
        margin-bottom: 35px;
    }

    .service-list li:nth-child(2):after {
        width: 402px;
        left: -480px;
    }

    .service-list li:nth-child(3)::before {
        right: -124px;
    }

    .service-list li:nth-child(3):after {
        width: 292px;
        right: -350px;
    }

    .blog .blogTags {
        max-width: 840px;
    }

    .scroll-memory-btn {
        bottom: 70px;
        right: 50px;
    }

    .img-topLeft {
        width: 326px;
        height: 408px;
    }

}

@media screen and (max-width: 990px) {
    .careerTop {
        height: auto;
    }

    .footer-links {
        margin-left: auto
    }

    .blogTop p {
        font-size: 16px;
    }

    .services-top h1 {
        font-size: 58px;
    }

    .services-top__text {
        font-size: 16px;
        margin-bottom: 60px;
        max-width: 380px;
    }

    .header-logo {
        width: 152px;
    }

    .header-logo span, .content-logo span {
        font-size: 6px;
    }

    .contacts .bg--white {
        padding-top: 120px
    }

    .header-menu li a {
        width: 80px;
        height: 28px;
        font-size: 12px
    }

    .img-topLeft {
        width: 206px;
        height: 255px;
    }

    .top-shadow {
        width: 292px;
        height: 307px;
    }

    .contactsTop-img {
        width: 990px;
    }

    .contactsTop h1 {
        font-size: 50px;
    }

    .contactsTop {
        margin: 70px 0;
    }

    .contactsTeam-title {
        height: 180px;
    }

    h2 {
        font-size: 44px;
    }

    .contactsTeam-list {
        left: 0;
        width: 100%;
    }

    .contactsTeam-list {
        display: flex;
    }

    .contactsTeam:after {
        content: '';
        background: url("../images/serv-bg.svg");
        width: 100%;
        height: 100%;
        display: block;
        bottom: 0;
        left: 0;
        position: absolute;
        z-index: -1;
        background-size: cover;
    }

    .contactsTeam-list {
        display: block;
        padding-bottom: 100px;
    }

    .contactsTeam-list .slick-track {
        display: flex;
    }

    .contactsTeam-list .slick-slide {
        height: auto;
        outline: none;
    }

    .contactsTeam-list li {
        width: auto;
        margin: 0 10px;
    }

    .contactsTeam-list li {
        width: 240px;
        min-height: 650px;
    }

    .contactsTeam-list .slick-prev {
        left: 50%;
        transform: translateX(-155px);
        background: url("../images/arr-left-w.svg") no-repeat center / 43px 19px;
    }

    .contactsTeam-list .slick-next {
        left: 50%;
        transform: translateX(14px);
        background: url("../images/arr-right-w.svg") no-repeat center / 43px 19px;
    }

    .contactsTeam-list .slick-arrow:hover {
        background-color: var(--white-color);
        border-color: var(--white-color);
    }

    .contactsTeam-list .slick-next:hover {
        background-image: url("../images/arr-right.svg");
    }

    .contactsTeam-list .slick-prev:hover {
        background-image: url("../images/arr-left.svg");
    }

    .contactsTeam-list .slick-arrow {
        position: absolute;
        width: 141px;
        height: 52px;
        border: 2px solid var(--white-color);
        border-radius: 49px;
        padding: 0;
        cursor: pointer;
        z-index: 10;
        font-size: 0;
        transition: all 0.3s ease;
    }

    .footer-menu li {
        font-size: 14px;
    }

    .footer-logo {
        max-width: 160px;
    }

    body, .footer-email a {
        font-size: 14px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    h3 {
        font-size: 40px;
    }

    .greyForm {
        padding-left: 45px;
    }

    .greyForm h3 {
        margin-bottom: 28px;
    }

    .greyForm-social a {
        width: 70px;
        height: 70px;
    }

    .greyForm-social a:not(:last-of-type) {
        margin-right: 16px;
    }

    .greyForm-social a svg {
        max-width: 30px;
        max-height: 30px;
    }

    .greyFormImg {
        max-width: 250px;
    }

    .errorPage-content h1 {
        font-size: 250px;
    }

    .errorPage-content__text p {

        margin: 35px 0 45px;
    }

    .block-title {
        font-size: 54px;
    }

    .blockSubtitle {
        font-size: 16px;
    }

    .white-bg {
        margin-top: 60px;
        padding-top: 40px;
    }

    .blogTags.caseTags span {
        font-size: 18px;
    }

    .blogTags.caseTags span:not(:last-of-type):after {
        margin: 0 20px;
    }

    .caseTitle .word-roles img {
        width: 22px;
        height: 22px;
    }

    .caseTitle .word-roles {
        font-size: 24px;
    }

    .caseTop-btn {
        width: 156px;
        height: 40px;
        font-size: 14px;
    }

    .caseTop-btn span {
        width: 26px;
        height: 26px;
    }

    .caseTop-btn span::before {
        border-left: 10px solid var(--blue-color);
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
    }

    .casesTop-text h1 i {
        font-size: 12px;
        max-width: 100px;
        top: 12px;
        left: 130px;
    }

    .casesTop-text p {
        font-size: 16px;
        max-width: 300px;
    }

    .casesTop-number__item p {
        font-size: 12px;
        max-width: 150px;
    }

    .casesTop-number {
        margin-right: 160px;
        width: calc(50% - 190px);
    }

    .caseTop-video__slider .slick-arrow {
        width: 56px;
        height: 26px;
    }

    .caseTop-video__slider .slick-next, .caseTop-video__slider .slick-prev {
        background-size: 16px 8px;
    }

    .caseTop-video__slider .slick-prev {
        right: 100px;
    }

    .careerTop h1 {
        text-align: left;
        margin-left: unset;
        margin-bottom: 60px;
        font-size: 56px;
    }

    .careerTop .arrow-back {
        display: none;
    }

    .careerTop {
        padding-bottom: 155px;
    }

    .vacancy-subtitle {
        font-size: 24px;
    }

    .services-top h1 {
        padding-top: 0;
    }

    .servicesTabs-item {
        height: 75px;
        padding: 15px 25px;
        -webkit-tap-highlight-color: transparent;
    }

    .servicesTabs-left {
        margin-right: 25px;
    }

    .servicesTabs-item h5, h5 {
        font-size: 18px;
    }

    .servicesTabs-item h5 {
        letter-spacing: unset;
    }

    .servicesTabs-item:before {
        content: counter(services, decimal-leading-zero);
        font-size: 14px;
        margin-right: 12px;
    }

    .servicesTabs-item svg {
        width: 14px;
        height: auto;
    }

    .servicesTabs-content {
        height: 392px;
    }

    .servicesTabs-content__top span {
        height: 76px;
        width: 76px;
    }

    .servicesTabs-content__text {
        font-size: 14px;
    }

    .servicesTabs-content__btn {
        font-size: 16px;
        width: 140px;
        height: 40px;
    }

    .servicesCard {
        padding-top: 120px;
        border-radius: 0 0 40px 40px;
    }

    .servicesForm {
        margin-top: -150px;
    }

    .sources-text, .trust-title, .info {
        flex-direction: column;
        align-items: flex-start;
    }

    .sources-text .info {

        padding-top: 100px;
    }

    .sources-text .info-right, .about .info-right {
        max-width: unset;
        margin-bottom: 20px;
    }

    .trust-title span {
        width: unset;
    }

    .trust-title h2, .info-left h2 {
        font-size: 105px;
        margin-top: 20px;
        font-weight: 700;
    }

    .trust-logos {
        margin-top: 120px;
    }

    .about .btn {
        top: -130px;
    }

    .blockTop-img {
        margin-bottom: -80px;
    }

    .blockTop-text {
        margin: 100px 0 150px;
    }

    .blockTop-text .simple--list {
        margin: 0;
        max-width: 250px;
    }

    .home .bg-black:before {
        top: -130px;
    }

    .swiper-slide.swiper-slide {
        width: 200px;
    }

    .swiper-slide.swiper-slide-active {
        width: 385px !important;
    }


    .sources-slider .slick-current .slide-content {
        width: 420px;
    }

    .sources-swiper .swiper-slide,
    .sources-slider .slick-slide {
        font-size: 20px;
    }

    .sources-swiper h5,
    .sources-slider h5 {
        font-size: 36px;
    }

    .sources-swiper .slide-top__img,
    .sources-slider .slide-top__img {
        border-radius: 20px;
        width: 77px;
        height: 77px;
        padding: 10px;
    }

    .sources-swiper .swiper-slide-active .slide-top__img {
        height: 77px;
    }

    .sources-swiper .swiper-slide .slide-content,
    .sources-slider .slick-slide .slide-content {
        min-width: 95px;
    }

    .sources-swiper .swiper-wrapper,
    .sources-slider .slick-track {
        height: 330px;
    }

    .service-list li {
        width: 320px;
    }

    .service-list__text {
        font-size: 18px;
    }

    .service-list li::before {
        font-size: 100px;
        top: -60px;
    }

    .service-list li:first-child:before {
        right: -55px;
    }

    .service-list li:nth-child(2)::before {
        left: -64px;
        top: -60px;
    }

    .service-list li:nth-child(3)::before {
        right: -67px;
    }

    .service-list li:first-child:after {
        width: 210px;
        right: -308px;
        top: 82px;
        height: 170px;
    }

    .service-list li:nth-child(2):after {
        width: 202px;
        left: -280px;
    }

    .service-list li:nth-child(3):after {
        width: 202px;
        right: -240px;
        bottom: 120px;
    }

    .service-list li:last-child::before {
        right: -24px;
        top: -60px;
    }

    .service-list li:last-child {
        margin-right: 20px;
    }

    .service-list__title img {
        width: 44px;
    }

    .blogInner-img {
        height: 255px;
    }

    .blogInner-text h2 {
        font-size: 36px;
    }

    .blogInner-img {
        border-radius: 15px;
    }

    .blogPreview-img {
        width: 320px;
        height: 233px;
    }
}


@media screen and (max-width: 767px) {
    .careerVacancy-list__top span {
        padding: 0 7px;
    }
    .contactsTeam-list .slick-list{
        overflow: unset !important;
    }
    .sources-swiper .swiper-slide:not(.swiper-slide-active) .slide-top__img {
        max-height: 72px;
    }

    .sources-swiper .swiper-slide .slide-content, .sources-slider .slick-slide .slide-content {
        min-width: 72px;
    }

    .contactsTeam-list li:nth-child(3n),
    .contactsTeam-list li:nth-child(2n) {
        background-image: url(../images/teamList-bg.png);
    }

    .contactsTeam-list li:nth-child(3):after,
    .contactsTeam-list li:nth-child(2):after {
        background-image: url("../images/contacts-moon1.svg");
    }

    .btnPos .btn {
        top: -150px;
    }

    .careerVacancy {
        padding-bottom: 80px;
    }

    .careerVacancy-list {
        column-count: unset;
        display: unset;
    }

    .careerVacancy h2 {
        margin-bottom: 80px;
    }

    .careerVacancy-list__op p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .careerVacancy-block {
        height: 100%;
    }

    .careerVacancy-block.--has-text {
        padding-top: 0;
    }

    .careerVacancy-block:nth-child(3) {
        margin-top: unset;
    }

    .careerVacancy-list__item {
        display: block !important;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
    }

    .service-list li:after {
        display: none;
    }

    .top-shadow, .img-topLight {
        animation: unset;
    }

    .careerVacancy .btn {
        display: none;
    }

    h3 {
        font-size: 30px;
    }

    .header {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .header.is--active .footer-links a:not(:last-of-type) {
        margin-right: unset;
    }

    .header .header-mobileElem .header-logo {
        transition: all 1.2s linear;
        opacity: 0;
    }

    .header.is--active .header-mobileElem .header-logo {
        opacity: 1;
        position: relative;
        margin-top: -20px;
        z-index: 1000;
    }

    .header.is--active .footer-links {
        font-size: 13px;
        justify-content: space-between;
        width: 100%;
        display: flex;
        margin-top: 40px;
        position: unset;
        flex-flow: row wrap;
        gap: 6px 6px;
    }

    .header.is--active .header-mobileElem__bottom {
        bottom: 20px;
        left: 15px;
        right: 15px;
        z-index: 1000;
    }

    .header-menu {
        display: none;
    }

    .header.is--active .header-menu {
        display: flex;
        flex-direction: column;
        margin-top: 80px;
        align-items: flex-start;
        position: absolute;
        left: calc(100% - 230px);
        z-index: 9999;
    }

    .header-menu li.current-menu-item a, .header-menu li:hover a::before {
        background: transparent;
    }

    .header-menu li:hover a {
        text-decoration: underline;
    }

    .header.is--active .header-menu li a {
        width: unset;
        border: none;
        height: unset;
        font-size: 24px;
        color: var(--black-color);
        font-weight: 300;
        overflow: unset;
    }

    .header.is--active .header-menu li {
        margin-bottom: 25px;
    }

    .header-mobile {
        width: 30px;
        height: 24px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
    }

    .header.is--active .header-mobile span {
        height: 30px;
        border-radius: 6px;
        border: 1px solid var(--dark-color);
        right: 15px;
    }

    .header.is--active .header-mobile span:after, .header.is--active .header-mobile span:before {
        background: var(--dark-color);
        width: 50%;
        left: 7px;
        height: 2px;
    }

    .header.is--active .header-mobile span i {
        display: none;
    }

    .header.is--active .header-mobile span:before {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 13px;
    }

    .header.is--active .header-mobile span:after {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        bottom: 13px;
        left: 7px;
    }

    .header-mobile span {
        position: relative;
        width: 30px;
        height: 24px;
    }

    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        opacity: 0;
        visibility: hidden;
        transition: opacity .35s ease;
        z-index: 900;
    }

    .header.is--active .mobile-overlay {
        opacity: 1;
        visibility: visible;
    }

    .header-mobile span::before,
    .header-mobile span::after,
    .header-mobile span i {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background: #fff;
        border-radius: 3px;
        transition: .3s ease;
    }

    .header-mobile span i {
        top: 10px;
    }

    .header-mobile span::before {
        top: 0;
    }

    .header-mobile span::after {
        bottom: 0;
    }

    .header-mobileElem {
        position: fixed;
        display: block;
        top: 0;
        right: 0;
        width: 260px;
        height: 100vh;
        background: #fff;
        padding: 40px 20px;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        -webkit-transition: .1s ease;
        transition: .2s ease;
        z-index: 1000;
    }

    .header.is--active .header-mobileElem {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .header-menu {
        flex-direction: column;
        gap: 20px;
    }

    .header-menu a {
        font-size: 22px;
        color: #000;
        text-decoration: none;
    }

    .header-mobileElem::after {
        content: '';
        position: fixed;
        inset: 0;
        background: #ffffff;
        opacity: 0;
        pointer-events: none;
        transition: .35s ease;
    }

    .header.is--active .header-mobileElem::after {
        opacity: 1;
        pointer-events: auto;
    }

    body.overflow {
        overflow: hidden;
    }

    .contactsTop-img {
        width: 768px;
        right: 0;
    }

    .contactsTop h1 {
        font-size: 40px;
        text-align: center;
        max-width: 310px;
        margin: 0 auto;
    }

    .contactsTop h1 span {
        display: inline-block;
    }

    .contactsTop {
        margin: 0;
    }

    .contactsTop-img:after {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    }

    .contactsTop h5 {
        margin: 65px auto 30px;
        text-align: center;
        font-size: 20px;
    }

    h2 {
        font-size: 36px;
    }

    .contactsTeam-title h2 {
        text-align: center;
    }

    .contactsTeam-list li {
        width: 300px;
    }

    .contactsTeam-list__linksItem i {
        font-size: 7px;
    }

    .contactsTeam-list__text b {
        position: relative;
        top: 40px;
        margin-top: auto;
        margin-bottom: auto;
    }

    .contactsTeam-list__links {
        margin-top: 0;
    }

    .contactsTeam {
        padding-top: 40px;
    }

    .contactsTeam-title {
        height: unset;
        margin: 90px 0;
    }

    .footer-menu {
        column-count: 3;
        column-gap: 60px;
        display: block;
    }

    .footer-menu li {
        break-inside: avoid;
        margin-bottom: 16px;
        margin-left: unset;
    }

    .greyForm-text p {
        font-size: 18px;
    }

    .errorPage-content__text p {
        font-size: 20px;
    }

    .career-form {
        flex-direction: column;
    }

    .formImg {
        height: 355px;
        position: relative;
        width: 100%;
    }

    .formImg img {
        top: 50%;
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .formForm {
        width: 100%;
    }

    .planeForm {
        width: 190px;
        bottom: 0;
    }

    .careerTop h1 {
        font-size: 46px;
    }

    .vacancy-text {
        font-size: 26px;
    }

    .servicesTabs-content {
        opacity: 0;
        height: 0;
        display: block;
        padding: 0;
        transition: all 0.2s linear;
    }

    .servicesTabs-content.is-active {
        display: block;
        height: auto;
        padding: 35px 40px;
        opacity: 1;
        margin-bottom: 20px;
    }

    .servicesTabs-item {
        margin-bottom: 30px;
    }

    .servicesTabs-content__text {
        max-width: 100%;
    }

    .servicesTabs-left {
        width: 100%;
        margin-right: unset;
    }

    .servicesTabs-right {
        display: none;
    }

    .servicesTabs-item:before {
        font-size: 18px;
    }

    .servicesTabs-item h5 {
        font-size: 22px;
    }

    .servicesTabs-item.is-active svg {
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    .servicesTabs-item {
        padding: 20px 35px;
    }

    .info h3 {
        font-size: 36px;
        font-weight: 600;
    }

    .info-right {
        font-size: 18px;
        line-height: 120%;
    }

    .careerVacancy-list__item {
        width: 335px;
        margin-right: 20px;
    }

    .careerVacancy-list__text {
        display: none;
        visibility: hidden;
    }

    .careerVacancy-list .slick-prev {
        left: 50%;
        transform: translateX(-155px);
        background: url("../images/arr-left-w.svg") no-repeat center / 43px 19px;
    }

    .careerVacancy-list .slick-next {
        left: 50%;
        transform: translateX(14px);
        background: url("../images/arr-right-w.svg") no-repeat center / 43px 19px;
    }

    .careerVacancy-list .slick-arrow:hover {
        background-color: var(--white-color);
        border-color: var(--white-color);
    }

    .careerVacancy-list .slick-next:hover {
        background-image: url("../images/arr-right.svg");
    }

    .careerVacancy-list .slick-prev:hover {
        background-image: url("../images/arr-left.svg");
    }

    .careerVacancy-list .slick-arrow {
        position: absolute;
        width: 141px;
        height: 52px;
        border: 2px solid var(--white-color);
        border-radius: 49px;
        padding: 0;
        cursor: pointer;
        z-index: 10;
        font-size: 0;
        transition: all 0.3s ease;
        bottom: -10px;
    }

    .careerVacancy-list .btn-card {
        margin-top: auto;
    }

    .careerVacancy-list__item {
        display: flex;
        flex-direction: column;
    }

    .careerVacancy-list__op {
        margin-bottom: 30px;
    }

    .careerVacancy-list__item {
        width: 335px;
    }

    .blogTop {
        margin-top: unset;
        height: unset;
        overflow: unset;
        padding: 0;
    }

    .blogTop-img {
        position: unset;
        height: 250px;
        transform: unset;
    }

    .blogTop h1 {
        font-size: 42px;
        line-height: 120%;
        margin-bottom: 30px;
        text-align: center;
    }


    .blogTop {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .blogTop-img:before {
        display: none;
    }

    .blog .blogTags {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .blog .blogPreview-tag, .blog .btnPos .btn {
        display: none;
    }

    .blogPreview-date {
        margin: 20px auto;
    }

    .blogPreview,
    .blogList-blog li {
        flex-direction: column;
        border: 1px solid var(--white-color);
        border-radius: 12px;
        padding: 15px;
    }

    .blogPreview-text, .blogList-text {
        order: 2;
    }

    .blogList-text span, .blogPreview-date {
        color: #595959;
        margin: 0;
    }

    .blogList-text span, .blogPreview-date {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 15px;
        width: 100%;
    }

    .blogList-btn {
        width: 150px;
        height: 35px;
        font-size: 12px;
        border-radius: 20px;
        background: var(--pink-color);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white-color);
    }

    .blogPreview-date {
        order: 3;
    }

    .blogPreview-text h5 {
        order: 1;
    }

    .blogPreview-text p {
        order: 2;
    }

    .blogPreview-img {
        margin-bottom: 28px;
    }

    .blogPreview-img, .blogList-img {
        order: 1;
        margin-top: unset;
        box-shadow: unset;
        border-radius: 12px;
        margin-left: unset;
        width: 100%;
        height: 300px;
    }

    .blogList-img img {
        max-width: unset;
        width: 100%;
    }

    .blogList {
        margin-top: 15px;
        margin-bottom: 80px;
    }

    .blogPreview-text h5, .blogList-text b {
        font-size: 16px;
        text-transform: uppercase;
        font-weight: 500;
    }

    .blogList-text span, .blogList-text p {
        line-height: 150%;
    }

    .blogList-blog li {
        width: 100%;
        margin-bottom: 15px;
    }


    .blogTags span {
        margin-bottom: 15px;
    }

    .blogTop p {
        line-height: 140%;
    }

    .blogTop-content .btn {
        margin-top: 50px;
    }

    .blogTop-content {
        max-width: 330px;
        height: unset;
    }

    .sources-text {
        padding-top: 100px;
    }

    .service-list li {
        width: 260px;
    }

    .service-list__text {
        font-size: 14px;
    }

    .service-list li:first-child:after {
        height: 90px;
    }

    .service-list li:nth-child(2):after {
        bottom: 90px;
    }

    .img-bottomRight {
        width: 200px;
    }

    .blockTop-btn {
        display: none;
    }

    .blockTop-text {
        justify-content: center;
        font-size: 14px;
        max-width: 390px;
        margin-left: auto;
        margin-right: auto;
    }

    .blockTop-text .simple--list {
        max-width: 90%;
    }

    .about .info p, .sources-text .info-right p, .trust-title span {
        font-size: 24px;
        line-height: 125%;
    }

    .trust-logos {
        margin-top: 40px;
    }

    .about {
        padding-bottom: 80px;
    }

    .trust-title h2, .info-left h2, .sources-text .info-left h3 {
        font-size: 80px;
    }

    .blockTop-img {
        height: 620px;
    }

    .blockTop-img video {
        height: 100%;
        width: auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .home .info {
        margin-top: 0;
    }

    .about .btn {
        top: -170px;
    }

    .blogList .word-roles {
        margin: 25px 0;
    }

    .blogList {
        padding-bottom: 40px;
    }

    .blog .blogList .blogList-blog {
        flex-direction: column;
    }

    .blogList-btn {
        display: flex;
    }

    .form-message {
        position: relative;
    }

}

@media screen and (max-width: 650px) {
    .about .info p a {
        display: none;
    }

    .footer-menu {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 40px;
        margin-top: 40px;
        text-align: center;
    }

    .blogPreview-img, .blogList-img {
        height: 130px;
    }

    .footer-menu li {
        font-size: 20px;
        font-weight: 300;
        margin-bottom: 20px;
    }

    .footer-bottom {
        position: relative;
        padding-bottom: 80px;
    }

    .footer-links {
        position: absolute;
        bottom: 40px;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        flex-flow: row wrap;
        gap: 8px 16px;
    }

    .planeForm {
        width: 130px;
    }

    .formImg {
        height: 295px;
    }

    .formImg img {
        top: 40%;
        height: auto;
    }

    .casesTop-number {
        margin-right: 10px;
        width: calc(50% - 40px);
    }

    .casesTop-text p {
        font-size: 13px;
        max-width: 210px;
    }

    .caseTitle .word-roles {
        display: none;
    }

    .blogTags.caseTags {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .caseTags.blogTags span {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .blogTags.caseTags span {
        font-size: 14px;
    }

    .blogTags.caseTags i {
        margin-right: 10px;
    }

    .caseTitle h2 {
        margin-left: auto;
    }


    .greyForm-form input {
        font-size: 14px;
    }

    .info {
        flex-direction: column;
    }

    .info p {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .info-right {
        max-width: 100%;
        margin-top: 40px;
        order: 2;
    }

    .careerTopMain .word-roles {
        bottom: -15px;
    }

    .careerRoles, .about {
        padding-bottom: 80px;
        margin-bottom: 80px;
    }

    .careerRoles + .black-bg {
        margin-top: -80px;
    }

    .careerTopMain .careerTop-text {
        font-size: 18px;
    }

    .careerForm-subtitle {
        font-size: 20px;
    }

    .careerForm h3 {
        font-size: 36px;
    }

    .info {
        margin-top: 160px;
    }

    .home .service .word-roles {
        bottom: 50px;
    }

    .home .bg-black:before {
        top: -80px;
    }

    .service-list {
        display: flex;
        overflow-x: scroll;
        padding-bottom: 20px;
        margin-left: -15px;
        margin-right: -15px;
    }

    .service-list li {
        flex-shrink: 0;
        margin-right: 45px;
    }

    .service-list__content {
        height: 100%;
    }

    .service-list li:nth-child(even), .service-list li:nth-child(3), .service-list li:nth-child(4) {
        margin-top: unset;
    }

    .service-list li:nth-child(even) {
        margin-left: unset;
    }

    .service-list li:first-child:after {
        display: none;
    }

    .service-list li:first-child:before {
        right: -25px;
    }

    .service-list li:nth-child(2)::before, .service-list li:nth-child(3)::before, .service-list li:nth-child(4)::before {
        left: unset;
        right: -25px;
    }

    .swiper-slide.swiper-slide-active {
        width: 350px !important;
    }

    .sources-swiper,
    .sources-slider {
        padding-bottom: 170px;
    }

    .sources-swiper .swiper-button-arrow,
    .sources-slider .slick-arrow {
        bottom: 40px;
    }

    .trust-logos img {
        max-width: unset;
        width: 720px;
    }

    .blogInner h1 {
        font-size: 38px;
    }

    .blogInner-text {
        max-width: unset;
    }

    .blogInner .arrow-back {
        display: none;
    }

    .sources-swiper,
    .sources-slider {
        padding-bottom: 140px;
    }

    .home .btnPos .btn {
        top: -90px;
    }

    .sources-swiper .swiper-slide-active .slide-top__img {
        flex-shrink: 0;
    }

    .trust {
        background-size: 1260px auto;
        position: relative;
    }

    .trust-logos {
        z-index: 2;
    }

    .trust:after {
        content: '';
        width: 100%;
        height: 510px;
        background: #000;
        position: absolute;
        bottom: 100px;
        left: 0;
        z-index: 1;
    }

    .servicesCard {
        padding-top: 120px;
    }

    .sources-text .info-right, .trust-title span {
        order: 2;
    }

    .trust-title span {
        margin-top: 30px;
    }

    .info-left, .trust-title h2 {
        order: 1;
    }

    .home .logo-bg-grey {
        display: none;
    }

    .sources-slider .slick-current .slide-content {
        padding: 25px 20px;
        width: 290px;
    }

    .trust {
        padding-top: 90px;
    }

    a:not(.servicesTabs-content__btn):hover {
        color: var(--black-color);
        text-decoration: underline;
    }

    .blog .blogTags {
        grid-template-columns: repeat(3, 1fr);
    }

    .blogTags span {
    }

    .blogTags span:after {
        display: none !important;
    }

    .blogList {
        margin-top: 15px;
    }

    .scroll-memory-btn {
        right: 15px;
    }

    .careerVacancy-list .slick-arrow {
        bottom: 0;
    }

    .blogTags {
        object-fit: contain
    }
}

@media screen and (max-width: 550px) {
    .careerTop-inner .vacancy-title {
        margin-bottom: 50px;
    }

    .careerTop-inner .btnPos .btn {
        top: -80px;
        width: 195px;
    }

    .careerTop-inner .careerTop {
        padding-bottom: 85px;
    }

    .careerTop-inner .white-bg {
        padding-top: 0;
    }

    .careerTopMain .careerTop h1 {
        margin-top: 10px;
    }

    .caseTitle {
        margin-bottom: 40px;
    }

    .blogTags.caseTags {
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .blogTags.caseTags {
        gap: 5px;
    }

    .caseTags.blogTags span {
        margin-bottom: 0;
    }

    .careerVacancy {
        padding: 90px 0;
    }

    .careerTopMain .black-bg:before {
        bottom: -40px;
    }

    .contacts .wrap {
        position: relative;
    }

    .img-bottomRight {
        width: 200px;
        right: -90px;
    }

    .case-studies__content--img img {
        width: 100%;
    }

    .sources-swiper .swiper-slide:not(.swiper-slide-active) .slide-top__img {
        width: 290px;
        height: 100%;
    }

    .paginationBlock ul.pagination li.pagination-item .page-numbers:not(.dots) {
        width: 50px;
        height: 50px;
    }

    .paginationBlock ul.pagination li.pagination-item .page-numbers:not(.dots):not(.prev):not(.next), .paginationBlock ul.pagination li.pagination-item .page-numbers.dots {
        width: 40px;
        height: 40px;
    }

    .paginationBlock ul.pagination li.pagination-item .page-numbers.dots {
        font-size: 30px;
    }

    .greyForm {
        flex-direction: column;
        padding: 10px;
    }

    .greyFormImg {
        order: 1;
        width: 100%;
        max-width: unset;
        height: 215px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .greyFormImg img {
        object-fit: cover;
    }

    .greyForm-text {
        order: 2;
        margin-left: 20px;
        align-self: flex-start;
        margin-top: 40px;
        margin-bottom: 40px;
        margin-right: 20px;
    }

    .greyForm-social a {
        width: 90px;
        height: 90px;
    }

    .greyForm-social a svg {
        max-width: 40px;
        max-height: 40px;
    }

    .greyForm-social {
        justify-content: center;
    }

    h3 {
        font-size: 36px;
    }

    .info {
        margin-top: 0;
    }

    body, .footer-email a {
        font-size: 18px;
    }

    .contactsTop-img {
        right: -150px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid var(--black-color);
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        padding-bottom: 0;
    }

    .footer-email {
        order: 1;
    }

    .footer-social {
        order: 2;
        margin: 30px 0;
    }

    .footer-links {
        position: unset;
        order: 3;
    }

    .errorPage-content h1 {
        font-size: 185px;
    }

    .errorPage-lenta {
        width: 840px;
        max-width: unset;
        left: -150px;
    }

    .casesTop-text h1 {
        font-size: 71px;
    }

    .casesTop .w-50p {
        width: 100%;
    }

    .casesTop-absolute {
        flex-direction: column;
    }

    .casesTop-left__item {
        height: 230px;
    }

    .casesTop-number {
        flex-direction: row;
        align-items: flex-start;
    }

    .casesTop-number__second {
        margin: 0 20px;
    }

    .casesTop-number__first {
        margin-right: 0;
    }

    .casesTop-number {
        margin-right: unset;
        position: absolute;
        left: 15px;
        right: 15px;
        top: 255px;
        width: unset;
    }

    .casesTop-number__item {
        align-items: center;
    }

    .casesTop-number__item p {
        font-size: 10px;
        align-self: center;
        text-align: center;
    }

    .casesTop-number__item b {
        font-size: 48px;
        text-align: center;
    }

    .casesTop-absolute + .container {
        flex-direction: column;
    }

    .casesTop-text {
        align-items: center;

        width: 100%;
        margin-top: 22px;
        height: unset;
    }

    .casesTop-left__item:last-of-type {
        margin-top: 150px;
        margin-right: 15px;
    }

    .casesTop-left__item:first-of-type {
        border-radius: 40px 0 0 40px;
        border-right: unset;
        border-left: 1px solid var(--white-color);
        margin-left: 15px;
    }

    .casesTop-text h1 i {
        top: 18px;
        left: 150px;
    }

    .casesTop-text p {
        font-size: 11px;
        max-width: 220px;
    }

    .caseTop-btn {
        margin-left: auto;
        margin-top: 311px;
        margin-right: auto;
        left: -15px;
    }

    .casesTop-right {
        display: none;
    }

    .caseTitle {
        padding-top: 100px;
    }

    .casesTop:before {
        width: 346px;
        height: 678px;
        bottom: -45%;
    }

    .block-title {
        font-size: 36px;
    }

    .careerTopMain .white-bg:before, .white-bg:before {
        background-size: 1000px auto;
        top: -89px;
        height: 90px;
    }

    .blockPreTitle {
        font-size: 20px;
        margin-bottom: 48px;
        margin-top: 78px;
        position: relative;
        color: var(--white-color);
    }

    .blockSubtitle {
        margin-bottom: 40px;
    }

    .formForm label {
        font-size: 17px;
    }

    .case-studies .slick-arrow {
        bottom: 170px;
    }

    .btnPos .btn {
        top: -210px;
    }

    .logo-bg-grey {
        width: 110%;
        top: 25px;
    }

    .case-studies {
        padding-bottom: 260px;
    }

    .form-row {
        flex-direction: column;
    }

    .form-field:first-of-type {
        margin-bottom: 18px;
    }

    .form-row .form-field {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .form-row--checkbox .checkbox {
        font-size: 12px;
    }

    .captcha {
        height: auto;
        width: 100%;
    }

    .btn-send {
        height: 56px;
        width: 100%;
    }

    .btn-send {
        margin-left: unset;
        margin-top: 18px;
    }

    .formImg {
        height: 215px;
    }

    .formForm {
        margin: 20px 0;
    }

    .caseTop-video__slider .slick-next {
        right: 35%;
    }

    .caseTop-video__slider .slick-prev {
        right: 55%;
    }

    .careerTop h1 {
        font-size: 36px;
        margin-top: 60px;
    }

    .vacancy-title img {
        width: 40px;
    }

    .vacancy-title img {
        margin-right: 15px;
    }

    .vacancy-date {
        margin-top: 10px;
    }

    .vacancy-text {
        font-size: 18px;
    }

    .vacancy-text .simple--list {
        margin: 40px 0;
    }

    .vacancy-date {
        font-size: 14px;
        height: 32px;
        border-radius: 32px;
        line-height: 32px;
    }

    .services-top .btn {
        margin-left: auto;
        margin-right: auto;
        top: 260px;
        width: 180px;
    }

    .services-top h1 {
        font-size: 44px;
        text-align: center;
    }

    .services-top__text {
        font-size: 14px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .services-top {
        padding-bottom: 350px;
    }

    .services-top__img {
        right: -80px;
        top: 160px;
    }

    .services-top:after {
        bottom: -300px;
        width: 550px;
    }

    .services-top__img--lenta {
        width: 890px;
    }

    .servicesCard {
        background-size: 1140px;
        margin-bottom: 100px;
        margin-top: -100px;
    }

    .servicesCard:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 500px;
        bottom: 0;
        left: 0;
        background: var(--black-color);
        border-radius: 0 0 40px 40px;
    }

    .careerTop h1 span {
        padding: 15px 0;
    }

    .black-bg {
        background-size: 640px auto;
    }

    .black-bg:after {
        border-radius: 0 0 40px 40px;
        top: 40px;
    }

    .black-bg:before {
        width: 220px;
    }

    .sources-swiper .swiper-slide-active .slide-content,
    .sources-slider .slick-current .slide-content {
        width: 100%;
    }

    .sources-swiper .swiper-slide:not(.swiper-slide-active) .slide-top__img {
        max-height: 50px;
        margin-left: 1px;
    }

    .sources-swiper .swiper-slide, .sources-slider .slick-slide {
        margin: 0;
    }

    .sources-swiper .swiper-slide .slide-content, .sources-slider .slick-slide .slide-content {
        min-width: 32px;
    }

    .sources-swiper .slide-top__img,
    .sources-slider .slide-top__img {
        width: 53px;
        height: 53px;
        border-radius: 15px;
        flex-shrink: 0;
        margin-left: 10px;
    }

    .sources-swiper .swiper-slide-active .slide-top__img {
        height: 53px;
    }

    .sources-swiper .swiper-slide,
    .sources-slider .slick-slide {
        border-radius: 20px;
    }

    .sources-swiper h5,
    .sources-slider h5 {
        font-size: 30px;
    }

    .sources-text .info-left h3 {
        font-size: 85px;
    }

    .blockTop-img {
        height: 460px;
    }

    .img-topLeft {
        width: 106px;
        height: 175px;
    }

    .top-shadow {
        width: 192px;
        height: 257px;
    }

    .home .white-bg:before {
        top: -90px;
        background: url("../images/white-elem-sm.png") no-repeat top center;
        background-size: 100% auto;
    }

    .home .bg-black:before {
        background: url("../images/black-elem-sm.png") no-repeat top center;
        background-size: 100% auto;
        top: -190px;
    }

    .home .trust {
        background-image: url("../images/black-elem2-sm.png");
        background-size: 100% auto;
    }

    .service {
        z-index: 99;
        margin-top: 120px;
    }

    .service-list {
        padding-top: 60px;
        margin-top: -80px;
    }

    .home .info {
        margin-top: -80px;
    }

    .home .service .word-roles {
        bottom: 190px;
        font-size: 20px;
    }

    .scroll-memory-btn {
        bottom: 70px;
    }

    .word-roles img {
        width: 20px;
    }

    .home .btn {
        width: 200px;
        top: -200px;
    }

    .home .blockTop-text {
        margin-bottom: 190px;
    }

    .home .white-bg .content-logo {
        top: unset;
        width: 160px;
        margin: -100px auto 0;
    }

    .home .white-bg {
        margin-top: 0;
        padding-top: 0;
    }

    .blockPreTitle {
        color: var(--pink-color);
        margin-top: 20px;
        font-size: 30px;
    }

    .servicesForm {
        padding-top: 80px;
    }

    .home .word-roles {
        font-size: 30px;
    }

    .trust {
        background-size: 1000px auto;
        position: relative;
        padding-top: 10px;
    }

    .trust:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 90%;
        display: block;
        background: linear-gradient(
                to top,
                #101010 90%,
                rgba(16, 16, 16, 0) 100%
        );
        bottom: 0;
        left: 0;
    }

    .trust a,
    .trust .container {
        z-index: 2;
    }

    .trust-logos {
        z-index: 2;
        position: relative;
    }

    .trust-title h2, .info-left h2, .sources-text .info-left h3 {
        font-size: 50px;
    }

    .home .btnPos .btn {
        margin-top: 0;
        margin-bottom: 50px;
        top: -290px;
    }

    .sources-swiper,
    .sources-slider {
        padding-bottom: 150px;
    }

    .sources-swiper .swiper-button-arrow,
    .sources-slider .slick-arrow {
        bottom: 50px;
    }

    .blogInner-img {
        height: 265px;
    }

    .blogInner .blogPreview-date {
        margin: 20px 0 25px;
    }

    .blog .btnPos .btn {
        margin-top: unset;
        margin-bottom: 40px;
    }

    .serivices-title {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .serivices-title h5 {
        text-align: left;
        max-width: unset;
        margin-top: 15px;
    }

    .caseTop-video__slider,
    .caseTop-video__slider .slick-list,
    .caseTop-video__slider .slick-track {
        height: 100%;
    }

    .caseTop-video__slider .slick-slide {
        position: relative;
        height: 100%;
    }

    .caseTop-video video {

        object-fit: cover;
        height: 100%;
    }

    .blogTags.caseTags span i img {
        max-width: 40px;
    }

    .blogTags.caseTags i {
        width: 42px;
        height: 42px;
    }
}

@media screen and (max-width: 380px) {
    .blogTags.caseTags {
        grid-template-columns: repeat(2, 1fr);
    }

    .caseTags.blogTags span {
        justify-content: flex-start;
    }

    .blogTop h1 {
        font-size: 38px;
    }

    .errorPage-content h1 {
        font-size: 160px;
    }

    .casesTop-number__item b {
        font-size: 38px;
    }

    .servicesTabs-content__top h5 {
        font-size: 14px;
    }

    .servicesTabs-content__text {
        font-size: 12px;
    }

    .servicesTabs-content__top span {
        width: 58px;
        height: 58px;
    }

    .services-top__img--lenta {
        width: 750px;
    }

    .services-top .btn {
        top: 200px;
    }

    .services-top {
        padding-bottom: 250px;
    }

    .services-top h1 {
        font-size: 36px;
    }

    .servicesTabs-content {
        padding: 15px 20px;
    }

    .servicesCard, .serivices-title {
        margin-bottom: 60px;
    }

    .careerVacancy {
        padding-top: 90px;
    }

    .careerVacancy-list__item {
        width: 280px;
        padding: 20px;
    }

    .careerVacancy-list__top {
        flex-direction: column;
        margin-top: 20px;
    }

    .careerVacancy-list__top span {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .careerVacancy-list__op {
        max-width: 100%;
        font-size: 12px;
    }

    .careerVacancy-list__top span:not(:last-of-type) {
        margin-right: unset;
        margin-bottom: 5px;
    }

    .sources-swiper h5, .sources-slider h5, .blogInner-text h2 {
        font-size: 24px;
    }

    .blogInner-text {
        font-size: 12px;
    }

    .blogList .word-roles {
        font-size: 32px;
    }

    .blogPreview-title i, .blogTags span i {
        margin-right: 10px;
    }

    .paginationBlock ul.pagination li.pagination-item .page-numbers:not(.dots):not(.prev):not(.next) {
        font-size: 14px;
    }

    .paginationBlock ul.pagination li.pagination-item .page-numbers:not(.dots):not(.prev):not(.next), .paginationBlock ul.pagination li.pagination-item .page-numbers.dots {
        width: 35px;
        height: 35px;
    }

    .paginationBlock ul.pagination li.pagination-item .page-numbers:not(.dots) {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 340px) {
    .blog .blogTags {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .blogPreview-img {
        height: 215px;
    }


    .swiper-slide.swiper-slide {
        width: 100px;
    }

    .swiper-slide.swiper-slide-active {
        width: 300px !important;
    }
}