/*==========================================================================================================================================================================*/
/* Подключение шрифтов */
@font-face {
    font-family: "VK Sans Display";
    src: url("../fonts/VKSansDisplay-Regular.woff2") format("woff2"),
         url("../fonts/VKSansDisplay-Regular.woff") format("woff"),
         url("../fonts/VKSansDisplay-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "VK Sans Display";
    src: url("../fonts/VKSansDisplay-Medium.woff2") format("woff2"),
         url("../fonts/VKSansDisplay-Medium.woff") format("woff"),
         url("../fonts/VKSansDisplay-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "VK Sans Display";
    src: url("../fonts/VKSansDisplay-DemiBold.woff2") format("woff2"),
         url("../fonts/VKSansDisplay-DemiBold.woff") format("woff"),
         url("../fonts/VKSansDisplay-DemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}



/*==========================================================================================================================================================================*/
/* Обнуление */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

nav,
footer,
header,
aside {
    display: block;
}

input,
button,
textarea {
    font-family: inherit;
    outline: none;
    border: none;
}

input::-ms-clear {
    display: none;
}

a,
button {
    color: inherit;
    cursor: pointer;
    border: none;
}

button {
    background: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
    border: 0;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

:focus,
:active,
a:focus,
a:active {
    outline: none;
}

a,
a:visited,
a:hover {
    text-decoration: none;
}



/*==========================================================================================================================================================================*/
/* Общие стили */
html,
body {
    width: 100%;
    height: 100%;
    font-family: "VK Sans Display", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #343434;
    background-color: #ffffff;
}

body {
    -webkit-animation: body_show 0.5s forwards ease-in-out;
            animation: body_show 0.5s forwards ease-in-out;
}

@-webkit-keyframes body_show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes body_show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

body._lock {
    overflow: hidden;
    -ms-touch-action: none;
        touch-action: none;
}

.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
}

.wrapper > * {
    min-width: 0;
}

[class*=__container] {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0px 30px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
}

.content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    background-color: #fff;
}

.content > * {
    position: relative;
    background-color: #fff;
    z-index: 10;
}


/*===================================================================================*/
/* Media Queries */
@media (max-width: 991.98px) {
    [class*=__container] {
        padding: 0px 20px;
    }
}

@media (max-width: 479.98px) {
    [class*=__container] {
        padding: 0 15px;
    }
}



/*==========================================================================================================================================================================*/
/* Модификаторы */
._title {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.1px;
    color: #FFFFFF;
}

._btn {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 7px 20px;
    min-width: 380px;
    min-height: 60px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
    letter-spacing: 0.1px;
    color: #FFFFFF;
    background-color: #0077FF;
    border-radius: 20px;
    -webkit-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

.column_more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    padding: 0 30px;
    max-width: 280px;
    width: 100%;
    height: 60px;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0.1px;
    color: #212121;
    background-color: #fff;
    border: 1px solid #212121;
    border-radius: 20px;
    -webkit-transition: background-color 0.3s ease, color 0.3s ease;
    -o-transition: background-color 0.3s ease, color 0.3s ease;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.column_more svg {
    width: 19px;
    height: 19px;
    -webkit-transition: -webkit-transform 0.3s ease 0.2s;
    transition: -webkit-transform 0.3s ease 0.2s;
    -o-transition: transform 0.3s ease 0.2s;
    transition: transform 0.3s ease 0.2s;
    transition: transform 0.3s ease 0.2s, -webkit-transform 0.3s ease 0.2s;
}

.column_more .arrow-icon {
    -webkit-transition: stroke 0.3s ease;
    -o-transition: stroke 0.3s ease;
    transition: stroke 0.3s ease;
}


/*===================================================================================*/
/* Media Queries */
@media (any-hover: hover) {
    ._btn:hover {
        background-color: #0069E1;;
    }

    .column_more:hover {
        color: #fff;
        background-color: #212121;
    }

    .column_more:hover svg {
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg);
    }

    .column_more:hover .arrow-icon {
        stroke: #ffffff;
    }
}

@media (max-width: 1240px) {
    ._title {
        font-size: calc(30px + 34 * ((100vw - 320px) / (1240 - 360)));
    }

    ._btn {
        font-size: calc(16px + 2 * ((100vw - 320px) / (1240 - 360)));
    }

    .column_more {
        padding: 0 20px;
        font-size: 16px;
    }

    .column_more svg {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 767.98px) {
    .column_more {
        max-width: 380px;
        margin: 0px auto;
    }
}

@media (max-width: 479.98px) {
    ._btn {
        min-width: 100%;
        min-height: 50px;
        border-radius: 15px;
    }

    .column_more {
        height: 50px;
        max-width: 100%;
    }
}



/*==========================================================================================================================================================================*/
/* Header */
.header {
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(40px);
            backdrop-filter: blur(40px);
    z-index: 101;
}

.header__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 80px;
    padding: 15px 0px;
}

.header__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
}

.logo-header {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    padding-right: 50px;
    z-index: 100;
}

.logo-header__link {
    display: inline-block;
}

.logo-header img {
    width: 40px;
    height: 40px;
}

.logo-header__images {
    display: none;
}

.menu-header__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.menu-header__item {
    padding: 7px 0px;
    margin-right: 50px;
}

.menu-header__item:last-child {
    margin-right: 0;
}

.menu-header__link {
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0.1px;
    color: #141414;
    -webkit-transition: color 0.2s ease;
    -o-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

.header__download {
    display: none;
}

.header__button {
    margin: 0px 0px 0px 50px;
    border-radius: 13px;
    min-height: 50px;
    min-width: 165px;
}


/*===================================================================================*/
/* Media Queries */
@media (any-hover: hover) {
    .menu-header__link:hover {
        color: #0069E1;
    }
}

@media (max-width: 1240px) {
    .menu-header__item {
        margin-right: calc(20px + 30 * ((100vw - 320px) / (1240 - 360)));
    }

    .header__button {
        margin-left: calc(20px + 30 * ((100vw - 320px) / (1240 - 360)));
    }
}

@media (max-width: 991.98px) {
    .header {
        background-color: #fff;
    }

    .header__body {
        min-height: 70px;
    }

    .logo-header__link {
        display: none;
    }

    .logo-header__images {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }

    .logo-images__link {
        -webkit-transition: -webkit-transform 0.6s ease-in-out;
        transition: -webkit-transform 0.6s ease-in-out;
        -o-transition: transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
    }

    .logo-images__link:first-child {
        -webkit-transition-delay: 0s;
             -o-transition-delay: 0s;
                transition-delay: 0s;
    }

    .logo-images__link:nth-child(2) {
        -webkit-transition-delay: 0.08s;
             -o-transition-delay: 0.08s;
                transition-delay: 0.08s;
    }

    ._menu-open .logo-images__link {
        -webkit-transform: translateX(calc(50vw - 130px));
            -ms-transform: translateX(calc(50vw - 130px));
                transform: translateX(calc(50vw - 130px));
    }

    ._menu-open .logo-images__link:first-child {
        -webkit-transition-delay: 0.08s;
             -o-transition-delay: 0.08s;
                transition-delay: 0.08s;
    }

    ._menu-open .logo-images__link:nth-child(2) {
        -webkit-transition-delay: 0s;
             -o-transition-delay: 0s;
                transition-delay: 0s;
    }

    .logo-images__link:first-child img {
        width: 120px;
    }

    .logo-images__link:nth-child(2) img {
        width: 60px;
    }

    .header__button {
        display: block;
        margin: 0px auto;
    }

    .header__download {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        min-height: 30px;
        min-width: 76px;
        padding: 5px 15px;
        font-size: 14px;
        border-radius: 10px;
        opacity: 1;
        visibility: visible;
        -webkit-transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
        -o-transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
        transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
        z-index: 105;
    }

    ._menu-open .header__download {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .header__menu-icon {
        position: relative;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 24px;
                flex: 0 0 24px;
        height: 16px;
        margin-left: 28px;
        background-color: transparent;
        cursor: pointer;
        z-index: 100;
    }

    .header__menu-icon span {
        position: absolute;
        top: calc(50% - 1px);
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #000;
        border-radius: 5px;
        -webkit-transition: -webkit-transform 0.3s ease-in-out;
        transition: -webkit-transform 0.3s ease-in-out;
        -o-transition: transform 0.3s ease-in-out;
        transition: transform 0.3s ease-in-out;
        transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    }

    .header__menu-icon span:first-child {
        top: 0px;
    }

    .header__menu-icon span:last-child {
        top: auto;
        bottom: 0px;
    }

    .header__menu-icon._active span {
        -webkit-transform: scale(0);
            -ms-transform: scale(0);
                transform: scale(0);
    }

    .header__menu-icon._active span:first-child {
        -webkit-transform: translateY(4px) rotate(-45deg);
            -ms-transform: translateY(4px) rotate(-45deg);
                transform: translateY(4px) rotate(-45deg);
    }

    .header__menu-icon._active span:last-child {
        -webkit-transform: translateY(-9px) rotate(45deg);
            -ms-transform: translateY(-9px) rotate(45deg);
                transform: translateY(-9px) rotate(45deg);
    }

    .menu-header {
        position: fixed;
        right: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        padding: 82px 20px 30px;
        overflow: auto;
        background-color: #fff;
        -webkit-transition: right 0.4s ease-in-out;
        -o-transition: right 0.4s ease-in-out;
        transition: right 0.4s ease-in-out;
        z-index: 50;
    }

    .menu-header._active {
        right: 0;
    }

    .menu-header::before {
        content: "";
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        background-color: #fff;
        min-height: 70px;
        z-index: 102;
        -webkit-transition: right 0.4s ease-in-out;
        -o-transition: right 0.4s ease-in-out;
        transition: right 0.4s ease-in-out;
    }

    .menu-header._active::before {
        right: 0;
    }

    .menu-header__list {
        display: block;
        margin: 0px 0px 20px 0px;
    }

    .menu-header__item {
        padding: 0;
        text-align: center;
    }

    .menu-header__item:not(:last-child) {
        margin: 0px 0px 20px 0px;
    }
}

@media (max-width: 479.98px) {
    .header__body {
        min-height: 52px;
        padding: 6px 0;
    }

    ._menu-open .logo-images__link {
        -webkit-transform: translateX(calc(50vw - 90px));
            -ms-transform: translateX(calc(50vw - 90px));
                transform: translateX(calc(50vw - 90px));
    }

    .logo-images__link:first-child img {
        width: 80px;
    }

    .logo-images__link:nth-child(2) img {
        width: 37px;
    }

    .header__download {
        font-size: 12px;
    }

    .menu-header::before {
        min-height: 52px;
    }
}



/*==========================================================================================================================================================================*/
/* Main */
.main__images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main__image {
    position: absolute;
    top: -68px;
    right: 0;
    opacity: 0.5;
}

.main__image:nth-child(2) {
    top: 98px;
}

.main__image:nth-child(3) {
    top: 264px;
}

.main__image img {
    width: 748px;
    -o-object-fit: cover;
       object-fit: cover;
}

.main__body {
    position: relative;
    padding: 60px 0px 0px 0px;
}

.content-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
    margin: 0px 0px 60px 0px;
}

.content-main__body {
    position: relative;
    display: -ms-grid;    
    display: grid;
    -ms-grid-columns: minmax(300px, 580px) 1fr;
    grid-template-columns: minmax(300px, 580px) 1fr;
    -webkit-column-gap: 120px;
    -moz-column-gap: 120px;
    column-gap: 120px;
    z-index: 5;
}

.content-main__logos {
    margin: 0px 0px 60px 0px;
}

.content-main__logos a {
    display: block;
}

.content-main__logos a:not(:last-child) {
    margin: 0px 0px 60px 0px;
}

.content-main__logos a:first-child img {
    width: 318px;
}

.content-main__logos a:nth-child(2) img {
    width: 185px;
}

.content-main__title {
    margin: 0px 0px 20px 0px;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.1px;
    color: #141414;
}

.content-main__text {
    max-width: 550px;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 0.1px;
    color: #141414;
}

/*===================================================================================*/
/* Main. About */
.about-main {
    position: relative;
    z-index: 10;
}

.about-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background-color: #F5F5F5;
    z-index: -1;
}

.about-main__body {
    padding: 45px 0px 40px;
}

.about-main__row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(200px, 428px) minmax(200px, 428px) minmax(200px, 324px);
    grid-template-columns: minmax(200px, 428px) minmax(200px, 428px) minmax(200px, 324px);
}

.about-main__column {
    position: relative;
    width: 100%;
    padding: 0px 40px;
}

.about-main__column:last-child {
    padding: 0px 0px 0px 40px;
}

.about-main__column::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #D9D9D9;	
}

