/* Fonts */
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 800;
    src: url('static/fonts/Montserrat-ExtraBold.woff') format('woff'),
         url('static/fonts/Montserrat-ExtraBold.woff2') format('woff2');
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    src: url('static/fonts/Montserrat-Bold.woff') format('woff'),
         url('static/fonts/Montserrat-Bold.woff2') format('woff2');
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    src: url('static/fonts/Montserrat-SemiBold.woff') format('woff'),
         url('static/fonts/Montserrat-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    src: url('static/fonts/Montserrat-Regular.woff') format('woff'),
         url('static/fonts/Montserrat-Regular.woff2') format('woff2');
}

/* Global style */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    line-height: 1.32;
}

*:focus {
    outline: none;
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
}

select option {
    background-color: #ffffff;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.h1, .h2, .h3, h1, h2, h3 {
    margin-top: 0;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

ol, ul {
    margin-top: 0;
    margin-bottom: 0;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

/* Colors */
.color_orange {
    color: #EB8F3C;
}

.color_red {
    color: #F61C0D
}

._container {
    padding-left:  calc(50% - 1366px / 2) !important;
    padding-right: calc(50% - 1366px / 2) !important;
}

@media (max-width: 1406px) {
    ._container {
        padding-left:  20px !important;
        padding-right: 20px !important;
    }
}

.visuallyHidden {
    position: absolute;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
}

._button {
    padding: 16px 0;
    text-transform: uppercase;
    font-family: inherit;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    border: 2px solid #EB8F3C;
    border-radius: 2px;
    color: #ffffff;
    cursor: pointer;
    transition: background .2s,
                color .2s;
}

._button_orange {
    background: #EB8F3C;
}

._button_orange:hover {
    cursor: pointer;
    border-color: #CC7D35;
    background: #CC7D35;
    color: #ffffff;
}

._button_transparentLight {
    background: none;
}

._button_transparentLight:hover {
    cursor: pointer;
    border-color: #CC7D35;
    color: #ffffff;
    background: #CC7D35;
}

._button_transparentDark {
    background: none;
}

._button_transparentDark:hover {
    border-color: #ffffff;
    background-color: #ffffff;
    color: #000000;
}

._title {
    font-size: 30px !important;
    font-weight: 700;
    text-align: center !important;
    color: #2A2A2A !important;
}

._title_white {
    color: #FCFDFF !important;
}

@media (max-width: 1180px) {
    ._title {
        font-size: 24px !important;
    }
}

/* Form fieldset */
.form__fieldset {
    width: 100%;
    border: none;
}

.form__fieldset + .form__fieldset {
    margin-top: 20px;
}

/* Form legend */
.form__legend {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
    border: none;
}

.form__legend_red {
    color: #EB5757;
}

@media (max-width: 768px) {
    .form__legend {
        margin-bottom: 20px;
    }
}

/* Form input */
.form__input,
.form__select {
    padding-left: 12px;
    width: 100%;
    height: 32px;
    font-size: 15px;
    border: 2px solid #555555;
    border-radius: 2px;
    color: #434343;
}

.form__input::placeholder {
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    color: #9A9A9A;
}

.form__input:focus {
    border-color: #EB8F3C;
}

.form__input_range {
    padding-left: 44px;
}

.form__input_transparent {
    position: relative;
    background: none;
    color: #ffffff;
}

.form__input_white {
    border: 1px solid #9A9A9A;
    background: #FCFDFF;
}

/* Form input error */
.form__input_error {
    border-color: #EB5757;
    color: #EB5757;
}

.form__input_error::placeholder {
    color: #EB5757;
}

.form__errorText {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 400;
    color: #EB5757;
}

/* Form input label */
._label {
    position: relative;
    width: 50%;
}

.label__option {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
}

.labelText {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
}

.labelText_dark {
    color: #2A2A2A;
}

.labelText_inside {
    position: absolute;
    left: 12px;
    top: 50%;
    font-size: 14px;
    font-weight: 700;
    color: #9A9A9A;
    transform: translate(0, -50%);
    pointer-events: none;
}

/* Input type checkbox */
.form__checkbox {
    display: flex;
    align-items: center;
}

.form__checkbox:before {
    content: "";
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 2px;
    border: 2px solid #555555;
    transition: .2s;
    background-size: 72%;
    background-repeat: no-repeat;
    background-position: center;
}

input[type=checkbox]:checked+.form__checkbox:before {
    color: #FFFFFF;
    background-image: url("static/images/search/checkboxActive.png");
    border-color: #EB8F3C;
}

select::-ms-expand{
    display: none;
}

.form__checkboxText {
    margin-left: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

/* Input type file */
.input__file {
    width: 100%;
    height: 32px;
    border: 1px solid #9A9A9A;
    border-radius: 2px;
    background: #FCFDFF;
}

.input__fileText {
    position: absolute;
    top: 50%;
    left: 12px;
    font-size: 14px;
    font-weight: 400;
    color: #434343;
    transform: translate(0, -50%);
}

/* Input type select */
.form__select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-weight: 700;
    background-repeat: no-repeat;
    background-position: right 16px top 50%,0 0;
    background-image: url("static/images/contract/contractSelect.png");
    background-size: 13px;
}

.form__select_transparent {
    background-color: transparent;
    background-image: url("static/images/search/searchIcon.png");
    background-size: 16px;
    color: #F2F2F2;
}

.form__select:focus {
    border-color: #EB8F3C;
}

/* Input type radio */
.form__radio {
    display: block;
    padding: 7px 0;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    border: 2px solid #555555;
    border-radius: 2px;
    background-color: transparent;
    color: #ffffff;
    cursor: pointer;
    user-select: none;
}

input[type=radio]:checked + .form__radio {
    border-color: #EB8F3C;
    background-color: #EB8F3C;
    color: #FFFFFF !important;
}

input[type=radio]:focus + .form__radio {
    border-color: #EB8F3C;
}

/* Swiper style */
.carouselPagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.carouselPagination__bullets {
    display: flex;
    margin: 0 70px;
    align-items: center;
}

.carouselPagination__button {
    display: flex;
    align-items: center;
    cursor: pointer;
    border: none;
    background: none;
}

.carouselPagination__button_prev {
    transform: rotate(180deg);
}

.carouselPagination__icon {
    height: 16px;
}

.carouselPagination__bullets > .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: #2A2A2A;
    transform: scale(1);
    transition: transform .2s;
}

.carouselPagination__bullets > .swiper-pagination-bullet + .swiper-pagination-bullet {
    margin-left: 24px;
}

.carouselPagination__bullets > .swiper-pagination-bullet-active {
    background-color: #EB8F3C;
    transform: scale(2);
}

@media (max-width: 1180px) {
    .carouselPagination__button {
        display: none;
    }
}

/* Modal */
.overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, .6);
    transition: opacity 0.2s ease;
    z-index: 200;
}

._modal {
    position: fixed;
    top: 50%;
    left: 50%;
    max-height: 90%;
    width: 100%;
    max-width: calc(100% - 40px);
    background: #FFFFFF;
    border-radius: 8px;
    visibility: hidden;
    overflow-y: auto;
    transform: translate(-50%, -50%);
    z-index: 300;
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: none;
    background: none;
    cursor: pointer;
}

.modal__closeIcon {
    width: 16px;
    height: 16px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        visibility: hidden;
    }
    to {
        opacity:1;
        visibility: visible;
    }
}

.fadeIn {
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    animation-timing-function: ease-out;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    opacity: 1;
    visibility: visible;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        visibility: visible;
    }
    to {
        opacity:0;
        visibility: hidden;
    }
}

