:root {
    --min-width: 320px;
    --max-width: 1280px;
    --black-color: #1e1d1e;
    --yellow-dark-color: #D6B852;
    --yellow-bright-color: #fdd64d;
    --yellow-color: #fedd69;
    --grey-lite-color: #e0e0e0;
    --grey-middle-color: #c5c5c5;
    --grey-hard-color: #ababab;
    --lite-blue-color: #F7F8FA;
    --blue-color: #1658ff;
    --primary-clr: #fdd64d;
}

* {
    font-family: "Exo 2", "Arial", "Helvetica", "sans-serif", "olefirov-icons";
}

body {
    position: relative;
    width: 100%;
    min-height: 100%;
    min-width: 320px;
    color: #000;
    line-height: 1.6;
    font-size: 16px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

.scroll-hide {
    overflow: hidden;
    max-height: 100%;
    height: 100%;
}

.main {
    padding-top: 100px;
}

.wrapper {
    width: 100%;
    min-height: 100%;
    overflow: hidden;
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: var(--max-width);
    padding: 0 20px;
}

@media (max-width: 414px) {
    .container {
        padding: 0 10px;
    }
}

.holder {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.nowrap {
    white-space: nowrap;
}

b {
    font-weight: 500;
}

.strong {
    font-weight: 500;
}

.fw-5 {
    font-weight: 500;
}

.fw-6 {
    font-weight: 600;
}

.very-strong {
    font-weight: 600;
}

.strong__underline {
    position: relative;
    font-weight: 500;
    color: inherit;
    display: inline-block;
}

.strong__underline:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background: currentColor;
}

.outline-btn {
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid var(--grey-lite-color);
    color: #fff;
    line-height: 1;
    white-space: nowrap;
    transition: background 0.3s;
}

.outline-btn:hover {
    background: rgb(255 255 255 / 8%);
}

.link-btn {
    position: relative;
}

.link-btn:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--yellow-color);
}

.primary-btn {
    display: inline-block;
    position: relative;
    font-size: 18px;
    padding: 1.5rem 2.2rem;
    border-radius: 10px;
    transition: transform 0.5s;
    transform: translateY(0px);
    text-align: center;
    line-height: 1.2;
    background-color: var(--yellow-color);
    color: #000;
}

.primary-btn:before {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 5px;
    right: 5px;
    border-radius: inherit;
    border: 1px solid #fff;
}

.primary-btn:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 9px;
    right: 9px;
    height: 3px;
    border-radius: 0 0 50px 50px;
    background-color: var(--yellow-dark-color);
}

.politics-link {
    display: inline;
    margin-left: 5px;
    text-decoration: underline;
    color: inherit;
    font-style: normal;
    cursor: pointer;
}

.grey-btn {
    background-color: var(--grey-lite-color);
}

.grey-btn:after {
    background-color: var(--grey-hard-color);
}

.primary-btn:hover {
    transform: translateY(-5px);
}

.heading-block {
    font-size: 40px;
    font-weight: 300;
    line-height: 1.2;
}

@media (max-width: 1367px) {
    .heading-block {
        font-size: 35px;
    }
}

