@charset "UTF-8";

@font-face {
    font-family: "Inter";
    font-display: swap;
    src: url("/assets/fonts/new/Inter-Medium.woff") format("woff"), url("/assets/fonts/new/Inter-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "NotoSans";
    font-display: swap;
    src: url("/assets/fonts/new/NotoSans-Bold.woff") format("woff"), url("/assets/fonts/new/NotoSans-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "NotoSans";
    font-display: swap;
    src: url("/assets/fonts/new/NotoSans-Regular.woff") format("woff"), url("/assets/fonts/new/NotoSans-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "NotoSans";
    font-display: swap;
    src: url("/assets/fonts/new/NotoSans-SemiBold.woff") format("woff"), url("/assets/fonts/new/NotoSans-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Onest";
    font-display: swap;
    src: url("/assets/fonts/new/OnestBold.woff") format("woff"), url("/assets/fonts/new/OnestBold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Onest";
    font-display: swap;
    src: url("/assets/fonts/new/OnestMedium.woff") format("woff"), url("/assets/fonts/new/OnestMedium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Onest";
    font-display: swap;
    src: url("/assets/fonts/new/OnestRegular.woff") format("woff"), url("/assets/fonts/new/OnestRegular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "NotoSans";
    font-display: swap;
    src: url("/assets/fonts/new/NotoSans-Medium.woff") format("woff"), url("/assets/fonts/new/NotoSans-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
}

* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

aside,
nav,
footer,
header,
section {
    display: block;
}

html,
body {
    height: 100%;
    min-width: 320px;
}

body {
    line-height: 1;
    font-family: "Onest";
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
    font-family: "Onest";
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}

body {
    color: #191D3E;
    font-size: 16px;
    background: #EDF1F7;
}

body::after {
    content: "";
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    background: rgba(18, 32, 73, 0.5);
    display: inline-block;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

body._lock {
    overflow: hidden;
}

body._lock::after {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
}

.wrapper {
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

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

._title {
    font-weight: 700;
    font-size: 32px;
    line-height: 41px;
    color: #191D3E;
    text-align: center;
}

.btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 0px 0px;
}

.btn._fw {
    width: 100%;
}

.select {
    position: relative;
}

.select__item {
    position: relative;
}

.select__title {
    color: #000;
    border: 1px solid #d9d9d9;
    background-color: #fff;
    cursor: pointer;
    border-radius: 4px;
}

.select__value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    height: 30px;
    padding: 0px 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.select__value span {
    height: 1em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.select__value:before {
    content: "";
    display: inline-block;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 11px;
    height: 7px;
    background: url("/assets/img/new/icons/select.svg") center/100% no-repeat;
}

.select__input {
    width: 100%;
    background-color: transparent;
    height: 100%;
}

.select__options {
    color: #000;
    display: none;
    position: absolute;
    top: 29px;
    border-radius: 0 0 4px 4px;
    min-width: 100%;
    left: 0;
    background-color: #fff;
    border-top: 0;
    border: 1px solid #d9d9d9;
    border-top: 0;
    font-size: 14px;
    padding: 10px 0px 5px 0px;
}

.select__option {
    cursor: pointer;
    padding: 5px 15px;
    margin: 0px 0px 0px 0px;
}

.select._active {
    z-index: 5;
}

.select._active .select__value:before {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.select._active .select__options {
    display: block;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.input {
    border-radius: 0 !important;
    width: 100%;
    display: block;
    padding: 0px 20px;
}

textarea.input {
    resize: none;
    padding: 0px 0px;
}

.checkbox {
    position: relative;
}

.checkbox__input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
}

.checkbox__input:checked+.checkbox__text:before {
    background: #fff url("../assets/img/new/icons/check.svg") center no-repeat;
}

.checkbox__text {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    font-size: 16px;
    color: #ffffff;
    letter-spacing: -0.3px;
    line-height: calc(20 / 16);
    cursor: pointer;
}

.checkbox__text:before {
    content: "";
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin: 0px 14px 0px 0px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    left: 0;
    top: 0;
    width: 20px;
    height: 18px;
    background: #fff;
    border: 1px solid #a7a9ac;
}

.checkbox a {
    color: #fff;
    text-decoration: underline;
}

.checkbox._error .checkbox__text:before {
    border: 1px solid #ee1212;
}

.options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.options__item {
    position: relative;
    cursor: pointer;
}

.options__input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    left: 0;
    top: 0;
    visibility: hidden;
}

.options__input:checked+.options__text:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.options__text {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    font-size: 16px;
    color: #ffffff;
    letter-spacing: -0.3px;
    line-height: calc(20 / 16);
}

.options__text:before {
    content: "";
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin: 0px 14px 0px 0px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    left: 0;
    top: 0;
    border-radius: 50%;
    width: 20px;
    height: 18px;
    background: #fff;
    border: 1px solid #a7a9ac;
}

.options__text:after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #77243a;
    position: absolute;
    left: 5px;
    top: 4px;
}

.rating-block {
    display: table;
    font-size: 0;
}

.rating {
    display: inline-block;
    position: relative;
    vertical-align: middle;
}

.rating.edit .star {
    cursor: pointer;
}

.rating .star {
    width: 17px;
    height: 14px;
    display: inline-block;
    position: relative;
    z-index: 3;
}

.rating__line {
    position: absolute;
    width: 85px;
    height: 14px;
    top: 0;
    left: 0;
    background: url("../assets/img/new/icons/bg_rating.svg") 0 0 no-repeat;
    z-index: 1;
    background-size: 85px 100%;
}

.rating__activeline {
    position: absolute;
    width: 0px;
    height: 14px;
    top: 0;
    left: 0;
    background: url("../assets/img/new/icons/bg_rating_active.svg") 0 0 no-repeat;
    z-index: 2;
    background-size: 85px 100%;
}

.rating__value {
    display: inline-block;
    color: #1b3139;
    font-size: 14px;
    line-height: 13px;
    vertical-align: middle;
}

.quantity {
    width: 88px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid rgba(166, 166, 166, 0.45);
}

.quantity__button {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30px;
    flex: 0 0 30px;
    position: relative;
    cursor: pointer;
}

.quantity__button::before,
.quantity__button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    margin: 0px 0px 0px -4.5px;
    background-color: #a6a6a6;
    width: 9px;
    height: 1px;
}

.quantity__button_plus::before {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.quantity__input {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.quantity__input input {
    height: 100%;
    color: #a6a6a6;
    font-size: 12px;
    width: 100%;
    text-align: center;
}

.row:after {
    display: block;
    content: "";
    clear: both;
}

.rub:after {
    content: "₽";
}

ol.counter {
    list-style-type: none;
    counter-reset: item;
}

ol.counter li {
    position: relative;
    padding: 0px 0px 0px 45px;
}

ol.counter li:before {
    counter-increment: item;
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    color: #818181;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 26px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    border: 1px solid #4274bb;
}

.ellipsis {
    display: block;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.es {
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.table {
    display: table;
    font-size: 0;
    width: 100%;
}

.trow {
    display: table-row;
}

.cell {
    display: table-cell;
}

.cell.full {
    width: 100%;
}

._ibg {
    position: relative;
}

._ibg img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

body.ie ._ibg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

body.ie ._ibg img {
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
}

.video {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 56.25%;
}

.video video,
.video iframe,
.video object,
.video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.videobg video,
.videobg iframe,
.videobg object,
.videobg embed {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}

.moretext {
    overflow: hidden;
}

.moretext__more {
    cursor: pointer;
}

.moretext__more span {
    font-style: normal;
}

.moretext__more span:first-child {
    display: block;
}

.moretext__more span:last-child {
    display: none;
}

.moretext__more.active span {
    font-style: normal;
}

.moretext__more.active span:first-child {
    display: none;
}

.moretext__more.active span:last-child {
    display: block;
}

#map {
    background: url("../assets/img/new/icons/loading.gif") center/50px no-repeat;
}

._swiper {
    overflow: hidden;
}

._swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

._swiper.swiper-container-vertical .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

._swiper.swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.swiper-container-initialized .swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.swiper-container-android .swiper-slide,
.swiper-container-android .swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
    display: none !important;
}

.slick-slider {
    position: relative;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-slider .slick-list {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slick-slider .slick-track {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.slick-slider .slick-slide {
    position: relative;
}

.tab__item {
    display: none;
}

.tab__item.active {
    display: block;
}

._tabs-block {
    display: none;
}

._tabs-block._active {
    display: block;
}

.mirror {
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.nicescroll-rails {
    z-index: 1000 !important;
}

.gm-style-iw-t {
    opacity: 0;
}

.baloon {
    opacity: 1;
    right: -7px !important;
    bottom: 80px !important;
}

.baloon button {
    display: none !important;
}

.baloon:after {
    display: none !important;
}

.baloon-style {
    display: none;
}

.baloon-content.gm-style-iw {
    opacity: 1;
    border-radius: 0px !important;
    max-width: 300px !important;
    padding: 0 !important;
    left: 0 !important;
    width: 100% !important;
    overflow: visible !important;
}

.baloon-content.gm-style-iw>.gm-style-iw-d {
    overflow: hidden !important;
    max-width: none !important;
}

.baloon-content.gm-style-iw:after {
    display: none !important;
}

.baloon-close {
    top: 18px !important;
}

._custom-scroll {
    position: fixed;
    right: 0;
    top: 0;
    width: 3px;
    height: 100%;
    z-index: 1000;
}

._custom-scroll__line {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 3px 0 0 3px;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
}

.popup {
    -webkit-overflow-scrolling: touch;
    z-index: 100;
    padding: 30px 0px;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: visibility 0.8s ease 0s;
    -o-transition: visibility 0.8s ease 0s;
    transition: visibility 0.8s ease 0s;
    visibility: hidden;
}

.popup::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity 0.8s ease 0s;
    -o-transition: opacity 0.8s ease 0s;
    transition: opacity 0.8s ease 0s;
}

.popup.show {
    visibility: visible;
    overflow: auto;
}

.popup.show::before {
    opacity: 1;
}

.popup.show .popup__body {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.popup._active {
    overflow: auto;
    visibility: visible;
}

.popup._active::before {
    opacity: 1;
}

.popup._active .popup__body {
    -webkit-transition: all 0.3s ease 0.2s;
    -o-transition: all 0.3s ease 0.2s;
    transition: all 0.3s ease 0.2s;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.popup__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
}

.popup__body {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background: -o-linear-gradient(310.68deg, #F1F6FD 14.19%, #EDF1F7 96.2%);
    background: linear-gradient(139.32deg, #F1F6FD 14.19%, #EDF1F7 96.2%);
    border: 1px solid #FFFFFF;
    -webkit-box-shadow: 14px 14px 20px rgba(164, 164, 186, 0.2);
    box-shadow: 14px 14px 20px rgba(164, 164, 186, 0.2);
    border-radius: 13px;
    padding: 30px;
    width: 100%;
    max-width: 370px;
}

.popup__close {
    width: 22px;
    height: 22px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 30;
    background: url("/assets/img/new/icons/close.svg") center/cover no-repeat;
}

.offer-popup__title {
    font-weight: 700;
    font-size: 26px;
    line-height: 33px;
    color: #191D3E;
    text-align: center;
}

.offer-popup__form {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
}

.offer-popup__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
}

.offer-popup__row {
    position: relative;
}

.offer-popup__row._required::after {
    content: "";
    position: absolute;
    top: 22.5px;
    right: 15px;
    height: 7px;
    width: 7px;
    display: inline-block;
    background: url(/assets/img/new/icons/req.svg) center/cover no-repeat;
}

.offer-popup__row .form__error {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #D22020;
    position: absolute;
    top: calc(100% + 2px);
}

.offer-popup__input {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 4px 6px -4px rgba(24, 39, 75, 0.12), 0px 8px 8px -4px rgba(24, 39, 75, 0.08);
    box-shadow: 0px 4px 6px -4px rgba(24, 39, 75, 0.12), 0px 8px 8px -4px rgba(24, 39, 75, 0.08);
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
    min-width: 0px;
    padding: 16px 15px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #191D3E;
    border: 1px solid #fff;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.offer-popup__input._error {
    border-color: #D22020;
}

.offer-popup__input:focus {
    border-color: #213C8F;
}

.offer-popup__input::-webkit-input-placeholder {
    color: #8893A9;
}

.offer-popup__input::-moz-placeholder {
    color: #8893A9;
}

.offer-popup__input:-ms-input-placeholder {
    color: #8893A9;
}

.offer-popup__input::-ms-input-placeholder {
    color: #8893A9;
}

.offer-popup__input::placeholder {
    color: #8893A9;
}

.offer-popup__btn {
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    color: #FFFFFF;
    height: 54px;
    width: 100%;
    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;
    text-align: center;
    background: #213C8F;
    border-radius: 100px;
}

.submit-offer-popup .popup__body {
    padding: 50px 30px;
}

.submit-offer-popup__title {
    font-weight: 700;
    font-size: 26px;
    line-height: 33px;
    text-align: center;
    color: #191D3E;
}

.submit-offer-popup__subtitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    color: #191D3E;
    margin-top: 10px;
    width: 100%;
    max-width: 256px;
    margin-left: auto;
    margin-right: auto;
}

.submit-offer-popup__text {
    margin-top: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #8893A9;
    width: 100%;
    max-width: 246px;
    margin-left: auto;
    margin-right: auto;
}

.submit-offer-popup__close {
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    color: #FFFFFF;
    height: 54px;
    width: 100%;
    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;
    text-align: center;
    background: #213C8F;
    border-radius: 100px;
    margin-top: 30px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 5;
    padding: 0px 20px;
}

.header__wrapper {
    width: 100%;
    max-width: 1280px;
    background: #EDF1F7;
    -webkit-box-shadow: 4px 4px 18px rgba(174, 174, 194, 0.18);
    box-shadow: 4px 4px 18px rgba(174, 174, 194, 0.18);
    border-radius: 0px 0px 23px 23px;
    padding: 15px 0px;
    margin: 0px auto;
    position: relative;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.header__container {
    padding: 0px 30px;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 326px;
    flex: 0 0 326px;
}

.header__actions {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.logo-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.logo-header__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 157px;
    flex: 0 0 157px;
}

.logo-header__img img {
    width: 100%;
    max-width: 100%;
}

.logo-header__text {
    font-family: "Inter";
    font-weight: 500;
    font-size: 11px;
    line-height: 1.45;
    color: #213C8F;
    padding-left: 10px;
    margin-left: 10px;
    border-left: 1px solid #213C8F;
}

.actions-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.actions-header__menu {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.menu__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
}

.menu__link {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #191D3E;
    white-space: nowrap;
}

.menu__link._exit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    overflow: hidden;
}

.menu__link._exit::after {
    content: "";
    height: 24px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    display: block;
    background: url(../assets/img/new/icons/exit.svg) center/cover no-repeat;
}

.menu__btn {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
    width: 175px;
    height: 56px;
    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;
    text-align: center;
    background: #213C8F;
    border-radius: 50px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.language-header .select__title {
    border: none;
    background: none;
}

.language-header .select__value {
    width: 90px;
    height: 56px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: #213C8F;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
    background: #EDF1F7;
    -webkit-box-shadow: -10px -10px 30px #FFFFFF, 10px 10px 30px rgba(174, 174, 192, 0.4);
    box-shadow: -10px -10px 30px #FFFFFF, 10px 10px 30px rgba(174, 174, 192, 0.4);
    border-radius: 100px;
}

.language-header .select__options {
    border-radius: 10px;
    padding: 0px 0px;
    overflow: hidden;
    top: 100%;
    background: #EDF1F7;
    border: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: #213C8F;
}

.icon-menu {
    display: none;
}

.footer {
    padding: 40px 0px;
    background: -webkit-gradient(linear, left bottom, left top, from(#E6EBF2), to(#E6EBF2)), #D9D9D9;
    background: -o-linear-gradient(bottom, #E6EBF2, #E6EBF2), #D9D9D9;
    background: linear-gradient(0deg, #E6EBF2, #E6EBF2), #D9D9D9;
    border-radius: 50px 50px 0px 0px;
}

.footer__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.footer__info {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.footer__social {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.footer__contact {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.info-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    row-gap: 15px;
}

.info-footer__logo {
    width: 157px;
}

.info-footer__logo img {
    width: 100%;
    max-width: 100%;
}

.info-footer__copy {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #8893A9;
}

.info-footer__terms {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #8893A9;
}

.social-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.social-footer__link {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    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: #8893A9;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.contact-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    row-gap: 15px;
}

.contact-footer__phone {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #8893A9;
}

.contact-footer__mail {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #8893A9;
}

.contact-footer__dev {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #8893A9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    margin-top: 5px;
}

.contact-footer__dev::before {
    content: "";
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    height: 20px;
    width: 20px;
    background: url(/assets/img/new/icons/dev.svg) center/cover no-repeat;
}

.banner {
    position: relative;
    padding: 156px 0px 135px;
}

.banner::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 919px;
    height: 676px;
    background: url(../assets/img/new/banner-bg.svg) center/100% 100% no-repeat;
}

.banner__content {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.banner__main {
    padding-top: 55px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 570px;
    flex: 0 0 570px;
}

.banner__text {
    font-weight: 700;
    font-size: 31px;
    line-height: 40px;
    color: #191D3E;
}

.banner__btn {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: #213C8F;
    padding: 18px 30px;
    background: #FFCC00;
    border-radius: 100px;
    display: inline-block;
    margin-top: 30px;
}

.banner__image {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin: 0px -100px 0px -25px;
}

.banner__image img {
    width: 100%;
    max-width: 100%;
}

.mini-banner {
    padding-bottom: 50px;
}

.mini-banner__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.mini-banner__image {
    margin-right: 100px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    overflow: hidden;
    position: relative;
    padding-bottom: 39.5%;
    border-radius: 0px 50px 50px 0px;
}

.mini-banner__image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.mini-banner__main {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 30px) / 2);
    flex: 0 0 calc((100% - 30px) / 2);
}

.mini-banner__suptitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4C5862;
    margin-bottom: 10px;
}

.mini-banner__title {
    font-weight: 700;
    font-size: 32px;
    line-height: 41px;
    color: #191D3E;
    margin-bottom: 30px;
}

.mini-banner__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 29px;
    color: #4C5862;
}

.mini-banner__btn {
    margin-top: 30px;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 18px 30px;
    background: #213C8F;
    border-radius: 100px;
    display: inline-block;
}

.automate {
    padding-bottom: 50px;
    padding-top: 50px;
}

.automate__content {
    margin-top: 50px;
    -webkit-column-gap: 70px;
    -moz-column-gap: 70px;
    column-gap: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    column-gap: 70px;
}

.automate__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 70px * 3) / 4);
    flex: 0 0 calc((100% - 70px * 3) / 4);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    row-gap: 20px;
}

.automate__icon {
    background: -o-linear-gradient(310.68deg, #F1F6FD 14.19%, #EDF1F7 96.2%);
    background: linear-gradient(139.32deg, #F1F6FD 14.19%, #EDF1F7 96.2%);
    border: 1px solid #FFFFFF;
    -webkit-box-shadow: 14px 14px 20px rgba(164, 164, 186, 0.2);
    box-shadow: 14px 14px 20px rgba(164, 164, 186, 0.2);
    border-radius: 50%;
    width: 65px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 65px;
    flex: 0 0 65px;
    height: 65px;
    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;
}

.automate__name {
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    color: #191D3E;
    margin-bottom: 15px;
}

.automate__description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #4C5862;
}

.features {
    padding-bottom: 100px;
    padding-top: 50px;
}

.features__content {
    margin-top: 50px;
}

.features__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.features__row._revers {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.features__row:not(:last-child) {
    margin-bottom: 80px;
}

.features__list {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 545px;
    flex: 0 0 545px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
}

.features__item {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    background: -o-linear-gradient(310.68deg, #F1F6FD 14.19%, #EDF1F7 96.2%);
    background: linear-gradient(139.32deg, #F1F6FD 14.19%, #EDF1F7 96.2%);
    border: 1px solid #FFFFFF;
    -webkit-box-shadow: 14px 14px 20px rgba(164, 164, 186, 0.2);
    box-shadow: 14px 14px 20px rgba(164, 164, 186, 0.2);
    border-radius: 13px;
}

.features__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    height: 24px;
    width: 24px;
    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;
}

.features__icon img {
    max-width: 100%;
    width: 100%;
}

.features__text {
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    color: #191D3E;
}

.features__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.features__img img {
    max-width: 100%;
}

.features__btn {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: #213C8F;
    padding: 18px 30px;
    background: #FFCC00;
    border-radius: 100px;
    margin-top: 35px;
}

.review {
    background: -o-linear-gradient(171.62deg, #213C8F 1.38%, #4B64B3 100%), -o-linear-gradient(bottom, #FFFFFF, #FFFFFF), #D9D9D9;
    background: linear-gradient(278.38deg, #213C8F 1.38%, #4B64B3 100%), linear-gradient(0deg, #FFFFFF, #FFFFFF), #D9D9D9;
}

.review__container {
    padding: 115px 20px 60px;
    position: relative;
}

.review__content {
    width: 100%;
    max-width: 675px;
    margin: 0px auto;
    position: relative;
    z-index: 1;
}

.review__slider {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    position: relative;
}

.review__slider::after {
    content: "";
    width: calc(100% - 24px * 2);
    height: 22px;
    position: absolute;
    left: 50%;
    bottom: -22px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: inline-block;
    background: #E8EDFB;
    border-radius: 0px 0px 23px 23px;
}

.review__slider::before {
    content: "";
    width: calc(100% - 48px * 2);
    height: 22px;
    position: absolute;
    left: 50%;
    bottom: -44px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: inline-block;
    background: #C4CCEC;
    border-radius: 0px 0px 23px 23px;
}

.review__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    position: relative;
    background: #FFFFFF;
    border-radius: 23px;
    padding: 100px 45px 60px;
    z-index: 1;
}

.review__image {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 111px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 111px;
    flex: 0 0 111px;
    height: 111px;
    border-radius: 50%;
    padding: 7px;
    border: 1px solid #FFFFFF;
    -webkit-filter: drop-shadow(0px 5px 10px rgba(33, 53, 90, 0.1));
    filter: drop-shadow(0px 5px 10px rgba(33, 53, 90, 0.1));
}

.review__image img {
    width: calc(100% - 7px * 2);
    height: calc(100% - 7px * 2);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -o-object-fit: cover;
    object-fit: cover;
}

.review__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.review__body::after {
    content: "";
    width: 72px;
    height: 72px;
    position: absolute;
    top: -33px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: url(../assets/img/new/icons/q.svg) center/cover no-repeat;
}

.review__description {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    color: #334D6E;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.review__info {
    text-align: center;
    margin-top: 30px;
}

.review__name {
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #191D3E;
}

.review__work {
    font-family: "NotoSans";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 156.2%;
    text-align: center;
    color: #4C5862;
}

.review__paggination {
    margin-top: 75px;
    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-column-gap: 8px;
    -moz-column-gap: 8px;
    column-gap: 8px;
}

.review__paggination .swiper-pagination-bullet {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8px;
    flex: 0 0 8px;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.5);
}

.review__paggination .swiper-pagination-bullet-active {
    background: white;
}

.background-review__item {
    position: absolute;
    border: 3px solid #FFFFFF;
    -webkit-box-shadow: 0px 5px 10px rgba(33, 53, 90, 0.1);
    box-shadow: 0px 5px 10px rgba(33, 53, 90, 0.1);
    border-radius: 50%;
    width: 65px;
    height: 65px;
}

.background-review__item img {
    width: 100%;
    max-width: 100%;
}

.background-review__item:nth-child(1) {
    left: 170px;
    top: 70px;
}

.background-review__item:nth-child(2) {
    left: 20px;
    top: 200px;
    width: 70px;
    height: 70px;
}

.background-review__item:nth-child(3) {
    left: 70px;
    bottom: 110px;
    width: 60px;
    height: 60px;
}

.background-review__item:nth-child(4) {
    right: 300px;
    top: 25px;
    width: 55px;
    height: 55px;
}

.background-review__item:nth-child(5) {
    right: 90px;
    top: 200px;
    width: 80px;
    height: 80px;
}

.background-review__item:nth-child(6) {
    right: 90px;
    bottom: 30px;
}

.blog {
    padding: 100px 0px 50px;
}

.blog__body {
    margin-top: 40px;
}

.head-blog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.head-blog__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.head-blog__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 10px;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.head-blog__link {
    padding: 12px 20px;
    display: block;
    background: -o-linear-gradient(310.68deg, #F1F6FD 14.19%, #EDF1F7 96.2%);
    background: linear-gradient(139.32deg, #F1F6FD 14.19%, #EDF1F7 96.2%);
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #90A0B7;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.head-blog__link._active {
    color: #213C8F;
    -webkit-box-shadow: 14px 14px 20px rgba(164, 164, 186, 0.2);
    box-shadow: 14px 14px 20px rgba(164, 164, 186, 0.2);
}

.head-blog__more {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #191D3E;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
}

.head-blog__more::after {
    content: "";
    width: 16px;
    height: 16px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16px;
    flex: 0 0 16px;
    background: url(../assets/img/new/icons/more.svg) center/cover no-repeat;
}

.body-blog__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
}

.body-blog__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 30px * 2) / 3);
    flex: 0 0 calc((100% - 30px * 2) / 3);
    background: -o-linear-gradient(310.68deg, #F1F6FD 14.19%, #EDF1F7 96.2%);
    background: linear-gradient(139.32deg, #F1F6FD 14.19%, #EDF1F7 96.2%);
    border: 1px solid #FFFFFF;
    -webkit-box-shadow: 14px 14px 20px rgba(164, 164, 186, 0.2);
    box-shadow: 14px 14px 20px rgba(164, 164, 186, 0.2);
    border-radius: 23px;
    overflow: hidden;
}

.body-blog__image {
    width: 100%;
    position: relative;
    display: block;
    padding-bottom: 59.5%;
}

.body-blog__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.body-blog__info {
    padding: 20px 30px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.body-blog__name {
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    color: #191D3E;
    max-width: 100%;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    -moz-line-clamp: 2;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    height: 46px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 46px;
    flex: 0 0 46px;
    margin-bottom: 15px;
}

.body-blog__description {
    font-family: "NotoSans";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #4C5862;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.body-blog__more {
    margin-top: 20px;
    display: inline-block;
    font-family: "NotoSans";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #213C8F;
}

.about {
    padding: 50px 0px;
}

.about__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.about__info {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 30px) / 2);
    flex: 0 0 calc((100% - 30px) / 2);
}

.about__title {
    text-align: left;
}

.about__description {
    margin-top: 20px;
    font-weight: 400;
    font-size: 18px;
    line-height: 29px;
    color: #4C5862;
}

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

.about__image {
    margin-left: 100px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    overflow: hidden;
    position: relative;
    padding-bottom: 39.5%;
    border-radius: 50px 0px 0px 50px;
}

.about__image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.subscribe {
    padding: 50px 0px 100px;
}

.subscribe__form {
    background: #213C8F;
    border-radius: 23px;
    padding: 45px 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.subscribe__text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    font-weight: 700;
    font-size: 26px;
    line-height: 33px;
    color: #FFFFFF;
    width: 100%;
    max-width: 420px;
}

.subscribe__main {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 490px;
    flex: 0 0 490px;
    background: -o-linear-gradient(310.68deg, #F1F6FD 14.19%, #EDF1F7 96.2%);
    background: linear-gradient(139.32deg, #F1F6FD 14.19%, #EDF1F7 96.2%);
    border: 1px solid #FFFFFF;
    -webkit-box-shadow: 14px 14px 20px rgba(164, 164, 186, 0.2);
    box-shadow: 14px 14px 20px rgba(164, 164, 186, 0.2);
    border-radius: 13px;
    padding: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.subscribe__input {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    background: transparent;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    padding-left: 22px;
    min-width: 0px;
    max-width: 100%;
}

.subscribe__input::-webkit-input-placeholder {
    color: #8893A9;
}

.subscribe__input::-moz-placeholder {
    color: #8893A9;
}

.subscribe__input:-ms-input-placeholder {
    color: #8893A9;
}

.subscribe__input::-ms-input-placeholder {
    color: #8893A9;
}

.subscribe__input::placeholder {
    color: #8893A9;
}

.subscribe__btn {
    padding: 14px 16px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    white-space: nowrap;
    color: #191D3E;
    background: #FFCC00;
    border-radius: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
}

.subscribe__btn::after {
    content: "";
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    height: 20px;
    width: 20px;
    background: url(../assets/img/new/icons/send.svg) center/cover no-repeat;
}

.vacancy {
    padding: 130px 0px 100px;
}

.vacancy__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
}

.vacancy__info {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    background: -o-linear-gradient(310.68deg, #F1F6FD 14.19%, #EDF1F7 96.2%);
    background: linear-gradient(139.32deg, #F1F6FD 14.19%, #EDF1F7 96.2%);
    border: 1px solid #FFFFFF;
    -webkit-box-shadow: 14px 14px 20px rgba(164, 164, 186, 0.2);
    box-shadow: 14px 14px 20px rgba(164, 164, 186, 0.2);
    border-radius: 23px;
    padding: 40px;
}

.vacancy__sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 390px;
    flex: 0 0 390px;
}

.info-vacancy__body {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #4C5862;
}

.info-vacancy__body h3 {
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    color: #191D3E;
}

.info-vacancy__body li {
    list-style: inherit;
}

.info-vacancy__body ul {
    list-style: disc;
}

.info-vacancy__body ul,
.info-vacancy__body ol {
    padding-left: 20px;
}

.info-vacancy__body ul>*:not(:last-child),
.info-vacancy__body ol>*:not(:last-child) {
    margin-bottom: 10px;
}

.info-vacancy__body ol {
    list-style: none;
}

.info-vacancy__body ol li {
    position: relative;
}

.info-vacancy__body ol li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #213C8F;
    border-radius: 50%;
    position: absolute;
    top: calc(24px / 2 - 3px);
    left: -20px;
}

.info-vacancy__section>*:not(:last-child) {
    margin-bottom: 12px;
}

.head-info-vacancy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.head-info-vacancy__main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.head-info-vacancy__title {
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    color: #213C8F;
}

.head-info-vacancy__company {
    font-weight: 500;
    font-size: 19px;
    line-height: 20px;
    color: #334D6E;
    margin-top: 8px;
}

.head-info-vacancy__logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 95px;
    flex: 0 0 95px;
}

.head-info-vacancy__logo img,
.head-info-vacancy__logo svg {
    width: 100%;
    max-width: 100%;
}

.sidebar-vacancy__wrapper {
    background: -o-linear-gradient(310.68deg, #F1F6FD 14.19%, #EDF1F7 96.2%);
    background: linear-gradient(139.32deg, #F1F6FD 14.19%, #EDF1F7 96.2%);
    border: 1px solid #FFFFFF;
    -webkit-box-shadow: 14px 14px 20px rgba(164, 164, 186, 0.2);
    box-shadow: 14px 14px 20px rgba(164, 164, 186, 0.2);
    border-radius: 23px;
    padding: 40px;
    width: 100%;
}

.sidebar-vacancy__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
    width: 100%;
}

.sidebar-vacancy__input {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 4px 6px -4px rgba(24, 39, 75, 0.12), 0px 8px 8px -4px rgba(24, 39, 75, 0.08);
    box-shadow: 0px 4px 6px -4px rgba(24, 39, 75, 0.12), 0px 8px 8px -4px rgba(24, 39, 75, 0.08);
    border-radius: 12px;
    padding: 0px 15px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #191D3E;
    width: 100%;
    max-width: 100%;
    max-width: 100%;
    height: 52px;
}

.sidebar-vacancy__input::-webkit-input-placeholder {
    color: #8893A9;
}

.sidebar-vacancy__input::-moz-placeholder {
    color: #8893A9;
}

.sidebar-vacancy__input:-ms-input-placeholder {
    color: #8893A9;
}

.sidebar-vacancy__input::-ms-input-placeholder {
    color: #8893A9;
}

.sidebar-vacancy__input::placeholder {
    color: #8893A9;
}

.sidebar-vacancy__btn {
    background: #FFCC00;
    border-radius: 100px;
    height: 54px;
    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;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    color: #191D3E;
    width: 100%;
}

.page {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

@media (min-width: 767.98px) {
    .head-blog__title {
        text-align: left;
    }
}

@media (min-width: 991.98px) {

    .quantity__button:hover::before,
    .quantity__button:hover::after {
        background-color: rgba(0, 0, 0, 0.5);
    }
}

@media (min-width: 992px) {
    .select__option:hover {
        background: #d9d9d9;
    }

    .checkbox a:hover {
        text-decoration: none;
    }
}

@media (min-width: 1272px) {
    .mini-banner__image {
        margin-left: calc((100vw - 1260px + 40px) / 2 * -1);
    }

    .about__image {
        margin-right: calc((100vw - 1260px + 40px) / 2 * -1);
    }
}

@media (min-width: 1920px) {
    .banner::after {
        width: 50%;
        height: 620px;
    }

    .mini-banner__image {
        padding-bottom: 49%;
    }

    .about__image {
        padding-bottom: 49%;
    }
}

@media (max-width: 1600px) {
    .banner::after {
        right: -300px;
        top: -50px;
    }
}

@media (max-width: 1272px) {
    ._title {
        font-size: 28px;
        line-height: 36px;
    }

    .header__container {
        padding: 0px 20px;
    }

    .actions-header {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }

    .menu__body {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }

    .menu__list {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }

    .banner {
        padding: 146px 0px 50px;
    }

    .banner::after {
        right: -450px;
        top: -220px;
    }

    .banner__main {
        padding-top: 35px;
    }

    .banner__text {
        font-size: 28px;
        line-height: 36px;
    }

    .banner__image {
        margin: 0px -50px 0px -50px;
    }

    .mini-banner {
        padding-bottom: 40px;
    }

    .mini-banner__content {
        -webkit-column-gap: 40px;
        -moz-column-gap: 40px;
        column-gap: 40px;
    }

    .mini-banner__image {
        margin-left: -20px;
        margin-right: 0;
        padding-bottom: 45.3%;
    }

    .mini-banner__main {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 40px) / 2);
        flex: 0 0 calc((100% - 40px) / 2);
    }

    .mini-banner__title {
        font-size: 28px;
        line-height: 36px;
    }

    .mini-banner__text {
        font-size: 16px;
        line-height: 26px;
    }

    .automate {
        padding-bottom: 40px;
        padding-top: 40px;
    }

    .automate__content {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
        margin-top: 30px;
    }

    .automate__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 3) / 4);
        flex: 0 0 calc((100% - 20px * 3) / 4);
    }

    .features {
        padding-bottom: 80px;
        padding-top: 40px;
    }

    .features__content {
        margin-top: 30px;
    }

    .features__row {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

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

    .features__list {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px) / 2);
        flex: 0 0 calc((100% - 20px) / 2);
    }

    .features__image {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px) / 2);
        flex: 0 0 calc((100% - 20px) / 2);
    }

    .features__img {
        width: 100%;
    }

    .features__img img {
        width: 100%;
    }

    .background-review__item:nth-child(1) {
        left: 120px;
        top: 50px;
    }

    .background-review__item:nth-child(3) {
        left: 40px;
        bottom: 90px;
    }

    .background-review__item:nth-child(4) {
        right: 170px;
    }

    .background-review__item:nth-child(5) {
        right: 20px;
    }

    .background-review__item:nth-child(6) {
        right: 25px;
        bottom: 25px;
    }

    .blog {
        padding: 80px 0px 40px;
    }

    .blog__body {
        margin-top: 30px;
    }

    .body-blog__content {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }

    .body-blog__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
        flex: 0 0 calc((100% - 20px * 2) / 3);
    }

    .body-blog__info {
        padding: 20px 20px;
    }

    .about {
        padding: 40px 0px;
    }

    .about__content {
        -webkit-column-gap: 40px;
        -moz-column-gap: 40px;
        column-gap: 40px;
    }

    .about__info {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 40px) / 2);
        flex: 0 0 calc((100% - 40px) / 2);
    }

    .about__description {
        font-size: 16px;
        line-height: 26px;
        margin-top: 10px;
    }

    .about__description p:not(:last-child) {
        margin-bottom: 10px;
    }

    .about__image {
        margin-right: -20px;
        margin-left: 0;
        padding-bottom: 45.3%;
    }

    .subscribe {
        padding: 40px 0px 80px;
    }

    .subscribe__form {
        padding: 30px 30px;
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }

    .subscribe__text {
        font-size: 22px;
        line-height: 28px;
    }

    .vacancy__info {
        padding: 30px;
    }

    .vacancy__sidebar {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 340px;
        flex: 0 0 340px;
    }

    .sidebar-vacancy__wrapper {
        padding: 30px;
    }
}

@media (max-width: 991.98px) {
    ._title {
        font-size: 24px;
        line-height: 31px;
    }

    .select__title {
        font-size: 18px;
    }

    .select__options {
        font-size: 18px;
    }

    .header._menu .header__wrapper {
        border-radius: 0px 0px 0px 0px;
    }

    .menu__body {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #EDF1F7;
        -webkit-box-shadow: 4px 4px 18px rgba(174, 174, 194, 0.18);
        box-shadow: 4px 4px 18px rgba(174, 174, 194, 0.18);
        border-radius: 0px 0px 23px 23px;
        border-top: 1px solid #DEDEDE;
        padding: 30px 20px;
        row-gap: 30px;
        display: none;
    }

    .menu__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 30px;
        margin-bottom: 30px;
    }

    .menu__link {
        font-weight: 500;
        font-size: 20px;
        line-height: 25px;
    }

    .menu__btn {
        width: 100%;
        max-width: 320px;
        margin: 0px auto;
    }

    .icon-menu {
        display: block;
        position: relative;
        width: 30px;
        height: 25px;
        cursor: pointer;
        z-index: 5;
    }

    .icon-menu span {
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        top: calc(50% - 1.5px);
        right: 0px;
        position: absolute;
        width: 100%;
        height: 3px;
        background-color: #213C8F;
        border-radius: 10px;
        display: block;
    }

    .icon-menu span:first-child {
        top: 0px;
    }

    .icon-menu span:last-child {
        top: auto;
        bottom: 0px;
        width: 50%;
    }

    .icon-menu._active span {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }

    .icon-menu._active span:first-child {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: calc(50% - 1.5px);
    }

    .icon-menu._active span:last-child {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        bottom: calc(50% - 1.5px);
        width: 100%;
    }

    .footer {
        padding: 30px 0px;
    }

    .footer__info {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 235px;
        flex: 0 0 235px;
    }

    .banner {
        padding: 130px 0px 85px;
    }

    .banner::after {
        right: -530px;
        top: -290px;
    }

    .banner__content {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .banner__main {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 440px;
        flex: 0 0 440px;
        padding-top: 0;
    }

    .banner__text {
        font-size: 24px;
        line-height: 31px;
    }

    .banner__image {
        margin: 0px -45px 0px -25px;
    }

    .mini-banner {
        padding-bottom: 30px;
    }

    .mini-banner__content {
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
    }

    .mini-banner__main {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 30px) / 2);
        flex: 0 0 calc((100% - 30px) / 2);
    }

    .mini-banner__suptitle {
        font-size: 12px;
        line-height: 15px;
    }

    .mini-banner__title {
        font-size: 24px;
        line-height: 31px;
        margin-bottom: 20px;
    }

    .mini-banner__btn {
        margin-top: 20px;
    }

    .automate {
        padding-bottom: 30px;
        padding-top: 30px;
    }

    .automate__content {
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
        row-gap: 30px;
    }

    .automate__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
        flex: 0 0 calc((100% - 30px * 1) / 2);
    }

    .features {
        padding-bottom: 60px;
        padding-top: 30px;
    }

    .features__row:not(:last-child) {
        margin-bottom: 30px;
    }

    .features__item {
        min-height: 64px;
        padding: 14px 20px;
    }

    .features__btn {
        margin-top: 30px;
    }

    .background-review__item:nth-child(3) {
        left: 20px;
        bottom: 40px;
    }

    .background-review__item:nth-child(4) {
        right: 150px;
    }

    .background-review__item:nth-child(5) {
        right: 10px;
    }

    .background-review__item:nth-child(6) {
        right: 10px;
    }

    .blog {
        padding: 60px 0px 30px;
    }

    .blog__body {
        margin-top: 20px;
    }

    .head-blog {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        row-gap: 20px;
    }

    .body-blog__content {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .body-blog__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
        flex: 0 0 calc((100% - 20px * 1) / 2);
    }

    .about {
        padding: 30px 0px;
    }

    .about__content {
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
    }

    .about__info {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 30px) / 2);
        flex: 0 0 calc((100% - 30px) / 2);
    }

    .subscribe {
        padding: 30px 0px 60px;
    }

    .subscribe__form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 30px;
    }

    .subscribe__text {
        text-align: center;
    }

    .subscribe__main {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
        max-width: 490px;
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }

    .vacancy__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .vacancy__info {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .vacancy__sidebar {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
}

@media (max-width: 767.98px) {
    .header {
        padding: 0px 0px;
    }

    .header__logo {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 157px;
        flex: 0 0 157px;
    }

    .logo-header__text {
        display: none;
    }

    .footer__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        row-gap: 30px;
        text-align: center;
    }

    .footer__info {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .info-footer {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .contact-footer {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .banner {
        padding: 130px 0px 70px;
    }

    .banner::after {
        width: 500px;
        height: 260px;
        background: -o-linear-gradient(171.62deg, #213C8F 1.38%, #4B64B3 100%);
        background: linear-gradient(278.38deg, #213C8F 1.38%, #4B64B3 100%);
        border-radius: 90px;
        -webkit-transform: rotate(-15deg);
        -ms-transform: rotate(-15deg);
        transform: rotate(-15deg);
        top: auto;
        right: auto;
        bottom: 80px;
        left: 50px;
    }

    .banner__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .banner__main {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        text-align: center;
    }

    .banner__image {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        margin: 20px 0px 0px 0px;
    }

    .mini-banner__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 30px;
    }

    .mini-banner__image {
        margin-left: 0;
        padding-bottom: 69%;
        width: 100%;
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        border-radius: 50px;
    }

    .mini-banner__image {
        border-radius: 30px;
    }

    .mini-banner__main {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        text-align: center;
    }

    .features__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 30px;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .features__row._revers {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .features__list {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .features__image {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .review__description {
        font-size: 16px;
        line-height: 22px;
    }

    .review__info {
        margin-top: 20px;
    }

    .background-review__item {
        width: 33px;
        height: 33px;
    }

    .background-review__item:nth-child(1) {
        left: 10px;
        top: 50px;
    }

    .background-review__item:nth-child(2) {
        display: none;
    }

    .background-review__item:nth-child(3) {
        left: 25px;
        bottom: 10px;
        width: 39px;
        height: 39px;
    }

    .background-review__item:nth-child(4) {
        top: 10px;
        right: 50px;
        width: 32px;
        height: 32px;
    }

    .background-review__item:nth-child(5) {
        display: none;
    }

    .background-review__item:nth-child(6) {
        width: 35px;
        height: 35px;
        bottom: 35px;
        right: 10px;
    }

    .head-blog {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .head-blog__main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
        row-gap: 9px;
    }

    .head-blog__list {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .body-blog__content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .body-blog__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .about__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 30px;
    }

    .about__info {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .about__image {
        margin-right: 0;
        padding-bottom: 69%;
        width: 100%;
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        border-radius: 50px;
    }

    .about__image {
        border-radius: 30px;
    }
}

@media (max-width: 479.98px) {
    ._title {
        font-size: 16px;
        line-height: 20px;
    }

    .questions__title {
        line-height: 56px !important;
    }

    .popup__body {
        padding: 30px 20px;
    }

    .offer-popup__title {
        font-size: 20px;
        line-height: 25px;
    }

    .header__wrapper {
        padding: 10px 0px;
    }

    .header__logo {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 94px;
        flex: 0 0 94px;
    }

    .logo-header__img {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 94px;
        flex: 0 0 94px;
    }

    .language-header .select__value {
        height: 45px;
        width: 71px;
    }

    .banner {
        padding: 95px 0px 45px;
    }

    .banner__text {
        font-size: 16px;
        line-height: 20px;
    }

    .banner__btn {
        margin-top: 20px;
    }

    .mini-banner {
        padding-bottom: 20px;
    }

    .mini-banner__title {
        font-size: 16px;
        line-height: 20px;
    }

    .automate {
        padding-bottom: 20px;
        padding-top: 20px;
    }

    .automate__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }

    .features {
        padding-bottom: 40px;
        padding-top: 20px;
    }

    .features__content {
        margin-top: 20px;
    }

    .features__item {
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
    }

    .features__text {
        font-size: 12px;
        line-height: 15px;
    }

    .review__container {
        padding: 75px 20px 40px;
    }

    .review__slider::after {
        height: calc(50% + 10px);
        width: calc(100% - 10px * 2);
        bottom: -10px;
    }

    .review__slider::before {
        height: calc(50% + 20px);
        width: calc(100% - 20px * 2);
        bottom: -20px;
    }

    .review__item {
        padding: 65px 20px 30px;
    }

    .review__image {
        width: 67px;
        height: 67px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 67px;
        flex: 0 0 67px;
        padding: 4px;
    }

    .review__image img {
        width: calc(100% - 4px * 2);
        height: calc(100% - 4px * 2);
    }

    .review__body::after {
        width: 54px;
        height: 54px;
        top: -24px;
    }

    .review__paggination {
        margin-top: 40px;
    }

    .blog {
        padding: 40px 0px 20px;
    }

    .body-blog__content {
        row-gap: 20px;
    }

    .about {
        padding: 20px 0px;
    }

    .about__content {
        row-gap: 20px;
    }

    .subscribe {
        padding: 20px 0px 40px;
    }

    .subscribe__form {
        padding: 30px 20px;
    }

    .subscribe__text {
        font-size: 16px;
        line-height: 20px;
    }

    .subscribe__main {
        background: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: none;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 20px;
        padding: 0px;
    }

    .subscribe__input {
        padding: 14px 20px;
        background: -o-linear-gradient(310.68deg, #F1F6FD 14.19%, #EDF1F7 96.2%);
        background: linear-gradient(139.32deg, #F1F6FD 14.19%, #EDF1F7 96.2%);
        border: 1px solid #FFFFFF;
        -webkit-box-shadow: 14px 14px 20px rgba(164, 164, 186, 0.2);
        box-shadow: 14px 14px 20px rgba(164, 164, 186, 0.2);
        border-radius: 13px;
    }

    .subscribe__btn {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }

    .vacancy {
        padding: 100px 0px 60px;
    }

    .vacancy__info {
        padding: 20px;
    }

    .info-vacancy__body {
        row-gap: 20px;
        margin-top: 20px;
    }

    .head-info-vacancy {
        -webkit-column-gap: 15px;
        -moz-column-gap: 15px;
        column-gap: 15px;
    }

    .head-info-vacancy__title {
        font-size: 18px;
        line-height: 1.3;
    }

    .head-info-vacancy__logo {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 70px;
        flex: 0 0 70px;
    }

    .sidebar-vacancy__wrapper {
        padding: 20px;
    }

    .sidebar-vacancy__form {
        row-gap: 15px;
    }
}

@media (any-hover: hover) {
    .menu__link:hover {
        text-decoration: underline;
    }

    .menu__btn:hover {
        background: #16285e;
    }

    .language-header .select__option:hover {
        background: #fafafa;
    }

    .info-footer__terms:hover {
        text-decoration: underline;
    }

    .social-footer__link:hover {
        background: #7c8baa;
    }

    .contact-footer__phone:hover {
        text-decoration: underline;
    }

    .contact-footer__mail:hover {
        text-decoration: underline;
    }

    .contact-footer__dev:hover {
        text-decoration: underline;
    }

    .review__paggination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active):hover {
        background: rgba(255, 255, 255, 0.7);
    }

    .head-blog__link:not(._active):hover {
        color: #809bc0;
    }

    .head-blog__more:hover {
        text-decoration: underline;
    }

    .body-blog__more:hover {
        text-decoration: underline;
    }
}

.sticky {
    position: -webkit-fixed;
    position: fixed;
    bottom: 0;
    background-color: #f9fafc;
    padding: 12px 40px 0 40px;
    font-size: 15px;
    width: 100%;
    z-index: 99999;
    display: inline-flex;
}

.accept_cookies {
    font-weight: 700;
    font-size: 13px;
    line-height: 6px;
    text-transform: uppercase;
    color: #213C8F;
    padding: 18px 15px;
    background: #FFCC00;
    border-radius: 100px;
    display: inline-block;

    white-space: nowrap !important;
}

.denie_cookies {
    font-weight: 700;
    font-size: 13px;
    line-height: 6px;
    text-transform: uppercase;
    color: #213C8F;
    background-color: transparent;
    padding: 18px 30px;
    display: inline-block;
    /* margin-top: 5px; */
    white-space: nowrap !important;
}

.sticky a {
    color: #213C8F;
}

@media screen and (max-width: 900px) {
    .sticky {
        display: block !important;
    }

    .sticky div:nth-child(2),
    .sticky div:nth-child(3) {
        width: 100% !important;
    }
}

/* REVIEW */
.review {
    background: -o-linear-gradient(171.62deg, #213C8F 1.38%, #4B64B3 100%), -o-linear-gradient(bottom, #FFFFFF, #FFFFFF), #D9D9D9;
    background: linear-gradient(278.38deg, #213C8F 1.38%, #4B64B3 100%), linear-gradient(0deg, #FFFFFF, #FFFFFF), #D9D9D9;
}

.review__container {
    padding: 115px 20px 60px;
    position: relative;
}

.review__content {
    width: 100%;
    max-width: 675px;
    margin: 0px auto;
    position: relative;
    z-index: 1;
}

.review__slider {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    position: relative;
}

.review__slider::after {
    content: "";
    width: calc(100% - 24px * 2);
    height: 22px;
    position: absolute;
    left: 50%;
    bottom: -22px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: inline-block;
    background: #E8EDFB;
    border-radius: 0px 0px 23px 23px;
}

.review__slider::before {
    content: "";
    width: calc(100% - 48px * 2);
    height: 22px;
    position: absolute;
    left: 50%;
    bottom: -44px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: inline-block;
    background: #C4CCEC;
    border-radius: 0px 0px 23px 23px;
}

.review__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    position: relative;
    background: #FFFFFF;
    border-radius: 23px;
    padding: 100px 45px 60px;
    z-index: 1;
}

.review__image {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 111px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 111px;
    flex: 0 0 111px;
    height: 111px;
    border-radius: 50%;
    padding: 7px;
    border: 1px solid #FFFFFF;
    -webkit-filter: drop-shadow(0px 5px 10px rgba(33, 53, 90, 0.1));
    filter: drop-shadow(0px 5px 10px rgba(33, 53, 90, 0.1));
}

.review__image img {
    width: calc(100% - 7px * 2);
    height: calc(100% - 7px * 2);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -o-object-fit: cover;
    object-fit: cover;
}

.review__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.review__body::after {
    content: "";
    width: 72px;
    height: 72px;
    position: absolute;
    top: -33px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: url(../img/icons/q.svg) center/cover no-repeat;
}

.review__description {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    color: #334D6E;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.review__info {
    text-align: center;
    margin-top: 30px;
}

.review__name {
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #191D3E;
}

.review__work {
    font-family: "NotoSans";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 156.2%;
    text-align: center;
    color: #4C5862;
}

.review__paggination {
    margin-top: 75px;
    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-column-gap: 8px;
    -moz-column-gap: 8px;
    column-gap: 8px;
}

.review__paggination .swiper-pagination-bullet {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8px;
    flex: 0 0 8px;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.5);
}

.review__paggination .swiper-pagination-bullet-active {
    background: white;
}

.background-review__item {
    position: absolute;
    border: 3px solid #FFFFFF;
    -webkit-box-shadow: 0px 5px 10px rgba(33, 53, 90, 0.1);
    box-shadow: 0px 5px 10px rgba(33, 53, 90, 0.1);
    border-radius: 50%;
    width: 65px;
    height: 65px;
}

.background-review__item img {
    width: 100%;
    max-width: 100%;
}

.background-review__item:nth-child(1) {
    left: 170px;
    top: 70px;
}

.background-review__item:nth-child(2) {
    left: 20px;
    top: 200px;
    width: 70px;
    height: 70px;
}

.background-review__item:nth-child(3) {
    left: 70px;
    bottom: 110px;
    width: 60px;
    height: 60px;
}

.background-review__item:nth-child(4) {
    right: 300px;
    top: 25px;
    width: 55px;
    height: 55px;
}

.background-review__item:nth-child(5) {
    right: 90px;
    top: 200px;
    width: 80px;
    height: 80px;
}

.background-review__item:nth-child(6) {
    right: 90px;
    bottom: 30px;
}

.review-section {
    padding: 180px 0px 135px;
}

.review-section__wrapper {
    width: 100%;
    max-width: 520px;
    padding: 50px 40px 40px;
    border-radius: 8px;
    background: #FFF;
    margin: 0px auto;
}

.review-section__title {
    color: #192A3E;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.2px;
}

.review-section__form {
    margin-top: 30px;
}

.review-section__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 25px;
}

.review-section__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 15px) / 2);
    flex: 0 0 calc((100% - 15px) / 2);
}

.review-section__item._full-width {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

.review-section__input {
    border-bottom: 1px solid #D3D8DD;
    padding-bottom: 8px;
    color: rgba(50, 60, 71, 0.5);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.14px;
    width: 100%;
    max-width: 100%;
    min-width: 0px;
    resize: none;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    color: #323C47;
}

.review-section__input._focus {
    color: #323C47;
    border-color: #323C47;
}

.review-section__input::-webkit-input-placeholder {
    color: rgba(50, 60, 71, 0.5);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.review-section__input::-moz-placeholder {
    color: rgba(50, 60, 71, 0.5);
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.review-section__input:-ms-input-placeholder {
    color: rgba(50, 60, 71, 0.5);
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.review-section__input::-ms-input-placeholder {
    color: rgba(50, 60, 71, 0.5);
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.review-section__input::placeholder {
    color: rgba(50, 60, 71, 0.5);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.review-section__input:focus {
    color: #323C47;
    border-color: #323C47;
}

.review-section__input:focus::-webkit-input-placeholder {
    color: #323C47;
}

.review-section__input:focus::-moz-placeholder {
    color: #323C47;
}

.review-section__input:focus:-ms-input-placeholder {
    color: #323C47;
}

.review-section__input:focus::-ms-input-placeholder {
    color: #323C47;
}

.review-section__input:focus::placeholder {
    color: #323C47;
}

.review-section__textarea {
    border-radius: 5px;
    margin-top: 10px;
    border: 1px solid #D3D8DD;
    padding-bottom: 8px;
    color: rgba(50, 60, 71, 0.5);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.14px;
    width: 100%;
    max-width: 100%;
    min-width: 0px;
    padding: 20px;
    resize: none;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    height: 240px;
    overflow-y: auto;
}

.review-section__textarea::-webkit-input-placeholder {
    color: rgba(50, 60, 71, 0.5);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.review-section__textarea::-moz-placeholder {
    color: rgba(50, 60, 71, 0.5);
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.review-section__textarea:-ms-input-placeholder {
    color: rgba(50, 60, 71, 0.5);
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.review-section__textarea::-ms-input-placeholder {
    color: rgba(50, 60, 71, 0.5);
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.review-section__textarea::placeholder {
    color: rgba(50, 60, 71, 0.5);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.review-section__textarea._focus {
    color: #323C47;
    border-color: #323C47;
}

.review-section__textarea:focus {
    color: #323C47;
    border-color: #323C47;
}

.review-section__textarea:focus::-webkit-input-placeholder {
    color: #323C47;
}

.review-section__textarea:focus::-moz-placeholder {
    color: #323C47;
}

.review-section__textarea:focus:-ms-input-placeholder {
    color: #323C47;
}

.review-section__textarea:focus::-ms-input-placeholder {
    color: #323C47;
}

.review-section__textarea:focus::placeholder {
    color: #323C47;
}

.review-section__footer {
    width: 100%;
    margin-top: 30px;
}

.review-section__button {
    border-radius: 5px;
    background: #FC0;
    -webkit-box-shadow: 0px 4px 10px 0px rgba(255, 204, 0, 0.24);
    box-shadow: 0px 4px 10px 0px rgba(255, 204, 0, 0.24);
    padding: 12px 24px;
    color: #000;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.13px;
    width: 100%;
    max-width: 100%;
    min-height: 42px;
    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-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.review-section__button:hover {
    background: #d8ad03;
}

.success-block {
    border-radius: 3px;
    padding: 10px;
    background-color: #00800014;
    color: green;
    margin-bottom: 10px;
    width: 100%;
}

.error-block {
    border-radius: 3px;
    padding: 10px;
    background-color: #802f002b;
    color: #801a00;
    margin-bottom: 10px;
    width: 100%;
}

/* END REVIEW */

.offer-popup__title {
    font-weight: 700;
    font-size: 26px;
    line-height: 33px;
    color: #191D3E;
    text-align: center;
}

.offer-popup__form {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
}

.offer-popup__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
}

.offer-popup__row {
    position: relative;
}

.offer-popup__row._required::after {
    content: "";
    position: absolute;
    top: 22.5px;
    right: 15px;
    height: 7px;
    width: 7px;
    display: inline-block;
    background: url(../img/icons/req.svg) center/cover no-repeat;
}

.offer-popup__row .form__error {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #D22020;
    position: absolute;
    top: calc(100% + 2px);
}

.offer-popup__input {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 4px 6px -4px rgba(24, 39, 75, 0.12), 0px 8px 8px -4px rgba(24, 39, 75, 0.08);
    box-shadow: 0px 4px 6px -4px rgba(24, 39, 75, 0.12), 0px 8px 8px -4px rgba(24, 39, 75, 0.08);
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
    min-width: 0px;
    padding: 16px 15px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #191D3E;
    border: 1px solid #fff;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.offer-popup__input._error {
    border-color: #D22020;
}

.offer-popup__input:focus {
    border-color: #213C8F;
}

.offer-popup__input::-webkit-input-placeholder {
    color: #8893A9;
}

.offer-popup__input::-moz-placeholder {
    color: #8893A9;
}

.offer-popup__input:-ms-input-placeholder {
    color: #8893A9;
}

.offer-popup__input::-ms-input-placeholder {
    color: #8893A9;
}

.offer-popup__input::placeholder {
    color: #8893A9;
}

.offer-popup__btn {
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    color: #FFFFFF;
    height: 54px;
    width: 100%;
    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;
    text-align: center;
    background: #213C8F;
    border-radius: 100px;
}

.submit-offer-popup .popup__body {
    padding: 50px 30px;
}

.submit-offer-popup__title {
    font-weight: 700;
    font-size: 26px;
    line-height: 33px;
    text-align: center;
    color: #191D3E;
}

.submit-offer-popup__subtitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    color: #191D3E;
    margin-top: 10px;
    width: 100%;
    max-width: 256px;
    margin-left: auto;
    margin-right: auto;
}

.submit-offer-popup__text {
    margin-top: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #8893A9;
    width: 100%;
    max-width: 246px;
    margin-left: auto;
    margin-right: auto;
}

.submit-offer-popup__close {
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    color: #FFFFFF;
    height: 54px;
    width: 100%;
    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;
    text-align: center;
    background: #213C8F;
    border-radius: 100px;
    margin-top: 30px;
}

.offer {
    padding: 0px 30px 0 0;
}

.offer__title {
    font-size: 52px;
}

.page_packages {
    margin-top: 180px;
}

@media screen and (max-width: 900px) {
    .page_packages {
        margin-top: 80px !important;
    }
}

.offer__wrapper {
    border-radius: 23px;
    padding: 30px 30px 16px;
    border: 1px solid var(--white, #FFF);
    background: #FFF;
    -webkit-box-shadow: 14px 14px 20px 0px rgba(164, 164, 186, 0.2);
    box-shadow: 14px 14px 20px 0px rgba(164, 164, 186, 0.2);
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.offer__body {
    margin-top: 215px;

    color: #191D3E;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.offer__row {
    padding: 14px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    row-gap: 12px;
    -webkit-column-gap: 14px;
    -moz-column-gap: 14px;
    column-gap: 14px;
    border-top: 1px solid #E6E6E6;
}

.offer__row>* {
    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;
}

.offer__row>*:first-child {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.offer__row>*:not(:first-child) {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 177px;
    flex: 0 0 177px;
}

.head-offer {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100% - 200px);
}

.head-offer__wrapper {
    padding: 20px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 14px;
    -moz-column-gap: 14px;
    column-gap: 14px;
    row-gap: 15px;
    padding-bottom: 14px;
    background: #fff;
}

.head-offer__wrapper._scrolled {
    border-bottom: 1px solid #E6E6E6;
}

.head-offer__named {
    color: #191D3E;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.head-offer__list {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-column-gap: 14px;
    -moz-column-gap: 14px;
    column-gap: 14px;
}

.head-offer__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 177px;
    flex: 0 0 177px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.head-offer__name {
    color: #191D3E;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 10px;
    min-height: 60px;
}

.head-offer__price {
    color: #4F6BF3;
    text-align: right;
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
    margin-bottom: 10px;
    white-space: nowrap;
}

.head-offer__price ._currency {
    font-weight: 500;
}

.head-offer__text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    color: #4C5862;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    width: 100%;
    max-width: 100%;
}

.head-offer__text span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    padding: 3px 10px;
    background: #FC0;
    border-radius: 4px;
    margin: 0px auto 10px;
}

.head-offer__button {
    border-radius: 100px;
    border: 1px solid #4F6BF3;
    color: #4F6BF3;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    padding: 12px 10px;
    width: 100%;
    max-width: 100%;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    margin-top: 10px;
    text-decoration: none;
}

.list-offer {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-column-gap: 12px;
    -moz-column-gap: 12px;
    column-gap: 12px;
    padding: 20px;
    border-radius: 23px;
    border: 1px solid var(--white, #FFF);
    background: #FFF;
    -webkit-box-shadow: 14px 14px 20px 0px rgba(164, 164, 186, 0.2);
    box-shadow: 14px 14px 20px 0px rgba(164, 164, 186, 0.2);
    margin-top: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 20px;
}

.list-offer__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 12px * 3) / 4);
    flex: 0 0 calc((100% - 12px * 3) / 4);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.list-offer__name {
    color: #191D3E;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.list-offer__price {
    color: #4F6BF3;
    text-align: right;
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
    margin-bottom: 10px;
    white-space: nowrap;
}

.list-offer__price ._currency {
    font-weight: 500;
}

.list-offer__price span {
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
}

.list-offer__text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    color: #4C5862;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    width: 100%;
    max-width: 100%;
}

.list-offer__text span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    padding: 3px 10px;
    background: #FC0;
    border-radius: 4px;
    margin: 0px auto 10px;
}

.list-offer__button {
    border-radius: 100px;
    border: 1px solid #4F6BF3;
    color: #4F6BF3;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    padding: 12px 10px;
    width: 100%;
    max-width: 100%;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    margin-top: 10px;
}

.footer-offer {
    margin-top: 15px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.footer-offer__text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    color: #191D3E;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.footer-offer__button {
    color: #4F6BF3;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 100px;
    border: 1px solid #4F6BF3;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    white-space: nowrap;
    text-decoration: none;
}

@media (min-width: 720.98px) {
    .head-blog__title {
        text-align: left;
    }

    .head-offer__wrapper._scrolled .head-offer__named {
        -ms-flex-item-align: start;
        align-self: flex-start;
    }

    .head-offer__wrapper._scrolled .head-offer__name {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .head-offer__wrapper._scrolled .head-offer__price {
        font-size: 22px;
        font-weight: 900;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .head-offer__wrapper._scrolled .head-offer__price span {
        font-size: 14px;
    }

    .head-offer__wrapper._scrolled .head-offer__text {
        font-size: 0;
        margin-bottom: 0;
    }

    .head-offer__wrapper._scrolled .head-offer__text span {
        margin-bottom: 0;
    }

    .head-offer__wrapper._scrolled .head-offer__button {
        display: none;
    }
}

@media (min-width: 991.98px) {

    .quantity__button:hover::before,
    .quantity__button:hover::after {
        background-color: rgba(0, 0, 0, 0.5);
    }

    .head-offer__price span {
        font-size: 16px;
        font-weight: 400;
        white-space: nowrap;
    }

    .list-offer {
        display: none;
    }
}

@media (max-width: 1272px) {
    .offer {
        padding: 145px 0px 25px;
    }

    .offer__title {
        font-size: 42px;
    }

    .offer__body {
        font-size: 14px;
    }

    .offer__row {
        -webkit-column-gap: 12px;
        -moz-column-gap: 12px;
        column-gap: 12px;
        padding: 12px 0px;
    }

    .head-offer__wrapper {
        -webkit-column-gap: 12px;
        -moz-column-gap: 12px;
        column-gap: 12px;
        padding-bottom: 12px;
    }

    .head-offer__list {
        -webkit-column-gap: 12px;
        -moz-column-gap: 12px;
        column-gap: 12px;
    }

    .list-offer {
        -webkit-column-gap: 12px;
        -moz-column-gap: 12px;
        column-gap: 12px;
    }

    .footer-offer__text {
        font-size: 14px;
    }
}

@media (max-width: 991.98px) {
    .offer__title {
        font-size: 32px;
    }

    .offer__wrapper {
        padding: 20px 20px 8px;
    }

    .offer__row>*:not(:first-child) {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
        flex: 0 0 100px;
    }

    .head-offer__named {
        font-size: 16px;
    }

    .head-offer__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
        flex: 0 0 100px;
    }

    .head-offer__name {
        font-size: 14px;
        margin-bottom: 0;
    }

    .head-offer__price {
        -webkit-column-gap: 2px;
        -moz-column-gap: 2px;
        column-gap: 2px;
    }

    .head-offer__price ._currency {
        font-weight: 400;
    }

    .head-offer__price {
        margin-bottom: 0;
        font-size: 14px;
        font-weight: 400;
    }

    .head-offer__text {
        display: none;
    }

    .head-offer__button {
        display: none;
    }
}

@media (max-width: 720.98px) {
    .offer__container {
        padding: 0px;
    }

    .offer__row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 15px 0px;
    }

    .offer__row>*:first-child {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .offer__row>*:not(:first-child) {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 12px * 3) / 4);
        flex: 0 0 calc((100% - 12px * 3) / 4);
    }

    .head-offer__wrapper {
        padding: 20px;
    }

    .head-offer__wrapper._scrolled .head-offer__named {
        display: none;
    }

    .head-offer__wrapper._scrolled .head-offer__price {
        color: #213C8F;
    }

    .head-offer__wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-bottom: 15px;
    }

    .head-offer__named {
        font-size: 24px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        text-align: center;
    }

    .head-offer__list {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .head-offer__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 12px * 3) / 4);
        flex: 0 0 calc((100% - 12px * 3) / 4);
    }

    .head-offer__price {
        color: #213C8F;
    }

    .list-offer__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 12px * 1) / 2);
        flex: 0 0 calc((100% - 12px * 1) / 2);
    }

    .footer-offer {
        padding: 0px 20px;
    }
}

@media (max-width: 479.98px) {
    .offer {
        padding: 0 0 20px;
    }

    .offer__title {
        font-size: 24px;
    }

    .offer__row {
        -webkit-column-gap: 8px;
        -moz-column-gap: 8px;
        column-gap: 8px;
    }

    .offer__row>*:not(:first-child) {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 8px * 3) / 4);
        flex: 0 0 calc((100% - 8px * 3) / 4);
    }

    .head-offer__list {
        -webkit-column-gap: 8px;
        -moz-column-gap: 8px;
        column-gap: 8px;
    }

    .head-offer__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 8px * 3) / 4);
        flex: 0 0 calc((100% - 8px * 3) / 4);
    }

    .head-offer__name {
        font-size: 11px;
    }

    .head-offer__price {
        font-size: 12px;
        -webkit-column-gap: 0px;
        -moz-column-gap: 0px;
        column-gap: 0px;
    }

    .list-offer {
        row-gap: 0px;
    }

    .list-offer__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        padding: 15px 0px;
    }

    .list-offer__item:not(:last-child) {
        border-bottom: 1px solid #E9E9E9;
    }

    .list-offer__item:first-child {
        padding-top: 0px;
    }

    .list-offer__item:last-child {
        padding-bottom: 0;
    }

    .list-offer__name br {
        display: none;
    }

    .list-offer__text br {
        display: none;
    }

    .list-offer__button {
        font-size: 12px;
    }

    .footer-offer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 12px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 20px;
    }
}