.about-main__column:last-child::before {
    display: none;
}

.about-main__value {
    margin: 0px 0px 40px 0px;
    font-size: 64px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.1px;
    color: #141414;
    white-space: nowrap;
}

.about-main__text {
    font-weight: 500;
    font-size: 19px;
    line-height: 1.25;
    letter-spacing: 0.1px;
    color: #141414;
}

.about-main__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 40px 0px 0px 0px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.28;
    letter-spacing: 0.1px;
    color: #818181;
}


/*===================================================================================*/
/* Media Queries */
@media (max-width: 1240px) {
    .main__body {
        padding-top: calc(20px + 40 * ((100vw - 320px) / (1240 - 360)));
    }

    .main__image {
        right: -200px;
    }

    .content-main {
        margin-bottom: calc(30px + 30 * ((100vw - 320px) / (1240 - 360)));
    }

    .content-main__body {
        -webkit-column-gap: 60px;
        -moz-column-gap: 60px;
        column-gap: 60px;
    }

    .content-main__title {
        font-size: calc(30px + 16 * ((100vw - 320px) / (1240 - 360)));
    }

    .content-main__text {
        font-size: calc(16px + 8 * ((100vw - 320px) / (1240 - 360)));
    }

    .content-main__logos a:not(:last-child) {
        margin: 0px 0px 30px 0px;
    }

    .content-main__logos a:first-child img {
        width: 250px;
    }

    .content-main__logos a:nth-child(2) img {
        width: 150px;
    }

    .about-main__column {
        padding: 0px 25px;
    }

    .about-main__value {
        margin-bottom: calc(15px + 25 * ((100vw - 320px) / (1240 - 360)));
        font-size: 40px;
    }
}