@media (max-width: 1024px) {
    .heading-block {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .heading-block {
        font-size: 25px;
    }
}

.grid-line {
    position: relative;
}

.grid-line:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: var(--max-width);
    height: 100%;
    /*     background: linear-gradient(90deg, #ececec 1px, transparent 1px) -29px 0, transparent;
    background-size: 17vw 1px;
    will-change: auto; */
    background-repeat: repeat-x, no-repeat;
    background-image: linear-gradient(to right, #f1f1f1 1px, transparent 1px);
    background-size: 32.8% 100%;
    background-position: 50%, center;
    pointer-events: none;
}

.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-25 {
    margin-right: 25px;
}

.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-25 {
    margin-left: 25px;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.fs-22 {
    font-size: 22px !important;
}

.fs-25 {
    font-size: 25px !important;
}

.fs-30 {
    font-size: 30px !important;
}


/**FIELD'S**/

.field__text {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.field__text input {
    background-color: var(--lite-blue-color);
    padding: 20px 15px;
    width: 100%;
    border-radius: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.field__text-btn {
    position: relative;
    display: flex;
    align-items: stretch;
    border-radius: 10px;
}

.field__text-btn input {
    background-color: var(--lite-blue-color);
    padding: 15px;
    flex-grow: 1;
    flex-basis: 50%;
    font-size: 17px;
    letter-spacing: 1.5px;
    min-width: 80px;
    width: 100%;
    border-radius: inherit;
}

.field__text-btn-transparent input {
    background-color: rgb(247 248 250 / 33%);
    color: #fff;
}

.field__text-btn-transparent input::-webkit-input-placeholder {
    color: rgb(255 255 255 / 0.5);
}

.field__text-btn-transparent input::-moz-placeholder {
    color: rgb(255 255 255 / 0.5);
}

.field__text-btn-transparent input:-ms-input-placeholder {
    color: rgb(255 255 255 / 0.5);
}

.field__text-btn button {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    padding: 0.9rem 2.2rem;
    border-radius: 10px;
    transition: background 0.5s;
    background: var(--yellow-color);
    margin-left: -20px;
    flex-grow: 1;
    flex-basis: 40%;
}

.field__text-btn button:before {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 5px;
    right: 5px;
    border-radius: inherit;
    border: 1px solid #fff;
}

.field__text-btn button:hover {
    background: var(--yellow-bright-color);
}

@media (max-width: 760px) {
    .field__text-btn {
        flex-direction: column;
        overflow: initial;
    }
    .field__text-btn button {
        margin: 15px 0 0 0;
        min-height: 60px;
    }
}

.field__textarea {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.field__textarea textarea {
    background-color: var(--lite-blue-color);
    padding: 20px 15px;
    width: 100%;
    border-radius: inherit;
    font-size: inherit;
    font-weight: inherit;
    resize: vertical;
    min-height: 75px;
}

@media (max-width: 610px) {
    .field__textarea textarea {
        min-height: 110px;
    }
}

.field__radioline {
    position: relative;
    cursor: pointer;
}

.field__radioline input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.field__radioline-text {
    position: relative;
    padding: 5px 10px 5px 35px;
    display: block;
    line-height: 1.3;
    user-select: none;
}

.field__radioline-text:after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    top: 3px;
    left: 0;
    background: var(--grey-lite-color);
    border-radius: 5rem;
    border: 7px solid #fff;
    box-shadow: 0 0 0 3px var(--grey-lite-color);
    z-index: 2;
}

.field__radioline input:checked+.field__radioline-text:after {
    background: var(--black-color);
    border: 8px solid var(--yellow-color);
    box-shadow: 0 0 0 3px #fff, 0px 0px 20px rgb(30 29 30 / 15%);
}

.field__checkboxline {
    position: relative;
    cursor: pointer;
}

.field__checkboxline input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.field__checkboxline-text {
    position: relative;
    padding: 5px 10px 5px 35px;
    display: block;
    line-height: 1.3;
    user-select: none;
}

.field__checkboxline-text:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 24px;
    height: 24px;
    background: var(--lite-blue-color);
    border-radius: 5px;
}

.field__checkboxline-text:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 6px;
    width: 11px;
    height: 5px;
    border: solid var(--black-color);
    border-width: 0 0 2px 2px;
    transform: rotateZ(-45deg);
    opacity: 0;
}

.field__checkboxline input:focus+.field__checkboxline-text:before {
    box-shadow: 0 0 0px 2px rgb(0 0 0 / 14%);
}

.field__checkboxline input:checked+.field__checkboxline-text:before {
    background: var(--yellow-color);
}

.field__checkboxline-grey input:checked+.field__checkboxline-text:before {
    background: var(--lite-blue-color);
}

.field__checkboxline input:checked+.field__checkboxline-text:after {
    opacity: 1;
}

.field__radiocard {
    position: relative;
    cursor: pointer;
}

.field__radiocard:hover img {
    opacity: 0.7;
}

.field__radiocard input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.field__radiocard-image {
    position: relative;
    display: block;
    width: 100%;
    max-height: 130px;
    min-height: 130px;
    margin-bottom: 10px;
    border-radius: 10px;
    box-shadow: 0 3px 10px 2px rgb(0 0 0 / 16%);
}

.field__radiocard-image:before {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 5px;
    right: 5px;
    border-radius: inherit;
    border: 1px solid #fff;
    z-index: 1;
}

.field__radiocard-image:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    bottom: -13px;
    left: calc(50% - 13px);
    background: var(--grey-lite-color);
    border-radius: 5rem;
    border: 8px solid #fff;
    box-shadow: 0 0 0 3px var(--grey-lite-color), 0px 0px 20px rgb(30 29 30 / 46%);
    z-index: 2;
}

.field__radiocard input:checked+.field__radiocard-image:after {
    background: var(--black-color);
    border: 8px solid var(--yellow-color);
    box-shadow: 0 0 0 3px #fff, 0px 0px 20px rgb(30 29 30 / 46%);
}

.field__radiocard-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: opacity 0.2s;
    border-radius: inherit;
}