@media (any-hover: hover) {
    .head-offer__button:hover {
        background: #4F6BF3;
        color: #fff;
    }

    .list-offer__button:hover {
        background: #4F6BF3;
        color: #fff;
    }

    .footer-offer__button:hover {
        background: #4F6BF3;
        color: #fff;
    }
}

.questions {
    padding: 30px 0px 40px;
}

.questions__title {
    font-size: 52px;
}

.questions__content {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
}

.questions__row {
    border-radius: 23px;
    border: 1px solid var(--white, #FFF);
    background: -o-linear-gradient(311deg, #F1F6FD 0%, #EDF1F7 100%);
    background: linear-gradient(139deg, #F1F6FD 0%, #EDF1F7 100%);
    -webkit-box-shadow: 14px 14px 20px 0px rgba(164, 164, 186, 0.2);
    box-shadow: 14px 14px 20px 0px rgba(164, 164, 186, 0.2);
    padding: 20px 40px;
}

.questions__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.questions__main._active .questions__arrow span {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
}

.questions__name {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    color: #191D3E;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.questions__arrow {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 42px;
    flex: 0 0 42px;
    height: 42px;
    width: 42px;
    position: relative;
}

.questions__arrow span {
    position: absolute;
    width: 30px;
    height: 3px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    background: #FC0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.questions__arrow span:last-child {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    -ms-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}

.questions__body {
    display: none;
    padding-top: 12px;
    border-top: 1px solid #fff;
    color: #191D3E;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 12px;
}

.questions__body>*:not(:last-child) {
    margin-bottom: 8px;
}

.questions__body ul li {
    list-style: disc;
}

.contacts {
    padding: 40px 0px 80px;
}

.contacts__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 30px;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.contacts__column {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
    flex: 0 0 calc((100% - 30px * 1) / 2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
    border-radius: 23px;
    border: 1px solid var(--white, #FFF);
    background: -o-linear-gradient(311deg, #F1F6FD 0%, #EDF1F7 100%);
    background: linear-gradient(139deg, #F1F6FD 0%, #EDF1F7 100%);
    -webkit-box-shadow: 14px 14px 20px 0px rgba(164, 164, 186, 0.2);
    box-shadow: 14px 14px 20px 0px rgba(164, 164, 186, 0.2);
    padding: 30px 50px;
}

.contacts__icon {
    height: 65px;
    width: 65px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 65px;
    flex: 0 0 65px;
    border-radius: 50%;
    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: rgba(33, 60, 143, 0.05);
}

.contacts__body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

@media screen and (max-width: 900px) {
    .contacts__body {
        display: block;
    }
}

.contacts__info {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 150px;
    flex: 0 0 150px;
}

.contacts__name {
    color: #191D3E;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.contacts__job {
    color: #90A0B7;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 5px;
}

.contacts__contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /*row-gap: 15px;*/
}

.contacts__callback {
    color: #191D3E;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

/* END OFFERS */

.not_visible {
    display: none;
}

.contacts_container {
    text-align: center;
}

.contacts_box {
    display: inline-block;
    width: 386px;
    height: 294px;
    text-align: left;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
    border-radius: 23px;
    border: 1px solid var(--white, #FFF);
    background: -o-linear-gradient(311deg, #F1F6FD 0%, #EDF1F7 100%);
    background: linear-gradient(139deg, #F1F6FD 0%, #EDF1F7 100%);
    -webkit-box-shadow: 14px 14px 20px 0px rgba(164, 164, 186, 0.2);
    box-shadow: 14px 14px 20px 0px rgba(164, 164, 186, 0.2);
    padding: 30px 50px;
}

@media screen and (max-width: 900px) {
    .contacts_box {
        width: 340px;
        margin-bottom: 10px;
    }

    .contacts_box:last-child {
        margin-top: 0;
        /* margin-right: 26px; */
    }
}

@media screen and (min-width: 900px) {
    .contacts_box:not(:last-child) {
        margin-right: 26px;
    }

    .contacts__container {
        padding: 0 20px !important;
    }
}

.contacts_box p,
.contacts_box .contacts__callback {
    margin-bottom: 20px;
}

.contacts_box .contacts__name {
    margin-bottom: 0 !important;
}

.contacts_box_img {
    height: 65px;
    width: 65px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 65px;
    flex: 0 0 65px;
    border-radius: 50%;
    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: rgba(33, 60, 143, 0.05);
    margin-bottom: 20px;
}

.head-offer__text_bold,
.list-offer__price_bold {
    font-weight: bold;
}