@media (max-width: 991.98px) {
    .main__image {
        top: -70px;
        right: -100px;
    }
    
    .main__image:nth-child(2) {
        top: 62px;
    }
    
    .main__image:nth-child(3) {
        top: 194px;
    }
    
    .main__image img {
        width: 600px;
    }

    .content-main__text {
        line-height: 1.5;
    }
}

@media (max-width: 767.98px) {
    .main__body {
        padding: 20px 0px 0px 0px;
    }

    .main__image {
        right: -250px;
    }

    .content-main__logos {
        display: none;
    }

    .about-main__body {
        padding: 5px 0px 25px;
    }

    .about-main__bottom {
        margin: 25px 0px 0px 0px;
    }

    .about-main__row {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .about-main__column,
    .about-main__column:last-child {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
                align-items: center;
        padding: 25px 0px;
    }

    .about-main__column::before {
        top: auto;
        bottom: 0;
        left: 0;
        right: auto;
        width: 100%;
        height: 1px;
    }

    .about-main__column:last-child::before {
        display: block;
    }
}

@media (max-width: 479.98px) {
    .main__image {
        right: -50%;
    }

    .main__image:nth-child(2) {
        top: 24px;
    }
    
    .main__image:nth-child(3) {
        top: 119px;
    }

    .main__image img {
        width: 427px;
    }

    .content-main__title {
        margin: 0px 0px 15px 0px;
    }

    .about-main__column,
    .about-main__column:last-child {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 25px 0px;
    }

    .about-main__text {
        font-size: 16px;
    }
}



/*==========================================================================================================================================================================*/
/* Interview */
.interview {
    position: relative;
    background-color: #0077FF;
    overflow: hidden;
}

.interview__images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.interview__image {
    position: absolute;
    top: -100px;
    right: 20px;
    opacity: 0.5;
    z-index: 2;
}

.interview__image:nth-child(2) {
    top: 43px;
}

.interview__image:nth-child(3) {
    top: 186px;
}

.interview__image img {
    width: 650px;
    -o-object-fit: cover;
       object-fit: cover;
}

.interview__body {
    position: relative;
    padding: 80px 0;
    z-index: 5;
}

.interview__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 120px;
       -moz-column-gap: 120px;
            column-gap: 120px;
}

.interview__director-image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32.2%;
            flex: 0 0 32.2%;
}

.interview__director-image img {
    width: 100%;
    border-radius: 24px;
}

.content-interview {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 70px 0px 0px 0px;
}

.content-interview__title {
    margin: 0px 0px 40px 0px;
    font-family: "VK Sans Display";
    font-size: 53px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.1px;
    color: #FFFFFF;
}

.content-interview__body {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 40px 0px 0px 0px;
    background-color: #0077FF;
}

.content-interview__body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 1px;	
    background-color: #4E9AF0;
}

.content-interview__text {
    /* margin: 0px 0px 60px 0px; */
    flex: 1 1 auto;
    position: relative;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: 0.1px;
    color: #FFFFFF;
}

.content-interview__text p {
    display: box;
    display: -webkit-box;
/*    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    line-clamp: 7;
    -webkit-line-clamp: 7;
    -ms-line-clamp: 7;
*/    
	box-orient: vertical;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.content-interview__text > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 53px;
    -o-object-fit: contain;
       object-fit: contain;
}

.content-interview__text p {
    padding: 0px 0px 0px 87px;
}

.content-interview__link {
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 200px;
    min-width: auto;
    min-height: 40px;
    margin: 12px 0px 0px 87px;
    font-size: 16px;
    color: #fff;
    background-color: #0062d2;
    border-radius: 12px;
}