.fadeOut {
    -webkit-animation-duration: 0.1s;
    animation-duration: 0.1s;
    animation-timing-function: ease-out;
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
    opacity: 0;
    visibility: hidden;
}

/* Hero */
.hero {
    position: relative;
    padding-top: 110px;
    padding-bottom: 24px;
    min-height: 750px;
    background-image: url(static/images/hero/heroBg.jpg);
    background-size: cover;
    background-position: 50% top;
}

.hero__title {
    margin-bottom: 12px;
    font-size: calc(21px + 33 * (100vw / 1920)) !important;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
}

.hero__title span {
    line-height: 1;
}

.hero__title_orange {
    display: block;
    margin-left: -5px;
    font-size: calc(45px + 75 * (100vw / 1920)) !important;
    color: #EB8F3C;
}

.hero__subtitle {
    margin-bottom: 64px;
    max-width: 640px;
    font-size: calc(14px + 11 * (100vw / 1920)) !important;
    font-weight: 500;
    color: #F2F2F2;
}

.hero__button {
    margin-bottom: 48px;
    padding-left: 56px;
    padding-right: 56px;
    color: #ffffff;
}

.hero__list {
    position: absolute;
    bottom: 6%;
    align-items: center;
    display: flex;
}

.hero__item {
    display: flex;
    align-items: center;
}

.hero__item + .hero__item {
    margin-left: 44px;
}

.hero__number {
    position: relative;
    margin-right: 16px;
    font-size: 33px !important;
    font-weight: 700;
    text-align: right;
}

.hero__number:after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    width: 2px;
    height: 46px;
    background-color: #EB8F3C;
    transform: translate(0, -50%);
}

.hero__number span {
    display: block;
    line-height: 1;
}

.hero__numberInfo {
    font-size: 16px;
}

.hero__description {
    max-width: 160px;
    font-size: 13px !important;
    font-weight: 400;
    color: #ffffff;
}

@media (max-width: 1180px) {
    .hero {
        padding-bottom: 48px;
    }

    .hero__title {
        margin-bottom: 36px;
    }

    .hero__subtitle {
        margin-bottom: 86px;
        max-width: 540px;
    }

    .hero__button {
        margin-bottom: 148px;
        padding-right: 84px;
        padding-left: 84px;
    }

    .hero__list {
        position: static;
        flex-wrap: wrap;
        justify-content: space-around;;
    }
}

@media (max-width: 886px) {
    .hero__item:last-child {
        margin-top: 42px;
    }

    .hero__item + .hero__item {
        margin-left: 0;
    }

    .hero__description {
       width: 160px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        background-image: url("static/images/hero/heroBgAdaptive.jpg");
        background-position: 20% 60%;
    }

    .hero__title {
        margin-bottom: 28px;
    }

    .hero__subtitle {
        margin-bottom: 58px;
        max-width: 430px;
    }

    .hero__button {
        margin-bottom: 32px;
        padding-right: 64px;
        padding-left: 64px;
        font-size: 16px !important;
    }

    .hero__list {
        align-items: center;
    }

    .hero__item + .hero__item {
        margin-top: 12px;
    }

    .hero__item:first-child .hero__number {
        text-align: right;
    }

    .hero__number {
        width: 102px;
        margin-right: 18px;
        font-size: 24px !important;
    }

    .hero__numberInfo {
        font-size: 14px !important;
    }
}

@media (max-width: 599px) {
    .hero__list {
        justify-content: start;
    }
}

@media (max-width: 460px) {
    .hero__title {
        margin-bottom: 20px;
        font-size: calc(14px + 33 * (100vw / 1920)) !important;
    }

    .hero__title_orange {
        margin-left: -2px;
        font-size: calc(30px + 75 * (100vw / 1920)) !important;

    }

    .hero__subtitle {
        max-width: 340px;
        font-size: 14px !important;
    }

    .hero__button {
        padding-right: 0;
        padding-left: 0;
        width: 100%;
    }
}

/* Advantages */
.advantages {
    padding: 80px 0;
}

.advantages__title {
    margin-bottom: 48px;
}

.advantages__list {
    display: flex;
    justify-content: space-between;
}

.advantages__item {
    position: relative;
    padding: 40px 16px 70px 40px;
    width: 33%;
    min-height: 380px;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
}

.advantages__item + .advantages__item {
    margin-left: 20px;
}

.advantages__item:nth-child(1) {
    background-image: url("static/images/advantages/advantagesFirst.jpg");
}

.advantages__item:nth-child(2) {
    background-image: url("static/images/advantages/advantagesSecond.jpg");
}

.advantages__item:nth-child(3) {
    background-image: url("static/images/advantages/advantagesThird.jpg");
}

.advantages__icon {
    position: absolute;
    top: 16px;
    left: 16px;
    height: 124px;
}

.advantages__itemTitle {
    position: relative;
    margin-bottom: 28px;
    max-width: 310px;
    text-align: left !important;
    color: #FFFFFF !important;
}

.advantages__itemTitle:after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 0;
    width: 212px;
    height: 3px;
    border-radius: 4px;
    background-color: #EB8F3C;
}

.advantages__itemDescription {
    font-size: 18px !important;
}

.advantages__link {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    right: 16px;
    bottom: 16px;
    font-weight: 700;
    font-size: 16px;
    color: #EB8F3C;
}

.advantages__link:hover {
    text-decoration: underline !important;
    color: #EB8F3C !important;
}

.advantages__linkIcon {
    margin-left: 14px;
    width: 8px;
    height: 14px;
}

@media (max-width: 1180px) {
    .advantages {
        padding: 48px 0;
    }

    .advantages__title {
        margin-bottom: 32px;
    }

    .advantages__list {
        flex-wrap: wrap;
    }

    .advantages__item {
        width: calc(50% - 10px);
        min-height: 254px;
    }

    .advantages__item + .advantages__item {
        margin-left: 0;
    }

    .advantages__item:last-child {
        margin-top: 20px;
        padding-bottom: 24px;
        width: 100%;
    }

    .advantages__itemTitle {
        max-width: 330px;
    }
}

@media (max-width: 768px) {
    .advantages__subtitle {
        font-size: 24px !important;
        margin-bottom: 32px;
    }

    .advantages__list {
        flex-direction: column;
    }

    .advantages__item {
        padding: 40px 16px 24px 40px;
        width: 100%;
        min-height: auto !important;
    }

    .advantages__item:nth-of-type(2) {
        padding-bottom: 60px;
    }

    .advantages__item + .advantages__item {
        margin-top: 20px;
    }
}

/* Stages */
.stages {
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url("static/images/stages/stagesBg.jpg");
    background-size: cover;
    background-position: bottom;
}

.stages__title {
    margin-bottom: 60px;
}

.stages__wrapper {
    display: flex;
}

.stages__list {
    display: flex;
    flex-wrap: wrap;
    margin-right: 8px;
    width: 50%;
}

