@font-face {
    font-family: SFProDisplay;
    src: url(../fonts/sfpro/SFProDisplay-Regular.ttf);
    font-weight: normal;
}
@font-face {
    font-family: SFProDisplay;
    src: url(../fonts/sfpro/SFProDisplay-Medium.ttf);
    font-weight: 600;
}
@font-face {
    font-family: SFProDisplay;
    src: url(../fonts/sfpro/SFProDisplay-Bold.ttf);
    font-weight: 700;
}
@font-face {
    font-family: SFProDisplay;
    src: url(../fonts/sfpro/SFProDisplay-Semibold.ttf);
    font-weight: 800;
}
* {
    outline: none;
}
body {
    display: block;
    margin: 0;
    font-family: SFProDisplay;
    font-weight: normal;
    font-size: 18px;
}
section,
header,
footer {
    padding: 0 15px;
}
h2 {
    font-size: 40px;
    font-family: SFProDisplay;
    margin: 0;
}
h3 {
    margin: 0;
    font-size: 24px;
    font-family: SFProDisplay;
    font-weight: 600;
}
h4 {
    margin: 0;
    font-size: 18px;
    font-family: SFProDisplay;
    font-weight: 600;
}
ul {
    margin: 0;
    list-style: none;
    padding: 0;
}
p {
    margin: 0;
}
/*p {
    margin-top: 0.5em;
    margin-bottom: 1em; 
   }
*/
.underline {
    position: relative;
    margin-bottom: 50px;
    font-weight: bold;
}
.underline::after {
    content: "";
    height: 1px;
    width: 410px;
    position: absolute;
    left: 0;
    bottom: -50px;
    background-color: #fff;
}
.header_section {
    margin-top: 50px;
    display: flex;
}
.header {
    display: flex;
    width: 100%;
}
.logo {
    width: 33.33%;
}
.nav {
    display: flex;
    flex: 1 1 51.6vw;
}
.nav ul {
    display: flex;
    align-items: center;
    width: 100%;
}
.nav ul li:not(:last-child) {
    padding-right: 25px;
}
.nav ul a {
    color: #000;
    text-decoration: none;
    position: relative;
}
.nav ul li:nth-child(5) {
    flex: 1;
    text-align: end;
}
.nav ul li:last-child a {
    padding: 0;
    text-align: right;
    color: #557dfc;
    font-weight: bold;
}

.nav ul li a::after {
    content: "";
    position: absolute;
    width: 0%;
    left: 0;
    bottom: -5px;
    height: 1px;
    background-color: black;
    transition: all 0.2s;
}
.nav ul li:last-child a::after {
    background-color: #557dfc;
}
.nav ul li a:hover::after {
    width: 100%;
}

.nav-2 ul li:nth-child(1) a {
    font-weight: 600;
}

.hamburger {
    display: none;
}

.hamburger__block {
    position: absolute;
    top: -5px;
    right: 25px;
    width: 40px;
    height: 30px;
    padding: 0;
    font-size: 0;
    border: 0;
    background-color: transparent;
    cursor: pointer;
    outline: none;
}

.hamburger__block::before,
.hamburger__block::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 8px;
    width: 17px;
    height: 2px;
    background-color: #000000;
    box-shadow: 0 5px 0 0 #000000, 0 10px 0 0 #000000;
    transition: all ease-in 0.4s;
}

.hamburger__text {
    position: relative;
    font-size: 14px;
    line-height: 125%;
    top: 4px;
    cursor: pointer;
}

/* hamburger menu */
.h-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    transform: translateX(100%);
    transition: transform ease-in 0.4s;
    z-index: 100;
}

.h-menu__wrapper {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    background-color: #ffffff;
    width: 270px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 25px;
    padding-top: 50px;
    transform: translateX(100%);
    transition: transform ease-in 0.4s;
    overflow-y: scroll;
}

.h-menu__btn::before,
.h-menu__btn::after {
    content: "";
    position: absolute;
    background-color: #000000;
}

.h-menu__btn::before {
    width: 25px;
    height: 1px;
    top: 7px;
    right: -8px;
    transform: rotate(45deg);
}
.h-menu__btn::after {
    width: 25px;
    height: 1px;
    top: 7px;
    right: -8px;
    transform: rotate(-45deg);
}

.h-menu--active {
    transform: translateX(0);
}

.h-menu__wrapper--active {
    transform: translateY(0);
}

.h-menu__navblock {
    border-bottom: 1px solid #000;
    margin-bottom: 30px;
}

.h-menu .h-menu__navblock h2 {
    margin: 0;
    padding: 0;
    font-weight: 600;
    font-size: 24px;
    line-height: 125%;
    margin-bottom: 15px;
}

.h-menu__btn {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 55px;
    right: 30px;
    border: 0;
    background-color: #ffffff;
    cursor: pointer;
}

.h-menu__nav li {
    margin-bottom: 2px;
}

.h-menu__nav li:hover {
    transform: scale(1.1) translateX(20px);
    transition: all 0.3s;
}

.h-menu__nav a {
    font-weight: 400;
    font-size: 14px;
    line-height: 125%;
    text-decoration: none;
    color: #000000;
}

.h-menu__nav li:last-child {
    margin-bottom: 25px;
}

.h-menu__brief {
    cursor: pointer;
    align-items: center;
    color: #fff;
    display: flex;
    background: #2e2e2e;
    width: 100%;
    justify-content: space-around;
    padding: 21px 0;
    margin-bottom: 25px;
}

.h-menu p {
    margin: 0;
}

.h-menu__brief h2 {
    font-weight: bold;
    font-size: 18px;
    line-height: 100%;
    margin: 0;
}

.h-menu .h-menu__number {
    margin-bottom: 10px;
}

.h-menu .h-menu__mail {
    font-weight: 600;
    font-size: 14px;
    line-height: 125%;
    margin-bottom: 15px;
}