.content-interview__link img {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    margin: 0px 0px 0px 15px;
    width: 17px;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.content-interview__button {
    padding: 0px 0px 0px 87px;
}

.content-interview__button {
    margin: 60px 0px 0px 0px;
}

.content-interview__button img {
    width: 20px;
    margin: 0px 0px 0px 20px;
    -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
            transform: translateX(0px);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.content-interview__button ._btn {
    min-width: 500px;
    min-height: 70px;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0.1px;
    color: #0077FF;
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
}


/*===================================================================================*/
/* Media Queries */
@media (any-hover: hover) {
    .content-interview__button:hover img {
        -webkit-transform: translateX(10px);
            -ms-transform: translateX(10px);
                transform: translateX(10px);
    }

    .content-interview__link:hover {
        background-color: #0062d2;
    }

    .content-interview__link:hover img {
        -webkit-transform: translateX(10px);
            -ms-transform: translateX(10px);
                transform: translateX(10px);
    }
}

@media (max-width: 1240px) {
    .interview__body {
        padding-top: calc(40px + 40 * ((100vw - 320px) / (1240 - 360)));
        padding-bottom: calc(40px + 40 * ((100vw - 320px) / (1240 - 360)));
    }

    .interview__row {
        -webkit-column-gap: 60px;
           -moz-column-gap: 60px;
                column-gap: 60px;
    }

    .content-interview {
        margin: 0;
    }

    .content-interview__title {
        margin-bottom: calc(30px + 10 * ((100vw - 320px) / (1240 - 360)));
        font-size: calc(30px + 20 * ((100vw - 320px) / (1240 - 360)));
    }

    .content-interview__body {
        padding-top: calc(30px + 10 * ((100vw - 320px) / (1240 - 360)));
    }

    .content-interview__text {
        font-size: calc(16px + 6 * ((100vw - 320px) / (1240 - 360)));
    }

    .content-interview__button {
        margin-top: calc(40px + 20 * ((100vw - 320px) / (1240 - 360)));
    }
}

@media (max-width: 991.98px) {
    .interview__row {
        -webkit-column-gap: 40px;
           -moz-column-gap: 40px;
                column-gap: 40px;
    }

    .interview__image {
        right: -220px;
    }

    .content-interview {
        margin: 0;
    }

    .content-interview__title {
        max-width: 100%;
    }

    .content-interview__link {
        margin: 12px 0px 0px 55px;
    }

    .content-interview__text p {
        padding: 0px 0px 0px 55px;
    }

    .content-interview__text img {
        width: 35px;
    }

    .content-interview__button {
        padding: 0px 0px 0px 55px;
    }

    .content-interview__button ._btn {
        min-width: 100%;
        min-height: 60px;
    }
}

@media (max-width: 767.98px) {
    .interview__image {
        top: 0;
    }

    .interview__image:nth-child(2) {
        top: 143px;
    }
    
    .interview__image:nth-child(3) {
        top: 286px;
    }

    .interview__director-image {
        -webkit-box-flex: 1;
            -ms-flex: auto;
                flex: auto;
    }
    
    .interview__director-image img {
        max-width: 50%;
        margin: 0px 0px 28px 0px;
    }
}

@media (max-width: 479.98px) {
    .interview__image {
        right: -260px;
    }
    
    .interview__image:nth-child(2) {
        top: 118px;
    }
    
    .interview__image:nth-child(3) {
        top: 236px;
    }
    
    .interview__image img {
        width: 536px;
    }

    .content-interview__link {
        font-size: 16px;
    }
    
    .content-interview__button {
        padding: 0;
    }

    .content-interview__button ._btn {
        min-height: 50px;
        border-radius: 15px;
    }
}



/*==========================================================================================================================================================================*/
/* Advantages */
.advantages {
    overflow: hidden;
}

.advantages__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.advantages__image img {
    position: absolute;
    top: -60px;
    right: 0;
    width: 710px;
    -o-object-fit: cover;
       object-fit: cover;
}

.advantages__body {
    padding: 80px 0px 60px 0px;
}

.advantages__title {
    max-width: 880px;
    margin: 0px 0px 40px 0px;
    font-size: 56px;
    color: #141414;
}

.advantages__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(250px, 380px) 20px minmax(250px, 380px) 20px minmax(250px, 380px);
    grid-template-columns: repeat(3, minmax(250px, 380px));
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 15px;
    margin: 0px 0px 40px 0px;
}

.column-advantages {
    width: 100%;
    background-color: #F4F8FF;
    border-radius: 24px;
}

.column-advantages__body {
    padding: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
}

.column-advantages__image {
    margin: 0px 0px 20px 0px;
}

.column-advantages__image img {
    width: 56px;
}

.column-advantages__title {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    margin: 0px 0px 20px 0px;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.25;
    color: #141414;
}

.column-advantages__text {
    font-size: 16px;
    line-height: 1.3;
    color: #52565B;
}

.advantages__button {
    text-align: center;
}


/*===================================================================================*/
/* Media Queries */
@media (max-width: 1240px) {
    .advantages__body {
        padding-top: calc(30px + 50 * ((100vw - 320px) / (1240 - 360)));
        padding-bottom: calc(30px + 30 * ((100vw - 320px) / (1240 - 360)));
    }

    .advantages__title {
        margin-bottom: calc(30px + 10 * ((100vw - 320px) / (1240 - 360)));
        font-size: calc(30px + 26 * ((100vw - 320px) / (1240 - 360)));
    }

    .advantages__content {
        margin-bottom: calc(30px + 10 * ((100vw - 320px) / (1240 - 360)));
    }

    .column-advantages__title {
        margin-bottom: calc(10px + 10 * ((100vw - 320px) / (1240 - 360)));
    }
}

@media (max-width: 991.98px) {
    .advantages__image img {
        width: 500px;
    }

    .advantages__title {
        max-width: 90%;
    }

    .column-advantages__body {
        padding: 40px 20px;
    }

    .column-advantages__image {
        margin: 0px 0px 15px 0px;
    }
}

@media (max-width: 850px) {
    .advantages__content {
        display: block;
    }

    .column-advantages {
        max-width: 600px;
    }

    .column-advantages__body {
        padding: 40px 30px;
    }

    .column-advantages:not(:last-child) {
        margin: 0px auto 15px;
    }

    .column-advantages:last-child {
        margin: 0px auto;
    }
}

@media (max-width: 767.98px) {
    .advantages__image img {
        right: -150px;
    }
}

@media (max-width: 479.98px) {
    .advantages__image {
        display: none;
    }

    .advantages__title {
        max-width: 100%;
        line-height: 1.2;
        letter-spacing: 0.075px;
    }

    .advantages__content {
        margin: 0px -15px 30px;
    }

    .column-advantages__body {
        padding: 15px;
    }

    .column-advantages__title {
        font-size: 19px;
    }

    .column-advantages__text {
        font-size: 14px;
        line-height: 1.5;
    }
}



/*==========================================================================================================================================================================*/
/* Questions */
.header-questions {
    position: relative;
    background-color: #00C8F4;
}

.header-questions__body {
    position: relative;
    padding: 60px 0px 68px;
}

.header-questions__images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.25;
}

.header-questions__image {
    position: absolute;
    top: 0;
    right: 0;
}

.header-questions__image:first-child {
    width: 660px;
}

.header-questions__image:nth-child(2) {
    top: 60px;
    width: 670px;
}

.header-questions__image._mobile {
    display: none;
}

.header-questions__image img {
    width: 100%;
    height: 100%;
}

.header-questions__image img:nth-child(2) {
    display: none;
}

.header-questions__title {
    max-width: 878px;
    font-size: 53px;
}

.questions__body {
    max-width: 880px;
    margin: 0px auto;
    padding: 60px 0 80px;
}

.content-questions {
    margin: 0px 0px 40px 0px;
}

.item-question {
    position: relative;
}

.item-question::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;	
    background-color: #D9D9D9;
}

.item-question:last-child::before {
    display: none;
}

.item-question__title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0px 20px;
    font-size: 27px;
    line-height: 1.37;
    color: #2C2C2C;
    cursor: default;
    transition: color 0.3s ease;
}

.item-question__title:last-child::before {
    display: none;
}