.stages__item {
    display: flex;
    align-items: center;
    margin-right: 12px;
    margin-bottom: 12px;
    padding: 20px 16px;
    width: calc(50% - 12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    box-shadow: -4px 4px 11px rgba(255, 255, 255, 0.06);
    background: rgba(44, 44, 44, 0.8);
}

.stages__item:last-child {
    margin-bottom: 0;
    width: 100%;
}

.stages__number {
    margin-right: 20px;
    font-size: 50px !important;
    font-weight: 800;
    color: #EB8F3C;
}

.stages__description {
    font-size: 20px !important;
    font-weight: 600;
    color: #FFFFFF;
}

.stages__video {
    width: 50%;
    border-radius: 4px;
    overflow: hidden;
}

.stages__iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 1180px) {
    .stages {
        padding-top: 32px;
        padding-bottom: 48px;
        background-position: 30% 50%;
    }

    .stages__title {
        margin-bottom: 32px;
    }

    .stages__wrapper {
        flex-direction: column;
    }

    .stages__list {
        justify-content: space-between;
        margin-right: 0;
        margin-bottom: 32px;
        width: 100%;
    }

    .stages__item {
        margin-right: 0;
        padding: 20px 60px;
        width: calc(50% - 6px);
    }

    .stages__video {
        width: 100%;
        height: 400px;
    }

    .stages__iframe {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 768px) {
    .stages {
        padding-bottom: 40px;
        background-position: 20% 50%;
    }

    .stages__item {
        padding: 20px 60px;
        width: 100%;
    }

    .stages__video {
        height: 360px;
    }
}

@media (max-width: 460px) {
    .stages__item {
        padding: 12px 26px;
    }

    .stages__number {
        font-size: 34px !important;
    }

    .stages__description {
        font-size: 14px !important;
    }

    .stages__video {
        height: 220px;
    }
}

/* Delivery */
.delivery {
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url("static/images/delivery/delivery.jpg");
    background-size: cover;
    background-position: center 80%;
}

.delivery__title {
    margin-bottom: 90px;
    color: #FFFFFF;
}

.delivery__wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 920px;
}

.delivery__item {
    width: calc(33.33% - 12px);
    height: 269px;
    margin-bottom: 20px;
    padding: 24px 16px 28px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: -4px 4px 11px rgba(255, 255, 255, 0.06);
    background: #2A2A2A;
}

.delivery__item + .delivery__item {
    margin-left: 18px;
}

.delivery__item_transparent {
    opacity: 0;
}

.delivery__item_transparent + .delivery__item_transparent {
    margin-left: 0;
}

.delivery__icon {
    margin-bottom: 20px;
    width: 50px;
}

.delivery__name {
    display: flex;
    margin-bottom: 12px;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    color: #EB8F3C;
    transition: color .2s;
}

.delivery__name:hover {
    color: #CC7D35;
}

.advantages__linkIcon {
    margin-left: 12px;
}

.delivery__description {
    font-size: 16px !important;
}

@media (max-width: 1180px) {
    .delivery {
        padding-top: 32px;
        padding-bottom: 48px;
        background-position: 30% 80%;
    }

    .delivery__wrapper {
        width: 82%;
    }

    .delivery__title {
        margin-bottom: 32px;
    }

    .delivery__item {
        width: calc(50% - 10px);
    }

    .delivery__item + .delivery__item {
        margin-left: 20px;
    }

    .delivery__item_transparent + .delivery__item {
        margin-left: 0;
    }

    .delivery__item_transparent {
        display: none;
    }
}

@media (max-width: 768px) {
    .delivery {
        background-position: 0 80%;
    }

    .delivery__title {
        margin-bottom: 24px;
    }

    .delivery__wrapper {
        width: 91%;
    }

    .delivery__item {
        margin-bottom: 0;
        padding: 24px 16px 24px 16px;
        width: 100%;
        height: auto;
    }

    .delivery__item + .delivery__item {
        margin-left: 0;
        margin-top: 20px;
    }

    .delivery__name {
        font-size: 18px !important;
    }
}