.field__radiocard-text {
    display: block;
    padding: 10px;
    text-align: center;
    font-size: calc(10px + 0.3vmin);
}


/**preloader**/

.main__preloader {
    position: fixed;
    background: #0d1725;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: visibility 0.3s, opacity 0.3s;
    z-index: 999999999999;
    opacity: 0;
    visibility: hidden;
}

.main__preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.main__preloader-logo {
    color: #fff;
    font-size: 35px;
    animation-duration: 4s;
    animation-name: preload-zoom;
}


/*=============== SWIPER ===============*/

.swiper {
    width: 100%;
    max-width: 100%;
}

.swiper-navs__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.swiper-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 40px;
    max-height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50rem;
    color: var(--primary-clr);
    border: 1px solid var(--primary-clr);
    font-size: 25px;
    cursor: pointer;
    opacity: 1;
    padding: 1px 0 0 0;
    background: var(--primary-clr);
    color: #1e1d1e;
}

.swiper-btn:focus {
    box-shadow: 0 0 0px 2px #ffffff, 0 0 0px 3px #5181e6;
}

.swiper-btn:hover {
    opacity: 0.8;
}

.swiper-btn:active {
    opacity: 0.6;
}

.swiper-btn-prev {
    margin-right: 10px;
}

.swiper-btn-prev.white {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.swiper-btn-next {
    margin-left: 10px;
}

.swiper-button-disabled {
    background: transparent;
    opacity: 0.8;
}

.swiper-btn-next.white {
    background: #fff;
    color: var(--primary-clr);
}

.swiper-slide {
    height: auto;
    user-select: none;
}

.swiper-thumbs .swiper-slide {
    border: 3px solid transparent;
    cursor: pointer;
}

.swiper-thumbs .swiper-slide-thumb-active {
    border: 3px solid var(--primary-clr);
    border-radius: 13px;
}

.swiper-image {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-zoom {
    position: relative;
    cursor: pointer;
    opacity: 1;
}

.swiper-zoom:before {
    content: "\ebf7";
    position: absolute;
    z-index: 5;
    font-family: boxicons !important;
    line-height: 1;
    font-size: 22px;
    padding: 15px 13px 14px 16px;
    background: var(--primary-clr);
    border-radius: 50rem;
    color: #1e1d1e;
    top: calc(50% - 26px);
    left: calc(50% - 26px);
    opacity: 0;
    transition: opacity 0.2s;
    box-shadow: inset 0 0 0 3px #fff;
}

.swiper-zoom:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50rem;
    border: 2px solid var(--primary-clr);
    opacity: 0;
    transition: opacity 0.2s;
    top: calc(50% - 33px);
    left: calc(50% - 33px);
}

.swiper-zoom>* {
    will-change: opacity;
    transition: opacity 0.2s;
    pointer-events: none;
}

.swiper-zoom:hover>* {
    opacity: 0.6;
}

.swiper-zoom:hover:before,
.swiper-zoom:hover:after {
    opacity: 1;
}

.swiper-close-zoom {
    position: fixed;
    top: 3px;
    right: 3px;
    user-select: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 10px;
    color: #000;
    z-index: 999999;
    display: none;
}

.swiper-close-zoom:before,
.swiper-close-zoom:after {
    content: '';
    position: absolute;
    left: 5px;
    right: 5px;
    background: currentColor;
    height: 1px;
    top: calc(50% - 1px);
}

.swiper-close-zoom:before {
    transform: rotateZ(45deg);
}

.swiper-close-zoom:after {
    transform: rotateZ(-45deg);
}

.swiper-single-zoom.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 99999999999999999;
    max-width: 100%;
    padding: 40px 10px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.swiper-single-zoom.fullscreen .swiper {
    overflow-y: auto;
}

.swiper-single-zoom.fullscreen .swiper-close-zoom {
    display: block;
}

.swiper-single-zoom.fullscreen .swiper-navs {
    position: fixed;
    left: 10px;
    right: 10px;
    top: calc(50% - 20px);
    z-index: 10;
    justify-content: center;
}

.swiper-single-zoom.fullscreen .swiper-navs__wrapper {
    width: 100%;
}

.swiper-single-zoom.fullscreen .swiper-zoom {
    pointer-events: none;
}

.swiper-single-zoom.fullscreen .swiper-zoom>* {
    opacity: 1;
}

.swiper-single-zoom.fullscreen .swiper-zoom:before,
.swiper-single-zoom.fullscreen .swiper-zoom:after {
    display: none;
}


/**video**/

.video-holder {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.video-holder:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 20%);
    z-index: 5;
}

