/*header*/
@keyframes slideIn {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translate(0%);
        transform: translate(0%);
    }
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    padding: 25px 0;
    width: 100%;
    z-index: 50;
    border-bottom: 1px solid transparent;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background: -o-linear-gradient(left, #545c69 0%, #262f3c 100%);
    background: -webkit-gradient(linear, left top, right top, from(#545c69), to(#262f3c));
    background: linear-gradient(90deg, #545c69 0%, #262f3c 100%);
}

.header_light {
    background: #f6f6f6;
}

@media only screen and (max-width: 992px) {
    .header {
        padding: 18px 0;
    }
}

.header--sticked {
    position: fixed;
    padding: 20px 0;
    border-color: #ff4e4e;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-animation: slideIn 0.5s ease-in-out;
    animation: slideIn 0.5s ease-in-out;
}

.header_light .header--sticked {
    border-color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .header--sticked {
        padding: 15px 0;
    }
}

.header__wrap {
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 992px) {
    .header__wrap {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
    height: auto;
}

@media only screen and (max-width: 992px) {
    .header__logo {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 175px;
        flex: 0 0 175px;
    }
}

@media only screen and (max-width: 576px) {
    .header__logo {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
        flex: 0 0 150px;
    }
}

.header__logo img {
    display: block;
    max-width: 100%;
}

.header__nav {
    margin-right: 70px;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 1200px) {
    .header__nav {
        margin: 0 auto;
    }
}

@media only screen and (max-width: 992px) {
    .header__nav {
        display: none;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
    }
}

.header__nav a {
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    position: relative;
}

.header_light .header__nav a {
    color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .header__nav a {
        font-size: 16px;
        line-height: 24px;
    }
}

.header__nav a:not(:last-child) {
    margin-right: 25px;
}

@media only screen and (max-width: 992px) {
    .header__nav a:not(:last-child) {
        margin-right: 0;
        margin-bottom: 30px;
    }
}

.header__nav a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #fff;
    width: 100%;
    max-width: 0;
    height: 1px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.header_light .header__nav a::before {
    background-color: #0f1011;
}

.header__nav a:hover::before {
    max-width: 100%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.header__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 20px;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: #fff;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.header__phone-box .header__link:first-child {
    padding-bottom: 5px;
}

.header__phone-box .header__link img {
    height: 15px;
}


@media only screen and (max-width: 992px) {
    
    .header__phone-box {
        margin: auto auto 0;
    }

    .header__phone-box .header__link:first-child {
        padding-bottom: 20px;
    }

    .header__phone-box .header__link img {
        height: 20px;
    }

    .header__link {
        display: none;
        font-size: 16px;
        margin: auto auto 0;
    }
}

.header_light .header__link {
    color: #0f1011;
}

.header__link:hover {
    color: #ff4e4e;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

@media only screen and (max-width: 992px) {
    .header__menu .header__link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.header__link img {
    pointer-events: none;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

@media only screen and (max-width: 992px) {
    .header__link img {
        margin-right: 10px;
    }
}

.header__link span {
    pointer-events: none;
}

.header__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    max-width: 180px;
    padding: 13px;
    background-color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #0f1011;
    border: 1px solid transparent;
    -webkit-transition: background 0.3s, color 0.3s, border 0.3s;
    -o-transition: background 0.3s, color 0.3s, border 0.3s;
    transition: background 0.3s, color 0.3s, border 0.3s;
}

@media only screen and (max-width: 992px) {
    .header__btn {
        display: none;
        max-width: 300px;
        font-size: 17px;
        padding: 16px;
        margin: 30px auto 0;
    }
}

@media only screen and (max-width: 992px) {
    .header__menu .header__btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.header_light .header__btn {
    background-color: #ff4e4e;
    color: #fff;
}

.header_light .header__btn:hover {
    background-color: #fff;
    color: #ff4e4e;
    border-color: #ff4e4e;
}

.header__btn:hover {
    background-color: #ff4e4e;
    color: #fff;
    -webkit-transition: background 0.3s, color 0.3s, border 0.3s;
    -o-transition: background 0.3s, color 0.3s, border 0.3s;
    transition: background 0.3s, color 0.3s, border 0.3s;
}

.header__menu {
    display: none;
    position: fixed;
    left: -100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    padding: 50px 20px 60px;
    top: 62px;
    height: calc(100% - 62px);
    width: 100%;
    background: -o-linear-gradient(left, #545c69 0%, #262f3c 100%);
    background: -webkit-gradient(linear, left top, right top, from(#545c69), to(#262f3c));
    background: linear-gradient(90deg, #545c69 0%, #262f3c 100%);
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    z-index: 50;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

@media only screen and (max-width: 992px) {
    .header__menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media only screen and (max-width: 576px) {
    .header__menu {
        top: 56px;
        height: calc(100% - 56px);
    }
}

.header_light .header__menu {
    background: #f6f6f6;
}

@media only screen and (max-width: 992px) {
    .header--sticked .header__menu {
        top: 56px;
        height: calc(100% - 56px);
    }
}

@media only screen and (max-width: 576px) {
    .header--sticked .header__menu {
        top: 50px;
        height: calc(100% - 50px);
    }
}

.header__menu--opened .header__menu {
    left: 0%;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.header__menu-btn {
    display: none;
    position: relative;
    height: 25px;
    width: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 992px) {
    .header__menu-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media only screen and (max-width: 576px) {
    .header__menu-btn {
        width: 24px;
        height: 18px;
    }
}

.header__menu-btn::before,
.header__menu-btn::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
    border-radius: 100px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    pointer-events: none;
}

@media only screen and (max-width: 576px) {

    .header__menu-btn::before,
    .header__menu-btn::after {
        height: 2px;
    }
}

.header_light .header__menu-btn::before,
.header_light .header__menu-btn::after {
    background-color: #ff4e4e;
}

.header__menu-btn::before {
    top: 0;
}

.header__menu-btn::after {
    bottom: 0;
}

.header__menu-btn span {
    display: block;
    margin: 5px 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
    border-radius: 100px;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    pointer-events: none;
}

@media only screen and (max-width: 576px) {
    .header__menu-btn span {
        margin: 2px 0;
        height: 2px;
    }
}

.header_light .header__menu-btn span {
    background-color: #ff4e4e;
}

.header__menu--opened .header__menu-btn::before,
.header__menu--opened .header__menu-btn::after {
    border-radius: 100px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate3d(0, 0, 1, 45deg);
    transform: translate(-50%, -50%) rotate3d(0, 0, 1, 45deg);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.header__menu--opened .header__menu-btn::after {
    -webkit-transform: translate(-50%, -50%) rotate3d(0, 0, 1, -45deg);
    transform: translate(-50%, -50%) rotate3d(0, 0, 1, -45deg);
}

.header__menu--opened .header__menu-btn span {
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.header__menu .header__nav {
    display: none;
}

@media only screen and (max-width: 992px) {
    .header__menu .header__nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.header__bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    pointer-events: none;
}

/*PROMO*/
.promo {
    padding: 160px 0 80px;
    background: -o-linear-gradient(left, #545c69 0%, #262f3c 100%);
    background: -webkit-gradient(linear, left top, right top, from(#545c69), to(#262f3c));
    background: linear-gradient(90deg, #545c69 0%, #262f3c 100%);
    position: relative;
}

@media only screen and (max-width: 992px) {
    .promo {
        padding: 90px 0 50px;
    }
}

.promo__wrap {
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
}

.promo__title {
    width: 100%;
    max-width: 990px;
    font-weight: 500;
    font-size: 55px;
    line-height: 65px;
    color: #fff;
}

@media only screen and (max-width: 992px) {
    .promo__title {
        font-size: 28px;
        line-height: 38px;
        max-width: 550px;
    }
}

@media only screen and (max-width: 576px) {
    .promo__title {
        text-align: center;
        margin: 0 auto;
    }
}

.promo__title span {
    color: #ff4e4e;
}

@media only screen and (max-width: 400px) {
    .promo__title span {
        display: block;
    }
}

.promo__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 50px;
    width: 100%;
    max-width: 240px;
    padding: 22px;
    background-color: #fff;
    font-weight: normal;
    font-size: 16px;
    line-height: 100%;
    color: #0f1011;
    -webkit-transition: background 0.3s, color 0.3s;
    -o-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
}

@media only screen and (max-width: 992px) {
    .promo__btn {
        margin-top: 30px;
        padding: 13px;
        font-size: 17px;
        line-height: 150%;
    }
}

@media only screen and (max-width: 576px) {
    .promo__btn {
        margin: 30px auto 0;
    }
}

.promo__btn:hover {
    background-color: #ff4e4e;
    color: #fff;
    -webkit-transition: background 0.3s, color 0.3s;
    -o-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
}

.promo__items {
    margin-top: 150px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 60px;
    gap: 60px;
}

@media only screen and (max-width: 992px) {
    .promo__items {
        margin-top: 50px;
        gap: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .promo__items {
        grid-template-columns: 1fr;
    }
}

.promo__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    height: auto;
    padding-left: 32px;
    position: relative;
}

@media only screen and (max-width: 992px) {
    .promo__item {
        padding-left: 27px;
    }
}

.promo__item-count {
    position: absolute;
    top: 0;
    left: 0;
    font-weight: normal;
    font-size: 16px;
    line-height: 100%;
    color: #ff4e4e;
}

.promo__item-text {
    font-weight: normal;
    font-size: 24px;
    line-height: 120%;
    color: #fff;
}

@media only screen and (max-width: 992px) {
    .promo__item-text {
        font-size: 18px;
    }
}

.promo__item a {
    z-index: 2;
}
.promo__item a div {
    border-bottom: 1px solid white;
    display: inline-flex;
}

.promo__item-list {
    margin-top: 15px;
    list-style-type: none;
    font-weight: normal;
    font-size: 18px;
    line-height: 150%;
    color: #fff;
}

@media only screen and (max-width: 992px) {
    .promo__item-list {
        margin-top: 10px;
        font-size: 14px;
    }
}

.promo__item-list li {
    padding-left: 17px;
    position: relative;
}

.promo__item-list li:not(:last-child) {
    margin-bottom: 5px;
}

.promo__item-list li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 100%;
    background-color: #ff4e4e;
}

.promo__bg {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
}

.promo__bg img {
    display: block;
}

@media only screen and (max-width: 1200px) {
    .promo__bg img {
        width: 600px;
    }
}

@media only screen and (max-width: 992px) {
    .promo__bg img {
        width: 500px;
    }
}

@media only screen and (max-width: 768px) {
    .promo__bg img {
        width: 400px;
    }
}

@media only screen and (max-width: 576px) {
    .promo__bg img {
        width: auto;
        max-width: 100%;
    }
}

/*facts*/
.facts {
    padding-top: 130px;
}

@media only screen and (max-width: 992px) {
    .facts {
        padding-top: 80px;
    }
}

.facts__wrap {
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
}

.facts__title {
    font-weight: normal;
    font-size: 40px;
    line-height: 140%;
    text-align: center;
    color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .facts__title {
        font-size: 22px;
        max-width: 750px;
        width: 100%;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 610px) {
    .facts__title br {
        display: none;
    }
}

.facts__title span {
    color: #ff4e4e;
}

.facts__content {
    margin-top: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media only screen and (max-width: 992px) {
    .facts__content {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .facts__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
    }
}

.facts__content-title {
    font-weight: normal;
    font-size: 24px;
    line-height: 120%;
    color: #ff4e4e;
    margin-right: 100px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 220px;
    flex: 0 0 220px;
}

@media only screen and (max-width: 992px) {
    .facts__content-title {
        font-size: 18px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 160px;
        flex: 0 0 160px;
        margin-right: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .facts__content-title {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
        max-width: 160px;
        margin-right: 0;
        margin-bottom: 30px;
    }
}

.facts__items {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
}

@media only screen and (max-width: 768px) {
    .facts__items {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
    }
}

.facts__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-top: 1px solid #c4c4c4;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

@media only screen and (min-width: 768px) {
    .facts__item:hover {
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }

    .facts__item:hover .facts__item-img {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        -webkit-transition: opacity 0.3s, visibility 0.3s;
        -o-transition: opacity 0.3s, visibility 0.3s;
        transition: opacity 0.3s, visibility 0.3s;
    }

    .facts__item:hover .facts__item-caption {
        max-width: 500px;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    .facts__item:hover .facts__item-caption {
        max-width: 400px;
    }
}

.facts__item:not(:last-child) {
    padding: 35px 0;
}

@media only screen and (max-width: 992px) {
    .facts__item:not(:last-child) {
        padding: 24px 0;
    }
}

.facts__item:last-child {
    padding-top: 35px;
}

@media only screen and (max-width: 992px) {
    .facts__item:last-child {
        padding-top: 24px;
    }
}

.facts__item-counter {
    font-weight: normal;
    font-size: 16px;
    line-height: 100%;
    color: #ff4e4e;
    margin-right: 10px;
}

@media only screen and (max-width: 992px) {
    .facts__item-counter {
        font-size: 14px;
        margin-right: 5px;
    }
}

@media only screen and (max-width: 768px) {
    .facts__item-counter {
        font-size: 12px;
    }
}

.facts__item-caption {
    width: 100%;
    max-width: 100%;
    font-weight: normal;
    font-size: 24px;
    line-height: 120%;
    color: #0f1011;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

@media only screen and (max-width: 992px) {
    .facts__item-caption {
        font-size: 18px;
        max-width: 500px;
    }
}

.facts__item-caption span {
    color: #ff4e4e;
}

.facts__item-img {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    -o-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1;
    max-width: 100%;
}

/*companies*/

.companies {
    padding: 150px 0;
    background: url(/static/images/backgrounds/companies-bg.png) top center/contain no-repeat;
}

@media only screen and (max-width: 992px) {
    .companies {
        background: url(/static/images/backgrounds/companies-bg.png) top center/cover no-repeat;
        padding: 80px 0;
    }
}

.residence-page .companies {
    padding: 150px 0 0;
    background: #ff4e4e;
}

@media only screen and (max-width: 992px) {
    .residence-page .companies {
        padding-top: 80px;
    }
}

.residence-page .companies .companies__title {
    color: #fff;
}

.residence-page .companies .companies__item-caption {
    color: #ff4e4e;
}

.companies__wrap {
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
}

.companies__title {
    width: 100%;
    max-width: 740px;
    margin: 0 auto;
    font-weight: normal;
    font-size: 40px;
    line-height: 140%;
    text-align: center;
    color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .companies__title {
        font-size: 22px;
        max-width: 550px;
    }
}

.companies__items {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
    gap: 12px;
}

@media only screen and (max-width: 992px) {
    .companies__items {
        margin-top: 30px;
        gap: 14px;
    }
}

@media only screen and (max-width: 768px) {
    .companies__items {
        grid-template-columns: 1fr;
    }
}

.companies__item {
    padding: 24px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    background-color: #fff;
    -webkit-box-shadow: -1px 1px 15px rgba(0, 0, 0, 0.05);
    box-shadow: -1px 1px 15px rgba(0, 0, 0, 0.05);
}

@media only screen and (max-width: 992px) {
    .companies__item {
        padding: 10px 15px;
    }
}

.companies__item-caption {
    font-weight: normal;
    font-size: 20px;
    line-height: 120%;
    color: #ff4e4e;
}

@media only screen and (max-width: 992px) {
    .companies__item-caption {
        font-size: 18px;
    }
}

@media only screen and (max-width: 768px) {
    .companies__item-caption {
        font-size: 16px;
    }
}

@media only screen and (max-width: 576px) {
    .companies__item-caption {
        font-size: 13px;
    }
}

.companies__item-img {
    margin-top: 26px;
    display: block;
    max-width: 100%;
}

@media only screen and (max-width: 992px) {
    .companies__item-img {
        margin-top: 13px;
    }
}

@media only screen and (max-width: 768px) {
    .companies__item-img {
        margin: 0 auto;
    }
}

/*business*/
.business {
    padding: 150px 0 600px;
    background-color: #ff4e4e;
    position: relative;
}

@media only screen and (max-width: 992px) {
    .business {
        padding: 80px 0 0;
    }
}

.business__wrap {
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
}

@media only screen and (max-width: 992px) {
    .business__wrap {
        padding: 0;
    }
}

.business__title {
    font-weight: normal;
    font-size: 40px;
    line-height: 140%;
    color: #fff;
}

@media only screen and (max-width: 992px) {
    .business__title {
        padding: 0 20px;
        font-size: 22px;
    }
}

.business__content {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media only screen and (max-width: 992px) {
    .business__content {
        padding: 0 20px;
        margin-top: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .business__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
    }
}

.business__content-title {
    font-weight: normal;
    font-size: 24px;
    line-height: 120%;
    color: #fff;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 240px;
    flex: 0 0 240px;
    margin-right: 100px;
}

@media only screen and (max-width: 992px) {
    .business__content-title {
        font-size: 18px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
        flex: 0 0 200px;
        margin-right: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .business__content-title {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
    }
}

.business__content-descr {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
}

@media only screen and (max-width: 768px) {
    .business__content-descr {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
        margin-top: 20px;
    }
}

.business__text {
    font-weight: normal;
    font-size: 24px;
    line-height: 120%;
    color: #fff;
}

@media only screen and (max-width: 992px) {
    .business__text {
        font-size: 16px;
    }
}

.business__text p:not(:last-child) {
    margin-bottom: 20px;
}

@media only screen and (max-width: 992px) {
    .business__text p:not(:last-child) {
        margin-bottom: 10px;
    }
}

.business__items {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px 30px;
    gap: 50px 30px;
}

@media only screen and (max-width: 992px) {
    .business__items {
        gap: 30px;
        margin-top: 30px;
    }
}

@media only screen and (max-width: 576px) {
    .business__items {
        grid-template-columns: 1fr;
    }
}

.business__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
}

.business__item-header {
    font-weight: normal;
    font-size: 40px;
    line-height: 140%;
    color: #fff;
}

@media only screen and (max-width: 992px) {
    .business__item-header {
        font-size: 30px;
    }
}

.business__item-divider {
    width: 100%;
    height: 1px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1px;
    flex: 0 0 1px;
    background-color: #fff;
    margin: 10px 0;
}

.business__item-subheader {
    font-weight: normal;
    font-size: 20px;
    line-height: 120%;
    color: #fff;
}

@media only screen and (max-width: 992px) {
    .business__item-subheader {
        font-size: 16px;
    }
}

.business__img {
    display: block;
    position: absolute;
    bottom: -230px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: 100%;
}

@media only screen and (max-width: 1200px) {
    .business__img {
        max-width: calc(100% - 40px);
        bottom: -200px;
    }
}

@media only screen and (max-width: 1100px) {
    .business__img {
        bottom: -150px;
    }
}

@media only screen and (max-width: 1050px) {
    .business__img {
        bottom: -100px;
    }
}

@media only screen and (max-width: 992px) {
    .business__img {
        max-width: 100%;
        margin-top: 50px;
        position: relative;
        bottom: unset;
        left: unset;
        -webkit-transform: unset;
        -ms-transform: unset;
        transform: unset;
    }
}

/*advantages*/
.advantages {
    padding-top: 320px;
}

@media only screen and (max-width: 1200px) {
    .advantages {
        padding-top: 275px;
    }
}

@media only screen and (max-width: 1100px) {
    .advantages {
        padding-top: 215px;
    }
}

@media only screen and (max-width: 1050px) {
    .advantages {
        padding-top: 175px;
    }
}

@media only screen and (max-width: 992px) {
    .advantages {
        padding-top: 50px;
    }
}

.advantages__wrap {
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
}

.advantages__label {
    font-weight: normal;
    font-size: 24px;
    line-height: 120%;
    color: #ff4e4e;
}

@media only screen and (max-width: 992px) {
    .advantages__label {
        font-size: 18px;
    }
}

.advantages__title {
    margin-top: 25px;
    font-weight: normal;
    font-size: 40px;
    line-height: 140%;
    color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .advantages__title {
        margin-top: 10px;
        font-size: 22px;
    }
}

.advantages__title span {
    color: #ff4e4e;
}

.advantages__text {
    margin-top: 50px;
    font-weight: normal;
    font-size: 24px;
    line-height: 135%;
    color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .advantages__text {
        margin-top: 20px;
        font-size: 16px;
    }
}

.advantages__text span {
    color: #ff4e4e;
}

.advantages__items {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 12px;
    gap: 12px;
}

@media only screen and (max-width: 992px) {
    .advantages__items {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .advantages__items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 576px) {
    .advantages__items {
        grid-template-columns: 1fr;
    }
}

.advantages__item {
    padding: 24px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    background-color: #fff;
    -webkit-box-shadow: -1px 1px 15px rgba(0, 0, 0, 0.05);
    box-shadow: -1px 1px 15px rgba(0, 0, 0, 0.05);
}

.advantages__item-counter {
    font-weight: normal;
    font-size: 20px;
    line-height: 120%;
    color: #ff4e4e;
    margin-bottom: 45px;
}

@media only screen and (max-width: 992px) {
    .advantages__item-counter {
        font-size: 18px;
        margin-bottom: 30px;
    }
}

.advantages__item-header {
    font-weight: normal;
    font-size: 40px;
    line-height: 120%;
    color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .advantages__item-header {
        font-size: 30px;
    }
}

.advantages__item-subheader {
    margin-top: 10px;
    font-weight: normal;
    font-size: 18px;
    line-height: 120%;
    color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .advantages__item-subheader {
        margin-top: 5px;
        font-size: 16px;
    }
}

.questions {
    position: relative;
    padding: 100px 0;
}

@media only screen and (max-width: 992px) {
    .questions {
        padding: 80px 0;
    }
}

.residence-page .questions_purp {
    padding: 150px 0;
}

@media only screen and (max-width: 992px) {
    .residence-page .questions_purp {
        padding: 80px 0;
    }
}

.company-page .questions_purp {
    background-color: #ff4e4e;
    padding-bottom: 350px;
}

@media only screen and (max-width: 992px) {
    .company-page .questions_purp {
        padding-bottom: 0;
    }
}

.residence-page .questions_white {
    padding: 100px 0;
    background-color: #ff4e4e;
}

@media only screen and (max-width: 992px) {
    .residence-page .questions_white {
        padding: 50px 0;
    }
}

.company-page .questions_white {
    background-color: #fff;
    padding: 80px 0;
}

.questions__wrap {
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
}

.questions__content {
    padding: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media only screen and (max-width: 992px) {
    .questions__content {
        padding: 80px 20px;
    }
}

@media only screen and (max-width: 768px) {
    .questions__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: initial;
        -ms-flex-align: initial;
        align-items: initial;
    }
}

.questions_purp .questions__content {
    background-color: #ff4e4e;
}

.company-page .questions_purp .questions__content {
    padding: 0 0 30px;
}

.questions_white .questions__content {
    background-color: #fff;
}

.company-page .questions_white .questions__content {
    padding: 0 20px;
}

.questions__title {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 360px;
    flex: 0 0 360px;
    margin-right: 40px;
    font-weight: normal;
    font-size: 30px;
    line-height: 140%;
}

@media only screen and (max-width: 992px) {
    .questions__title {
        font-size: 22px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 270px;
        flex: 0 0 270px;
        margin-right: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .questions__title {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
        max-width: 270px;
        margin-right: 0;
        margin-bottom: 50px;
    }
}

.questions_purp .questions__title {
    color: #fff;
}

.questions_white .questions__title {
    color: #ff4e4e;
}

.questions__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
}

@media only screen and (max-width: 768px) {
    .questions__form {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
    }
}

.questions__fields {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
}

.questions__fields-col-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px 20px;
    gap: 50px 20px;
}

@media only screen and (max-width: 992px) {
    .questions__fields-col-2 {
        gap: 40px 20px;
    }
}

@media only screen and (max-width: 576px) {
    .questions__fields-col-2 {
        grid-template-columns: 1fr;
    }
}

.questions__fields .iti {
    margin-bottom: 50px;
}

.questions__fields .iti input {
    width: 100%;
}

.questions__fields-col-2 .questions__fields-col-2 .iti {
    grid-column: 1 / 2;
}

.questions__fields-col-2 input,
.questions__fields-col-2 .iti {
    margin: 0 !important;
}

.questions__fields input {
    border: none;
    border-bottom: 1px solid transparent;
    font-weight: normal;
    font-size: 18px;
    line-height: 150%;
    opacity: 0.7;
    padding-bottom: 11px;
    background: transparent;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

@media only screen and (max-width: 992px) {
    .questions__fields input {
        padding-bottom: 8px;
        font-size: 16px;
    }
}

.questions__fields input:focus {
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.questions__fields input:not(:last-child) {
    margin-bottom: 50px;
}

@media only screen and (max-width: 992px) {
    .questions__fields input:not(:last-child) {
        margin-bottom: 40px;
    }

    .questions__fields .iti {
        margin-bottom: 40px;
    }
}

.questions__fields-col-2 input.questions__name,
.questions__fields-col-2 input.questions__quantity {
    grid-column: span 2;
}

@media only screen and (max-width: 576px) {

    .questions__fields input.questions__name,
    .questions__fields input.questions__quantity {
        grid-column: initial;
    }
}

.questions_purp .questions__fields input {
    color: #fff;
    border-color: #fff;
}

.questions_purp .questions__fields input::-webkit-input-placeholder {
    color: #fff;
}

.questions_purp .questions__fields input::-moz-placeholder {
    color: #fff;
}

.questions_purp .questions__fields input:-ms-input-placeholder {
    color: #fff;
}

.questions_purp .questions__fields input::-ms-input-placeholder {
    color: #fff;
}

.questions_purp .questions__fields input::placeholder {
    color: #fff;
}

.questions_white .questions__fields input {
    color: #ff4e4e;
    border-color: #ff4e4e;
}

.questions_white .questions__fields input::-webkit-input-placeholder {
    color: #ff4e4e;
}

.questions_white .questions__fields input::-moz-placeholder {
    color: #ff4e4e;
}

.questions_white .questions__fields input:-ms-input-placeholder {
    color: #ff4e4e;
}

.questions_white .questions__fields input::-ms-input-placeholder {
    color: #ff4e4e;
}

.questions_white .questions__fields input::placeholder {
    color: #ff4e4e;
}

.questions__footer {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 992px) {
    .questions__footer {
        margin-top: 50px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
    }
}

.questions__btn {
    padding: 22px;
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 240px;
    flex: 0 0 240px;
    margin-right: 30px;
    font-weight: normal;
    font-size: 16px;
    line-height: 100%;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

@media only screen and (max-width: 992px) {
    .questions__btn {
        padding: 16px;
        font-size: 17px;
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        max-width: 300px;
        margin: 0 auto;
    }
}

.questions__btn:hover {
    opacity: 0.6;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

@media only screen and (max-width: 768px) {
    .questions__btn:hover {
        opacity: 1;
    }
}

.questions_purp .questions__btn {
    background-color: #fff;
    color: #0f1011;
}

.questions_white .questions__btn {
    background-color: #ff4e4e;
    color: #fff;
}

.questions__policy {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    font-weight: normal;
    font-size: 14px;
    line-height: 140%;
}

@media only screen and (max-width: 992px) {
    .questions__policy {
        margin-top: 15px;
        text-align: center;
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
        max-width: 300px;
    }
}

.questions__policy a {
    color: inherit;
    text-decoration: underline;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.questions__policy a:hover {
    opacity: 0.5;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.questions_purp .questions__policy {
    color: rgba(255, 255, 255, 0.6);
}

.questions_white .questions__policy {
    color: #c4c4c4;
}

.questions__img {
    width: 100%;
    max-width: 1140px;
    position: absolute;
    bottom: -380px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media only screen and (max-width: 1140px) {
    .questions__img {
        bottom: -300px;
    }
}

@media only screen and (max-width: 992px) {
    .questions__img {
        bottom: unset;
        left: unset;
        -webkit-transform: unset;
        -ms-transform: unset;
        transform: unset;
        position: relative;
    }
}

.questions__img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.residence {
    padding: 150px 0;
    background-color: #545c69;
}

@media only screen and (max-width: 992px) {
    .residence {
        padding: 80px 0;
    }
}

.residence__wrap {
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
}

.residence__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media only screen and (max-width: 768px) {
    .residence__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: initial;
        -ms-flex-align: initial;
        align-items: initial;
    }
}

.residence__title {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 250px;
    flex: 0 0 250px;
    margin-right: 100px;
    font-weight: normal;
    font-size: 24px;
    line-height: 120%;
    color: #fff;
}

@media only screen and (max-width: 1200px) {
    .residence__title {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 220px;
        flex: 0 0 220px;
        margin-right: 50px;
    }
}

@media only screen and (max-width: 992px) {
    .residence__title {
        font-size: 18px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 190px;
        flex: 0 0 190px;
        margin-right: 40px;
    }
}

@media only screen and (max-width: 768px) {
    .residence__title {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
}

.residence__descr {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
}

@media only screen and (max-width: 768px) {
    .residence__descr {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
    }
}

.residence__text {
    font-weight: normal;
    font-size: 40px;
    line-height: 140%;
    color: #fff;
}

@media only screen and (max-width: 992px) {
    .residence__text {
        font-size: 22px;
    }
}

.residence__text span {
    color: #ff4e4e  ;
}

.residence__items {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
    gap: 12px;
}

@media only screen and (max-width: 992px) {
    .residence__items {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 576px) {
    .residence__items {
        grid-template-columns: 1fr;
    }
}

.residence__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    padding: 20px 24px;
    background-color: #545c69;
    border: 1px solid #fff;
}

.residence__item-counter {
    margin-bottom: 120px;
    font-weight: normal;
    font-size: 24px;
    line-height: 120%;
    color: #ff4e4e;
}

@media only screen and (max-width: 992px) {
    .residence__item-counter {
        margin-bottom: 50px;
        font-size: 18px;
    }
}

.residence__item-header {
    font-weight: normal;
    font-size: 24px;
    line-height: 120%;
    color: #fff;
}

@media only screen and (max-width: 992px) {
    .residence__item-header {
        font-size: 18px;
    }
}

.residence__item-subheader {
    margin-top: 12px;
    font-weight: normal;
    font-size: 18px;
    line-height: 150%;
    color: #fff;
}

@media only screen and (max-width: 992px) {
    .residence__item-subheader {
        font-size: 16px;
    }
}

.realty {
    padding-top: 150px;
}

@media only screen and (max-width: 992px) {
    .realty {
        padding-top: 80px;
    }
}

.company-page .realty {
    padding: 150px 0;
    background-color: #545c69;
}

@media only screen and (max-width: 992px) {
    .company-page .realty {
        padding: 80px 0;
    }
}

.realty__wrap {
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
}

.realty__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media only screen and (max-width: 1200px) {
    .realty__content {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media only screen and (max-width: 992px) {
    .realty__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: initial;
        -ms-flex-align: initial;
        align-items: initial;
        -webkit-box-pack: initial;
        -ms-flex-pack: initial;
        justify-content: initial;
    }
}

.realty__title {
    font-weight: normal;
    font-size: 24px;
    line-height: 120%;
    color: #ff4e4e;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 270px;
    flex: 0 0 270px;
    margin-right: 90px;
}

@media only screen and (max-width: 1200px) {
    .realty__title {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 250px;
        flex: 0 0 250px;
        margin-right: 50px;
    }
}

@media only screen and (max-width: 992px) {
    .realty__title {
        font-size: 18px;
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
        margin-bottom: 30px;
        margin-right: 0;
    }
}

.realty__items {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
}

@media only screen and (max-width: 992px) {
    .realty__items {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
    }
}

.realty__item {
    padding: 32px 0;
    border-top: 1px solid #c4c4c4;
}

@media only screen and (max-width: 992px) {
    .realty__item {
        padding: 25px 0;
    }
}

.realty__item:last-child {
    border-bottom: 1px solid #c4c4c4;
}

.realty__item-btn {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    -webkit-transition: margin 0.3s;
    -o-transition: margin 0.3s;
    transition: margin 0.3s;
}

.realty__item--opened .realty__item-btn {
    margin-bottom: 20px;
    -webkit-transition: margin 0.3s;
    -o-transition: margin 0.3s;
    transition: margin 0.3s;
}

.realty__item-btn:hover .realty__item-counter,
.realty__item-btn:hover .realty__item-caption {
    color: #ff4e4e;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.realty__item-btn:hover .realty__item-arr path {
    stroke: #ff4e4e;
    -webkit-transition: stroke 0.3s;
    -o-transition: stroke 0.3s;
    transition: stroke 0.3s;
}

.realty__item-counter {
    font-weight: normal;
    font-size: 24px;
    line-height: 140%;
    color: #0f1011;
    margin-right: 10px;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

@media only screen and (max-width: 992px) {
    .realty__item-counter {
        font-size: 16px;
    }
}

.company-page .realty__item-counter {
    color: #fff;
}

.realty__item--opened .realty__item-counter {
    color: #ff4e4e;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.realty__item-caption {
    margin-right: 10px;
    text-align: left;
    font-weight: normal;
    font-size: 40px;
    line-height: 140%;
    color: #0f1011;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

@media only screen and (max-width: 992px) {
    .realty__item-caption {
        font-size: 22px;
    }
}

.company-page .realty__item-caption {
    color: #fff;
}

.realty__item--opened .realty__item-caption {
    color: #ff4e4e;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.realty__item-arr {
    display: block;
    max-width: 100%;
    margin: auto 0 auto auto;
}

@media only screen and (max-width: 992px) {
    .realty__item-arr {
        max-width: 16px;
    }
}

.realty__item-arr svg {
    height: auto;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

@media only screen and (max-width: 992px) {
    .realty__item-arr svg {
        max-width: inherit;
    }
}

.realty__item--opened .realty__item-arr svg {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.realty__item-arr path {
    -webkit-transition: stroke 0.3s;
    -o-transition: stroke 0.3s;
    transition: stroke 0.3s;
}

.company-page .realty__item-arr path {
    stroke: #fff;
}

.realty__item--opened .realty__item-arr path {
    stroke: #ff4e4e;
    -webkit-transition: stroke 0.3s;
    -o-transition: stroke 0.3s;
    transition: stroke 0.3s;
}

.realty__item-subblock {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    pointer-events: none;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.realty__item--opened .realty__item-subblock {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.realty__item-text {
    margin: 15px 0;
    font-weight: normal;
    font-size: 18px;
    line-height: 150%;
    color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .realty__item-text {
        margin: 10px 0;
        font-size: 16px;
    }
}

.realty__item-text:first-child {
    margin-top: 0;
}

.realty__item-text:last-child {
    margin-bottom: 0;
}

.realty__item-text span {
    color: #ff4e4e;
}

.company-page .realty__item-text {
    color: #fff;
}

.realty__item-list {
    margin: 15px 0;
    list-style-type: none;
    font-weight: normal;
    font-size: 18px;
    line-height: 150%;
    color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .realty__item-list {
        margin: 10px 0;
        font-size: 16px;
    }
}

.realty__item-list a {
    color: inherit;
}

.realty__item-list li {
    position: relative;
    padding-left: 16px;
}

@media only screen and (max-width: 992px) {
    .realty__item-list li {
        padding-left: 12px;
    }
}

.realty__item-list li:not(:last-child) {
    margin-bottom: 10px;
}

@media only screen and (max-width: 992px) {
    .realty__item-list li:not(:last-child) {
        margin-bottom: 5px;
    }
}

.realty__item-list li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: #ff4e4e;
}

@media only screen and (max-width: 992px) {
    .realty__item-list li::before {
        top: 8px;
    }
}

.realty__item-list:first-child {
    margin-top: 0;
}

.realty__item-list:last-child {
    margin-bottom: 0;
}

.company-page .realty__item-list {
    color: #fff;
}

.realty__item-slider {
    margin-top: 30px;
    max-width: 780px;
}

@media only screen and (max-width: 1190px) {
    .realty__item-slider {
        max-width: 650px;
    }
}

@media only screen and (max-width: 992px) {
    .realty__item-slider {
        margin-top: 15px;
    }
}

.realty__item-slider::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background: -o-linear-gradient(left, rgba(247, 247, 247, 0) 0%, #f7f7f7 99.99%, #f7f7f7 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(247, 247, 247, 0)), color-stop(99.99%, #f7f7f7), to(#f7f7f7));
    background: linear-gradient(90deg, rgba(247, 247, 247, 0) 0%, #f7f7f7 99.99%, #f7f7f7 100%);
    z-index: 1;
    pointer-events: none;
}

@media only screen and (max-width: 400px) {
    .realty__item-slider::after {
        display: none;
    }
}

.realty__item-slide {
    width: auto;
}

.realty__item-slide img {
    height: auto;
}

@media only screen and (max-width: 576px) {
    .realty__item-slide img {
        max-width: 260px;
        height: 170px;
    }
}

.transfer {
    padding: 150px 0;
}

@media only screen and (max-width: 992px) {
    .transfer {
        padding: 80px 0;
    }
}

.transfer__wrap {
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
}

.transfer__title {
    font-weight: normal;
    font-size: 40px;
    line-height: 140%;
    color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .transfer__title {
        font-size: 22px;
    }
}

.transfer__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 100px;
}

@media only screen and (max-width: 992px) {
    .transfer__content {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .transfer__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: initial;
        -ms-flex-align: initial;
        align-items: initial;
    }
}

.transfer__content-title {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 250px;
    flex: 0 0 250px;
    margin-right: 100px;
    font-weight: normal;
    font-size: 24px;
    line-height: 120%;
    color: #ff4e4e;
}

@media only screen and (max-width: 992px) {
    .transfer__content-title {
        font-size: 18px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 190px;
        flex: 0 0 190px;
        margin-right: 40px;
    }
}

@media only screen and (max-width: 768px) {
    .transfer__content-title {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
}

.transfer__items {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
}

@media only screen and (max-width: 768px) {
    .transfer__items {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
        margin-top: 30px;
    }
}

.transfer__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    padding: 35px 40px;
}

@media only screen and (max-width: 992px) {
    .transfer__item {
        padding: 28px 20px;
    }
}

.transfer__item-counter {
    margin-right: 24px;
    font-weight: normal;
    font-size: 20px;
    line-height: 150%;
    color: #ff4e4e;
}

@media only screen and (max-width: 992px) {
    .transfer__item-counter {
        margin-right: 12px;
        font-size: 16px;
    }
}

.transfer__item-caption {
    font-weight: normal;
    font-size: 20px;
    line-height: 150%;
    color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .transfer__item-caption {
        font-size: 16px;
    }
}

.transfer__item:not(:last-child) {
    margin-bottom: 12px;
}

.investment {
    background: #545c69;
    padding: 150px 0;
}

@media only screen and (max-width: 992px) {
    .investment {
        padding: 80px 0;
    }
}

.investment__wrap {
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
}

.investment__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media only screen and (max-width: 768px) {
    .investment__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: initial;
        -ms-flex-align: initial;
        align-items: initial;
    }
}

.investment__content-title {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 270px;
    flex: 0 0 270px;
    margin-right: 100px;
    font-weight: normal;
    font-size: 24px;
    line-height: 120%;
    color: #fff;
}

@media only screen and (max-width: 1200px) {
    .investment__content-title {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
        flex: 0 0 180px;
        margin-right: 70px;
    }
}

@media only screen and (max-width: 992px) {
    .investment__content-title {
        font-size: 18px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 190px;
        flex: 0 0 190px;
        margin-right: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .investment__content-title {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
}

.investment__descr {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
}

@media only screen and (max-width: 768px) {
    .investment__descr {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
    }
}

.investment__text {
    font-weight: normal;
    font-size: 40px;
    line-height: 140%;
    color: #fff;
}

@media only screen and (max-width: 992px) {
    .investment__text {
        font-size: 22px;
    }
}

.investment__text span {
    color: #ff4e4e;
}

.investment__items {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
    gap: 12px;
}

@media only screen and (max-width: 992px) {
    .investment__items {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 576px) {
    .investment__items {
        grid-template-columns: 1fr;
    }
}

.investment__item {
    background: #545c69;
    border: 1px solid #fff;
    padding: 20px 24px;
}

.investment__item-counter {
    font-weight: normal;
    font-size: 24px;
    line-height: 120%;
    color: #ff4e4e;
    margin-bottom: 100px;
}

@media only screen and (max-width: 992px) {
    .investment__item-counter {
        margin-bottom: 50px;
        font-size: 18px;
    }
}

.investment__item-caption {
    font-weight: normal;
    font-size: 24px;
    line-height: 120%;
    color: #fff;
}

@media only screen and (max-width: 992px) {
    .investment__item-caption {
        font-size: 18px;
    }
}

.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    -o-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
}

.success-modal--opened {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    -o-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
}

.success-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #303239;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    -o-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
}

.success-modal--opened .success-modal__overlay {
    opacity: 0.65;
    visibility: visible;
    pointer-events: all;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    -o-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
}

.success-modal__wrap {
    padding: 50px;
    min-height: 250px;
    width: 100%;
    max-width: 600px;
    background-color: #fff;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 2;
    position: relative;
    top: -100%;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.success-modal--opened .success-modal__wrap {
    top: 0%;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

@media only screen and (max-width: 992px) {
    .success-modal__wrap {
        max-width: 400px;
        padding: 30px;
        min-height: 200px;
    }
}

.success-modal__close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 5px;
    position: absolute;
    top: 25px;
    right: 25px;
    max-width: 35px;
}

@media only screen and (max-width: 992px) {
    .success-modal__close {
        top: 15px;
        right: 15px;
        max-width: 30px;
    }
}

@media only screen and (max-width: 576px) {
    .success-modal__close {
        top: 10px;
        right: 10px;
        max-width: 25px;
    }
}

.success-modal__close svg {
    max-width: inherit;
    pointer-events: none;
}

.success-modal__close rect {
    -webkit-transition: fill 0.3s;
    -o-transition: fill 0.3s;
    transition: fill 0.3s;
}

.success-modal__close:hover rect {
    fill: #ff4e4e;
    -webkit-transition: fill 0.3s;
    -o-transition: fill 0.3s;
    transition: fill 0.3s;
}

.success-modal__title {
    width: 100%;
    max-width: 350px;
    margin: auto;
    font-weight: bold;
    font-size: 24px;
    line-height: 31px;
    text-align: center;
    color: #ff4e4e;
}

@media only screen and (max-width: 992px) {
    .success-modal__title {
        font-size: 18px;
        line-height: 24px;
    }
}

.callback {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    -o-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
}

@media only screen and (max-width: 992px) {
    .callback {
        padding: 10px;
    }
}

.callback--opened {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    -o-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
}

.callback__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #303239;
    z-index: 1;
    opacity: 0.65;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    -o-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
}

.callback--opened .callback__overlay {
    opacity: 0.65;
    visibility: visible;
    pointer-events: all;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    -o-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
}

.callback__wrap {
    padding: 80px 60px;
    width: 100%;
    max-width: 800px;
    background-color: #fff;
    margin: auto;
    z-index: 2;
    position: relative;
    top: -100%;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

@media only screen and (max-width: 992px) {
    .callback__wrap {
        padding: 50px 30px;
    }
}

@media only screen and (max-width: 576px) {
    .callback__wrap {
        padding: 40px 20px;
    }
}

.callback--opened .callback__wrap {
    top: 0%;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.callback__close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px;
    position: absolute;
    top: 32px;
    right: 32px;
    background-color: #f8f8f8;
    border-radius: 100%;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

@media only screen and (max-width: 992px) {
    .callback__close {
        top: 16px;
        right: 16px;
    }
}

.callback__close svg {
    pointer-events: none;
    height: auto;
}

@media only screen and (max-width: 992px) {
    .callback__close svg {
        max-width: 20px;
    }
}

.callback__close:hover {
    opacity: 0.5;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.callback__title {
    width: 100%;
    max-width: 320px;
    font-weight: normal;
    font-size: 30px;
    line-height: 140%;
    color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .callback__title {
        font-size: 20px;
        max-width: 250px;
    }
}

.callback__fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px 25px;
    gap: 50px 25px;
    margin-top: 25px;
}

@media only screen and (max-width: 992px) {
    .callback__fields {
        gap: 25px 15px;
        margin-top: 20px;
    }
}

@media only screen and (max-width: 576px) {
    .callback__fields {
        grid-template-columns: 1fr;
    }
}

.callback__fields .iti input {
    width: 100%;
}

.callback__input {
    outline: none;
    padding-bottom: 11px;
    opacity: 0.7;
    border: none;
    border-bottom: 1px solid #ff4e4e;
    font-weight: normal;
    font-size: 18px;
    line-height: 150%;
    color: #0f1011;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

@media only screen and (max-width: 992px) {
    .callback__input {
        font-size: 16px;
        padding-bottom: 8px;
    }
}

.callback__input:focus {
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.callback__input-name {
    grid-column: span 2;
}

@media only screen and (max-width: 576px) {
    .callback__input-name {
        grid-column: initial;
    }
}

.callback__input-tel {
    grid-row: 2/3;
    grid-column: 1/2;
}

@media only screen and (max-width: 576px) {
    .callback__input-tel {
        grid-column: initial;
        grid-row: initial;
    }
}

.callback__input-email {
    grid-row: 2/3;
    grid-column: 2/3;
}

@media only screen and (max-width: 576px) {
    .callback__input-email {
        grid-column: initial;
        grid-row: initial;
    }
}

.callback__select {
    grid-column: span 2;
    position: relative;
}

@media only screen and (max-width: 576px) {
    .callback__select {
        grid-column: initial;
    }
}

.callback__select-header {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 11px;
    border-bottom: 1px solid #ff4e4e;
    opacity: 0.7;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

@media only screen and (max-width: 992px) {
    .callback__select-header {
        padding-bottom: 8px;
    }
}

.callback__select--opened .callback__select-header {
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.callback__select-value {
    font-weight: normal;
    font-size: 18px;
    line-height: 150%;
    color: #0f1011;
    pointer-events: none;
}

@media only screen and (max-width: 992px) {
    .callback__select-value {
        font-size: 16px;
    }
}

.callback__select-arr {
    pointer-events: none;
    opacity: 1;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.callback__select--opened .callback__select-arr {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.callback__select-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    position: absolute;
    left: 0;
    top: calc(100% + 2px);
    width: 100%;
    min-height: 170px;
    max-height: 170px;
    border: 1px solid rgba(144, 156, 248, 0.3);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    -o-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
}

@media only screen and (max-width: 992px) {
    .callback__select-options {
        min-height: 115px;
        max-height: 115px;
    }
}

.callback__select--opened .callback__select-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    -o-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
}

.callback__select-option {
    cursor: pointer;
    padding: 12px 16px;
    background-color: #fff;
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    color: #0f1011;
    -webkit-transition: background 0.3s, color 0.3s;
    -o-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
}

@media only screen and (max-width: 992px) {
    .callback__select-option {
        padding: 10px 12px;
    }
}

.callback__select-option:hover {
    background-color: #f8f8f8;
    -webkit-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s;
}

.callback__select-option--active {
    color: #ff4e4e;
    background-color: #f8f8f8;
    -webkit-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s;
}

.callback__footer {
    margin-top: 48px;
    padding: 0 2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 992px) {
    .callback__footer {
        margin-top: 25px;
    }
}

@media only screen and (max-width: 768px) {
    .callback__footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: initia;
        -ms-flex-align: initia;
        align-items: initia;
    }
}

.callback__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 22px;
    background-color: #ff4e4e;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 280px;
    flex: 0 0 280px;
    margin-right: 20px;
    font-weight: normal;
    font-size: 16px;
    line-height: 100%;
    color: #fff;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

@media only screen and (max-width: 992px) {
    .callback__btn {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 250px;
        flex: 0 0 250px;
        margin-right: 15px;
        padding: 15px;
    }
}

@media only screen and (max-width: 768px) {
    .callback__btn {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}

.callback__btn:hover {
    opacity: 0.5;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

@media only screen and (max-width: 768px) {
    .callback__btn:hover {
        opacity: 1;
    }
}

.callback__policy {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    font-weight: normal;
    font-size: 14px;
    line-height: 140%;
    color: #c4c4c4;
}

@media only screen and (max-width: 768px) {
    .callback__policy {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
        max-width: 320px;
        margin: 10px auto 0;
        text-align: center;
    }
}

.callback__policy a {
    text-decoration: underline;
    color: #c4c4c4;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.callback__policy a:hover {
    color: #ff4e4e;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.blog-page .content {
    padding: 190px 0 100px;
}

@media only screen and (max-width: 992px) {
    .blog-page .content {
        padding: 110px 0 80px;
    }
}

.blog__wrap {
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
}

.blog__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 576px) {
    .blog__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: initial;
        -ms-flex-align: initial;
        align-items: initial;
        -webkit-box-pack: initial;
        -ms-flex-pack: initial;
        justify-content: initial;
    }
}

.blog__title {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    margin-right: 50px;
    font-weight: normal;
    font-size: 55px;
    line-height: 110%;
    color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .blog__title {
        font-size: 28px;
        line-height: 120%;
        margin-right: 25px;
    }
}

@media only screen and (max-width: 576px) {
    .blog__title {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
}

.blog__text {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 475px;
    flex: 0 0 475px;
    font-weight: normal;
    font-size: 20px;
    line-height: 150%;
    color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .blog__text {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 370px;
        flex: 0 0 370px;
        font-size: 16px;
        line-height: 150%;
    }
}

@media only screen and (max-width: 768px) {
    .blog__text {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 330px;
        flex: 0 0 330px;
    }
}

@media only screen and (max-width: 576px) {
    .blog__text {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
    }
}

.blog__items {
    margin-top: 100px;
}

@media only screen and (max-width: 992px) {
    .blog__items {
        margin-top: 50px;
    }
}

.blog__item {
    border-top: 1px solid #c4c4c4;
    padding: 32px 0;
    display: grid;
    grid-template-columns: 1fr 1fr 254px;
    grid-gap: 60px;
    gap: 60px;
}

@media only screen and (max-width: 1200px) {
    .blog__item {
        gap: 30px;
    }
}

@media only screen and (max-width: 992px) {
    .blog__item {
        padding: 25px 0;
    }
}

@media only screen and (max-width: 768px) {
    .blog__item {
        gap: 20px;
        grid-template-columns: 1fr 254px;
    }
}

@media only screen and (max-width: 576px) {
    .blog__item {
        grid-template-columns: 1fr;
    }
}

.blog__item:last-child {
    border-bottom: 1px solid #c4c4c4;
}

.blog__item-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
}

@media only screen and (max-width: 992px) {
    .blog__item-header {
        grid-row: 1/2;
    }
}

@media only screen and (max-width: 576px) {
    .blog__item-header {
        grid-row: initial;
    }
}

.blog__item-caption {
    font-weight: normal;
    font-size: 24px;
    line-height: 120%;
    color: #0f1011;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

@media only screen and (max-width: 992px) {
    .blog__item-caption {
        font-size: 18px;
        line-height: 120%;
    }
}

.blog__item-caption:hover {
    color: #ff4e4e;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.blog__item-date {
    margin-top: 15px;
    font-weight: normal;
    font-size: 14px;
    line-height: 120%;
    color: #c4c4c4;
}

.blog__item-descr {
    font-weight: normal;
    font-size: 18px;
    line-height: 120%;
    color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .blog__item-descr {
        font-size: 14px;
        line-height: 120%;
    }
}

@media only screen and (max-width: 768px) {
    .blog__item-descr {
        grid-row: 2/3;
    }
}

@media only screen and (max-width: 576px) {
    .blog__item-descr {
        grid-row: initial;
    }
}

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

@media only screen and (max-width: 768px) {
    .blog__item-img {
        grid-row: 1/3;
    }
}

@media only screen and (max-width: 576px) {
    .blog__item-img {
        grid-row: initial;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}

.blog__item-img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media only screen and (max-width: 576px) {
    .blog__item-img img {
        height: 150px;
    }
}

.blog__footer {
    margin-top: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 992px) {
    .blog__footer {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .blog__footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: initial;
        -ms-flex-align: initial;
        align-items: initial;
        -webkit-box-pack: initial;
        -ms-flex-pack: initial;
        justify-content: initial;
    }
}

.blog__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 235px;
    flex: 0 0 235px;
    padding: 22px;
    background-color: #ff4e4e;
    font-weight: normal;
    font-size: 16px;
    line-height: 100%;
    color: #fff;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

@media only screen and (max-width: 992px) {
    .blog__btn {
        padding: 18px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 768px) {
    .blog__btn {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}

.blog__btn:hover {
    opacity: 0.5;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.blog__pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 768px) {
    .blog__pagination {
        width: 100%;
        max-width: -webkit-fit-content;
        max-width: -moz-fit-content;
        max-width: fit-content;
        margin: 32px auto 0;
    }
}

.blog__pagination a,
.blog__pagination span {
    min-width: 25px;
    margin: 0 10px;
    font-weight: normal;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    color: #0f1011;
}

@media only screen and (max-width: 992px) {

    .blog__pagination a,
    .blog__pagination span {
        font-size: 16px;
    }
}

.blog__pagination span {
    pointer-events: none;
}

.blog__pagination a {
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.blog__pagination a:hover {
    color: #ff4e4e;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.blogs {
    padding-top: 150px;
}

@media only screen and (max-width: 992px) {
    .blogs {
        padding-top: 80px;
    }
}

.blogs__wrap {
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
    display: grid;
    grid-template-columns: 300px 1fr;
    grid-gap: 15px 80px;
    gap: 15px 80px;
}

@media only screen and (max-width: 1200px) {
    .blogs__wrap {
        gap: 30px 50px;
        grid-template-columns: 250px 1fr;
    }
}

@media only screen and (max-width: 992px) {
    .blogs__wrap {
        grid-template-columns: 1fr;
    }
}

.blogs__title {
    font-weight: normal;
    font-size: 24px;
    line-height: 120%;
    color: #ff4e4e;
}

@media only screen and (max-width: 992px) {
    .blogs__title {
        font-size: 18px;
        line-height: 120%;
    }
}

.blogs__items {
    grid-column: 2/3;
    grid-row: 1/3;
}

@media only screen and (max-width: 992px) {
    .blogs__items {
        grid-column: initial;
        grid-row: initial;
        margin-top: 10px;
    }
}

.blogs__item {
    padding: 32px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-top: 1px solid #c4c4c4;
}

@media only screen and (max-width: 992px) {
    .blogs__item {
        padding: 25px 0;
    }
}

@media only screen and (max-width: 576px) {
    .blogs__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: initial;
        -ms-flex-align: initial;
        align-items: initial;
    }
}

.blogs__item:last-child {
    border-bottom: 1px solid #c4c4c4;
}

.blogs__item-desrc {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    margin-right: 42px;
}

@media only screen and (max-width: 576px) {
    .blogs__item-desrc {
        margin-right: 0;
        margin-bottom: 25px;
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
    }
}

.blogs__item-caption {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.blogs__item-caption:hover .blogs__item-caption-text {
    color: #ff4e4e;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.blogs__item-caption:hover .blogs__item-caption-arr path {
    stroke: #ff4e4e;
    -webkit-transition: stroke 0.3s;
    -o-transition: stroke 0.3s;
    transition: stroke 0.3s;
}

.blogs__item-caption-text {
    font-weight: normal;
    font-size: 24px;
    line-height: 140%;
    color: #0f1011;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 380px;
    flex: 0 1 380px;
    margin-right: 15px;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

@media only screen and (max-width: 992px) {
    .blogs__item-caption-text {
        font-size: 18px;
        line-height: 120%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        margin-right: 0;
    }
}

.blogs__item-caption-arr {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 22px;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width: 992px) {
    .blogs__item-caption-arr {
        display: none;
    }
}

.blogs__item-caption-arr path {
    -webkit-transition: stroke 0.3s;
    -o-transition: stroke 0.3s;
    transition: stroke 0.3s;
}

.blogs__item-date {
    margin-top: 15px;
    font-weight: normal;
    font-size: 14px;
    line-height: 120%;
    color: #c4c4c4;
}

.blogs__item-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 244px;
    flex: 0 0 244px;
}

@media only screen and (max-width: 576px) {
    .blogs__item-img {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}

.blogs__item-img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media only screen and (max-width: 576px) {
    .blogs__item-img img {
        height: 120px;
    }
}

.blogs__more {
    -ms-flex-item-align: end;
    align-self: flex-end;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blogs__more:hover .blogs__more-text {
    color: #ff4e4e;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.blogs__more-arr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #ff4e4e;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    margin-right: 15px;
    border-radius: 100%;
}

@media only screen and (max-width: 992px) {
    .blogs__more-arr {
        width: 35px;
        height: 35px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 35px;
        flex: 0 0 35px;
    }
}

@media only screen and (max-width: 576px) {
    .blogs__more-arr {
        width: 30px;
        height: 30px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 30px;
        flex: 0 0 30px;
    }
}

.blogs__more-arr img {
    max-width: 100%;
}

.blogs__more-text {
    font-weight: normal;
    font-size: 24px;
    line-height: 120%;
    color: #0f1011;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

@media only screen and (max-width: 992px) {
    .blogs__more-text {
        font-size: 18px;
    }
}

.article-page .content {
    padding: 190px 0 90px;
}

@media only screen and (max-width: 992px) {
    .article-page .content {
        padding: 110px 0 80px;
    }
}

.article__wrap {
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
}

.article__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 50px;
    border-bottom: 1px solid #c4c4c4;
}

@media only screen and (max-width: 992px) {
    .article__header {
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 576px) {
    .article__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-pack: initial;
        -ms-flex-pack: initial;
        justify-content: initial;
        -webkit-box-align: initial;
        -ms-flex-align: initial;
        align-items: initial;
    }
}

.article__title {
    margin-right: 50px;
    font-weight: normal;
    font-size: 40px;
    line-height: 110%;
    color: #0f1011;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 760px;
    flex: 0 1 760px;
}

@media only screen and (max-width: 992px) {
    .article__title {
        margin-right: 25px;
        font-size: 22px;
        line-height: 140%;
    }
}

@media only screen and (max-width: 576px) {
    .article__title {
        margin-right: 0;
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
        text-align: center;
    }
}

.article__date {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    font-weight: normal;
    font-size: 16px;
    line-height: 120%;
    color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .article__date {
        font-size: 14px;
    }
}

@media only screen and (max-width: 576px) {
    .article__date {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }
}

.article__content {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 250px;
    grid-gap: 30px;
    gap: 30px;
}

@media only screen and (max-width: 1200px) {
    .article__content {
        gap: 20px;
    }
}

@media only screen and (max-width: 992px) {
    .article__content {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }
}

.article__aside {
    font-weight: normal;
    font-size: 24px;
    line-height: 120%;
    color: #ff4e4e;
}

@media only screen and (max-width: 992px) {
    .article__aside {
        font-size: 18px;
        order: 1;
    }
}

@media only screen and (max-width: 992px) {
    .article__body {
        order: 2;
    }
}

.article__back {
    grid-column: 2/3;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 992px) {
    .article__back {
        grid-column: initial;
        order: 3;
    }
}

.article__back:hover .article__back-text {
    color: #ff4e4e;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.article__back-arr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #ff4e4e;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    margin-right: 15px;
    border-radius: 100%;
}

@media only screen and (max-width: 992px) {
    .article__back-arr {
        width: 35px;
        height: 35px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 35px;
        flex: 0 0 35px;
    }
}

@media only screen and (max-width: 576px) {
    .article__back-arr {
        width: 30px;
        height: 30px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 30px;
        flex: 0 0 30px;
    }
}

.article__back-arr img {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    max-width: 100%;
}

.article__back-text {
    font-weight: normal;
    font-size: 24px;
    line-height: 120%;
    color: #0f1011;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

@media only screen and (max-width: 992px) {
    .article__back-text {
        font-size: 18px;
    }
}

body {
    background-color: #f7f7f7;
    position: relative;
    font-family: 'Lab Grotesque', sans-serif;
}

body.blocked-scroll {
    overflow: hidden !important;
}

.links {
    margin-bottom: 25px;
}

@media only screen and (max-width: 992px) {
    .links {
        margin-bottom: 15px;
    }
}

.links__wrap {
    padding: 0 13px;
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.links a {
    margin-top: 5px;
    padding: 0 7px;
    font-weight: 400;
    font-size: 14px;
    line-height: 135%;
    text-transform: uppercase;
    color: #c4c4c4;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

@media only screen and (max-width: 992px) {
    .links a {
        font-size: 12px;
    }
}

@media only screen and (max-width: 576px) {
    .links a {
        font-size: 10px;
    }
}

.links a:not(:last-child) {
    border-right: 1px solid #c4c4c4;
}

.links a:hover {
    color: #ff4e4e;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.links a:last-child {
    pointer-events: none;
    color: #ff4e4e;
}

.policy__wrap {
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
}

.policy__title {
    font-weight: 400;
    font-size: 55px;
    line-height: 110%;
    color: #0f1011;
    border-bottom: 1px solid #c4c4c4;
    padding-bottom: 50px;
}

@media only screen and (max-width: 1200px) {
    .policy__title {
        font-size: 46px;
    }
}

@media only screen and (max-width: 992px) {
    .policy__title {
        font-size: 39px;
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .policy__title {
        font-size: 32px;
    }
}

@media only screen and (max-width: 576px) {
    .policy__title {
        font-size: 28px;
        line-height: 120%;
    }
}

.policy__body {
    margin-top: 50px;
}

@media only screen and (max-width: 1200px) {
    .policy__body {
        margin-top: 30px;
    }
}

.policy__body h2 {
    margin: 50px 0 30px;
}

@media only screen and (max-width: 992px) {
    .policy__body h2 {
        margin: 30px 0 20px;
    }
}

.policy-page .content {
    padding: 150px 0 100px;
}

@media only screen and (max-width: 1200px) {
    .policy-page .content {
        padding: 140px 0 95px;
    }
}

@media only screen and (max-width: 992px) {
    .policy-page .content {
        padding: 120px 0 90px;
    }
}

@media only screen and (max-width: 768px) {
    .policy-page .content {
        padding: 100px 0 85px;
    }
}

@media only screen and (max-width: 576px) {
    .policy-page .content {
        padding: 80px 0;
    }
}

.footer__wrap {
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
}

.footer__block {
    padding: 50px 0;
    background-color: #262f3c;
}

@media only screen and (max-width: 992px) {
    .footer__block {
        padding: 35px 0;
    }
}

.footer__block .footer__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 992px) {
    .footer__block .footer__wrap {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }
}

@media only screen and (max-width: 830px) {
    .footer__block .footer__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: initial;
        -ms-flex-align: initial;
        align-items: initial;
        -webkit-box-pack: initial;
        -ms-flex-pack: initial;
        justify-content: initial;
    }
}

.footer__info {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 190px;
    flex: 0 1 190px;
    margin-right: 100px;
}

@media only screen and (max-width: 1200px) {
    .footer__info {
        margin-right: 20px;
    }
}

@media only screen and (max-width: 830px) {
    .footer__info {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
        max-width: 190px;
        margin: 0 auto;
        text-align: center;
    }
}

.footer__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 190px;
    height: auto;
}

.footer__logo img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer__text {
    margin-top: 15px;
    font-weight: 400;
    font-size: 12px;
    line-height: 135%;
    color: #fff;
}

.footer__nav {
    margin-right: 20px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 560px;
    flex: 0 1 560px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media only screen and (max-width: 992px) {
    .footer__nav {
        margin-right: 0;
    }
}

@media only screen and (max-width: 830px) {
    .footer__nav {
        margin-top: 35px;
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media only screen and (max-width: 576px) {
    .footer__nav {
        -webkit-box-pack: initial;
        -ms-flex-pack: initial;
        justify-content: initial;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
    }
}

.footer__nav-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
}

.footer__nav-item:not(:last-child) {
    margin-right: 20px;
}

@media only screen and (max-width: 576px) {
    .footer__nav-item:not(:last-child) {
        margin-right: 0;
        margin-bottom: 35px;
    }
}

@media only screen and (max-width: 576px) {
    .footer__nav-item {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
    }
}

.footer__nav-label {
    margin-bottom: 25px;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #ff4e4e;
}

.footer__nav-link {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.footer__nav-link:hover {
    color: white;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.footer__nav-link:not(:last-child) {
    margin-bottom: 15px;
}

.footer__contacts {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 270px;
    flex: 0 1 270px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
}

@media only screen and (max-width: 992px) {
    .footer__contacts {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        margin-top: 35px;
    }
}

@media only screen and (max-width: 830px) {
    .footer__contacts {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media only screen and (max-width: 576px) {
    .footer__contacts {
        -webkit-box-pack: initial;
        -ms-flex-pack: initial;
        justify-content: initial;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
    }
}

@media only screen and (max-width: 830px) {
    .footer__contacts-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
        flex: 0 1 50%;
    }
}

@media only screen and (max-width: 576px) {
    .footer__contacts-item {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
    }
}

.footer__contacts-item:not(:last-child) {
    margin-bottom: 35px;
}

@media only screen and (max-width: 992px) {
    .footer__contacts-item:not(:last-child) {
        margin-bottom: 0;
        margin-right: 50px;
    }
}

@media only screen and (max-width: 830px) {
    .footer__contacts-item:not(:last-child) {
        margin-right: 20px;
    }
}

@media only screen and (max-width: 576px) {
    .footer__contacts-item:not(:last-child) {
        margin-right: 0;
        margin-bottom: 35px;
    }
}

.footer__contacts-caption {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #ff4e4e;
    margin-bottom: 25px;
}

.footer__contacts a.footer__contacts-link {
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.footer__contacts a.footer__contacts-link:hover {
    color: white;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.footer__contacts-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
}

.footer__contacts-link:not(:last-child) {
    margin-bottom: 10px;
}

.footer__contacts-link img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    width: 20px;
    height: auto;
    display: block;
    margin-right: 10px;
}

.footer__subblock {
    padding: 17px 0;
    background-color: #1f2937;
}

.footer__subblock .footer__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.footer__subblock-link {
    font-weight: 100;
    font-size: 12px;
    line-height: 135%;
    color: #fff;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.footer__subblock-link:hover {
    color: #ff4e4e;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.footer__subblock-link:not(:last-child) {
    padding-right: 15px;
    border-right: 1px solid #fff;
}

.footer__subblock-link:not(:first-child) {
    padding-left: 15px;
}

.text h2 {
    margin: 25px 0;
    font-weight: bold;
    font-size: 28px;
    line-height: 30px;
    color: #ff4e4e;
}

@media only screen and (max-width: 992px) {
    .text h2 {
        margin: 20px 0;
        font-size: 22px;
        line-height: 24px;
    }
}

.text h3 {
    margin: 20px 0;
    font-weight: bold;
    font-size: 24px;
    line-height: 26px;
    color: #ff4e4e;
}

@media only screen and (max-width: 992px) {
    .text h3 {
        margin: 15px 0;
        font-size: 18px;
        line-height: 20px;
    }
}

.text h4 {
    margin: 15px 0;
    font-weight: normal;
    font-size: 20px;
    line-height: 22px;
    color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .text h4 {
        margin: 10px 0;
        font-size: 18px;
        line-height: 20px;
    }
}

.text p {
    margin: 15px 0;
    font-weight: normal;
    font-size: 18px;
    line-height: 24px;
    color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .text p {
        margin: 10px 0;
        font-size: 16px;
        line-height: 24px;
    }
}

.text blockquote {
    margin: 15px 0;
    font-weight: normal;
    font-style: italic;
    font-size: 18px;
    line-height: 24px;
    color: #0f1011;
    padding-left: 20px;
    border-left: 5px solid #ff4e4e;
}

@media only screen and (max-width: 992px) {
    .text blockquote {
        margin: 10px 0;
        font-size: 16px;
        line-height: 24px;
    }
}

.text ul {
    list-style-type: none;
    margin: 15px 0;
    font-weight: normal;
    font-size: 18px;
    line-height: 24px;
    color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .text ul {
        margin: 10px 0;
        font-size: 16px;
        line-height: 24px;
    }
}

.text ul li {
    padding-left: 25px;
    position: relative;
}

@media only screen and (max-width: 992px) {
    .text ul li {
        padding-left: 22px;
    }
}

.text ul li:not(:last-child) {
    margin-bottom: 10px;
}

@media only screen and (max-width: 992px) {
    .text ul li:not(:last-child) {
        margin-bottom: 5px;
    }
}

.text ul li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 5px;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: #ff4e4e;
}

@media only screen and (max-width: 992px) {
    .text ul li::before {
        top: 7px;
        left: 3px;
    }
}

.text ol {
    padding-left: 20px;
    margin: 15px 0;
    font-weight: normal;
    font-size: 18px;
    line-height: 24px;
    color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .text ol {
        padding-left: 17px;
        margin: 10px 0;
        font-size: 16px;
        line-height: 24px;
    }
}

.text ol li {
    padding-left: 5px;
}

.text ol li:not(:last-child) {
    margin-bottom: 10px;
}

@media only screen and (max-width: 992px) {
    .text ol li:not(:last-child) {
        margin-bottom: 5px;
    }
}

.text ol li::marker {
    font-weight: bold;
    font-size: 18px;
    line-height: 140%;
    color: #ff4e4e;
}

@media only screen and (max-width: 992px) {
    .text ol li::marker {
        font-size: 16px;
        line-height: 120%;
    }
}

.text strong,
.text b {
    font-weight: bolder;
}

.text em,
.text i {
    font-style: italic;
}

.text a {
    font-weight: normal;
    font-size: 18px;
    line-height: 140%;
    color: #ff4e4e;
    text-decoration: underline;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

@media only screen and (max-width: 992px) {
    .text a {
        font-size: 16px;
        line-height: 120%;
    }
}

.text a:hover {
    opacity: 0.5;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.text img {
    display: block;
    margin: 30px auto;
    max-width: 100%;
}

@media only screen and (max-width: 992px) {
    .text img {
        margin: 20px auto;
    }
}

.freezone-page .content {
    padding: 150px 0 100px;
}

@media only screen and (max-width: 1200px) {
    .freezone-page .content {
        padding: 135px 0 95px;
    }
}

@media only screen and (max-width: 992px) {
    .freezone-page .content {
        padding: 120px 0 90px;
    }
}

@media only screen and (max-width: 768px) {
    .freezone-page .content {
        padding: 105px 0 85px;
    }
}

@media only screen and (max-width: 576px) {
    .freezone-page .content {
        padding: 90px 0 80px;
    }
}

.freezone__wrap {
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
}

.freezone__title {
    font-weight: 400;
    font-size: 55px;
    line-height: 110%;
    color: #0f1011;
    padding-bottom: 50px;
    border-bottom: 1px solid #c4c4c4;
}

@media only screen and (max-width: 1200px) {
    .freezone__title {
        font-size: 48px;
    }
}

@media only screen and (max-width: 992px) {
    .freezone__title {
        font-size: 41px;
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .freezone__title {
        font-size: 36px;
    }
}

@media only screen and (max-width: 576px) {
    .freezone__title {
        font-size: 28px;
        line-height: 120%;
    }
}

.freezone__items {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(180px, 1fr);
    grid-gap: 12px 20px;
    gap: 12px 20px;
}

@media only screen and (max-width: 992px) {
    .freezone__items {
        margin-top: 30px;
        gap: 15px;
        grid-auto-rows: minmax(170px, 1fr);
    }
}

@media only screen and (max-width: 768px) {
    .freezone__items {
        grid-auto-rows: minmax(160px, 1fr);
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 576px) {
    .freezone__items {
        grid-auto-rows: minmax(150px, 1fr);
        grid-template-columns: 1fr;
    }
}

.freezone__item {
    position: relative;
    padding: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #fff;
    z-index: 1;
    transition: background 0.3s;
}

@media only screen and (max-width: 992px) {
    .freezone__item {
        padding: 20px;
    }
}

.freezone__item-counter {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #ff4e4e;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

@media only screen and (max-width: 992px) {
    .freezone__item-counter {
        font-size: 18px;
    }
}

@media only screen and (max-width: 576px) {
    .freezone__item-counter {
        font-size: 16px;
    }
}

.freezone__item--hovered .freezone__item-counter {
    color: #fff;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.freezone__item-caption {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #0f1011;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

@media only screen and (max-width: 992px) {
    .freezone__item-caption {
        font-size: 18px;
    }
}

@media only screen and (max-width: 576px) {
    .freezone__item-caption {
        font-size: 16px;
    }
}

.freezone__item--hovered .freezone__item-caption {
    color: #fff;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.freezone__item-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    background: linear-gradient(0deg, rgba(38, 47, 60, 0.8), rgba(38, 47, 60, 0.8));
    transition: all 0.3s;
    z-index: -1;
}

.freezone__item-bg img {
    mix-blend-mode: multiply;
    display: block;
    max-width: 100%;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.freezone__item--hovered .freezone__item-bg {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.main {
    z-index: 1;
    padding: 160px 0 80px;
    position: relative;
}

@media only screen and (max-width: 992px) {
    .main {
        padding: 90px 0 50px;
    }
}

.main_dark {
    background: -o-linear-gradient(left, #545c69 0%, #262f3c 100%);
    background: -webkit-gradient(linear, left top, right top, from(#545c69), to(#262f3c));
    background: linear-gradient(90deg, #545c69 0%, #262f3c 100%);
}

.main_light {
    background-color: #f6f6f6;
}

.main__wrap {
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
}

.main__title h1 {
    font: inherit;
    display: inline-block;
}

.main__title {
    width: 100%;
    max-width: 990px;
    font-weight: 500;
    font-size: 40px;
    line-height: 130%;
    color: #fff;
}

@media only screen and (max-width: 992px) {
    .main__title {
        font-size: 28px;
        line-height: 38px;
        max-width: 700px;
    }
}

@media only screen and (max-width: 576px) {
    .main__title {
        font-size: 24px;
        line-height: 34px;
        text-align: center;
        margin: 0 auto;
    }
}

.main__title h1 {
    color: #ff4e4e;
}

.main_dark .main__title {
    color: #fff;
}

.main_light .main__title {
    color: #0f1011;
}

.company-page .main__title {
    max-width: unset;
}

.main__btn {
    border: 1px solid transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 50px;
    width: 100%;
    max-width: 240px;
    padding: 22px;
    font-weight: normal;
    font-size: 16px;
    line-height: 100%;
    -webkit-transition: background 0.3s, color 0.3s, border 0.3s;
    -o-transition: background 0.3s, color 0.3s, border 0.3s;
    transition: background 0.3s, color 0.3s, border 0.3s;
}

@media only screen and (max-width: 992px) {
    .main__btn {
        margin-top: 30px;
        padding: 13px;
        font-size: 17px;
        line-height: 150%;
    }
}

@media only screen and (max-width: 576px) {
    .main__btn {
        margin: 30px auto 0;
    }
}

.main_dark .main__btn {
    background-color: #fff;
    color: #0f1011;
}

.main_dark .main__btn:hover {
    background-color: #ff4e4e;
    color: #fff;
}

.main_light .main__btn {
    background-color: #ff4e4e;
    color: #fff;
}

.main_light .main__btn:hover {
    background-color: #fff;
    border-color: #ff4e4e;
    color: #ff4e4e;
}

.main__btn:hover {
    -webkit-transition: background 0.3s, color 0.3s, border 0.3s;
    -o-transition: background 0.3s, color 0.3s, border 0.3s;
    transition: background 0.3s, color 0.3s, border 0.3s;
}

.main__items {
    margin-top: 150px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    gap: 30px;
}

@media only screen and (max-width: 992px) {
    .main__items {
        margin-top: 50px;
        gap: 15px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 768px) {
    .main__items {
        grid-template-columns: 1fr;
    }
}

.main__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    height: auto;
    padding-left: 32px;
    position: relative;
}

@media only screen and (max-width: 992px) {
    .main__item {
        padding-left: 27px;
    }
}

.main__item-count {
    position: absolute;
    top: 0;
    left: 0;
    font-weight: normal;
    font-size: 16px;
    line-height: 100%;
    color: #ff4e4e;
}

.main__item-text {
    font-weight: normal;
    font-size: 18px;
    line-height: 120%;
}

.main_dark .main__item-text {
    color: #fff;
}

.main_light .main__item-text {
    color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .main__item-text {
        font-size: 18px;
    }
}

.main__bg {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.info {
    padding-top: 150px;
    background-color: #f6f6f6;
}

@media only screen and (max-width: 992px) {
    .info {
        padding-top: 80px;
    }
}

.info__wrap {
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
}

.info__text {
    font-weight: 400;
    font-size: 40px;
    line-height: 140%;
    color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .info__text {
        font-size: 22px;
    }
}

.info__text span {
    color: #ff4e4e;
}

.info__content {
    margin-top: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 992px) {
    .info__content {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 768px) {
    .info__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
    }
}

.info__title {
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    color: #ff4e4e;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 50px;
}

@media only screen and (max-width: 992px) {
    .info__title {
        font-size: 18px;
    }
}

@media only screen and (max-width: 768px) {
    .info__title {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        margin-right: 0;
        width: 100%;
    }
}

.info__items {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 760px;
    flex: 0 1 760px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px 30px;
    gap: 50px 30px;
}

@media only screen and (max-width: 992px) {
    .info__items {
        gap: 30px;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 550px;
        flex: 0 1 550px;
    }
}

@media only screen and (max-width: 768px) {
    .info__items {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
        margin-top: 20px;
    }
}

@media only screen and (max-width: 576px) {
    .info__items {
        grid-template-columns: 1fr;
    }
}

.info__item-caption {
    font-weight: 400;
    font-size: 40px;
    line-height: 140%;
    color: #ff4e4e;
}

@media only screen and (max-width: 992px) {
    .info__item-caption {
        font-size: 30px;
    }
}

.info__item-text {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #0f1011;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .info__item-text {
        font-size: 16px;
    }
}

.feature {
    padding-top: 150px;
    background-color: #f6f6f6;
}

@media only screen and (max-width: 992px) {
    .feature {
        padding-top: 80px;
    }
}

.feature__wrap {
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
}

.feature__title {
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    color: #ff4e4e;
}

@media only screen and (max-width: 992px) {
    .feature__title {
        font-size: 18px;
    }
}

.feature__img {
    grid-row: span 3;
}

@media only screen and (max-width: 576px) {
    .feature__img {
        display: none;
    }
}

.feature__img img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.feature__items {
    display: grid;
    grid-template-columns: 350px repeat(2, 1fr);
    grid-auto-rows: minmax(175px, auto);
    grid-gap: 20px 30px;
    gap: 20px 30px;
    margin-top: 30px;
}

@media only screen and (max-width: 1200px) {
    .feature__items {
        gap: 15px;
        grid-auto-rows: minmax(170px, auto);
    }
}

@media only screen and (max-width: 992px) {
    .feature__items {
        grid-template-columns: 350px 1fr;
        grid-auto-rows: minmax(110px, auto);
    }
}

@media only screen and (max-width: 768px) {
    .feature__items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 576px) {
    .feature__items {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
}

.feature__item {
    background-color: #fff;
    padding: 24px;
}

@media only screen and (max-width: 1200px) {
    .feature__item {
        padding: 20px;
    }
}

@media only screen and (max-width: 992px) {
    .feature__item_spanned-2 {
        grid-column: span 2;
    }
}

@media only screen and (max-width: 576px) {
    .feature__item_spanned-2 {
        grid-column: initial;
    }
}

.feature__item-counter {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #ff4e4e;
}

@media only screen and (max-width: 992px) {
    .feature__item-counter {
        font-size: 18px;
        line-height: 120%;
    }
}

.feature__item-text {
    margin-top: 50px;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .feature__item-text {
        margin-top: 30px;
        line-height: 130%;
    }
}

.service {
    padding: 150px 0;
    background-color: #545c69;
    z-index: 1;
    position: relative;
    max-height: 820px;
    overflow: hidden;
}

@media only screen and (max-width: 992px) {
    .service {
        padding: 80px 0;
        overflow: visible;
        overflow: initial;
        max-height: unset;
    }
}

.service__wrap {
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 768px) {
    .service__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
    }
}

.service__title {
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    color: #fff;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 50px;
}

@media only screen and (max-width: 992px) {
    .service__title {
        font-size: 18px;
    }
}

@media only screen and (max-width: 768px) {
    .service__title {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
    }
}

.service__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 760px;
    flex: 0 1 760px;
}

@media only screen and (max-width: 992px) {
    .service__content {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
    }
}

@media only screen and (max-width: 768px) {
    .service__content {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
        margin-top: 20px;
    }
}

.service__text {
    font-weight: 400;
    font-size: 40px;
    line-height: 140%;
    color: #fff;
}

@media only screen and (max-width: 992px) {
    .service__text {
        font-size: 22px;
    }
}

.service__items {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, minmax(80px, auto));
    grid-auto-rows: minmax(80px, auto);
    grid-gap: 60px;
    gap: 60px;
}

@media only screen and (max-width: 992px) {
    .service__items {
        margin-top: 30px;
        gap: 20px;
        grid-auto-rows: minmax(250px, auto);
        grid-template-rows: initial;
    }
}

@media only screen and (max-width: 576px) {
    .service__items {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
}

.service__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    border: 1px solid #fff;
    padding: 24px 20px;
    grid-row: span 3;
    background-color: transparent;
}

@media only screen and (max-width: 992px) {
    .service__item {
        padding: 15px;
        grid-row: initial;
    }
}

.service__item-counter {
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    color: #ff4e4e;
    margin-bottom: auto;
}

@media only screen and (max-width: 992px) {
    .service__item-counter {
        font-size: 16px;
        line-height: 18px;
    }
}

.service__item-title {
    margin-top: 24px;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    color: #fff;
}

@media only screen and (max-width: 992px) {
    .service__item-title {
        font-size: 18px;
    }
}

.service__item-text {
    margin-top: 12px;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #fff;
}

@media only screen and (max-width: 992px) {
    .service__item-text {
        font-size: 16px;
        line-height: 130%;
    }
}

.service__item-spacer {
    grid-column: 2/3;
    grid-row: 1/2;
    width: 100%;
    height: 80px;
}

@media only screen and (max-width: 992px) {
    .service__item-spacer {
        display: none;
    }
}

.chance {
    padding: 150px 0 100px;
}

@media only screen and (max-width: 992px) {
    .chance {
        padding: 80px 0;
    }
}

.chance_light {
    background-color: #545c69;
}

.chance_dark {
    background-color: #f6f6f6;
}

.chance__wrap {
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
}

.chance__title {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    font-weight: 400;
    font-size: 40px;
    line-height: 140%;
    text-align: center;
}

@media only screen and (max-width: 992px) {
    .chance__title {
        font-size: 26px;
        max-width: 440px;
    }
}

.chance_light .chance__title {
    color: #fff;
}

.chance_dark .chance__title {
    color: #0f1011;
}

.chance__items {
    margin-top: 50px;
}

@media only screen and (max-width: 992px) {
    .chance__items {
        margin-top: 30px;
    }
}

.chance__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 860px) {
    .chance__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: initial;
        -ms-flex-align: initial;
        align-items: initial;
        -webkit-box-pack: initial;
        -ms-flex-pack: initial;
        justify-content: initial;
    }
}

.chance__item:not(:last-child) {
    padding-bottom: 50px;
    border-bottom: 1px solid #ff4e4e;
}

@media only screen and (max-width: 992px) {
    .chance__item:not(:last-child) {
        padding-bottom: 30px;
    }
}

.chance__item:not(:first-child) {
    padding-top: 50px;
}

@media only screen and (max-width: 992px) {
    .chance__item:not(:first-child) {
        padding-top: 30px;
    }
}

.chance__item-label {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 310px;
    flex: 0 0 310px;
    margin-right: 30px;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
}

@media only screen and (max-width: 992px) {
    .chance__item-label {
        font-size: 18px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 230px;
        flex: 0 0 230px;
    }
}

@media only screen and (max-width: 860px) {
    .chance__item-label {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
        margin-right: 0;
    }
}

.chance_light .chance__item-label {
    color: #fff;
}

.chance_light .chance__item-label {
    color: #ff4e4e;
}

.chance__item-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 760px;
    flex: 0 1 760px;
}

@media only screen and (max-width: 992px) {
    .chance__item-content {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 600px;
        flex: 0 1 600px;
    }
}

@media only screen and (max-width: 860px) {
    .chance__item-content {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
        margin-top: 20px;
    }
}

.chance__item-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
}

.chance__item-block:not(:last-child) {
    margin-bottom: 20px;
}

@media only screen and (max-width: 992px) {
    .chance__item-block:not(:last-child) {
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 576px) {
    .chance__item-block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
    }
}

.chance__item-header {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 340px;
    flex: 0 0 340px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 35px;
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: -0.02em;
    color: #fff;
}

@media only screen and (max-width: 992px) {
    .chance__item-header {
        font-size: 18px;
        padding: 20px 25px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 250px;
        flex: 0 0 250px;
    }
}

@media only screen and (max-width: 576px) {
    .chance__item-header {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }
}

.chance_dark .chance__item-header {
    background-color: #545c69;
}

.chance_light .chance__item-header {
    background-color: #ff4e4e;
}

.chance__item-subheader {
    padding: 20px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
}

@media only screen and (max-width: 992px) {
    .chance__item-subheader {
        padding: 15px;
    }
}

.chance__item-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.chance__item-key {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    color: #ff4e4e;
    margin-right: 10px;
}

@media only screen and (max-width: 992px) {
    .chance__item-key {
        font-size: 30px;
        line-height: 40px;
    }
}

@media only screen and (max-width: 576px) {
    .chance__item-key {
        font-size: 25px;
        line-height: 35px;
    }
}

.chance__item-value {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .chance__item-value {
        font-size: 16px;
    }
}

.chance__item-list {
    list-style-type: none;
}

.chance__item-list li {
    position: relative;
    padding-left: 30px;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .chance__item-list li {
        font-size: 16px;
        padding-left: 20px;
    }
}

.chance__item-list li:not(:last-child) {
    margin-bottom: 10px;
}

.chance__item-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    background-color: #ff4e4e;
}

@media only screen and (max-width: 992px) {
    .chance__item-list li::before {
        top: 8px;
    }
}

.label {
    background-color: #ff4e4e;
    padding-top: 100px;
}

@media only screen and (max-width: 992px) {
    .label {
        padding-top: 50px;
    }
}

.label__wrap {
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
}

.label__title {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    font-size: 40px;
    line-height: 140%;
    text-align: center;
    color: #fff;
    position: relative;
    padding: 50px 0;
}

@media only screen and (max-width: 992px) {
    .label__title {
        padding: 30px 0;
        font-size: 26px;
        line-height: 130%;
        max-width: 500px;
    }
}

.label__title::before,
.label__title::after {
    content: '';
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    max-width: 305px;
    height: 1px;
    background-color: #fff;
}

@media only screen and (max-width: 992px) {

    .label__title::before,
    .label__title::after {
        max-width: 250px;
    }
}

@media only screen and (max-width: 576px) {

    .label__title::before,
    .label__title::after {
        max-width: 150px;
    }
}

.label__title::before {
    top: 0;
}

.label__title::after {
    bottom: 0;
}

.company-business {
    padding: 540px 0 150px;
    background-color: #fff;
}

@media only screen and (max-width: 1140px) {
    .company-business {
        padding-top: 400px;
    }
}

@media only screen and (max-width: 992px) {
    .company-business {
        padding: 80px 0;
    }
}

.company-business__wrap {
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
}

.company-business__title {
    font-weight: 400;
    font-size: 40px;
    line-height: 140%;
    color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .company-business__title {
        font-size: 26px;
    }
}

@media only screen and (max-width: 576px) {
    .company-business__title {
        font-size: 22px;
    }
}

.company-business__title span {
    color: #ff4e4e;
}

.company-business__content {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 992px) {
    .company-business__content {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .company-business__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-pack: initial;
        -ms-flex-pack: initial;
        justify-content: initial;
        -webkit-box-align: initial;
        -ms-flex-align: initial;
        align-items: initial;
    }
}

.company-business__label {
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    color: #ff4e4e;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 50px;
}

@media only screen and (max-width: 992px) {
    .company-business__label {
        font-size: 18px;
    }
}

@media only screen and (max-width: 768px) {
    .company-business__label {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
        margin-right: 0;
    }
}

.company-business__body {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 760px;
    flex: 0 1 760px;
}

@media only screen and (max-width: 992px) {
    .company-business__body {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 600px;
        flex: 0 1 600px;
    }
}

@media only screen and (max-width: 768px) {
    .company-business__body {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
        margin-top: 20px;
    }
}

.company-business__list {
    list-style-type: none;
}

.company-business__list li {
    position: relative;
    padding-left: 30px;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    color: #0f1011;
}

@media only screen and (max-width: 992px) {
    .company-business__list li {
        font-size: 16px;
        padding-left: 20px;
    }
}

.company-business__list li span {
    color: #ff4e4e;
}

.company-business__list li:not(:last-child) {
    margin-bottom: 20px;
}

@media only screen and (max-width: 992px) {
    .company-business__list li:not(:last-child) {
        margin-bottom: 10px;
    }
}

.company-business__list li::before {
    content: '';
    position: absolute;
    top: 11px;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #ff4e4e;
}

@media only screen and (max-width: 992px) {
    .company-business__list li::before {
        top: 6px;
    }
}