.h-menu__number a {
    color: #557dfc;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    line-height: 125%;
    position: relative;
}

.h-menu__number a::after {
    content: "";
    position: absolute;
    width: 0%;
    left: 0;
    bottom: -5px;
    height: 1px;
    background-color: #557dfc;
    transition: all 0.2s;
}

.h-menu__number a:hover::after {
    width: 100%;
}

.h-menu__socials {
    margin-bottom: 10px;
}

.h-menu__socials a {
    margin-right: 8px;
}

.h-menu__socials img:hover {
    cursor: pointer;
    filter: brightness(180%);
}

.h-menu__footer li {
    margin-bottom: 2px;
}

.h-menu__footer a {
    font-weight: 400;
    font-size: 14px;
    line-height: 125%;
    text-decoration: none;
    color: #000000;
    position: relative;
}

.h-menu__footer a::after {
    content: "";
    position: absolute;
    width: 0%;
    left: 0;
    bottom: -5px;
    height: 1px;
    background-color: #000000;
    transition: all 0.2s;
}

.h-menu__footer a:hover::after {
    width: 100%;
}

.screen-1 .body-content {
    margin-bottom: 100px;
    position: relative;
    margin-top: 87px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 90px;
    border-bottom: 1px solid #000;
}
.screen-1 .content {
    width: 50%;
    display: flex;
}
.screen-1 .left {
    flex-direction: column;
}
.screen-1 .left-text {
    width: 69%;
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.screen-1 .left-text ul li {
    display: flex;
}
.screen-1 .left-text ul li:not(:last-child) {
    padding-bottom: 25px;
}
.screen-1 .left-text ul .number {
    color: #557dfc;
    padding-right: 18px;
    display: inline-flex;
}
.screen-1 .left-text ul p {
    font-weight: normal;
}
.screen-1 .brief-btn {
    width: 91%;
}
.screen-1 .right {
    justify-content: center;
    position: relative;
}
.screen-1 .right img:first-child {
    position: absolute;
    left: 0;
    bottom: 30px;
}
.screen-1 .right img:last-child {
    position: absolute;
    right: 0;
    top: 30px;
    z-index: -1;
}
.screen-1 .mail {
    position: absolute;
    right: -62px;
    bottom: 163px;
    font-weight: 600;
    font-size: 18px;
    transform: rotateZ(-90deg);
}

.screen-1 .body-content:before {
    content: "";
    background: url(/assets/img/arr-butt.svg) no-repeat;
    width: 8px;
    height: 35px;
    position: absolute;
    bottom: -35px;
    left: 50%;
    margin-left: -4px;
}

.screen-1 .right img:nth-child(3) {
    display: none;
}

.screen-2 {
    background-color: #2e2e2e;
}
.screen-2 .body-content {
    padding: 100px 0;
    display: flex;
    position: relative;
    display: flex;
    justify-content: space-between;
}
.screen-2 .content {
    width: 45%;
}
.screen-2 .content * {
    color: #fff;
}
.screen-2 .left-block p {
    margin-top: 100px;
    max-width: 67%;
    padding-left: 110px;
    border-left: 1px solid #fff;
}
.screen-2 .block p {
    max-width: 77%;
}
.screen-2 .right-block ul {
    padding-top: 50px;
}
.screen-2 .right-block h2 {
    margin-bottom: 100px;
}
.screen-2 p {
    margin-top: 0.5em;
    margin-bottom: 1em;
}
.screen-2 .block ul li {
    padding-bottom: 30px;
    max-width: 68%;
    padding-left: 62px;
}
.screen-2 .block ul li:nth-child(1) {
    background: url(/assets/img/partners-li1.svg) no-repeat left 5px;
}
.screen-2 .block ul li:nth-child(2) {
    background: url(/assets/img/partners-li2.svg) no-repeat left 5px;
}
.screen-2 .block ul li:nth-child(3) {
    background: url(/assets/img/partners-li3.svg) no-repeat left 5px;
}
.screen-2 .block ul li:nth-child(4) {
    background: url(/assets/img/partners-li4.svg) no-repeat left 5px;
}
.screen-2 .block ul li:last-child {
    padding-bottom: 83px;
}

.screen-3 .body-content {
    padding: 80px 110px;
    background-color: #edeff4;
    margin-top: 110px;
    display: flex;
    justify-content: space-between;
}
.screen-3 .underline::after {
    background-color: #000;
    bottom: -83px;
}
.screen-3 .underline {
    margin-bottom: 83px;
}
.screen-3 .left-block {
    width: 65%;
}
.screen-3 .left-block p {
    padding-top: 25px;
    width: 50%;
}
.screen-3 .right-block li {
    max-width: 75%;
    margin-top: 0.5em;
    margin-bottom: 1em;
}
.screen-3 .right-block p {
    margin-bottom: 25px;
}
.screen-3 .right-block span {
    color: #ffcf3e;
}
.screen-3 .right-block li {
    line-height: 26px;
}

.screen-4 .body-content {
    display: flex;
    align-items: center;
    position: relative;
}
.screen-4 .content {
    width: 60%;
    display: flex;
    flex-direction: column;
    padding-left: 100px;
    margin-top: 100px;
    margin-bottom: 100px;
}
.screen-4 .list {
    flex-direction: column;
} /*34.78%*/
.screen-4 .media {
    width: 740px;
    padding-left: 140px;
} /*65.22%*/
.screen-4 h2 {
    color: #212529;
    padding-bottom: 40px;
    border-bottom: 1px solid #000;
}
.screen-4 .media img {
    max-width: 100%;
    max-height: 100%;
}
.screen-4 ul li {
    cursor: pointer;
    color: #000;
    font-weight: 600;
    font-size: 24px;
    padding: 16.1px 0;
    border-bottom: 1px solid #c4c4c4;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.screen-4 ul li p {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.screen-4 ul {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}
.screen-4 .plus-btn {
    padding: 1px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
}
.screen-4 .plus-btn::before {
    content: "+";
    top: 0;
    left: 0;
    font-size: 40px;
    font-weight: 100;
}
.screen-4 .mail {
    position: absolute;
    right: -160px;
    top: 487px;
    font-size: 70px;
    font-weight: 700;
    transform: rotateZ(-90deg);
    color: #fff;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #c4c4c4;
}
.screen-4 ul div span {
    font-weight: 700;
}

.grey-text {
    color: #212529;
}

.arrow {
    display: flex;
    position: relative;
    justify-content: flex-end;
    align-items: center;
}
.arrow::before {
    content: "";
    transition: all 0.5s;
    position: absolute;
    width: 35px;
    height: 20%;
    background-color: #fff;
}
.arrow::after {
    content: "";
    transform: rotate(-45deg);
    transition: all 0.5s;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    display: flex;
    padding: 3px;
}
.arrow-black::before {
    background-color: #000;
}
.arrow-black::after {
    border-color: #000;
}

.brief-btn {
    display: flex;
    cursor: pointer;
    transition: all 0.5s;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    padding: 21px 0;
    border: 1px solid #000;
    width: 100%;
    align-items: center;
    justify-content: space-around;
}

/*hover*/
.brief-btn:hover {
    background-color: #2e2e2e;
    color: #fff;
    border-color: #fff;
}
.brief-btn:hover .arrow-black::after {
    border-color: #fff;
}
.brief-btn:hover .arrow-black::before {
    background-color: #fff;
    width: 60px;
}

label.brief-btn {
    margin-top: 13px;
}

@media screen and (min-width: 991.98px) and (max-width: 1291.98px) {
    section,
    header,
    footer {
        padding: 0 calc(50vw - 480px);
    }

    /* header */
    .nav ul li a {
        font-size: 14px;
        line-height: 125%;
    }

    .logo {
        width: 250px;
        height: 28px;
    }

    /* .screen-1 */
    .screen-1 h2 {
        font-size: 30px;
        line-height: 100%;
        margin-bottom: 14px;
    }

    .screen-1 h4 {
        font-size: 18px;
        line-height: 125%;
        font-weight: 600;
    }

    .screen-1 ul h4 {
        font-size: 14px;
        line-height: 115%;
    }

    .screen-1 .body-content {
        margin-bottom: 100px;
        position: relative;
        margin-top: 50px;
        display: flex;
        justify-content: space-between;
        padding-bottom: 90px;
        border-bottom: 1px solid #000;
    }
    .screen-1 .content {
        width: 50%;
        display: flex;
    }
    .screen-1 .left {
        flex-direction: column;
    }
    .screen-1 .left-text {
        width: 80%;
        padding-top: 14px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .left-text > h4 {
        margin-bottom: 20px;
    }
    .screen-1 .left-text ul li {
        display: flex;
    }
    .screen-1 .left-text ul li:not(:last-child) {
        padding-bottom: 15px;
    }
    .screen-1 .left-text ul li:last-child {
        margin-bottom: 20px;
    }
    .screen-1 .left-text ul .number {
        color: #557dfc;
        padding-right: 18px;
        display: inline-flex;
    }
    .screen-1 .left-text ul p {
        font-weight: normal;
    }

    .screen-1 .brief-btn {
        width: 290px;
        padding: 18px 0;
        font-size: 14px;
        line-height: 100%;
    }

    .arrow::before {
        width: 60px;
    }

    .screen-1 .right {
        justify-content: center;
        position: relative;
        left: 48px;
    }
    .screen-1 .right img:first-child {
        position: absolute;
        left: 0;
        bottom: 30px;
        height: 120px;
    }

    .screen-1 .right img:nth-child(2) {
        height: 325px;
    }

    .screen-1 .right img:last-child {
        position: absolute;
        right: 40px;
        top: 30px;
        z-index: -1;
        height: 195px;
    }
    .screen-1 .mail {
        display: none;
    }
    .screen-1 .body-content:before {
        content: "";
        background: url(/assets/img/arr-butt.svg) no-repeat;
        width: 8px;
        height: 35px;
        position: absolute;
        bottom: -35px;
        left: 50%;
        margin-left: -4px;
    }

    /* .screen-2 */
    .screen-2 {
        background-color: #2e2e2e;
    }
    .screen-2 .body-content {
        padding: 100px 0;
        display: flex;
        position: relative;
        display: flex;
        justify-content: space-between;
    }
    .screen-2 .content {
        width: 45%;
    }
    .screen-2 .content * {
        color: #fff;
    }
    .screen-2 .left-block p {
        margin-top: 85px;
        max-width: 80%;
        padding-left: 50px;
        border-left: 1px solid #fff;
    }

    .screen-2 .left-block img {
        width: 418px;
    }

    .screen-2 .block p {
        max-width: 90%;
    }
    .screen-2 .right-block ul {
        padding-top: 40px;
    }
    .screen-2 .right-block h2 {
        margin-bottom: 30px;
        font-size: 30px;
        line-height: 100%;
    }

    .screen-2 .right-block .block:last-child h2 {
        margin-bottom: 80px;
    }

    .underline {
        position: relative;
        margin-bottom: 0px;
    }
    .underline::after {
        content: "";
        height: 1px;
        width: 410px;
        position: absolute;
        left: 0;
        bottom: -40px;
        background-color: #fff;
    }
    .screen-2 p {
        margin-top: 0.5em;
        margin-bottom: 1em;
        font-size: 14px;
        line-height: 115%;
    }
    .screen-2 .block ul li {
        padding-bottom: 30px;
        max-width: 68%;
        padding-left: 62px;
        font-size: 14px;
        line-height: 115%;
    }
    .screen-2 .block ul li:nth-child(1) {
        background: url(/assets/img/partners-li1.svg) no-repeat left 5px;
    }
    .screen-2 .block ul li:nth-child(2) {
        background: url(/assets/img/partners-li2.svg) no-repeat left 5px;
    }
    .screen-2 .block ul li:nth-child(3) {
        background: url(/assets/img/partners-li3.svg) no-repeat left 5px;
    }
    .screen-2 .block ul li:nth-child(4) {
        background: url(/assets/img/partners-li4.svg) no-repeat left 5px;
    }
    .screen-2 .block ul li:last-child {
        padding-bottom: 40px;
    }

    /* .screen-3 */
    .screen-3 .body-content {
        padding: 70px 50px;
        background-color: #edeff4;
        margin-top: 110px;
        display: flex;
        justify-content: space-between;
    }
    .screen-3 .underline::after {
        background-color: #000;
        bottom: -118px;
        width: 346px;
    }
    .screen-3 .underline {
        margin-bottom: 118px;
    }
    .screen-3 .left-block {
        min-width: 346px;
        margin-right: 80px;
    }

    .screen-3 .left-block h2 {
        font-size: 30px;
        line-height: 100%;
    }

    .screen-3 .left-block p {
        padding-top: 25px;
        width: 100%;
        max-width: 240px;
        font-size: 14px;
        line-height: 115%;
    }
    .screen-3 .right-block li {
        max-width: 100%;
        margin-top: 0.5em;
        margin-bottom: 1em;
        font-size: 18px;
        line-height: 125%;
    }
    .screen-3 .right-block p {
        margin-bottom: 25px;
        font-size: 18px;
        line-height: 125%;
    }
    .screen-3 .right-block span {
        color: #ffcf3e;
    }
    .screen-3 .right-block li:last-child {
        margin-bottom: 0;
    }

    /* .screen-4 */
    .screen-4 .body-content {
        display: flex;
        align-items: center;
        position: relative;
    }
    .screen-4 .content {
        width: 60%;
        display: flex;
        flex-direction: column;
        padding-left: 50px;
        margin-top: 100px;
        margin-bottom: 50px;
    }
    .screen-4 .list {
        flex-direction: column;
    } /*34.78%*/
    .screen-4 .media {
        width: 740px;
        padding-left: 140px;
    } /*65.22%*/
    .screen-4 h2 {
        color: #212529;
        padding-bottom: 40px;
        border-bottom: 1px solid #000;
        font-size: 30px;
        line-height: 100%;
    }
    .screen-4 .media img {
        max-width: 100%;
        max-height: 100%;
    }
    .screen-4 ul li {
        cursor: pointer;
        color: #000;
        font-weight: 600;
        font-size: 24px;
        padding: 0px 0;
        border-bottom: 1px solid #c4c4c4;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 18px;
        line-height: 125%;
    }
    .screen-4 ul li p {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 0;
    }
    .screen-4 ul {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: space-between;
    }
    .screen-4 .plus-btn {
        padding: 1px;
        position: relative;
        background: none;
        border: none;
        cursor: pointer;
    }
    .screen-4 .plus-btn::before {
        content: "+";
        top: 0;
        left: 0;
        font-size: 40px;
        font-weight: 100;
    }
    .screen-4 .mail {
        position: absolute;
        right: -120px;
        top: 375px;
        font-size: 48px;
        font-weight: 700;
        transform: rotateZ(-90deg);
        color: #fff;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: #c4c4c4;
    }
    .screen-4 ul div span {
        font-weight: 700;
    }
}

@media screen and (min-width: 767.98px) and (max-width: 991.98px) {
    section,
    header,
    footer {
        padding: 0 calc(50vw - 360px);
    }

    /* header */
    .header .logo {
        width: 22.5%;
    }

    .header .logo img {
        max-height: 28px;
    }

    .logo {
        width: 17%;
        margin-right: 115px;
    }

    .hamburger {
        display: block;
        position: relative;
    }

    .header .nav ul li:last-child {
        position: relative;
        right: 50px;
        bottom: 2px;
    }

    .nav ul {
        justify-content: flex-end;
    }
    .header_section .nav ul li:not(:last-child) {
        display: none;
    }
    .nav ul li a {
        font-size: 14px;
    }

    /* .screen-1 */
    .screen-1 h2 {
        font-size: 24px;
        line-height: 100%;
        margin-bottom: 14px;
    }

    .screen-1 h4 {
        font-size: 16px;
        line-height: 115%;
        font-weight: 600;
    }

    .screen-1 ul h4 {
        font-size: 14px;
        line-height: 115%;
    }

    .screen-1 .body-content {
        margin-bottom: 100px;
        position: relative;
        margin-top: 40px;
        display: flex;
        justify-content: space-between;
        padding-bottom: 90px;
        border-bottom: 1px solid #000;
    }
    .screen-1 .content {
        width: 50%;
        display: flex;
    }
    .screen-1 .left {
        flex-direction: column;
    }
    .screen-1 .left-text {
        width: 100%;
        padding-top: 14px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .left-text > h4 {
        margin-bottom: 20px;
    }
    .screen-1 .left-text ul li {
        display: flex;
    }
    .screen-1 .left-text ul li:not(:last-child) {
        padding-bottom: 15px;
    }
    .screen-1 .left-text ul li:last-child {
        margin-bottom: 20px;
    }
    .screen-1 .left-text ul .number {
        color: #557dfc;
        padding-right: 18px;
        display: inline-flex;
    }
    .screen-1 .left-text ul p {
        font-weight: normal;
    }

    .screen-1 .brief-btn {
        width: 240px;
        padding: 15px 0;
        font-size: 14px;
        line-height: 100%;
    }

    .arrow::before {
        width: 60px;
    }

    .screen-1 .right {
        justify-content: center;
        position: relative;
        left: 48px;
    }
    .screen-1 .right img:first-child {
        position: absolute;
        left: -70px;
        bottom: 30px;
        height: 110px;
        z-index: 1;
    }

    .screen-1 .right img:nth-child(2) {
        display: none;
    }

    .screen-1 .right img:nth-child(3) {
        display: block;
        height: 312px;
        position: relative;
        right: 30px;
        z-index: 0;
    }

    .screen-1 .right img:last-child {
        position: absolute;
        right: 26px;
        top: 30px;
        z-index: -1;
        height: 150px;
    }
    .screen-1 .mail {
        display: none;
    }
    .screen-1 .body-content:before {
        content: "";
        background: url(/assets/img/arr-butt.svg) no-repeat;
        width: 8px;
        height: 35px;
        position: absolute;
        bottom: -35px;
        left: 50%;
        margin-left: -4px;
    }

    /* .screen-2 */
    .screen-2 {
        background-color: #2e2e2e;
    }
    .screen-2 .body-content {
        padding: 100px 0;
        display: flex;
        position: relative;
        display: flex;
        justify-content: space-between;
    }
    .screen-2 .content {
        width: 45%;
    }
    .screen-2 .content * {
        color: #fff;
    }
    .screen-2 .left-block p {
        margin-top: 70px;
        max-width: 80%;
        padding-left: 50px;
        border-left: 1px solid #fff;
    }

    .screen-2 .left-block img {
        width: 321px;
        height: 391px;
    }

    .screen-2 .block p {
        max-width: 90%;
    }
    .screen-2 .right-block ul {
        padding-top: 40px;
    }
    .screen-2 .right-block h2 {
        margin-bottom: 10px;
        font-size: 24px;
        line-height: 100%;
    }

    .screen-2 .right-block .block:last-child h2 {
        margin-bottom: 50px;
    }

    .underline {
        position: relative;
        margin-bottom: 0px;
    }
    .underline::after {
        content: "";
        height: 1px;
        width: 329px;
        position: absolute;
        left: 0;
        bottom: -30px;
        background-color: #fff;
    }
    .screen-2 p {
        margin-top: 0.5em;
        margin-bottom: 1em;
        font-size: 14px;
        line-height: 115%;
    }
    .screen-2 .block ul li {
        padding-bottom: 30px;
        max-width: 80%;
        padding-left: 62px;
        font-size: 14px;
        line-height: 115%;
    }
    .screen-2 .block ul li:nth-child(1) {
        background: url(/assets/img/partners-li1.svg) no-repeat left 5px;
    }
    .screen-2 .block ul li:nth-child(2) {
        background: url(/assets/img/partners-li2.svg) no-repeat left 5px;
    }
    .screen-2 .block ul li:nth-child(3) {
        background: url(/assets/img/partners-li3.svg) no-repeat left 5px;
    }
    .screen-2 .block ul li:nth-child(4) {
        background: url(/assets/img/partners-li4.svg) no-repeat left 5px;
    }
    .screen-2 .block ul li:last-child {
        padding-bottom: 20px;
    }

    /* .screen-3 */
    .screen-3 .body-content {
        padding: 70px 50px;
        background-color: #edeff4;
        margin-top: 110px;
        display: flex;
        justify-content: space-between;
        padding-right: 0;
    }
    .screen-3 .underline::after {
        background-color: #000;
        bottom: -90px;
        width: 278px;
    }
    .screen-3 .underline {
        margin-bottom: 90px;
    }
    .screen-3 .left-block {
        min-width: 285px;
        margin-right: 0px;
    }

    .screen-3 .left-block h2 {
        font-size: 24px;
        line-height: 100%;
    }

    .screen-3 .left-block p {
        padding-top: 25px;
        width: 100%;
        max-width: 240px;
        font-size: 14px;
        line-height: 115%;
    }
    .screen-3 .right-block li {
        max-width: 100%;
        margin-top: 0.5em;
        margin-bottom: 1em;
        font-size: 14px;
        line-height: 115%;
    }
    .screen-3 .right-block p {
        margin-bottom: 55px;
        font-size: 14px;
        line-height: 115%;
    }
    .screen-3 .right-block span {
        color: #ffcf3e;
    }
    .screen-3 .right-block li:last-child {
        margin-bottom: 0;
    }

    /* .screen-4 */
    .screen-4 .body-content {
        display: flex;
        align-items: center;
        position: relative;
    }
    .screen-4 .content {
        width: 80%;
        display: flex;
        flex-direction: column;
        padding-left: 50px;
        margin-top: 100px;
        margin-bottom: 20px;
    }
    .screen-4 .list {
        flex-direction: column;
    } /*34.78%*/
    .screen-4 .media {
        width: 740px;
        padding-left: 140px;
    } /*65.22%*/
    .screen-4 h2 {
        color: #212529;
        padding-bottom: 40px;
        border-bottom: 1px solid #000;
        font-size: 30px;
        line-height: 100%;
    }
    .screen-4 .media img {
        max-width: 100%;
        max-height: 100%;
    }
    .screen-4 ul li {
        cursor: pointer;
        color: #000;
        font-weight: 600;
        font-size: 24px;
        padding: 0px 0;
        border-bottom: 1px solid #c4c4c4;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 18px;
        line-height: 125%;
    }
    .screen-4 ul li p {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 0;
    }
    .screen-4 ul {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: space-between;
    }
    .screen-4 .plus-btn {
        padding: 1px;
        position: relative;
        background: none;
        border: none;
        cursor: pointer;
    }
    .screen-4 .plus-btn::before {
        content: "+";
        top: 0;
        left: 0;
        font-size: 40px;
        font-weight: 100;
    }
    .screen-4 .mail {
        position: absolute;
        right: -210px;
        top: 375px;
        font-size: 48px;
        font-weight: 700;
        transform: rotateZ(-90deg);
        color: #fff;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: #c4c4c4;
    }
    .screen-4 ul div span {
        font-weight: 700;
    }
}

@media screen and (min-width: 479.98px) and (max-width: 767.98px) {
    section,
    header,
    footer {
        padding: 0 calc(50vw - 220px);
    }

    /* header */
    .header_section {
        margin-top: 35px;
        margin-bottom: 30px;
    }

    .logo {
        width: 36.6%;
    }

    .hamburger {
        display: block;
        position: relative;
    }

    .header .nav ul li:last-child {
        position: relative;
        right: 50px;
        bottom: 2px;
    }

    .nav ul {
        justify-content: flex-end;
    }
    .header_section .nav ul li:not(:last-child) {
        display: none;
    }
    .nav ul li a {
        font-size: 14px;
    }

    /* .screen-1 */
    .screen-1 h2 {
        font-size: 36px;
        line-height: 100%;
        margin-bottom: 14px;
    }

    .screen-1 h4 {
        font-size: 24px;
        line-height: 115%;
        font-weight: 600;
    }

    .screen-1 ul h4 {
        font-size: 14px;
        line-height: 115%;
    }

    .screen-1 .body-content {
        margin-bottom: 85px;
        position: relative;
        margin-top: 30px;
        display: flex;
        justify-content: space-between;
        padding-bottom: 50px;
        border-bottom: 1px solid #000;
        flex-direction: column;
        border-top: 1px solid #000;
        padding-top: 30px;
    }
    .screen-1 .content {
        width: 100%;
        display: flex;
    }
    .screen-1 .left {
        flex-direction: column;
    }
    .screen-1 .left-text {
        width: 100%;
        padding-top: 14px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .left-text > h4 {
        margin-bottom: 20px;
    }
    .screen-1 .left-text ul li {
        display: flex;
    }
    .screen-1 .left-text ul li:not(:last-child) {
        padding-bottom: 15px;
    }
    .screen-1 .left-text ul li:last-child {
        margin-bottom: 20px;
    }
    .screen-1 .left-text ul .number {
        color: #557dfc;
        padding-right: 18px;
        display: inline-flex;
    }
    .screen-1 .left-text ul p {
        font-weight: normal;
    }

    .screen-1 .brief-btn {
        width: 332px;
        padding: 22px 0;
        font-size: 14px;
        line-height: 100%;
        margin-bottom: 50px;
    }

    .arrow::before {
        width: 60px;
    }

    .screen-1 .right {
        justify-content: center;
        position: relative;
        left: 0;
    }
    .screen-1 .right img:first-child {
        position: absolute;
        left: -40px;
        bottom: 25px;
        height: 110px;
        z-index: 1;
    }

    .screen-1 .right img:nth-child(2) {
        display: block;
        width: 365px;
    }

    .screen-1 .right img:nth-child(3) {
        display: none;
        height: 312px;
        position: relative;
        right: 30px;
        z-index: 0;
    }

    .screen-1 .right img:last-child {
        position: absolute;
        right: -10px;
        top: 30px;
        z-index: -1;
        height: 150px;
    }
    .screen-1 .mail {
        display: none;
    }
    .screen-1 .body-content:before {
        content: "";
        background: url(/assets/img/arr-butt.svg) no-repeat;
        width: 8px;
        height: 35px;
        position: absolute;
        bottom: -35px;
        left: 50%;
        margin-left: -4px;
    }

    /* .screen-2 */
    .screen-2 {
        background-color: #2e2e2e;
    }
    .screen-2 .body-content {
        padding: 50px 0;
        display: flex;
        position: relative;
        display: flex;
        justify-content: space-between;
        flex-direction: column-reverse;
    }
    .screen-2 .content {
        width: 100%;
    }
    .screen-2 .content * {
        color: #fff;
    }
    .screen-2 .left-block p {
        margin-top: 35px;
        max-width: 80%;
        padding-left: 50px;
        border-left: 1px solid #fff;
    }

    .screen-2 .left-block img {
        display: none;
    }

    .screen-2 .block p {
        max-width: 90%;
    }
    .screen-2 .right-block ul {
        padding-top: 40px;
    }
    .screen-2 .right-block h2 {
        margin-bottom: 10px;
        font-size: 34px;
        line-height: 100%;
    }

    .screen-2 .right-block .block:last-child h2 {
        margin-bottom: 50px;
    }

    .underline {
        position: relative;
        margin-bottom: 0px;
    }
    .underline::after {
        content: "";
        height: 1px;
        width: 440px;
        position: absolute;
        left: 0;
        bottom: -25px;
        background-color: #fff;
    }
    .screen-2 p {
        margin-top: 0.5em;
        margin-bottom: 1em;
        font-size: 14px;
        line-height: 115%;
    }
    .screen-2 .block ul li {
        padding-bottom: 30px;
        max-width: 60%;
        padding-left: 62px;
        font-size: 14px;
        line-height: 115%;
    }
    .screen-2 .block ul li:nth-child(1) {
        background: url(/assets/img/partners-li1.svg) no-repeat left 5px;
    }
    .screen-2 .block ul li:nth-child(2) {
        background: url(/assets/img/partners-li2.svg) no-repeat left 5px;
    }
    .screen-2 .block ul li:nth-child(3) {
        background: url(/assets/img/partners-li3.svg) no-repeat left 5px;
    }
    .screen-2 .block ul li:nth-child(4) {
        background: url(/assets/img/partners-li4.svg) no-repeat left 5px;
    }
    .screen-2 .block ul li:last-child {
        padding-bottom: 20px;
    }

    /* .screen-3 */
    .screen-3 .body-content {
        padding: 50px 20px;
        background-color: #edeff4;
        margin-top: 50px;
        display: flex;
        justify-content: space-between;
        padding-right: 0;
        flex-direction: column;
        position: relative;
    }

    .screen-3 .underline::after {
        background-color: #000;
        bottom: -242px;
        width: 278px;
    }
    .screen-3 .underline {
        margin-bottom: 242px;
    }
    .screen-3 .left-block {
        min-width: 285px;
        margin-right: 0px;
    }

    .screen-3 .left-block h2 {
        font-size: 36px;
        line-height: 100%;
    }

    .screen-3 .left-block p {
        padding-top: 25px;
        width: 100%;
        max-width: 240px;
        font-size: 14px;
        line-height: 115%;
    }

    .screen-3 .right-block {
        position: absolute;
        top: 180px;
    }

    .screen-3 .right-block li {
        max-width: 70%;
        margin-top: 0.5em;
        margin-bottom: 1em;
        font-size: 14px;
        line-height: 115%;
    }
    .screen-3 .right-block p {
        margin-bottom: 40px;
        font-size: 14px;
        line-height: 115%;
    }
    .screen-3 .right-block span {
        color: #ffcf3e;
    }
    .screen-3 .right-block li:last-child {
        margin-bottom: 0;
    }

    /* .screen-4 */
    .screen-4 .body-content {
        display: flex;
        align-items: center;
        position: relative;
        margin-bottom: 65px;
    }
    .screen-4 .content {
        width: 100%;
        display: flex;
        flex-direction: column;
        padding-left: 0px;
        margin-top: 50px;
        margin-bottom: 20px;
    }
    .screen-4 .list {
        flex-direction: column;
    } /*34.78%*/
    .screen-4 .media {
        width: 740px;
        padding-left: 140px;
    } /*65.22%*/
    .screen-4 h2 {
        color: #212529;
        padding-bottom: 40px;
        border-bottom: 1px solid #000;
        font-size: 36px;
        line-height: 100%;
    }
    .screen-4 .media img {
        max-width: 100%;
        max-height: 100%;
    }
    .screen-4 ul li {
        cursor: pointer;
        color: #000;
        font-weight: 600;
        font-size: 24px;
        padding: 0px 0;
        border-bottom: 1px solid #c4c4c4;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 18px;
        line-height: 125%;
    }
    .screen-4 ul li p {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 0;
    }
    .screen-4 ul {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: space-between;
    }
    .screen-4 .plus-btn {
        padding: 1px;
        position: relative;
        background: none;
        border: none;
        cursor: pointer;
    }
    .screen-4 .plus-btn::before {
        content: "+";
        top: 0;
        left: 0;
        font-size: 40px;
        font-weight: 100;
    }
    .screen-4 .mail {
        display: none;
    }
    .screen-4 ul div span {
        font-weight: 700;
    }

    .screen-4 .mobile-hidden {
        display: none;
    }
}

@media screen and (min-width: 319.98px) and (max-width: 479.98px) {
    section,
    header,
    footer {
        padding: 0 calc(50vw - 150px);
    }

    /* header */
    .logo {
        width: 53.7%;
    }

    .header_section {
        margin-top: 35px;
        margin-bottom: 30px;
    }

    .header .nav ul li a {
        display: none;
    }

    .nav ul {
        justify-content: flex-end;
    }
    .header_section .nav ul li:not(:last-child) {
        display: none;
    }
    .nav ul li a {
        font-size: 14px;
    }

    .nav ul li {
        line-height: 14px;
    }

    .hamburger {
        display: block;
        position: relative;
    }

    /* .screen-1 */
    .screen-1 h2 {
        font-size: 24px;
        line-height: 100%;
        margin-bottom: 14px;
    }

    .screen-1 h4 {
        font-size: 16px;
        line-height: 115%;
        font-weight: 600;
    }

    .screen-1 ul h4 {
        font-size: 14px;
        line-height: 115%;
    }

    .screen-1 .body-content {
        margin-bottom: 85px;
        position: relative;
        margin-top: 30px;
        display: flex;
        justify-content: space-between;
        padding-bottom: 50px;
        border-bottom: 1px solid #000;
        flex-direction: column;
        border-top: 1px solid #000;
        padding-top: 30px;
    }
    .screen-1 .content {
        width: 100%;
        display: flex;
    }
    .screen-1 .left {
        flex-direction: column;
    }
    .screen-1 .left-text {
        width: 100%;
        padding-top: 14px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .left-text > h4 {
        margin-bottom: 20px;
    }
    .screen-1 .left-text ul li {
        display: flex;
    }
    .screen-1 .left-text ul li:not(:last-child) {
        padding-bottom: 15px;
    }
    .screen-1 .left-text ul li:last-child {
        margin-bottom: 20px;
    }
    .screen-1 .left-text ul .number {
        color: #557dfc;
        padding-right: 18px;
        display: inline-flex;
    }
    .screen-1 .left-text ul p {
        font-weight: normal;
    }

    .screen-1 .brief-btn {
        width: 290px;
        padding: 17px 0;
        font-size: 14px;
        line-height: 100%;
        margin-bottom: 50px;
    }

    .arrow::before {
        width: 60px;
    }

    .screen-1 .right {
        justify-content: center;
        position: relative;
        left: 0;
    }
    .screen-1 .right img:first-child {
        position: absolute;
        left: -50px;
        bottom: 15px;
        height: 70px;
        z-index: 1;
    }

    .screen-1 .right img:nth-child(2) {
        display: block;
        width: 250px;
    }

    .screen-1 .right img:nth-child(3) {
        display: none;
        height: 312px;
        position: relative;
        right: 30px;
        z-index: 0;
    }

    .screen-1 .right img:last-child {
        position: absolute;
        right: -25px;
        top: 20px;
        z-index: -1;
        height: 125px;
    }
    .screen-1 .mail {
        display: none;
    }
    .screen-1 .body-content:before {
        content: "";
        background: url(/assets/img/arr-butt.svg) no-repeat;
        width: 8px;
        height: 35px;
        position: absolute;
        bottom: -35px;
        left: 50%;
        margin-left: -4px;
    }

    /* .screen-2 */
    .screen-2 {
        background-color: #2e2e2e;
    }
    .screen-2 .body-content {
        padding: 50px 0;
        display: flex;
        position: relative;
        display: flex;
        justify-content: space-between;
        flex-direction: column-reverse;
    }
    .screen-2 .content {
        width: 100%;
    }
    .screen-2 .content * {
        color: #fff;
    }
    .screen-2 .left-block p {
        margin-top: 20px;
        max-width: 80%;
        padding-left: 30px;
        border-left: 1px solid #fff;
    }

    .screen-2 .left-block img {
        display: none;
    }

    .screen-2 .block p {
        max-width: 100%;
    }
    .screen-2 .right-block ul {
        padding-top: 40px;
        margin-bottom: 40px;
    }
    .screen-2 .right-block h2 {
        margin-bottom: 10px;
        font-size: 24px;
        line-height: 100%;
    }

    .screen-2 .right-block h2:first-child {
        width: 200px;
    }

    .screen-2 .right-block .block:last-child h2 {
        margin-bottom: 25px;
    }

    .screen-2 .right-block .block:last-child .underline::after {
        content: "";
        height: 1px;
        width: 300px;
        position: absolute;
        left: 0;
        bottom: 75px;
        background-color: #fff;
    }

    .underline {
        position: relative;
        margin-bottom: 0px;
    }
    .underline::after {
        content: "";
        height: 1px;
        width: 300px;
        position: absolute;
        left: 0;
        bottom: -25px;
        background-color: #fff;
    }
    .screen-2 p {
        margin-top: 0.5em;
        margin-bottom: 1em;
        font-size: 14px;
        line-height: 115%;
    }
    .screen-2 .block ul li {
        padding-bottom: 30px;
        max-width: 90%;
        padding-left: 62px;
        font-size: 14px;
        line-height: 115%;
    }
    .screen-2 .block ul li:nth-child(1) {
        background: url(/assets/img/partners-li1.svg) no-repeat left 5px;
    }
    .screen-2 .block ul li:nth-child(2) {
        background: url(/assets/img/partners-li2.svg) no-repeat left 5px;
    }
    .screen-2 .block ul li:nth-child(3) {
        background: url(/assets/img/partners-li3.svg) no-repeat left 5px;
    }
    .screen-2 .block ul li:nth-child(4) {
        background: url(/assets/img/partners-li4.svg) no-repeat left 5px;
    }
    .screen-2 .block ul li:last-child {
        padding-bottom: 20px;
    }

    /* .screen-3 */
    .screen-3 .body-content {
        padding: 50px 20px;
        background-color: #edeff4;
        margin-top: 50px;
        display: flex;
        justify-content: space-between;
        padding-right: 0;
        flex-direction: column;
        position: relative;
    }

    .screen-3 .underline::after {
        background-color: #000;
        bottom: -247px;
        width: 260px;
    }
    .screen-3 .underline {
        margin-bottom: 247px;
    }
    .screen-3 .left-block {
        min-width: 285px;
        margin-right: 0px;
    }

    .screen-3 .left-block h2 {
        font-size: 24px;
        line-height: 100%;
        width: 80%;
    }

    .screen-3 .left-block p {
        padding-top: 25px;
        width: 100%;
        max-width: 240px;
        font-size: 14px;
        line-height: 115%;
    }

    .screen-3 .right-block {
        position: absolute;
        top: 140px;
    }

    .screen-3 .right-block li {
        max-width: 90%;
        margin-top: 0.5em;
        margin-bottom: 1em;
        font-size: 14px;
        line-height: 115%;
    }
    .screen-3 .right-block p {
        margin-bottom: 25px;
        font-size: 14px;
        line-height: 115%;
    }
    .screen-3 .right-block span {
        color: #ffcf3e;
    }
    .screen-3 .right-block li:last-child {
        margin-bottom: 0;
    }

    /* .screen-4 */
    .screen-4 .body-content {
        display: flex;
        align-items: center;
        position: relative;
        margin-bottom: 30px;
    }
    .screen-4 .content {
        width: 100%;
        display: flex;
        flex-direction: column;
        padding-left: 0px;
        margin-top: 50px;
        margin-bottom: 20px;
    }
    .screen-4 .list {
        flex-direction: column;
    } /*34.78%*/
    .screen-4 .media {
        width: 740px;
        padding-left: 140px;
    } /*65.22%*/
    .screen-4 h2 {
        color: #212529;
        padding-bottom: 40px;
        border-bottom: 1px solid #000;
        font-size: 24px;
        line-height: 100%;
    }
    .screen-4 .media img {
        max-width: 100%;
        max-height: 100%;
    }
    .screen-4 ul li {
        cursor: pointer;
        color: #000;
        font-weight: 600;
        font-size: 24px;
        padding: 0px 0;
        border-bottom: 1px solid #c4c4c4;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 16px;
        line-height: 125%;
    }
    .screen-4 ul li p {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 0;
    }
    .screen-4 ul {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: space-between;
    }
    .screen-4 .plus-btn {
        padding: 1px;
        position: relative;
        background: none;
        border: none;
        cursor: pointer;
    }
    .screen-4 .plus-btn::before {
        content: "+";
        top: 0;
        left: 0;
        font-size: 40px;
        font-weight: 100;
    }
    .screen-4 .mail {
        display: none;
    }
    .screen-4 ul div span {
        font-weight: 700;
    }
    .screen-4 .mobile-hidden {
        display: none;
    }
}

@media (min-width: 1291.98px) {
    section,
    header,
    footer {
        padding: 0 calc(50vw - 646px);
    }
}

@media (max-width: 1535px) {
    /* УБИРАЕМ CASES  */
    .screen-4::before {
        display: none;
    }
}

@media (max-width: 1640px) {
    /* ФИКСИРУЕМ CASES  */
    .screen-4::before {
        left: 10px;
    }
}

/* Большие экраны ----------- */
@media (min-width: 1824px) {
    section,
    header,
    footer {
        padding: 0 calc(50vw - 646px);
    }
}