.video-holder-btn {
    position: absolute;
    background-image: url(/public/img/play-paused.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 40px;
    z-index: 6;
    width: 44px;
    height: 44px;
    left: calc(50% - 22px);
    top: calc(50% - 22px);
    pointer-events: none;
}

.video-holder-btn:before {
    content: '';
    position: absolute;
    border: 2px solid var(--yellow-color);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 50%;
    animation: pulse 1.6s linear infinite;
}

.video-holder.play:before,
.video-holder.play .video-holder-btn {
    visibility: hidden;
}

.video-holder video {
    position: relative;
    display: block;
    pointer-events: none;
    width: 100%;
}


/*=============== BREADCRUMBS ===============*/

.breadcrumbs {
    position: relative;
    background: var(--lite-blue-color);
    z-index: 9;
}

.breadcrumbs__inner {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px 0;
}

.breadcrumbs a {
    color: #bcc1cc;
    font-size: 1rem;
    letter-spacing: 0.5px;
    font-weight: 500;
    white-space: normal;
    word-break: break-word;
}

.breadcrumbs a:hover {
    color: #272727;
}

.breadcrumbs a+a:before {
    content: "-";
    color: #ccc;
    padding: 0px 7px 0px 5px;
}

.breadcrumbs a:last-child {
    color: var(--black-color);
}


/*=============== MODAL ===============*/

.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    outline: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-overflow-scrolling: touch;
    padding: 10px;
}

.modal__overlay.open {
    background: rgb(0 0 0 / 80%);
}

.modal__overlay.fullsize {
    align-items: stretch;
}

.modal__wrapper {
    position: relative;
    display: flex;
    max-width: 100%;
    max-height: 100%;
    z-index: 50;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-50%);
    transition: 0.3s;
}

.modal__wrapper.open {
    opacity: 1;
    transform: translateX(0);
}

.modal__stage {
    overflow: auto;
}

.modal__overlay.fullsize .modal__wrapper,
.modal__overlay.fullsize .modal__stage {
    width: 100%;
}

.modal__container {
    position: relative;
    display: block;
    overflow: hidden;
    cursor: default;
}

.modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    user-select: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 10px;
    color: #000;
    z-index: 55;
}

.modal__overlay.fullsize .modal__close {
    color: #fff;
}

.modal__close:before,
.modal__close:after {
    content: '';
    position: absolute;
    left: 5px;
    right: 5px;
    background: currentColor;
    height: 1px;
    top: calc(50% - 1px);
}

.modal__close:before {
    transform: rotateZ(45deg);
}

.modal__close:after {
    transform: rotateZ(-45deg);
}


/* modal alert */

.modal-alert {
    position: relative;
    background: #FFFFFF;
    box-shadow: 1px 6px 40px rgb(30 29 30 / 10%);
    z-index: 0;
    border-radius: 5px;
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    max-width: 80vw;
    width: 500px;
}

.modal-alert:after {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 5px;
    right: 5px;
    border-radius: inherit;
    border: 1px solid var(--grey-lite-color);
    z-index: 0;
}

.modal-alert__btn {
    width: 100%;
    max-width: 235px;
    z-index: 1;
}

.modal-alert__title {
    margin-bottom: 20px;
    text-align: center;
}

.modal-alert__text {
    text-align: center;
    font-size: 16px;
    margin-bottom: 25px;
}


/*CALLBACK-FORM*/

.callback-form {
    position: relative;
    background-color: #fff;
    border-radius: 5px;
    padding: 45px 45px;
    width: 100%;
}

@media (max-width: 460px) {
    .callback-form {
        padding: 45px 20px;
    }
}