.item-question__title span {
    display: inline-block;
    padding: 0px 40px 0px 0px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.item-question__title img {
    width: 15px;
    transition: transform 0.3s ease-in-out;
}

.action-questions {
    display: flex;
    gap: 20px;
}

.action-questions__more {
    display: flex;
}

.action-questions__more a {
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0.1px;
    color: #212121;
    background-color: #fff;
    border: 1px solid #212121;
    transition: color 0.2s ease;
}

.action-questions__more img {
    margin: 0px 0px 0px 20px;
    width: 18px;
    transform: translateX(0px);
    transition: transform 0.3s ease-in-out;
}


/*===================================================================================*/
/* Media Queries */
@media (any-hover: hover) {
    .item-question__title span:hover {
        color: #0069E1;
    }

    .item-question__title span:hover ~ img {
        transform: rotate(45deg);
    }

    .action-questions__more a:hover {
        background-color: #fff;
    }

    .action-questions a:hover img {
        transform: translateX(8px);
    }
}

@media (max-width: 1240px) {
    .header-questions__body {
        padding-top: calc(40px + 20 * ((100vw - 320px) / (1240 - 360)));
        padding-bottom: calc(60px + 8 * ((100vw - 320px) / (1240 - 360)));
    }

    .header-questions__title {
        font-size: calc(30px + 23 * ((100vw - 320px) / (1240 - 360)));
        max-width: 78%;
    }
    
    .questions__body {
        padding-top: calc(10px + 50 * ((100vw - 320px) / (1240 - 360)));
        padding-bottom: calc(30px + 50 * ((100vw - 320px) / (1240 - 360)));
    }

    .item-question__title {
        font-size: calc(22px + 5 * ((100vw - 320px) / (1240 - 360)));
    }
}

@media (max-width: 991.98px) {
    .header-questions__image:first-child {
        width: 480px;
    }
    
    .header-questions__image:nth-child(2) {
        top: 44px;
        width: 490px;
    }

    .header-questions__image._mobile {
        display: block;
        top: 252px;
        width: 410px;
    }

    .action-questions > * {
        width: 100%;
    }

    .action-questions ._btn {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .header-questions__title {
        max-width: 95%;
    }

    .header-questions__image:first-child {
        width: 187px;
    }
    
    .header-questions__image:nth-child(2) {
        top: 27px;
        width: 190px;
    }

    .header-questions__image:nth-child(3) {
        width: 187px;
        top: 171px;
    }

    .content-questions {
        margin: 0px 0px 15px 0px;
    }

    .item-question__title {
        padding: 20px 0px 15px;
    }

    .action-questions {
        flex-direction: column;
    }

    .action-questions > * {
        display: flex;
        justify-content: center;
    }

    .action-questions ._btn {
        max-width: 380px;
    }
}



/*==========================================================================================================================================================================*/
/* Applications */
.applications {
    position: relative;
    overflow: hidden;
}

.header-applications {
    background-color: #FF3985;
}

.header-applications__images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.header-applications__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 660px;
    opacity: 0.25;
}

.header-applications__image:nth-child(2) {
    top: 60px;
    right: 10px;
}

.header-applications__image:nth-child(3) {
    top: 192px;
}

.header-applications__image img {
    width: 100%;
}

.header-applications__body {
    position: relative;
    padding: 60px 0;
    z-index: 5;
}

.header-applications__title {
    font-size: 56px;
}

.applications__body {
    position: relative;
    padding: 47px 0 82px;
    z-index: 5;
}

.applications__columns {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 80px;
}

.column-applications {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
}

.column-applications__label {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.1px;
    color: #141414;
}

.column-applications__items {
    margin: 40px 0px 0px 0px;
}

.column-applications__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
        cursor: pointer;

}

.column-applications__item::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 100px;
    width: calc(100% - 100px);
    height: 1px;	
    background-color: #D9D9D9;
}

.column-applications__item:last-child::before {
    display: none;
}

.column-applications__item:not(:last-child) {
    margin: 0px 0px 40px 0px;
}

.column-applications__image img {
    width: 60px;
    border-radius: 15px;
}

.column-applications__application {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.1px;
    color: #141414;
}


/*===================================================================================*/
/* Media Queries */
@media (max-width: 1240px) {
    .header-applications__body {
        padding-top: calc(37px + 23 * ((100vw - 320px) / (1240 - 360)));
        padding-bottom: calc(43px + 17 * ((100vw - 320px) / (1240 - 360)));
    }

    .header-applications__title {
        font-size: calc(30px + 26 * ((100vw - 320px) / (1240 - 360)));
    }

    .applications__body {
        padding-top: calc(30px + 17 * ((100vw - 320px) / (1240 - 360)));
        padding-bottom: calc(30px + 52 * ((100vw - 320px) / (1240 - 360)));
    }

    .column-applications__items {
        margin-top: calc(30px + 10 * ((100vw - 320px) / (1240 - 360)));
    }
}

@media (max-width: 991.98px) {
    .header-applications__image {
        right: -200px;
    }

    .header-applications__image:nth-child(2) {
        right: -190px;
    }

    .column-applications__item {
        -webkit-column-gap: 24px;
           -moz-column-gap: 24px;
                column-gap: 24px;
    }

    .column-applications__item::before {
        left: 84px;
        width: calc(100% - 84px);
    }

    .column-applications__label {
        font-size: 24px;
    }

    .column-applications__application {
        font-size: 22px;
    }
}

@media (max-width: 767.98px) {
    .header-applications__image {
        width: 200px;
    }
    
    .header-applications__image:nth-child(2) {
        top: 0;
        right: 0;
    }
    
    .header-applications__image:nth-child(3) {
        top: 105px;
        right: -5px;
    }

    .header-applications__image:first-child {
        display: none;
    }
}

@media (max-width: 650px) {
    .applications__columns {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        row-gap: 60px;
    }

    .column-applications__label {
        text-align: center;
    }

    .column-applications__item:last-child::before {
        display: block;
        bottom: -30px;
        left: 0;
        width: 100%;
    }

    .column-applications:last-child .column-applications__item:last-child::before {
        display: none;
    }
}

@media (max-width: 479.98px) {
    .column-applications__label {
        text-align: left;
    }
}



/*==========================================================================================================================================================================*/
/* News */
.header-news {
    background-color: #8024C0;
}

.header-news__images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.header-news__image {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.header-news__image:first-child {
    width: 570px;
}

.header-news__image:nth-child(2) {
    top: 65px;
    width: 577px;
}

.header-news__image:nth-child(3) {
    top: 293px;
    width: 570px;
}

.header-news__image img {
    width: 100%;
}

.header-news__body {
    padding: 80px 0;
}

.header-news__title {
    position: relative;
    margin: 0px 0px 80px 0px;
    z-index: 2;
}

.header-news__title span {
    white-space: nowrap;
}

.header-news__content {
    position: relative;
    z-index: 2;
}

.header-news__columns {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, 45.62% minmax(200px, 300px) minmax(200px, 300px));
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    row-gap: 40px;
}

.header-news__columns .column-news {
    width: 100%;
}

.column-news {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
}

.column-news_info:nth-child(2) {
    padding: 0px 30px 0px 0px;
}

.header-news__column .column-news__arrow,
.header-news__column .column-news__arrow img {
    pointer-events: none;
    width: 19px;
}

/*===================================================================================*/
/* News. Columns */
.content-news__columns {
    margin: 0px 0px 80px 0px;
}

.content-news__columns .column-news {
    padding: 0px 30px 60px 0px;
}

.content-news__columns .column-news::before,
.column-news_info:nth-child(2)::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
}

.content-news__columns .column-news::before {
    height: calc(100% - 60px);
    background-color: #D9D9D9;
}

.content-news__columns .column-news:nth-child(4n)::before {
    display: none;
}

.content-news__columns .column-news::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% + 30px);
    height: 1px;
    background-color: #D9D9D9;
}

.content-news__columns .column-news:nth-child(4n)::after {
    width: 100%;
}

.column-news__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
}

.column-news__date {
    margin: 0px 0px 20px 0px;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.1px;
    color: #FFFFFF;
}

.content-news__column .column-news__date,
.content-news__column .column-news__title {
    color: #343434;
}

