body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif!important;
    font-size: 18px;
    margin: 0;
    color: #000000!important;
}

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

:root {
    --accent-color: #FF6801;
    --secondary-color: #435969;
    --bg-light: #E5EBF4;
}

button {
    border: none;
}

button a {
    color: inherit;
}


button a:hover {
    color: inherit!important;
}

a {
    color: inherit;
    text-decoration: unset!important;
}

a:hover {
    color: var(--accent-color)!important;
}

p {
    margin-bottom: 0;
}

.ul--two-col {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

img {
    width: 100%;
}


/***** SWIPER *****/

.swiper {
    width: 100%;
}

.swiper-slide > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
}

.swiper-button-next, .swiper-button-prev {
    color: var(--secondary-color)!important;
}



.swiper-scrollbar {
    background-color: #fff;
}

.swiper-scrollbar-drag {
    background-color: var(--secondary-color);
}

/***** /SWIPER *****/

.input {
    padding: 10px 25px;
    border: none;
    background-color: #202830;
    color: #fff;
    width: 100%;
}

.input::placeholder {
    font-size: 14px;
    letter-spacing: 1px;
    color: #fff;
}

.textarea {
    padding: 10px 25px;
    border: none;
    background-color: #202830;
    color: #fff;
    width: 100%;
    resize: none;
}

.textarea::placeholder {
    font-size: 14px;
    letter-spacing: 1px;
    color: #fff;
}

.button {
    color: #000;
    background-color: transparent;
    font-family: 'Montserrat';
    font-weight: 600;
    border-radius: 2px;
    border: 3px solid var(--accent-color);
    padding: 10px 35px;
    font-size: 14px;
    transition: all .2s ease;
}

.button:hover {
    background-color: var(--accent-color);
}

.button--big {
    background-color: var(--accent-color);
    font-weight: 800;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    padding: 20px 35px;
}

.button--fill {
    font-weight: 800;
    background-color: var(--accent-color);
} 

.button--shine {
    border: none;
    box-shadow: 0px 0px 17px var(--accent-color);
}

.button--shine:hover {
    background: var(--accent-color);
    box-shadow: 0px 0px 17px var(--accent-color);
}

.btn-close:hover {
    color: #fff;
}

.select {
    appearance: none;
    border: 3px solid var(--accent-color);
    border-radius: 2px;
    background-color: transparent;
    background-image: url('./assets/icons/select-arrow.svg');
    font-size: 18px;
    line-height: 147.9%;
    color: #435969;
    padding-left: 25px;
}

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

.select option {
    padding: 10px 25px;
}

.telephone {
    padding-left: 30px;
    font-weight: 600;
    font-size: 17.3576px;
    line-height: 24px;
    color: var(--secondary-color);
    background-image: url('./assets/icons/telephone.svg');
    background-position: left;
    background-repeat: no-repeat;
}

.color-secondary {
    color: var(--secondary-color);
}

.color-white {
    color: #fff;
}

.my-container {
    width: 100%;
    max-width: 1160px;
    padding: 0 30px;
    margin: 0 auto;
}

@media screen and (max-width: 600px) {
    .my-container {
        padding: 0 15px;
    }
}

.main-title {
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 60px;
    line-height: 1;
}


.block-suptitle {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
}

.block-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 59px;
}

@media screen and (max-width: 760px) {
    .block-title {
        font-size: 31px;
        line-height: 38px;
    }
}

.text {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 147.9%;
}

@media screen and (max-width: 470px) {
    .main-title {
        font-size: 30px;
        line-height: 37px;
    }
}

.skew-block-wrapper {
    position: relative;
    overflow: hidden;
}

.skew-block {
    position: absolute;
    top: 0;
    left: -50%;
    bottom: 0;
    z-index: 900;
    width: 100%;
    background-color: #fff;
    -moz-transform: skew(-20deg, 0deg);
    -webkit-transform: skew(-20deg, 0deg);
    -o-transform: skew(-20deg, 0deg);
    -ms-transform: skew(-20deg, 0deg);
    transform: skew(-20deg, 0deg);
}

@media (max-width: 1250px) {
    .skew-block {
        left: -40%;
    }
}

@media (max-width: 500px) {
    .skew-block {
        left: -30%;
    }
}

.header.navbar-dark{
    padding: 30px 0;
    background-color: #fff!important;
    display: flex;
}

.header--underline {
    -webkit-box-shadow: 0px 20px 0px 0px var(--accent-color);
    -moz-box-shadow: 0px 20px 0px 0px var(--accent-color);
    box-shadow: 0px 20px 0px 0px var(--accent-color);
}