.callback-form__title {
    text-align: center;
    font-size: calc(17px + 1.7vmin);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
}

.callback-form__text {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
    max-width: 356px;
    margin: auto;
    margin-bottom: calc(13px + 3vmin);
    text-align: center;
}

.callback-form__fields {
    margin-bottom: 40px;
}

.callback-form__field-text {
    display: block;
    overflow: hidden;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
}

.callback-form__btns {
    margin-bottom: 30px;
}

.callback-form__btn-submit {
    width: 100%;
}

.callback-form__politics {
    display: flex;
    align-items: center;
}

.field__checkbox-politics {
    color: var(--grey-hard-color);
}


/* OFFER FORM*/

.offer-form__wrapper {
    position: relative;
    background-color: #fff;
    border-radius: 5px;
    padding: 45px 45px;
    width: 1170px;
    max-width: 94vw;
    overflow: hidden;
}

@media (max-width: 767px) {
    .offer-form__wrapper {
        padding: 45px 20px;
    }
}

.offer-form {
    display: flex;
    justify-content: space-between;
}

.offer-form__column {
    flex-grow: 1;
    flex-basis: 50%;
}

.offer-form__info {
    z-index: 5;
    flex-basis: 68%;
}

.offer-form__title {
    margin-bottom: 25px;
    max-width: 540px;
}

.offer-form__subtitle {
    line-height: 1.3;
    font-weight: 300;
    max-width: 455px;
    margin-bottom: 35px;
    font-size: calc(16px + 0.3vmin);
}

.offer-form__fields {
    margin-bottom: 30px;
    max-width: 400px;
}

.offer-form__field-text {
    display: block;
    margin-bottom: 20px;
}

.offer-form__bottom {
    max-width: 485px;
}