.column-news__title {
    display: block;
    margin: 0px 0px 30px 0px;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: 0.1px;
    color: #FFFFFF;
    -webkit-transition: color 0.2s ease;
    -o-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

.column-news__text {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
}

.content-news__column .column-news__arrow {
    pointer-events: none;
    width: 15px;
}

.column-news__arrow img {
    width: 100%;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.column-news__image {
    position: relative;
    margin: 0px 0px 30px 0px;
    max-width: 240px;
}

.column-news_image img,
.column-news__image img {
    width: 100%;
    border-radius: 24px;
}

.content-news__body {
    padding: 60px 0px 80px;
}

.content-news__columns {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(200px, 1fr) 30px minmax(200px, 1fr) 30px minmax(200px, 1fr) 30px minmax(200px, 1fr);
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    row-gap: 60px;
}

.column-news_more {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    height: 100%;
}

.content-news__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}


/*===================================================================================*/
/* Media Queries */
@media (any-hover: hover) {
    .column-news__title:hover {
        color: #212121;
    }
    
    .content-news__column .column-news__title:hover {
        color: #0069E1;
    }

    .column-news__title:hover ~ .column-news__arrow img {
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg);
    }
}

@media (max-width: 1240px) {
    .header-news__body {
        padding-top: calc(40px + 40 * ((100vw - 320px) / (1240 - 360)));
        padding-bottom: calc(40px + 40 * ((100vw - 320px) / (1240 - 360)));
    }

    .header-news__title {
        margin-bottom: calc(30px + 50 * ((100vw - 320px) / (1240 - 360)));
    }

    .content-news__columns {
        margin-bottom: calc(30px + 50 * ((100vw - 320px) / (1240 - 360)));
    }

    .column-news__title {
        font-size: calc(18px + 6 * ((100vw - 320px) / (1240 - 360)));
        margin-bottom: calc(15px + 15 * ((100vw - 320px) / (1240 - 360)));
    }

    .column-news__image {
        margin-bottom: calc(20px + 10 * ((100vw - 320px) / (1240 - 360)));
    }

    .content-news__body  {
        padding-top: calc(30px + 30 * ((100vw - 320px) / (1240 - 360)));
        padding-bottom: calc(30px + 50 * ((100vw - 320px) / (1240 - 360)));
    }
}

@media (max-width: 991.98px) {
    .header-news__image:first-child {
        width: 350px;
    }
    
    .header-news__image:nth-child(2) {
        top: 41px;
        width: 355px;
    }
    
    .header-news__image:nth-child(3) {
        top: 181px;
        width: 350px;
    }

    .header-news__columns {
        display: block;
    }

    .header-news__columns .column-news_image {
        margin: 0px 0px 30px 0px;
    }

    .column-news_info:not(:last-child) {
        margin: 0px 0px 30px 0px;
        padding: 0px 0px 30px 0px;
    }

    .column-news_info:nth-child(2)::before {
        top: auto;
        bottom: 0;
        width: 100%;
        height: 1px;
    }

    .column-news_info:nth-child(3) {
        height: 100%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-grid-column-align: stretch;
            justify-self: stretch;
        -webkit-column-gap: 40px;
           -moz-column-gap: 40px;
                column-gap: 40px;
    }

    .column-news__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .column-news_image {
        -ms-grid-column-span: 2;
        grid-column: span 2;
    }

    .column-news_image img {
        max-width: 540px;
        margin: 0px auto;
    }

    .column-news_info:nth-child(3) .column-news__image {
        margin: 0;
    }

    .content-news__columns {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
        row-gap: 40px;
    }

    .content-news__columns .column-news {
        padding: 0px 20px 40px 0px;
    }

    .content-news__columns .column-news:nth-child(5),
    .content-news__columns .column-news:nth-child(6),
    .content-news__columns .column-news:nth-child(7) {
        display: none;
    }

    .content-news__columns .column-news:nth-child(8) {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-column: 1/3;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .content-news__columns .column-news:nth-child(2n)::before,
    .column-news_more::before {
        display: none;
    }

    .content-news__columns .column-news::before {
        height: calc(100% - 40px);
    }
}

@media (max-width: 600px) {
    .column-news_info:nth-child(3) {
        display: block;
    }

    .content-news__columns {
        display: block;
        row-gap: 40px;
    }

    .content-news__columns .column-news {
        padding: 0px 0px 20px 0px;
    }

    .content-news__columns .column-news:not(:last-child) {
        margin: 0px 0px 20px 0px;
    }

    .content-news__columns .column-news::before {
        display: none;
    }

    .column-news_info:nth-child(3) .column-news__image {
        margin: 0px 0px 20px 0px;
    }
}

@media (max-width: 479.98px) {
    .header-news__image:first-child {
        width: 200px;
    }
    
    .header-news__image:nth-child(2) {
        top: 35px;
        right: -10px;
        width: 215px;
    }

    .header-news__image:nth-child(3) {
        display: none;
    }

    .header-news__columns {
        row-gap: 20px;
    }

    .header-news__columns .column-news_image {
        margin: 0px 0px 20px 0px;
    }

    .column-news_image img,
    .column-news__image img {
        border-radius: 16px;
    }

    .column-news_info:not(:last-child) {
        margin: 0px 0px 20px 0px;
        padding: 0px 0px 20px 0px;
    }

    .column-news__date {
        margin: 0px 0px 15px 0px;
    }

    .header-news__column  .column-news__arrow {
        width: 15px;
    }
}



/*==========================================================================================================================================================================*/
/* Articles */
.header-articles {
    background-color: #FF3985;
}

.header-articles__images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.header-articles__image {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.header-articles__image img {
    width: 720px;
}

.header-articles__body {
    position: relative;
    padding: 80px 0 60px;
    z-index: 2;
}

.header-articles__title {
    margin: 0px 0px 80px 0px;
}

.header-articles__content {
    position: relative;
    z-index: 2;
}

.header-articles__row {
    position: relative;
    display: -ms-grid;
    display: grid;
}

.header-articles__row:first-child {
    grid-template-columns: repeat(auto-fit, 64.4% minmax(200px, 380px));
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
}

.header-articles__row:nth-child(2) {
    grid-template-columns: repeat(auto-fit, 45.76% minmax(300px, 580px));
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
}

.header-articles__row:not(:last-child) {
    padding: 0px 0px 60px 0px;
    margin: 0px 0px 60px 0px;
}

.header-articles__row:not(:last-child)::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);	
}

.column-articles_image img {
    max-width: 760px;
    border-radius: 24px;
}

.column-articles_image img,
.column-articles__image img {
    width: 100%;
}

.column-articles {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
}

.column-articles:first-child {
    padding: 0px 60px 0px 0px;
}

.column-articles:first-child::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
}

.content-articles .column-articles::before {
    background-color: #D9D9D9;
}

.header-articles__row:first-child .column-articles::before {
    display: none;
}

.header-articles__row:first-child .column-articles {
    padding: 0;
}