/* Search by characteristics */
.search {
    padding-top: 114px;
    padding-bottom: 90px;
    background:
        linear-gradient(187.72deg, #2A2A2A 8.71%, rgba(42, 42, 42, 0) 23.31%),
        linear-gradient(242.35deg, #2A2A2A 17.89%, rgba(42, 42, 42, 0) 38.74%),
        linear-gradient(113.22deg, #2A2A2A 16.96%, rgba(42, 42, 42, 0) 42.59%),
        linear-gradient(12.21deg, #2A2A2A 9.6%, rgba(42, 42, 42, 0) 31.37%),
        linear-gradient(295.68deg, #2A2A2A 8.67%, rgba(42, 42, 42, 0) 56.49%),
        url("static/images/search/searchBg.png");
    background-repeat: no-repeat;
    background-position: left 18% bottom 44%;
    background-color: #2A2A2A;
}

.search__title {
    margin-bottom: 32px;
    text-align: left !important;
}

.search__description {
    margin-bottom: 48px;
}

.search__description_red {
    font-size: 21px;
    font-weight: 600;
    text-transform: uppercase;
    color: #EB5757;
}

/* Search form group */
.search__formGroup {
    display: flex;
    flex-wrap: wrap;
}

.search__formGroup + .search__formGroup {
    margin-top: 36px;
}

.search__formGroup_bottom {
    position: relative;
    justify-content: space-between;
}

.search__formGroup_price {
    flex-direction: column;
    align-items: flex-end;
    width: 20%;
}

.search__formGroup_duo {
    display: flex;
    width: 100%;
}

.search__formGroup_duo ._label:nth-of-type(1) > .form__input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.search__formGroup_duo ._label:nth-of-type(2) > .form__input {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.search__formGroup_duo ._label:nth-of-type(2) > .form__input:focus {
    border-left: 2px solid #EB8F3C;
}

/* Search form item */
.search__formItem {
    display: flex;
    flex-direction: column;
    margin-right: 18px;
    margin-bottom: 36px;
    width: calc(33.33% - 12px);
}

.search__formItem:nth-child(3n) {
    margin-right: 0;
}

.search__formItem_price {
    margin-right: 0 !important;
    width: 100% !important;
}

.search__selectWrap {
    position: relative;
    width: 50%;
}

.search__select_duo {
    padding-left: 41px;
    width: 100%;
}

/* Search form input group */
.search__inputGroup_duo {
    position: relative;
    width: 50%;
}

/* Search form checkbox */
.search__formAppraisal {
    margin-right: 20px;
    width: 60%;
}

.search__checkboxWrap {
    display: flex;
    flex-wrap: wrap;
}

.search__checkboxItem {
    margin-right: 26px;
    margin-bottom: 20px;
    width: 105px;
}

/* Search form buttons */
.search__buttonReset {
    font-family: inherit;
    font-size: 18px;
    font-weight: 400;
    color: #F2F2F2;
    border: none;
    background: none;
    transition: color .2s;
}

.search__buttonReset:hover {
    color: #EB8F3C;
    cursor: pointer;
}

.search__buttonSubmit {
    margin-left: 25px;
    width: 125px;
    height: 125px;
    border: none;
    cursor: pointer;
    background: url(static/images/search/formButton.png) no-repeat center;
    background-size: cover;
    transition: all .2s;
}

.search__buttonSubmit:hover {
    background: url(static/images/search/formButtonActive.png) no-repeat center;
    background-size: cover;
    filter: drop-shadow(0px 2px 16px #FF9722);
    -webkit-filter: drop-shadow(0px 2px 16px #FF9722);
}

@media (max-width: 1180px) {
    .search {
        margin-bottom: 30px;
        padding-top: 32px;
        padding-bottom: 48px;
    }

    .search__title {
        margin-bottom: 16px;
        text-align: center !important;
    }

    .search__description {
        margin-bottom: 32px;
        font-size: 16px !important;
        text-align: center;
    }

    .search__description_red {
        font-size: 16px !important;
    }

    .search__formItem {
        margin-right: 20px;
        margin-bottom: 22px;
        width: calc(50% - 10px);
    }

    .search__formItem:nth-of-type(2n) {
        margin-right: 0 !important;
    }

    .search__formItem:nth-of-type(3n) {
        margin-right: 20px;
    }
    .search__formGroup + .search__formGroup {
        margin-top: 22px;
    }

    .search__formAppraisal {
        margin-right: 0;
        width: calc(100% - 182px);
    }

    .search__checkboxItem {
        margin-right: 18px;
    }

    .search__formGroup_price {
        width: auto;
    }

    .search__formItem_price {
        position: absolute;
        top: -109px;
        right: 0;
        width: calc(50% - 10px) !important;
    }

    .search__buttonReset {
        position: absolute;
        right: 12px;
        bottom: -30px;
    }

    .search__buttonSubmit {
        margin-left: 20px;
        width: 162px;
        height: 162px;
    }
}


@media (max-width: 768px) {
    .search {
        padding-bottom: 156px;
    }

    .search__formItem {
        margin-right: 0 !important;
        width: 100%;
    }

    .search__formAppraisal {
        width: 100%;
    }

    .search__checkboxItem {
        margin-right: 14px;
    }

    .search__formGroup_price {
        position: relative;
        margin-top: 6px;
        width: 100%;
    }

    .search__formItem_price {
        position: static;
        width: 100% !important;
    }

    .search__buttonReset {
        right: 132px;
        bottom: -76px;
    }

    .search__buttonSubmit {
        position: absolute;
        right: 0;
        bottom: -124px;
        width: 120px;
        height: 120px;
    }
}

/* Useful */
.useful {
    padding-top: 60px;
    padding-bottom: 90px;
    background: url("static/images/useful/usefulBg.jpg");
    background-position: bottom;
    background-size: cover;
}

.useful__title {
    margin-bottom: 48px;
}

.useful__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.useful__item {
    position: relative;
    margin-bottom: 40px;
    padding: 24px 16px 12px 16px;
    width: calc(33.33% - 20px);
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #333333;
}

.useful__itemTitle {
    margin-bottom: 16px;
    max-width: 80%;
    font-size: 30px !important;
    font-weight: 700;
    color: #EB8F3C;
}

.useful__itemText {
    position: absolute;
    top: 50%;
    width: calc(100% - 32px);
    color: #F2F2F2;
}

.useful__icon {
    position: absolute;
    right: -56px;
    bottom: -18px;
    width: 200px;
    height: 200px;
}

@media (max-width: 1180px) {
    .useful {
        padding-top: 32px;
        padding-bottom: 24px;
    }

    .useful__title {
        margin-bottom: 32px;
    }

    .useful__item {
        margin-bottom: 24px;
        padding: 24px 50px 36px 16px;
        width: calc(50% - 12px);
        min-height: 301px;
        height: auto;
    }

    .useful__itemText {
        position: static;
        width: 100%;
        font-size: 18px !important;
    }

    .useful__icon {
        right: 14px;
    }
}

@media (max-width: 768px) {
    .useful__item {
        padding: 24px 16px 36px 16px;
        width: 100%;
        min-height: 250px;
    }

    .useful__icon {
        right: -19px;
    }

    .useful__itemTitle {
        max-width: 100%;
        font-size: 27px !important;
    }
}

/* Collaboration */
.collaboration {
    padding: 130px 0;
    background: url(static/images/collaboration/collaboration.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.collaboration__top {
    margin-bottom: 64px;
}

.collaboration__title {
    margin-bottom: 32px;
    font-size: calc(38px + 62 * (100vw / 1920)) !important;
    font-weight: 800;
    line-height: 1;
    color: #EB8F3C;
}

.collaboration__title span {
    line-height: 1;
}

.collaboration__title_white {
    display: block;
    font-size: calc(32px + 38 * (100vw / 1920)) !important;
    color: #FFFFFF;
}

.collaboration__description {
    width: 40%;
    min-width: 500px;
    font-size: calc(15px + 3 * (100vw / 1920)) !important;
    font-weight: 700;
}

.collaboration__bottom {
    display: flex;
}

.collaboration__button + .collaboration__button {
    margin-left: 20px;
}

.collaboration__button_orange {
    padding-right: 36px;
    padding-left: 36px;
    color: #FFFFFF;
}

.collaboration__button_transparent {
    display: flex;
    align-items: center;
    padding-right: 32px;
    padding-left: 32px;
    color: #FFFFFF;
}

.collaboration__icon {
    margin-right: 10px;
    width: 22px;
    height: 22px;
}

@media (max-width: 768px) {
    .collaboration {
        padding: 68px 0;
    }

    .collaboration__description {
        width: 100%;
        min-width: 0;
    }

    .collaboration__bottom {
        flex-direction: column;
        width: 310px;
    }

    .collaboration__button {
        text-align: center;
    }

    .collaboration__button + .collaboration__button {
        margin-top: 20px;
        margin-left: 0;
    }
}

@media (max-width: 460px) {
    .collaboration__title {
        font-size: calc(25px + 62 * (100vw / 1920)) !important;
    }

    .collaboration__title_white {
        font-size: calc(23px + 41 * (100vw / 1920)) !important;
    }

    .collaboration__description {
        font-size: calc(13px + 7 * (100vw / 1920)) !important;
    }
}

@media (max-width: 360px) {
    .collaboration__bottom {
        width: 100%;
    }

    .collaboration__button {
        padding-right: 0;
        padding-left: 0;
        justify-content: center;
        font-size: 14px !important;
    }
}

/* Auto on sale */
.autoOnSale {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 48px;
}

.autoOnSale__title {
    margin-bottom: 16px;
}

.autoOnSale__image {
    height: 17px;
}

@media (max-width: 768px) {
    .autoOnSale {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .autoOnSale__title {
        font-size: 24px !important;
    }

    .autoOnSale__image {
        width: 164px;
        height: 15px;
    }
}

/* Auction */
.auction {
    padding-top: 64px;
    padding-bottom: 74px;
    background: url("static/images/auction/auctionBg.png");
    background-size: cover;
    background-position: 0 80%;
}

.auction__title {
    margin-bottom: 20px;
    padding: 16px 48px 16px calc(50% - 1366px / 2);
    max-width: 80%;
    font-size: calc(37px + 33 * (100vw / 1920)) !important;
    font-weight: 800;
    text-align: left;
    background-color: #FFFFFF;
    color: #EB8F3C;
}

.auction__text {
    margin-bottom: 64px;
    font-size: calc(24px + 31 * (100vw / 1920)) !important;
    font-weight: 600;
    color: #FFFFFF;
}

.auction__button {
    display: inline-block;
    padding-right: 48px;
    padding-left: 48px;
}

@media (max-width: 1406px) {
    .auction__title {
        padding-left: 20px;
    }
}

@media (max-width: 1180px) {
    .auction {
        padding-top: 32px;
        padding-bottom: 49px;
        background-position: 0 85%;
    }

    .auction__title {
        padding: 8px 12px 8px 20px;
        width: 70%;
        font-size: calc(27px + 33 * (100vw / 1920)) !important;
    }

    .auction__text {
        margin-bottom: 51px;
    }

    .auction__button {
        padding-right: 0;
        padding-left: 0;
        width: 310px;
    }
}

@media (max-width: 768px) {
    .auction__title {
        min-width: 80%;
        font-size: calc(27px + 33 * (100vw / 1920)) !important;
    }
}

@media (max-width: 360px) {
    .auction__title {
        min-width: 90%;
    }

    .auction__text {
        font-size: calc(21px + 31 * (100vw / 1920)) !important;
    }

    .auction__button {
        width: 100%;
    }
}

/* Selection */
.selection {
    display: flex;
    padding-top: 72px;
    padding-bottom: 48px;
    align-items: center;
    background-image: url("static/images/selection/selectCarBg.jpg");
    background-position: center;
    background-size: cover;
}

.selection__left  {
    margin-right: 36px;
    width: 38%;
}

.selection__title {
    margin-bottom: 30px;
    font-size: calc(21px + 17 * (100vw / 1920)) !important;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
}

.selection__title span {
    line-height: 1;
}

.selection__title_orange {
    display: block;
    font-size: calc(45px + 26 * (100vw / 1920)) !important;
    color: #EB8F3C;
}

.selection__description {
    font-size: calc(14px + 11 * (100vw / 1920)) !important;
    font-weight: 500;
    color: #F2F2F2;
}

/* Selection form */
.selection__form {
    width: 62%;
}

.selection__group {
    display: flex;
    flex-wrap: wrap;
}

.selection__group + .selection__group {
    margin-top: 20px;
}

.selection__radio {
    margin-right: 16px;
    width: 124px;
}

.selection__input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: calc(50% - 8px);
    margin-right: 16px;
}

.selection__input:last-child,
.selection__radio:last-child {
    margin-right: 0;
}

.selection__budgetWrapper {
    position: relative;
    margin-top: 20px;
    width: calc(50% - 8px);
}

.selection__budget {
    padding-right: 53px;
}

.selection__currency {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translate(0, -50%);
    font-size: 15px;
    font-weight: 700;
    color: #EB8F3C;
}

.selection__submit {
    margin-top: 48px;
    width: 100%;
}

@media (max-width: 1180px) {
    .selection {
        flex-direction: column;
        padding-top: 64px;
        padding-bottom: 48px;
        background-position: 12% 0;
        background: linear-gradient(0deg, rgba(42, 42, 42, 0.2), rgba(42, 42, 42, 0.5)), url("static/images/selection/selectCarBg.jpg");
        background-repeat: no-repeat;
        background-size: cover;
    }

    .selection__left {
        margin-right: 0;
        margin-bottom: 48px;
        width: 100%;
    }

    .selection__title {
        margin-bottom: 36px;
    }

    .selection__description {
        width: 100%;
        max-width: 500px;
    }

    .selection__form {
        width: 100%;
    }

    .selection__input {
        margin-right: 20px;
        width: calc(50% - 10px);
    }

    .selection__radio {
        margin-right: 20px;
        margin-bottom: 16px;
        width: calc(25% - 15px);
    }

    .selection__radio:nth-of-type(4n) {
        margin-right: 0;
    }

    .selection__budgetWrapper {
        width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .selection {
        padding-top: 48px;
        padding-bottom: 32px;
        background-position: 45% 0;
    }

    .selection__left {
        margin-bottom: 32px;
    }

    .selection__title {
        margin-bottom: 12px;
    }

    .selection__description {
        max-width: 450px;
    }

    .selection__input {
        width: 100%;
        margin-right: 0;
    }

    .selection__input + .selection__input {
        margin-top: 20px;
        margin-right: 0;
    }

    .selection__radio {
        margin-right: 16px;
        width: calc(50% - 8px);
    }

    .selection__radio:nth-of-type(2n) {
        margin-right: 0;
    }

    .selection__budgetWrapper {
        width: 100%;
    }
}

@media (max-width: 380px) {
    .selection__title_orange {
        font-size: calc(37px + 26 * (100vw / 1920)) !important;
    }
}

/* Selection modal */
.selection__modal {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 40px 16px;
    max-width: 712px;
}

.selection__modalTitle {
    margin-bottom: 12px;
    font-size: 24px !important;
    font-weight: 700;
    text-align: center;
    color: #000000;
}

.selection__modalDescription {
    margin-bottom: 44px;
    font-size: 17px !important;
    font-weight: 400;
    text-align: center;
    color: #000000;
}

.selection__modalClose {
    padding-right: 100px;
    padding-left: 100px;
    color: #000000;
}

@media (max-width: 768px) {
    .selection__modal {
        padding: 28px 16px;
        width: calc(100% - 40px);
    }
}

@media (max-width: 360px) {
    .selection__modalClose {
        padding-right: 0;
        padding-left: 0;
        width: 100%;
    }
}

/* Review */
.review {
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}

.review__title {
    margin-bottom: 32px;
}

.review__slider {
    overflow: visible;
}

.review__slide {
    cursor: default;
}

.review__card {
    display: flex;
    padding: 16px 28px 36px 16px;
    box-shadow: -6px 5px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #EDEDED;
    border-radius: 8px;
    color: #2A2A2A;
    word-break: break-word;
}

.review__image {
    margin-right: 10px;
    height: 164px;
    border-radius: 8px;
}

.review__car {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 8px;
    font-weight: 700;
    color: #9A9A9A;
}

.review__car p {
    font-size: 16px !important;
}

.review__car p + p {
    margin-left: 20px;
}

.review__name {
    margin-bottom: 16px;
    font-size: 19px;
    font-weight: 600;
    color: #2A2A2A;
}

.review__description {
    font-size: 18px !important;
}

.review__button {
    position: absolute;
    display: flex;
    align-items: center;
    right: 40px;
    bottom: 16px;
    font-size: 18px;
    font-weight: 700;
    color: #2A2A2A;
    border: none;
    background: none;
    transition: color .2s;
}

.review__button:hover {
    color:  #EB8F3C;
    cursor: pointer;
}

.review__buttonIcon {
    margin-left: 14px;
    width: 8px;
    height: 14px;
}

.reviewPagination {
    margin-top: 32px;
}

@media (max-width: 1406px) {
    .review__slider {
        width: 614px;
    }
}

@media (max-width: 1180px) {
    .review {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .review__name {
        font-size: 18px !important;
    }
}

@media (max-width: 768px) {
    .review__slider {
        width: 100% !important;
    }

    .review__card {
        position: relative;
        padding: 16px;
        height: auto;
    }

    .review__image {
        position: absolute;
        width: 80px;
        height: 80px;
    }

    .review__header {
        padding-left: 89px;
        cursor: default;
    }

    .review__car {
        font-size: 14px !important;
    }

    .review__car p + p {
        margin-left: 4px;
    }

    .review__name {
        margin-bottom: 35px;
        font-size: 16px !important;
    }

    .review__description {
        margin-bottom: 30px;
        cursor: default;
    }

    .review__button {
        right: 16px;
    }
}

@media (max-width: 360px) {
    .review__car {
        font-size: 13px;
    }

    .review__name {
        margin-bottom: 24px;
        font-size: 14px;
        word-break: break-word;
    }
}

/* Review modal */
.reviewModal {
    display: flex;
    padding: 60px 24px 32px 24px;
    max-width: 900px;
    color: #2A2A2A;
}

.reviewModal__content {
    display: flex;
}

@media (max-width: 1180px) {
    .reviewModal {
        width: calc(100% - 40px);
    }
}

@media (max-width: 768px) {
    .reviewModal {
        padding: 36px 16px 16px 16px;
    }
}

/* Team */
.team {
    padding-bottom: 100px;
}

.team__title {
    margin-bottom: 32px;
}

.team__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.team__item {
    margin-bottom: 24px;
    width: calc(50% - 10px);
}

.team__list_mobile {
    display: none;
}

.teamCard {
    padding: 16px;
    border: 1px solid #EDEDED;
    border-radius: 8px;
    box-shadow: -6px 5px 16px rgba(0, 0, 0, 0.06);
}

.teamCard__header {
    display: -ms-grid;
    -ms-grid-columns: 130px 1fr;
    display: grid;
    grid-template-columns: 130px 1fr;
    margin-bottom: 14px;
}

.teamCard__image {
    -ms-grid-row-span: 2;
    grid-row: 1 / 3;
    margin-right: 24px;
    width: 130px;
    height: 130px;
    border-radius: 8px;
}

.teamCard__info {
    -ms-grid-column: 2;
    max-width: 300px;
    margin-left: 20px;
}

.teamCard__name {
    margin-bottom: 4px;
    font-size: 20px !important;
    font-weight: 600;
    color: #2A2A2A;
}

.teamCard__position {
    margin-bottom: 16px;
    font-size: 16px !important;
    font-weight: 700;
    color: #828282;
}

.teamCard__contact {
    -ms-grid-column: 2;
    -ms-grid-row: 2;
    margin-left: 24px;
}

.teamCard__link {
    display: flex;
    align-items: center;
}

.teamCard__link + .teamCard__link {
    margin-top: 12px;
}

.teamCard__link:hover .teamCard__contactText {
    color: #EB8F3C !important;
}

.teamCard__contactIcon {
    margin-right: 12px;
    width: 20px;
    height: 20px;
}

.teamCard__contactText {
    font-size: 18px !important;
    color: #333333;
    transition: color .2s;
}

.teamCard__description {
    font-size: 18px !important;
    color: #2A2A2A;
}

.team__link {
    display: block;
    margin: 12px auto 0;
    width: 300px;
    color: #FFFFFF;
}

/* Team mobile */
.teamMobile {
    display: none;
}

.team__slider {
    overflow: visible;
}

@media (max-width: 1406px) {
    .team__slider {
        width: 540px;
    }
}

@media (max-width: 1180px) {
    .team {
        padding-bottom: 48px;
        overflow-x: hidden;
    }

    .team__list {
        display: none;
    }

    .team__list_mobile {
        display: block;
        margin-bottom: 24px;
    }

    .team__slider {
        margin-bottom: 32px;
    }
}

@media (max-width: 768px) {
    .team__slider {
        width: 100% !important;
    }

    .teamCard__header {
        grid-template-columns: 80px 1fr;
        margin-bottom: 14px;
        align-items: center;
    }

    .teamCard__info {
        grid-row: 1 / 3;
        margin-left: 8px;
    }

    .teamCard__contact {
        grid-column: 1 / 3;
        margin-top: 10px;
        margin-left: 0;
    }

    .teamCard__image {
        width: 80px;
        height: 80px;
        margin-right: 8px;
    }

    .teamCard__name {
        font-size: 16px;
    }

    .team__link {
        padding-right: 0;
        padding-left: 0;
        width: 100%;
        text-align: center;
    }
}

/* Social links */
.socialLinks {
    display: flex;
    padding: 38px 0;
    justify-content: space-between;
    align-items: center;
    background-image: url("static/images/socialLinks/socialLinksBg.jpg");
    background-size: cover;
}

.socialLinks__title {
    font-size: calc(21px + 11 * (100vw / 1920)) !important;
    font-weight: 800;
    color: #ffffff;
}

.socialLinks__title span {
    line-height: 1;
}

.socialLinks__title_orange {
    display: block;
    font-size: calc(38px + 24 * (100vw / 1920)) !important;
    font-weight: 900;
    color: #EB8F3C;
}

.socialLinks__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
}

.socialLinks__social {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin-bottom: 16px;
}

.socialLinks__link + .socialLinks__link {
    margin-left: 30px;
}

.socialLinks__image {
    width: 60px;
    height: 60px;
}

.socialLinks__image_youtube {
    width: 85px;
    height: 60px;
}

.socialLinks__description {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: calc(26px + 0  * (100vw / 1920)) !important;
    font-weight: 700;
    text-align: center;
    color: #FFFFFF;
}

.socialLinks__description_red {
    font-size: calc(34px + 0 * (100vw / 1920)) !important;
    color: #F61C0D;
}

@media (max-width: 1180px) {
    .socialLinks {
        padding: 32px 0;
    }
}

@media (max-width: 930px) {
    .socialLinks__title_orange {
        font-size: calc(27px + 24 * (100vw / 1920)) !important;
    }
}

@media (max-width: 768px) {
    .socialLinks {
        flex-direction: column;
        padding: 58px 0 48px 0;
        background-image: url("static/images/socialLinks/socialLinksBgAdaptive.jpg");
        background-size: cover;
        background-position: center;
    }

    .socialLinks__title {
        margin-bottom: 64px;
    }
}

@media (max-width: 360px) {
    .socialLinks__title {
        font-size: calc(19px + 11 * (100vw / 1920)) !important;
    }
}

/*----------------*/
/* Contract pages  */
/*----------------*/

.contract {
    position: relative;
}

.contract__header {
    margin-bottom: 115px;
    width: 100%;
    height: 300px;
    object-position: top;
}

.contract__title {
    margin-bottom: 28px;
    font-size: calc(28px + 20 * (100vw / 1920)) !important;
    font-weight: 800;
    color: #000000;
}

.contract__icon {
    position: absolute;
    top: -64px;
    left: calc(48% - 1366px / 2);
    width: 300px;
    height: 300px;
}

/* Contract Form */
.contract__form {
    margin: 0 auto;
    padding-bottom: 120px;
    width: 800px;
}

.contract__fieldset + .contract__fieldset {
    margin-top: 48px;
}

.contract__legend {
    font-size: 24px;
    color: #EB8F3C;
}

.contractForm__group {
    display: flex;
}

.contractForm__group + .contractForm__group {
    margin-top: 24px;
}

.contract__item {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    width: calc(50% - 10px);
}

.contract__item + .contract__item {
    margin-left: 20px;
}

.contract__labelFile {
    position: relative;
    margin-top: 24px;
}

.contract__fileText {
    position: absolute;
    top: -100%;
}

.contract__fileLink {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: underline;
    color: #000000;
    transition: color .2s;
}

.contract__fileLink:hover {
    color: #EB8F3C;
}

/* Textarea */
.contract__label_textarea {
    width: 100%;
    height: 130px;
}

.contractForm__textarea {
    padding: 7px;
    height: 100%;
    resize: none;
}

.contractForm__text {
    margin-top: 12px;
    margin-bottom: 32px;
    font-size: 14px;
    font-weight: 400;
    color: #9A9A9A;
}

.contractForm__link {
    font-size: 16px;
    font-weight: 700;
    color: #2A2A2A;
    transition: color .2s;
}

.contractForm__link:hover {
    color: #EB8F3C;
}

.contractForm__submit {
    padding: 8px 0;
    width: 100%;
    text-transform: uppercase;
    border-radius: 2px;
    color: #ffffff;
}

@media (max-width: 1406px) {
    .contract__icon {
        top: -92px;
        left: 20px;
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 1180px) {
    .contract__header {
        margin-bottom: 100px;
        height: 200px;
    }

    .contract__form {
        padding-bottom: 64px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contract__header {
        height: 100px;
        margin-bottom: 58px;
    }

    .contract__icon {
        top: -54px;
        width: 120px;
        height: 120px;
    }

    .contract__form {
        margin: 0 auto;
        width: 100%;
    }

    .contract__legend {
        margin-bottom: 24px;
    }

    .contractForm__group {
        flex-direction: column;
    }

    .contract__item + .contract__item {
        margin-top: 24px;
        margin-left: 0;
    }

    .contract__item {
        width: 100%;
    }
}

/*----------------*/
/* Delivery page  */
/*----------------*/

.deliveryInfo {
    padding-top: 32px;
    padding-bottom: 100px;
    overflow-x: hidden;
}

.deliveryInfo__slider {
    margin-bottom: 12px;
    width: calc(100% - 40px);
    overflow: visible;
}

.deliveryInfo__slide_quad {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.deliveryInfo__image,
.deliveryInfo__imageQuad {
    object-fit: cover;
    object-position: center;
}

.deliveryInfo__image {
    width: 100%;
}

.deliveryInfo__imageQuad {
    margin-bottom: 20px;
    width: calc(50% - 10px);
}

.deliveryInfo__content {
    position: relative;
    margin-top: 64px;
}

.deliveryInfo__icon {
    position: absolute;
    top: -82px;
    left: -38px;
    width: 300px;
    height: 300px;
}

.deliveryInfo__title {
    margin-bottom: 48px;
    font-size: calc(36px + 14 * (100vw / 1920)) !important;
    font-weight: 800;
    color: #000000;
}

.deliveryInfo__description {
    margin: 0 auto;
    width: 1100px;
    font-size: 18px !important;
    line-height: 1.77;
    color: #000000;
}

.deliveryInfo__description + .deliveryInfo__description {
    margin-top: 20px;
}

@media (max-width: 1406px) {
    .deliveryInfo__slider {
        width: 358px;
    }
}

@media (max-width: 1180px) {
    .deliveryInfo {
        padding-top: 16px;
        padding-bottom: 64px;
    }

    .deliveryInfo__content {
        margin-top: 108px;
    }

    .deliveryInfo__icon {
        top: -98px;
        left: 0;
        width: 170px;
        height: 170px;
    }

    .deliveryInfo__title {
        margin-bottom: 32px;
    }

    .deliveryInfo__description {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .deliveryInfo__content {
        margin-top: 68px;
    }

    .deliveryInfo__icon {
        width: 120px;
        height: 120px;
        top: -46px;
    }
}

@media (max-width: 500px) {
    .deliveryInfo__slider {
        width: 100%;
        overflow: hidden;
    }
}

/*-----------------------------------------------------------------------------------*/
/*                                     Machinery                                     */
/*-----------------------------------------------------------------------------------*/

/* Machinery hero */
.machineryHero {
    position: relative;
    padding-top: 150px;
    padding-bottom: 78px;
    min-height: 800px;
    background: url("static/images/machinery/machineryHeroBg.jpg");
    background-size: cover;
    background-position: 50% top;
}

.machineryHero__title {
    margin-bottom: 54px;
    font-size: calc(16px + 28 * (100vw / 1920)) !important;
    font-weight: 800;
    color: #FFFFFF;
}

.machineryHero__title_orange {
    display: block;
    margin-top: 8px;
    font-size: calc(33px + 53 * (100vw / 1920)) !important;
}

.machineryHero__description {
    margin-bottom: 86px;
    max-width: 660px;
    font-size: calc(14px + 11 * (100vw / 1920)) !important;
    font-weight: 500;
    color: #F2F2F2;
}

.machineryHero__buttonGroup {
    display: flex;
    margin-bottom: 82px;
}

.machineryHero__button {
    width: 300px;
}

.machineryHero__button + .machineryHero__button {
    margin-left: 20px;
}

.machineryHero__list {
    bottom: 10%;
}

.machineryHero__text {
    max-width: 200px;
    font-size: 16px !important;
    font-weight: 700;
    color: #FFFFFF;
}

@media (max-width: 1180px) {
    .machineryHero {
        padding-bottom: 48px;
        background-position: 40% top;
    }

    .machineryHero__title {
        margin-bottom: 32px;
        max-width: 640px;
    }

    .machineryHero__description {
        margin-bottom: 90px;
        max-width: 660px;
    }

    .machineryHero__buttonGroup {
        margin-bottom: 100px;
    }
}

@media (max-width: 986px) {
    .machineryHero__item:nth-of-type(3) {
        margin-top: 44px;
    }
}

@media (max-width: 768px) {
    .machineryHero {
        padding-top: 74px;
        padding-bottom: 24px;
        min-height: auto;
    }

    .machineryHero__title {
        margin-bottom: 16px;
        max-width: 470px;
    }

    .machineryHero__title_orange {
        margin-top: 8px;
    }

    .machineryHero__description {
        margin-bottom: 39px;
    }
}

@media (max-width: 660px) {
    .machineryHero__buttonGroup {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .machineryHero__button + .machineryHero__button {
        margin-top: 12px;
        margin-left: 0;
    }
}

@media (max-width: 603px) {
    .machineryHero__list {
        justify-content: start;
    }

    .machineryHero__item + .machineryHero__item {
        margin-top: 12px;
    }

    .hero__number:after {
        height: 100%;
    }
}

@media (max-width: 460px) {
    .machineryHero__title {
        max-width: 100%;
        font-size: calc(12px + 28 * (100vw / 1920)) !important;
        line-height: 1.32 !important;
    }

    .machineryHero__title_orange {
        font-size: calc(24px + 53 * (100vw / 1920)) !important;
        line-height: 1.32 !important;
    }

    .machineryHero__description {
        font-size: calc(12px + 11 * (100vw / 1920)) !important;
        line-height: 1.32 !important;
    }

    .machineryHero__button {
        width: 100%;
    }

    .machineryHero__text {
        font-size: 12px !important;
    }
}

/* Machinery advantages */
@media (max-width: 1180px) {
    .machineryAdvantages .advantages__item:last-child {
        min-height: 197px !important;
    }
}

/* Machinery stages */
.machineryStages .stages__item:nth-last-child(-n+2) {
    margin-bottom: 0;
    width: calc(50% - 12px);
}

@media (max-width: 1180px) {
    .machineryStages .stages__item:nth-last-child(-n+2) {
        margin-bottom: 0;
        width: calc(50% - 6px);
    }
}

@media (max-width: 768px) {
    .machineryStages .stages__item:nth-last-child(-n+2) {
        width: 100%;
    }

    .machineryStages .stages__item:last-child {
        margin-top: 12px;
    }
}

/* Why Estec */
.pros {
    position: relative;
}

.pros:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 120px;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 1.63%, #FFFFFF 76.43%);
}

.pros__wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 120px 0;
    padding-top: 60px;
    padding-bottom: 80px;
    background: url("static/images/machinery/machineryPlusesBg.jpg");
    background-size: cover;
    background-position: 0 14%;
}

.pros__title {
    margin-bottom: 56px;
    width: 100%;
}

.pros__image {
    margin-right: 20px;
    width: calc(50% - 10px);
}

.pros__list {
    width: calc(50% - 10px);
}

.pros__item {
    display: flex;
    align-items: flex-start;
}

.pros__item + .pros__item {
    margin-top: 42px;
}

.pros__item:nth-of-type(3) {
    align-items: center;
}

.pros__number {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    min-width: 32px;
    height: 32px;
    font-size: 24px;
    font-weight: 800;
    border: 2px solid #EB8F3C;
    border-radius: 50%;
    color: #EB8F3C;
}

.pros__info {
    font-size: 18px !important;
    font-weight: 700;
    color: #2A2A2A;
}

@media (max-width: 1406px) {
    .pros:after {
        display: none;
    }

    .pros__wrapper {
        margin: 60px 0;
    }
}

@media (max-width: 1180px) {
    .pros__wrapper {
        margin: 48px 0;
        background-position: 60% 14%;
    }

    .pros__title {
        margin-bottom: 32px;
    }

    .pros__image {
        display: none;
    }

    .pros__list {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .pros__wrapper {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .pros__item + .pros__item {
        margin-top: 32px;
    }
}

/* Machinery selection form */
.machinerySelection {
    display: flex;
    align-items: center;
    padding: 64px 0;
    background: url("static/images/machinery/machinerySelectionBg.jpg");
    background-size: cover;
}

.machinerySelection__left {
    margin-right: 18px;
    width: calc(43% - 18px);
}

.machinerySelection__title {
    margin-bottom: 32px;
    font-size: calc(21px + 29 * (100vw / 1920)) !important;
    font-weight: 800;
    line-height: 1.32 !important;
    text-transform: uppercase;
    color: #FFFFFF;
}

.machinerySelection__title span {
    line-height: 1;
}

.machinerySelection__title_orange {
    display: block;
    font-size: calc(36px + 31 * (100vw / 1920)) !important;
}

.machinerySelection__description {
    max-width: 450px;
    font-size: calc(14px + 4 * (100vw / 1920)) !important;
    font-weight: 400;
    color: #f2f2f2;
}

.machinerySelection__form {
    width: 57%;
}

.machinerySelection__input {
    margin-top: 0;
    width: calc(33% - 10px);
}

.machinerySelection__input + .machinerySelection__input {
    margin-left: 18px;
}

.machinerySelection__radio {
    width: calc(50% - 8px);
    color: #9A9A9A;
}

.machinerySelection__radio + .machinerySelection__radio {
    margin-left: 16px;
}

.machinerySelection__textarea {
    padding: 7px;
    width: 100%;
    height: 66px;
    resize: none;
}

.machinerySelection__group {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    width: 100%;
}

.machinerySelection__label {
    display: flex;
    flex-direction: column;
    width: calc(50% - 12px);
}

.machinerySelection__label + .machinerySelection__label {
    margin-left: 24px;
}

.machinerySelection__button {
    margin-top: 48px;
    width: 100%;
}

@media (max-width: 1180px) {
    .machinerySelection {
        flex-direction: column;
        background-position: 20% 0;
    }

    .machinerySelection__left {
        margin-right: 0;
        width: 100%;
    }

    .machinerySelection__title {
        margin-bottom: 28px;
        text-align: left;
    }

    .machinerySelection__title_orange {
        text-align: left;
    }

    .machinerySelection__description {
        max-width: 100%;
        margin-bottom: 48px;
    }

    .machinerySelection__form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .machinerySelection {
        padding-top: 48px;
        padding-bottom: 32px;
        background-position: 34% 0;
    }

    .machinerySelection__title {
        margin-bottom: 20px;
    }

    .machinerySelection__description {
        margin-bottom: 32px;
    }

    .machinerySelection__input {
        width: 100%;
    }

    .machinerySelection__input + .machinerySelection__input {
        margin-top: 10px;
        margin-left: 0;
    }

    .machinerySelection__select {
        width: calc(50% - 8px);
    }

    .machinerySelection__select + .machinerySelection__select {
        margin-left: 16px;
        margin-top: 0;
    }

    .machinerySelection__radioText {
        font-size: 13px !important;
    }

    .machinerySelection__label {
        width: 100%;
    }

    .machinerySelection__label + .machinerySelection__label {
        margin-top: 24px;
        margin-left: 0;
    }
}

@media (max-width: 400px) {
    .machinerySelection__title_orange {
        font-size: calc(27px + 31 * (100vw / 1920)) !important;
    }
}

/* Shipping */
.shipping {
    position: relative;
    display: flex;
    user-select: none;
}

.shipping__title {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 2;
}

.shipping__item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50vw;
    height: 100vh;
    cursor: pointer;
    background-size: cover;
}

.shipping__item:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    transition: height .3s;
}

.shipping__item:hover:after {
    height: 100%;
    background: rgba(42, 42, 42, .7);
}

.shipping__item_left {
    background-image: url("static/images/machinery/machineryShippingLeft.jpg");
}

.shipping__item_right {
    background-image: url("static/images/machinery/machineryShippingRight.jpg");
}

.shipping__description {
    font-size: calc(25px + 20 * (100vw / 1920)) !important;
    font-weight: 800;
    color: #FFFFFF;
    z-index: 1;
}

.shipping__link {
    margin-top: 24px;
    width: 300px;
    opacity: 0;
    z-index: 1;
    transition: opacity .3s;
}

.shipping__item:hover .shipping__link {
    opacity: 1;
}

@media (max-width: 1180px) {
    .shipping__title {
        top: 24px;
    }

    .shipping__item {
        height: 45vw;
    }

    .shipping__item:after {
        height: 106px;
    }

    .shipping__item:hover:after {
       display: none;
    }

    .shipping__link {
        margin-top: 0;
    }

    .shipping__link:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 2;
    }

    .shipping__item:hover .shipping__link {
        opacity: 0;
    }

    .shipping__description {
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .shipping {
        flex-direction: column;
        margin-top: 102px;
    }

    .shipping__title {
        top: -50px;
        width: 100%;
        color: #2A2A2A !important;
    }

    .shipping__item {
        width: 100%;
        height: 60vw;
    }
}

/* Machinery review */
.machineryReview {
    margin: 120px 0;
    padding: 0 15px;
}

.machineryReview__title {
    margin-bottom: 64px;
}

/* Feedback */
.feedback {
    padding: 146px 0;
    background: url("static/images/machinery/feedbackBg.jpg");
    background-size: cover;
    background-position: 70% 0;
}

.feedback__title {
    margin-bottom: 32px;
    font-size: calc(32px + 38 * (100vw / 1920)) !important;
    font-weight: 800;
    text-transform: uppercase;
}

.feedback__title span {
    line-height: 1;
}

.feedback__title_orange {
    display: block;
    font-size: calc(45px + 75 * (100vw / 1920)) !important;
}

.feedback__description {
    margin-bottom: 64px;
    max-width: 540px;
    font-size: calc(16px + 9 * (100vw / 1920)) !important;
    font-weight: 500;
    color: #f2f2f2;
}

.feedback__buttonGroup {
    display: flex;
}

.feedback__link {
    width: 300px;
}

.feedback__link + .feedback__link {
    margin-left: 20px;
}

.feedback__link_phone {
    width: 150px;
}

.feedback__icon {
    margin-right: 10px;
    width: 22px;
    height: 22px;
}

@media (max-width: 1180px) {
    .feedback {
        padding: 96px 0;
    }
}

@media (max-width: 768px) {
    .feedback {
        background-position: 62% 0;
    }
}

@media (max-width: 470px) {
    .feedback__title_orange {
        font-size: calc(45px * 0.6 + 75 * (100vw / 1920)) !important;
    }
}

@media (max-width: 460px) {
    .feedback__buttonGroup {
        flex-direction: column;
    }

    .feedback__link {
        width: 100%;
    }

    .feedback__link + .feedback__link {
        margin-top: 20px;
        margin-left: 0;
    }
}

/* Subscribe */
.subscribe {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 76px;
    padding-bottom: 38px;
    background: url("static/images/machinery/subscribeBg.jpg");
    background-size: cover;
}

.subscribe__title {
    font-weight: 800;
    font-size: calc(21px + 24 * (100vw / 1920)) !important;
}

.subscribe__title span {
    line-height: 1;
}

.subscribe__title_orange {
    display: block;
    font-weight: 900;
    font-size: calc(27px + 20 * (100vw / 1920)) !important;
}

@media (max-width: 1180px) {
    .subscribe {
        padding-top: 32px;
        padding-bottom: 47px;
        background-position: 30% 0;
    }

    .subscribe__title {
        max-width: 462px;
    }
}

@media (max-width: 768px) {
    .subscribe {
        flex-direction: column;
        padding-top: 58px;
        padding-bottom: 63px;
        background: url("static/images/machinery/subscribeBgMobile.jpg");
        background-size: cover;
    }

    .subscribe__title {
        margin-bottom: 88px;
        line-height: 1.32 !important;
        text-align: center;
    }
}

@media (max-width: 350px) {
    .subscribe__title_orange {
        font-size: calc(27px * 0.9 + 20 * (100vw / 1920)) !important;
    }
}