.offer-form__bottom-title {
    display: block;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.offer-form__bottom-radio-group {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    grid-auto-rows: auto;
    grid-gap: 25px;
    margin-bottom: 25px;
    color: #000;
    justify-content: space-between;
    white-space: nowrap;
}

@media (max-width: 875px) {
    .offer-form__bottom-radio-group {
        grid-template-columns: repeat(2, max-content);
        justify-content: flex-start;
    }
}

.offer-form__bottom-input-group {
    margin-bottom: 20px;
}

.offer-form__bottom-politics {
    color: #a2a2a2;
    font-weight: 300;
}

.offer-form__cover {
    z-index: 4;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.offer-form__offer {
    position: relative;
    display: grid;
    grid-template-columns: 0.4fr 1fr 1fr;
    grid-auto-flow: row;
    grid-template-areas: "offer-form__offer-icon offer-form__offer-title offer-form__offer-title" "offer-form__offer-icon offer-form__offer-list offer-form__offer-list";
    max-width: 310px;
    z-index: 3;
    top: 23%;
    left: -30%;
}

@media (max-width: 1140px) {
    .offer-form__cover {
        justify-content: flex-end;
    }
    .offer-form__offer {
        left: auto;
    }
}

@media (max-width: 830px) {
    .offer-form__info {
        flex-basis: 100%;
    }
    .offer-form__cover {
        flex-basis: 0%;
    }
    .offer-form__offer {
        display: none;
    }
}

@media (max-width: 490px) {
    .offer-form__cover {
        display: none;
    }
}

.offer-form__offer-icon {
    grid-area: offer-form__offer-icon;
    font-size: 35px;
}

.offer-form__offer-title {
    grid-area: offer-form__offer-title;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.offer-form__offer-list {
    grid-area: offer-form__offer-list;
    list-style: disc;
    padding-left: 20px;
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: 0.4px;
}

.offer-form__decor {
    position: absolute;
    width: 65vw;
    max-width: 780px;
    right: 0;
    bottom: 0;
}

.offer-form__decor img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: bottom right;
}


/*SITENEED FORM*/

.siteneed-form__wrapper {
    position: relative;
    background-color: #fff;
    border-radius: 5px;
    padding: 45px 45px;
    width: 1270px;
    max-width: 92vw;
    overflow: hidden;
}

@media (max-width: 767px) {
    .siteneed-form__wrapper {
        padding: 45px 15px;
    }
}

.siteneed-form {
    display: flex;
    justify-content: space-between;
}

.siteneed-form__info {
    max-width: 715px;
}

.siteneed-form__title {
    margin-bottom: 20px;
}

.siteneed-form__subtitle {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.3;
}

.siteneed-form__questions {
    margin-bottom: 15px;
}

.siteneed-form__question {
    display: flex;
    align-items: flex-start;
    background-image: url(/public/img/checked.svg);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 30px 30px;
    padding: 0 0 20px 45px;
}

.siteneed-form__question-icon {
    font-size: 32px;
    margin-right: 20px;
    margin-top: 5px;
}

.siteneed-form__question-text {
    line-height: 1.3;
    font-weight: 300;
    font-size: 16px;
}

.siteneed-form__bottom {
    max-width: 485px;
}

.siteneed-form__bottom-title {
    display: block;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.siteneed-form__bottom-radio-group {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    grid-auto-rows: auto;
    grid-gap: 25px;
    margin-bottom: 25px;
    color: #000;
    justify-content: space-between;
    white-space: nowrap;
}

@media (max-width: 875px) {
    .siteneed-form__bottom-radio-group {
        grid-template-columns: repeat(2, max-content);
        justify-content: flex-start;
    }
}

.siteneed-form__bottom-input-group {
    margin-bottom: 20px;
}

.siteneed-form__bottom-politics {
    color: #a2a2a2;
    font-weight: 300;
}

.siteneed-form__olefirov {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    max-width: 430px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: right 0.3s;
}

@media (max-width: 1230px) {
    .siteneed-form__olefirov {
        right: -130px;
    }
}

@media (max-width: 1000px) {
    .siteneed-form__olefirov {
        right: -210px;
        max-width: 415px;
    }
}

@media (max-width: 885px) {
    .siteneed-form__olefirov {
        display: none;
    }
}

.siteneed-form__aboutme {
    position: absolute;
    background-image: url(/public/img/white-block-small.png);
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    max-width: 468px;
    min-height: 310px;
    max-height: 310px;
    bottom: 0;
    left: -150px;
    padding: 30px 180px 21px 40px;
    color: #000;
    overflow: hidden;
}

@media (max-width: 1060px) {
    .siteneed-form__aboutme {
        display: none;
    }
}

.siteneed-form__aboutme-name {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.3;
    font-weight: 700;
}

.siteneed-form__aboutme-experience {
    width: 100%;
    max-width: 155px;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 300;
}

.siteneed-form__aboutme-text {
    line-height: 1.5;
    font-style: italic;
    font-weight: 100;
}

.siteneed-form__aboutme-signature {
    display: flex;
    justify-content: flex-start;
}

.siteneed-form__aboutme-signature img {
    display: block;
    width: 120px;
    height: auto;
}

.siteneed-form__foto {
    position: relative;
    overflow: hidden;
}

.siteneed-form__foto img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    z-index: 5;
}


/* POLITICS */

.politics {
    position: relative;
    background-color: #ffffff;
    border-radius: 5px;
    padding: 45px 45px;
    width: 100%;
    max-width: 1020px;
    font-weight: 300;
    max-height: 90vh;
    overflow: auto;
}

.politics::-webkit-scrollbar {
    width: 8px;
    height: 10px;
}

.politics::-webkit-scrollbar-track {
    background: #d2d2d2;
}

.politics::-webkit-scrollbar-thumb {
    background-color: #656565;
    border-radius: 5px;
}

.politics__title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 500;
}

.politics__list {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
}

.politics__list li {
    padding-left: 10px;
}

.politics__list a {
    color: #3633ff;
}

.politics__list-title {
    margin-bottom: 7px;
    padding-left: 0px !important;
}

.politics__list-subtitle {
    margin-bottom: 15px;
}


/* top button */

#top__btn {
    position: fixed;
    width: 40px;
    height: 40px;
    background: var(--yellow-bright-color);
    border-radius: 5px;
    right: 5px;
    bottom: 65px;
    z-index: 50;
    box-shadow: 0px 0 14px 8px rgb(144 144 144 / 17%);
    transition: opacity 0.5s, transform 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    transform: translateY(120px);
    opacity: 0;
    cursor: pointer;
}

#top__btn.show {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 767px) {
    #top__btn {
        display: none;
    }
}

#top__btn:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 9px solid #333333;
    left: calc(50% - 4px);
    top: calc(50% - 5px);
}


/*Animation*/

@keyframes blink {
    50% {
        opacity: 0;
    }
}

@keyframes preload-zoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.5);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0;
    }
    50% {
        opacity: 1.5;
    }
    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}