.column-articles__title {
    display: block;
    margin-bottom: 20px;
    font-size: 31px;
    line-height: 1.19;
    color: #FFFFFF;
    -webkit-transition: color 0.2s ease;
    -o-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

.column-articles__text {
    margin-bottom: 40px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    font-size: 18px;
    line-height: 1.39;
    color: #FFFFFF;
}

.content-articles__column .column-articles__title,
.content-articles__column .column-articles__text {
    color: #343434;
}

.column-articles__arrow {
    pointer-events: none;
}

.column-articles__arrow img {
    width: 19px;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.column-articles__image {
    margin: 0px 0px 40px 0px;
}

.column-articles__image img {
    border-radius: 24px;
}

.content-articles__body {
    padding: 60px 0 80px;
}

.content-articles__columns {
    position: relative;
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, 54.23% minmax(250px, 480px));
    margin: 0px 0px 80px 0px;
    padding: 0px 0px 60px 0px;
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
}

.content-articles__columns::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;	
    background-color: #D9D9D9;
}

.column-articles__content {
    position: relative;
    padding: 0px 0px 60px 0px;
    margin: 0px 0px 60px 0px;
}

.column-articles__content::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #D9D9D9;
}	

.column-articles__button-more .column_more {
    max-width: 100%;
}

.content-articles__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}


/*===================================================================================*/
/* Media Queries */
@media (any-hover: hover) {
    .header-articles__row .column-articles__title:hover {
        color: #343434;
    }

    .column-articles__title:hover {
        color: #0069E1;
    }

    .column-articles__title:hover ~ .column-articles__arrow img {
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg);
    }
}

@media (max-width: 1240px) {
    .header-articles__body {
        padding-top: calc(40px + 40 * ((100vw - 320px) / (1240 - 360)));
        padding-bottom: calc(40px + 20 * ((100vw - 320px) / (1240 - 360)));
    }

    .header-articles__title {
        margin-bottom: calc(30px + 50 * ((100vw - 320px) / (1240 - 360)));
    }

    .header-articles__row:not(:last-child) {
        margin-bottom: calc(20px + 40 * ((100vw - 320px) / (1240 - 360)));
        padding-bottom: calc(20px + 40 * ((100vw - 320px) / (1240 - 360)));
    }

    .content-articles__body {
        padding-top: calc(30px + 30 * ((100vw - 320px) / (1240 - 360)));
        padding-bottom: calc(40px + 40 * ((100vw - 320px) / (1240 - 360)));
    }

    .content-articles__columns {
        padding-bottom: calc(20px + 40 * ((100vw - 320px) / (1240 - 360)));
        margin-bottom: calc(30px + 50 * ((100vw - 320px) / (1240 - 360)));
    }

    .column-articles__title {
        font-size: calc(18px + 13 * ((100vw - 320px) / (1240 - 360)));
    }

    .column-articles__text {
        font-size: calc(12px + 6 * ((100vw - 320px) / (1240 - 360)));
        margin-bottom: calc(15px + 25 * ((100vw - 320px) / (1240 - 360)));
    }

    .column-articles__content {
        padding-bottom: calc(20px + 40 * ((100vw - 320px) / (1240 - 360)));
        margin-bottom: calc(20px + 40 * ((100vw - 320px) / (1240 - 360)));
    }
}

@media (max-width: 991.98px) {
    .header-articles__image {
        right: -180px;
    } 

    .header-articles__image img {
        width: 450px;
    }

    .content-articles__columns,
    .header-articles__row:nth-child(2) {
        -webkit-column-gap: 40px;
           -moz-column-gap: 40px;
                column-gap: 40px;
    }

    .column-articles:first-child {
        padding: 0px 40px 0px 0px;
    }
}

@media (max-width: 767.98px) {
    .content-articles__columns,
    .header-articles__row {
        display: block;
    }

    .column-articles_image,
    .column-articles__image {
        margin: 0px 0px 20px 0px;
    }

    .column-articles:first-child::before {
        top: auto;
        bottom: 0;
        left: 0;
        right: auto;
        width: 100%;
        height: 1px;
    }

    .column-articles:not(:last-child) {
        padding: 0px 0px 30px 0px;
        margin: 0px 0px 30px 0px;
    }

    .column-articles_image img,
    .column-articles__image,
    .column-articles__text {
        max-width: 550px;
    }

    
    .column-articles__button-more .column_more {
        max-width: 380px;
    }
}

@media (max-width: 479.98px) {
    .header-articles__image {
        right: -150px;
    } 

    .header-articles__image img {
        width: 340px;
    }

    .column-articles__title {
        margin-bottom: 15px;
    }

    .column-articles__arrow {
        width: 15px;
    }

    .column-articles:not(:last-child) {
        padding: 0px 0px 20px 0px;
        margin: 0px 0px 20px 0px;
    }

    .column-articles_image img {
        min-height: 244px;
    }

    .header-articles__row:nth-child(2) .column-articles:first-child .column-articles__image img {
        max-width: 240px;
    }
}



/*==========================================================================================================================================================================*/
/* Reviews */
.header-reviews {
    background-color: #0077FF;
    overflow: hidden;
}

.header-reviews__images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.header-reviews__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 710px;
    z-index: 1;
}

.header-reviews__image:nth-child(2) {
    top: 156px;
}

.header-reviews__image:nth-child(3) {
    top: 312px;
}

.header-reviews__image img {
    width: 100%;
}

.header-reviews__body {
    position: relative;
    padding: 80px 0 120px;
    z-index: 5;
}

.header-reviews__title {
    max-width: 90%;
    margin: 0px 0px 40px 0px;
}

.header-reviews__text {
    max-width: 880px;
    font-size: 38px;
    line-height: 1.26;
    color: #FFFFFF;
}

.content-reviews {
    position: relative;
    background-color: #fff;
    z-index: 2;
}

.content-reviews__body {
    padding: 80px 0;
}

.content-reviews__columns {
    position: relative;
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, 40.67% minmax(300px, 640px));
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
    row-gap: 40px;
    margin: 0px 0px 80px 0px;
}

.content-reviews__columns::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;	
    background-color: #D9D9D9;
}

.content-reviews__column:nth-child(2)  {
    padding: 0px 0px 0px 60px;
}

.review-content {
    position: relative;
}

.review-content {
    padding: 0px 0px 60px 0px;
}

.review-content:not(:last-child) {
    margin: 0px 0px 60px 0px;
}

.content-reviews__column:nth-child(2) .review-content::after,
.review-content:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 0;
    background-color: #D9D9D9;	
}
 
.review-content:not(:last-child)::before {
    bottom: 0;
    width: 100%;
    height: 1px;
}

.content-reviews__column:first-child .review-content:nth-child(2)::before {
    display: none;
}

.content-reviews__column:nth-child(2) .review-content::after {
    top: 0;
    left: -60px;
    width: 1px;
    height: calc(100% - 60px);	
}

.review-content__image {
    margin: 0px 0px 40px 0px;
}

.review-content__image img {
    width: 100%;
}