@media (max-width: 500px) {
    .header.navbar-dark{
        box-shadow: none;
        position: relative;
        z-index: 1000;
    }
}

.header__left-side {
    position: absolute;
    top: -15px;
    left: 25px;
    z-index: 1001;
}

.header__right-side {
    position: relative;
    z-index: 1001;
}

@media (max-width: 992px) {
    .header__left-side {
        position: initial;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .header__right-side {
        display: none!important;
    }
}

.header__nav {
    display: flex;
    align-items: center;
    margin: 0;
}

.header__logo {
    max-width: 137px;
}

.header.navbar-dark .navbar-nav .nav-link{
    color: #000;
    font-size: 18px;
}

.header .nav-item:not(:last-child) {
    margin-right: 90px;
}

.header .navbar-toggler {
    box-shadow: none;
    border: none;
}

.header__container {
    position: relative;
    width: 100%;
}

.header__telephone {
    margin-right: 30px;
}

.header .navbar-collapse {
    flex-grow: 0;
}

@media (max-width: 992px) {
    .header .navbar-collapse {
        position: absolute;
        right: 30px;
        top: 55px;
        width: 181px;
        background-color: #fff;
        padding: 12px 18px;
        border-radius: 2px;
        border: 3px solid var(--accent-color);
    }
    .header.navbar-dark .navbar-nav .nav-link {
        color: var(--secondary-color);
    }
    .header .navbar-collapse .nav-item {
        margin-right: 0;
    }
}


.header__burger-btn {
    background-image: url('./assets/icons/burger-icon.svg')!important;
}

.hero {
    padding-top: 150px;
    height: 700px;
    background-size: cover;
    background-position: center;
}

@media (max-width: 900px) {
    .hero {
        padding-top: 70px;
        height: 600px;
    }
}

@media (max-width: 680px) {
    .hero {
        padding-top: 25px;
        height: 400px;
    }
}

@media (max-width: 500px) {
    .hero {
        padding-top: 25px;
        height: 271px;
    }
}

.hero .my-container{
    height: 100%;
}

.hero__content {
    max-width: 510px;
}

@media (max-width: 680px) {
    .hero__content {
        max-width: 350px;
    }
}

.hero__tractor {
    width: 800px;
    position: absolute;
    bottom: -20px;
    right: 0;
    z-index: 950;
}

@media (max-width: 1250px) {
    .hero__tractor {
        width: 720px;
    }
}

@media (max-width: 900px) {
    .hero__tractor {
        width: 600px;
    }
}

@media (max-width: 680px) {
    .hero__tractor {
        width: 400px;
    }
}

@media (max-width: 500px) {
    .hero__tractor {
        right: 10px;
        width: 235px;
    }
}

.hero__title {
    max-width: 700px;
    color: var(--secondary-color);
} 

@media (max-width: 680px) {
    .hero__title {
        font-size: 36px;
        line-height: 1;
    }
}


.hero__content {
    position: relative;
    z-index: 950;  
}

.hero__description {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 15px;
    color: var(--secondary-color);
    margin-top: 20px;
}

@media (max-width: 500px) {
    .hero__description {
        font-size: 10px;
        line-height: 13px;
        max-width: 213px;
    }
}

.hero__button {
    margin-top: 30px;
}

@media (max-width: 680px) {
    .to-services-btn {
        display: block!important;
    }
    .hero__button {
        display: none;
    } 
}

.main-content {
    padding-top: 60px;
}

.main-content__item:not(:last-child) {
    margin-bottom: 60px;
}

.benefits {
    margin-top: 45px;
    width: 96%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.benefits-item {
    position: relative;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-align: center;
    flex-grow: 1;
}

.benefits-item::after {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 1px;
    background: linear-gradient(180deg, #FF6801 0%, #D16216 100%);
    -webkit-transform: skew(-25deg, 0deg) translateX(14px);
    -o-transform: skew(-25deg, 0deg) translateX(14px);
    -ms-transform: skew(-25deg, 0deg) translateX(14px);
    transform: skew(-25deg, 0deg) translateX(14px);
}


.benefits-title {
    position: relative;
    z-index: 100;
    font-size: 20px;
    line-height: .8;
    font-weight: 600;
    font-size: 36.8831px;
    margin-bottom: 5px!important;
    transform: translateX(8px);
}

.benefits-text {
    position: relative;
    z-index: 100;
    margin-bottom: 0!important;
    transform: translateX(8px);
    font-size: 15px;
}

@media (max-width: 650px) {
    .benefits {
        width: 90%;
    }
    .benefits-title {
        font-size: 28px;
    }
    .benefits-text {
        font-size: 13px;
    }
}

@media (max-width: 580px) {
    .benefits-title {
        font-size: 26px;
        transform: translateX(10px);
    }
    .benefits-text {
        transform: translateX(10px);
        font-size: 11px;
    }
}

@media (max-width: 470px) {
    .benefits-title {
        font-size: 24px;
    }
    .benefits-text {
        font-size: 9px;
    }
}

.about-company__suptitle {
    margin-bottom: 15px;
}

.about-company__title {
    margin-bottom: 30px;
}

.about-company__text {
    margin-bottom: 0;
}

.why-us__row > * {
    padding: 0 7.5px;
}

.why-us__items {
    margin-top: 60px;
}

.why-us__item {
    border: 0.971223px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0px 0px 24.2806px 2.91367px rgba(0, 0, 0, 0.06);
    text-align: center;
    font-family: 'Montserrat';
    margin-bottom: 15px;
    min-height: 125px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
}

.why-us__item h5{
    font-weight: 600;
    font-size: 13px;
    line-height: 130%;
}

.why-us__item p {
    font-size: 10px;
    line-height: 145%;
}

.services {
    margin-top: 50px;
    background-color: var(--bg-light);
    padding: 35px 0;
}

.services .nav-tabs{
    justify-content: center;
    border: none;
}

.services .nav-link.active {
    background-color: transparent!important;
}

.services .nav-link::before {
    display: block;
    content: '';
    width: 186px;
    height: 3px;
    background-color: #578FC0;
    margin-bottom: 10px;
    opacity: 0;
}
.services .nav-link.active::before {
    opacity: 1;
}


.services .nav-link {
    font-weight: 600;
    font-size: 18px;
    color: var(--secondary-color);
    border: none;
}

.services .nav-link:hover {
    color: var(--accent-color);
}

.services .swiper-slide {
    cursor: pointer;
    position: relative;
}

.services__slide-img {
    margin-bottom: 30px;
    height: 227px!important;
}

.services__slide-overlay {
    position: absolute;
    top: 0%;
    left: 0;
    bottom: 30px;
    right: 0;
    background: rgba(0, 0, 0, 0.56);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    opacity: 0;
    transition: opacity .2s ease;
}

.services .swiper-slide:hover .services__slide-overlay {
    opacity: 1;
}

.leave-request {
    background-size: cover;
    padding: 100px 15px;
}

@media (max-width: 500px) {
    .leave-request {
        padding: 45px 15px;
    }
}

.leave-request h2 {
    max-width: 735px;
}

.contacts {
    background-color: var(--secondary-color);
    background-repeat: no-repeat;
    padding: 40px 0;
}

.contacts .block-title {
    font-size: 36px;
}

.contacts__info {
    color: var(--secondary-color);
    flex-grow: 1;
    padding: 35px;
    background-color: var(--bg-light);
}

.contacts__info-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
}

.contacts__info-item {
    padding-left: 25px;
}

.contacts__info-item:not(:last-child) {
    margin-bottom: 10px;
}

.contacts__info-item-office, .contacts__info-item-tel, .contacts__info-item-email {
    background-position: left 6px;
    background-repeat: no-repeat;
}

.contacts__info-item-office {
    background-image: url('./assets/icons/location.svg');
}

.contacts__info-item-tel {
    background-image: url('./assets/icons/telephone-secondary.svg');
}

.contacts__info-item-email {
    background-image: url('./assets/icons/mail.svg');
}

.client-reviews {
    padding: 75px 0;
}

.client-reviews__title {
    font-size: 50px;
}

.client-reviews__swiper-scrollbar {
    display: none;
}

@media (max-width: 750px) {
    .client-reviews__swiper-scrollbar {
        display: block;
    }
}

.client-reviews .swiper-wrapper {
    align-items: center;
}

.review-card {
    padding: 30px;
    font-size: 14px;
    line-height: 19px;
    color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border: 0.971223px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0px 0px 24.2806px 2.91367px rgba(0, 0, 0, 0.06);
}

.review-card__text {
    margin-bottom: 75px;
    font-style: italic;
    font-size: 14px;
    line-height: 1.7;
}

.review-card__author {
    display: flex;
    margin-top: auto;
}

.review-card__author-img {
    border-radius: 50%;
    width: 58px;
    height: 58px;
    object-fit: cover;
    margin-right: 10px;
}

.review-card__author-inf h5, .review-card__author-inf h6 {
    font-size: 14px;
}

.footer {
    position: relative;
    padding-top: 25px;
    padding-bottom: 20px;
    background-color: var(--secondary-color);
    color: #fff;
    overflow: hidden;
}

.footer * {
    position: relative;
    z-index: 100;
}

.footer::before {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 57%;
    bottom: 0;
    width: 100%;
    background-color: #596974;
    -moz-transform: skew(-20deg, 0deg);
    -webkit-transform: skew(-20deg, 0deg);
    -o-transform: skew(-20deg, 0deg);
    -ms-transform: skew(-20deg, 0deg);
    transform: skew(-20deg, 0deg);
}

.footer__logo {
    width: 188px;
}

.footer__list {
    color: #fff;
    padding: 0;
}

.footer__list li {
    list-style: none;
}

.footer__list li:not(:last-child) {
    margin-bottom: 13px;
}

.footer__list li a {
    color: #fff;
}

.footer__contacts li {
    padding-left: 30px;
    font-size: 16px;
    line-height: 22px;
    background-position: left 6px;
    background-repeat: no-repeat;
}


.footer__contacts li strong {
    font-size: 18px;
    margin-bottom: 5px;
}

.footer__contacts-location {
    background-image: url('./assets/icons/location-light.svg');
}

.footer__contacts-phone {
    background-image: url('./assets/icons/telephone-light.svg');
}

.footer__contacts-email {
    background-image: url('./assets/icons/mail-light.svg');
}

.footer__order-btn {
    color: #fff;
    width: 100%;
    text-transform: uppercase;
    max-width: 250px;
    margin-top: 10px;
}

.footer__list-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer__list--cities {
    column-gap: 45px;
}

.footer__cities-col {
    padding: 0!important;
}

@media (max-width: 992px) {
    .footer__list--contacts {
        columns: 2;
        text-align: center;
    }
    
}

.contacts-modal__body {
    padding: 50px 230px!important;
    border-radius: 0!important;
}

@media screen and (max-width: 1200px) {
    .contacts-modal__body {
        padding: 40px 100px!important;
    }    
}

@media screen and (max-width: 990px) {
    .contacts-modal__body {
        padding: 40px 50px!important;
    }    
}

@media screen and (max-width: 450px) {
    .contacts-modal__body {
        padding: 20px 15px!important;
    }    
}

@media screen and (min-width: 990px) {
    .contacts-modal .block-suptitle--line::before {
        display: none;
    }
}


.modal__title {
    font-size: 33px;
}

.modal__text {
    font-size: 13px;
    line-height: 24px;
}

.modal__submit-btn {
    width: 100%;
    max-width: 255px;
}

.order-modal {
    z-index: 1070;
}

.order-modal .modal-body {
    padding-bottom: 0;
}

.order-modal .modal-header {
    border-bottom: none;
}

.order-modal .modal-content {
    color: #fff;
    background-color: var(--secondary-color) ;
    border-radius: 0;
    padding: 30px 60px 0;
}

.order-modal .contacts__text {
    margin-bottom: 45px;
}

.modal-close-btn {
    background: none;
    width: auto;
    height: auto;
    padding: 10px 20px;
    line-height: 1;
    opacity: 1;
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 1000;
}

.modal-close-btn:hover {
    opacity: 1;
}

.order-modal__input {
    border: 2px solid #fff;
    background: transparent;
    border-radius: 2px;
}

.order-modal__submit-btn {
    margin-left: auto!important;
    margin-right: auto!important;
    display: block!important;
}

@media (max-width: 576px) {
    .order-modal .modal-body {
        padding: 0;
    }
    .order-modal .modal-content {
        padding: 75px 15px 30px 15px;
    }    
}

.service-modal .modal-content {
    padding: 75px 60px ;
}

@media (max-width: 760px) {
    .service-modal .modal-content {
        padding: 75px 30px;
    }    
}

@media (max-width: 576px) {
    .service-modal .modal-body {
        padding-left: 0;
        padding-right: 0;
    }
    .service-modal .modal-content {
        padding: 75px 0 35px 0;
    }    
    .service-modal__inf {
        padding: 0 30px;
    }
}

.service-modal__img {
    height: 100%;
    object-fit: cover;
}

.request {
    position: relative;
    margin-top: 40px;
    margin-bottom: 50px;
    padding-bottom: 150px;
    background-position: right bottom;
    background-repeat: no-repeat;
}

.request__content {
    max-width: 600px;
}

.request__text {
    font-size: 18px;
    line-height: 1.2;
}

.request__tractor-img {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 580px;
    z-index: -1;
}

@media (max-width: 1024px) {
    .request__tractor-img  {
        max-width: 500px;
    }
}


@media (max-width: 900px) {
    .request {
        padding-bottom: 0;
    }
    .request__content {
        max-width: initial;
    }
    .request__tractor-img  {
        margin-top: 25px;
        position: initial;
        max-width: initial;
    }
    .request__back-btn {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .request {
        position: relative;
        margin-top: 0;
        margin-bottom: 64px;
    }
}