.review-content__title {
    display: block;
    margin: 0px 0px 20px 0px;
    font-size: 31px;
    line-height: 1.19;
    color: #000000;
    -webkit-transition: color 0.2s ease;
    -o-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

.review-content__text {
    margin: 0px 0px 40px 0px;
    font-size: 18px;
    line-height: 1.78;
    color: #000000;
}

.review-content__text a {
    color: #0177FF;
    text-decoration: underline;
}

.review-content__arrow {
    pointer-events: none;
}

.review-content__arrow img {
    width: 19px;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.content-reviews__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.content-reviews__button-more {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
}


/*===================================================================================*/
/* Media Queries */
@media (any-hover: hover) {
    .review-content__title:hover {
        color: #0069E1;
    }

    .review-content__title:hover ~ .review-content__arrow img {
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg);
    }

    .review-content__text a:hover {
        text-decoration: none;
    }
}

@media (max-width: 1240px) {
    .header-reviews__body {
        padding-top: calc(40px + 40 * ((100vw - 320px) / (1240 - 360)));
        padding-bottom: calc(40px + 80 * ((100vw - 320px) / (1240 - 360)));
    }

    .header-reviews__title {
        margin-bottom: calc(15px + 25 * ((100vw - 320px) / (1240 - 360)));
    }

    .header-reviews__text {
        font-size: calc(20px + 18 * ((100vw - 320px) / (1240 - 360)));
    }

    .content-reviews__body {
        padding-top: calc(30px + 50 * ((100vw - 320px) / (1240 - 360)));
        padding-bottom: calc(40px + 40 * ((100vw - 320px) / (1240 - 360)));
    }

    .content-reviews__columns {
        -webkit-column-gap: 40px;
           -moz-column-gap: 40px;
                column-gap: 40px;
        margin-bottom: calc(30px + 50 * ((100vw - 320px) / (1240 - 360)));
    }

    .content-reviews__column:nth-child(2) {
        padding: 0px 0px 0px 40px;
    }

    .content-reviews__column:nth-child(2) .review-content::after {
        left: -40px;	
    }

    .review-content__image {
        margin-bottom: calc(20px + 20 * ((100vw - 320px) / (1240 - 360)));
    }
    
    .review-content__title {
        font-size: calc(20px + 11 * ((100vw - 320px) / (1240 - 360)));
    }
    
    .review-content__text {
        margin-bottom: calc(15px + 25 * ((100vw - 320px) / (1240 - 360)));
    }
}

@media (max-width: 991.98px) {
    .header-reviews__image {
        width: 450px;
    }
    
    .header-reviews__image:nth-child(2) {
        top: 100px;
    }
    
    .header-reviews__image:nth-child(3) {
        top: 200px;
    }

    .review-content {
        padding: 0px 0px 40px 0px;
    }

    .review-content:not(:last-child) {
        margin: 0px 0px 40px 0px;
    }

    .content-reviews__column:nth-child(2) .review-content::after {
        height: calc(100% - 40px);	
    }

    .content-reviews__button-more {
        bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .header-reviews__image {
        right: -210px;
    }

    .content-reviews__columns {
        display: block;
        padding: 0px 0px 80px 0px;
    }

    .content-reviews__column:nth-child(2)  {
        padding: 0;
    }
    
    .content-reviews__column:nth-child(2) .review-content::after {
        display: none;
    }

    .content-reviews__column:first-child .review-content:nth-child(2)::before {
        display: block;
    }

    .review-content__image img {
        max-width: 500px;
    }
}

@media (max-width: 479.98px) {
    .header-reviews__image {
        width: 370px;
        right: -175px;
    }

    .header-reviews__image:nth-child(2) {
        top: 81px;
    }
    
    .header-reviews__image:nth-child(3) {
        top: 162px;
    }

    .review-content {
        padding: 0px 0px 20px 0px;
    }

    .review-content:not(:last-child) {
        margin: 0px 0px 20px 0px;
    }

    .review-content__arrow {
        width: 15px;
    }

    .review-content__title {
        margin: 0px 0px 15px 0px;
        line-height: 1.25;
    }

    .review-content__text {
        line-height: 1.67;
    }

    .review-content__text a {
        text-decoration: none;
    }

    .review-content__text a span {
        display: block;
    }
}



/*==========================================================================================================================================================================*/
/* Footer */
.footer {
    position: relative;
    width: 100%;
    background-color: #F3F3F3;
    z-index: 2;
}

.footer__body {
    min-height: 200px;
    padding: 0px 0px 100px;
}

.footer__main {
    position: relative;
    padding: 80px 0;
}

.footer__main::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #D9D9D9;	
}

.menu-footer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.menu-footer__item:not(:last-child) {
    margin: 0px 40px 0px 0px;
}

.menu-footer__link {
    font-size: 20px;
    line-height: 1.85;
    color: #000000;
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
}

.bottom-footer {
    padding: 20px 0;
}

.bottom-footer__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
}

.bottom-footer__pages {
    font-size: 20px;
    line-height: 1.85;
    color: #000000;
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
}
.bottom-footer__logo{
	display: flex;
    align-items: center;
}
.bottom-footer__logo img.bottom_rustore {
    width: 207px;
    margin-right: 24px;
}
.bottom-footer__logo img {
    width: 150px;
}


/*===================================================================================*/
/* Media Queries */
@media (any-hover: hover) {
    .menu-footer__link:hover,
    .bottom-footer__pages:hover {
        color: #0069E1;
    }
}

@media (max-width: 1440px) {
    .footer__body {
        padding-bottom: calc(40px + 20 * ((100vw - 320px) / (1440 - 360)));
    }
}

@media (max-width: 1240px) {
    .footer__main {
        padding-top: calc(40px + 40 * ((100vw - 320px) / (1240 - 360)));
        padding-bottom: calc(40px + 40 * ((100vw - 320px) / (1240 - 360)));
    }

    .bottom-footer__logo img {
        width: calc(113px + 37 * ((100vw - 320px) / (1240 - 360)));
    }
}

@media (max-width: 767.98px) {
    .menu-footer__list {
        display: block;
    }

    .menu-footer__item:not(:last-child) {
        margin: 0px 0px 15px 0px;
    }

    .bottom-footer {
        padding: 32px 0 0;
    }

    .bottom-footer__row {
        display: block;
    }

    .bottom-footer__pages {
        margin: 0px 0px 20px 0px;
    }
}



/*==========================================================================================================================================================================*/
/* Grid */
._grid-three._even-columns .column-advantages:nth-child(4n) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
}

._grid-three._odd-columns .column-advantages:nth-child(4n) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
}

._grid-three._odd-columns .column-advantages:nth-child(5n) {
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
}

._grid-four._five-columns .column-advantages:nth-child(5n) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/4;
}

._grid-four._six-columns .column-advantages:nth-child(5n) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
}

._grid-four._six-columns .column-advantages:nth-child(6n) {
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-column: 3/5;
}

._grid-four._seven-columns .column-advantages:nth-child(5n) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
}

._grid-four._seven-columns .column-advantages:nth-child(6n) {
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
}

._grid-four._seven-columns .column-advantages:nth-child(7n) {
    -ms-grid-column: 4;
    -ms-grid-column-span: 1;
    grid-column: 4/5;
}