html, body {
    scroll-behavior: smooth;
}

body {
    background: url("../images/ec_bg.png") center top no-repeat, #05040e;
    color: #fff;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 6px;
    background-color: #05040e;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: #15cf00;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
}
::-webkit-scrollbar-track {
    background-color: #05040e;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    width: 4px;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:focus {
    outline: 0;
}

a {
    color: #fff;
    text-decoration: none !important;
    transition: all .3s ease;
}

.ec-container {
    max-width: 1500px;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
}

#ec-header {
    display: block;
    width: 100%;
    margin: 0 0 846px;
    position: relative;
}

#ec-header .ec-header_contact {
    display: flex;
    justify-content: flex-end;
    align-items: center;

    padding: 0;
    margin: 0;
}

#ec-header .ec-header_contact .ec-header_contact-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 76px;
    padding: 0 35px;
    position: relative;
    z-index: 1;
}

#ec-header .ec-header_contact .ec-header_contact-item.ec-header_contact-item_phone {
    padding: 0 45px;
}

#ec-header .ec-header_contact .ec-header_contact-item:not(:last-child) {
    margin-right: 25px;
}

#ec-header .ec-header_contact .ec-header_contact-item:before {
    content: '';

    display: block;

    width: 319px;
    height: 76px;

    background: url("../images/ec_header_contact_mail.png") center no-repeat;

    position: absolute;
    left: 50%;
    top: 0;

    pointer-events: none;
    transform: translate(-50%,0);
    z-index: -1;
}

#ec-header .ec-header_contact .ec-header_contact-item.ec-header_contact-item_phone:before {
    content: '';

    display: block;

    width: 310px;
    height: 76px;

    background: url("../images/ec_header_contact_phone.png") center no-repeat;

    position: absolute;
    left: 50%;
    top: 0;

    pointer-events: none;
    transform: translate(-50%,0);
    z-index: -1;
}

#ec-header .ec-header_contact .ec-header_contact-item.ec-header_contact-item_mail span {
    color: #0025ff;
    font-size: 18px;
    font-weight: 700;
}

#ec-header .ec-header_contact .ec-header_contact-item.ec-header_contact-item_phone span {
    color: #fff;
    font-family: 'Audiowide', sans-serif;
    font-size: 18px;
}

#ec-header .ec-header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 57px 0;
    margin: 0;
}

#ec-header .ec-header_content .ec-header_logo {
    min-width: 337px;
    max-width: 337px;
}

#ec-header .ec-header_content .ec-header_logo img {
    width: 100% ;
    max-height: 102px;
    transition: all .3s ease;
}

#ec-header .ec-header_content .ec-header_logo:hover img {
    animation: logo 1s ease 0s 1 normal forwards;
}

#ec-header .ec-header_content .ec-header_menu {
    position: relative;
    width: 100%;
}

#ec-header .ec-header_content .ec-header_menu .ec-header_menu-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;

    gap: 67px;

    padding: 0 0 0 30px;
    margin: 0;
}

#ec-header .ec-header_content .ec-header_menu .ec-header_menu-list .ec-header_menu-list_item {
    display: block;
}

#ec-header .ec-header_content .ec-header_menu .ec-header_menu-list .ec-header_menu-list_item a {
    color: #a0aecf;
    font-family: 'Audiowide', sans-serif;
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    position: relative;
    transition: all .3s ease;
}

#ec-header .ec-header_content .ec-header_menu .ec-header_menu-list .ec-header_menu-list_item a:hover,
#ec-header .ec-header_content .ec-header_menu .ec-header_menu-list .ec-header_menu-list_item a.active {
    color: #fff;
}

#ec-header .ec-header_content .ec-header_menu .ec-header_menu-list .ec-header_menu-list_item a:before {
    content: '///';

    font-family: 'Audiowide', sans-serif;
    font-size: 18px;

    background: rgb(0,37,255);
    background: -moz-linear-gradient(0deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    background: linear-gradient(0deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0025ff",endColorstr="#007eff",GradientType=1);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    position: absolute;
    left: -40px;
    bottom: 0;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .3s ease;
    z-index: -1;
}

#ec-header .ec-header_content .ec-header_menu .ec-header_menu-list .ec-header_menu-list_item a:hover:before,
#ec-header .ec-header_content .ec-header_menu .ec-header_menu-list .ec-header_menu-list_item a.active:before {
    opacity: 1;
    visibility: visible;
}

#ec-hero .ec-hero_content {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#ec-hero .ec-hero_content .ec-hero_contact {
    display: flex;
    justify-content: center;
    align-items: center;

    margin: 0;
    padding: 0;

    position: relative;
}

#ec-hero .ec-hero_content .ec-hero_contact .ec-hero_contact-box {
    display: flex;
    justify-content: space-between;
    align-items: center;

    height: 76px;
    min-width: 450px;

    padding: 0 40px;
    margin: 0;

    position: relative;
}

#ec-hero .ec-hero_content .ec-hero_contact .ec-hero_contact-box:before {
    content: '';
    display: block;

    width: 546px;
    height: 75px;

    background: url("../images/ec_hero_contact.png") center no-repeat;

    position: absolute;
    left: 50%;
    top: 0;

    transform: translate(-50%, 0);
    pointer-events: none;
    z-index: -1;
}

#ec-hero .ec-hero_content .ec-hero_contact .ec-hero_contact-box .ec-hero_contact-text {
    font-size: 16px;
    text-transform: uppercase;
}

#ec-hero .ec-hero_content .ec-hero_contact .ec-hero_contact-box .ec-hero_contact-number {
    font-size: 18px;
    font-family: 'Audiowide', sans-serif;
    text-transform: uppercase;
}

#ec-hero .ec-hero_content .ec-hero_banner {
    display: flex;
    justify-content: center;
    align-items: center;

    background: #fff;

    padding: 70px;
    margin: 0;

    transform: skewX(-32deg);
    position: relative;
}

#ec-hero .ec-hero_content .ec-hero_banner:before,
#ec-hero .ec-hero_content .ec-hero_banner:after {
    content: '';
    display: block;

    width: 23px;
    height: calc( 50% + 2px );

    background: rgb(0,37,255);
    background: -moz-linear-gradient(0deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    background: linear-gradient(0deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0025ff",endColorstr="#007eff",GradientType=1);

    position: absolute;
    left: -43px;
    top: 50%;

    pointer-events: none;
    transform: translate(0, -50%);
}

#ec-hero .ec-hero_content .ec-hero_banner:after {
    right: -43px;
    left: unset;
}

#ec-hero .ec-hero_content .ec-hero_banner .ec-hero_banner-title {
    color: #000000;
    font-size: 54px;
    font-weight: 700;
    margin: 0;
    transform: skewX(32deg);
}

#ec-hero .ec-hero_content .ec-hero_banner .ec-hero_banner-title span:nth-child(1) {
    font-family: 'Audiowide', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

#ec-hero .ec-hero_content .ec-hero_banner .ec-hero_banner-title span:nth-child(2) {
    color: #0025ff;
}

#ec-about {
    display: block;
    width: 100%;
    margin: 0;
    position: relative;
}

#ec-about:before {
    content: '';
    display: block;

    width: 100%;
    height: 1184px;

    background: url("../images/ec_about_before.png") center top no-repeat;

    position: absolute;
    left: 50%;
    top: -179px;

    transform: translate(-50%, 0);
    pointer-events: none;
    z-index: -1;
}

#ec-about:after {
    content: '';
    display: block;

    width: 100%;
    height: 822px;

    background: url("../images/ec_about_bg.png") center top no-repeat;

    position: absolute;
    left: 50%;
    top: calc( 100% - 293px );

    transform: translate(-50%, 0);
    pointer-events: none;
    z-index: -2;
}

#ec-about .ec-about_content {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 125px 0;
    margin: 0;
}

#ec-about .ec-about_content .ec-about_content-item {
    display: flex;
    justify-content: center;
    flex-direction: column;

    min-width: 27%;
    max-width: 27%;
}

#ec-about .ec-about_content .ec-about_content-item .ec-about_content-item_icon {
    display: block;
    width: 100%;
    height: 125px;
    position: relative;
}

#ec-about .ec-about_content .ec-about_content-item .ec-about_content-item_icon:before {
    content: '';
    display: block;
    width: 89px;
    height: 89px;

    background: rgb(0,37,255);
    background: -moz-linear-gradient(135deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    background: -webkit-linear-gradient(135deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    background: linear-gradient(135deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0025ff",endColorstr="#007eff",GradientType=1);

    background-size: 150%;

    position: absolute;
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 1;
}

#ec-about .ec-about_content .ec-about_content-item .ec-about_content-item_icon:after {
    content: '';
    display: block;

    width: 41px;
    height: 27px;

    background: url("../images/ec_about_icon_car.png") center no-repeat;

    position: absolute;
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);
    z-index: 1;
}

#ec-about .ec-about_content .ec-about_content-item:nth-child(2) .ec-about_content-item_icon:after {
    width: 18px;
    height: 26px;
    background: url("../images/ec_about_icon_dollar.png") center no-repeat;
}

#ec-about .ec-about_content .ec-about_content-item:nth-child(2) .ec-about_content-item_icon:before {
    box-shadow: 0 0 48px rgba(0,126,255,0.5);
}

#ec-about .ec-about_content .ec-about_content-item:nth-child(3) .ec-about_content-item_icon:after {
    width: 24px;
    height: 31px;
    background: url("../images/ec_about_icon_map.png") center no-repeat;
}

#ec-about .ec-about_content .ec-about_content-item .ec-about_content-item_info .ec-about_content-item_subtitle {
    color: #fff;
    font-family: 'Audiowide', sans-serif;
    font-size: 26px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    margin: 14px 0 5px 0;
}

#ec-about .ec-about_content .ec-about_content-item .ec-about_content-item_info .ec-about_content-item_title {
    color: #fff;
    font-family: 'Audiowide', sans-serif;
    font-size: 41px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 14px 0;
}

#ec-about .ec-about_content .ec-about_content-item .ec-about_content-item_info .ec-about_content-item_desc {
    margin: 0;
    color: #a0aecf;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    text-align: center;
}

#ec-cars {
    display: block;
    width: 100%;
    position: relative;
}

#ec-cars .ec-cars_title {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#ec-cars .ec-cars_title .ec-cars_arrows {
    display: flex;

    position: absolute;
    right: 0;
    top: 50%;

    transform: translate(0, -50%);
}

.ec-cars_arrows .ec-cars_arrows-prev,
.ec-cars_arrows .ec-cars_arrows-next {
    display: block;

    width: 54px;
    height: 46px;

    cursor: pointer;
    transition: all .3s ease;
}

.ec-cars_arrows .ec-cars_arrows-prev {
    background: #fff;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    margin: 23px -7px 0 0;
}

.ec-cars_arrows .ec-cars_arrows-next {
    background: #a0aecf;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.ec-cars_arrows .ec-cars_arrows-prev.swiper-button-disabled,
.ec-cars_arrows .ec-cars_arrows-next.swiper-button-disabled {
    opacity: 0.2
}

#ec-cars .ec-cars_title h2 {
    color: #fff;
    font-size: 41px;
    font-weight: 400;
    font-family: 'Audiowide', sans-serif;
    text-align: center;
    margin: 0;
    padding: 90px 0;
    position: relative;
}

#ec-cars .ec-cars_title h2:before {
    content: '///';

    font-family: 'Audiowide', sans-serif;
    font-size: 18px;

    background: rgb(0,37,255);
    background: -moz-linear-gradient(0deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    background: linear-gradient(0deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0025ff",endColorstr="#007eff",GradientType=1);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    position: absolute;
    left: -50px;
    bottom: 94px;

    pointer-events: none;
    transition: all .3s ease;
    z-index: 1;
}

#ec-cars .ec-cars_slider {
    display: block;
    width: 100%;
    height: 1105px;
    position: relative;
}

#ec-cars .ec-cars_slider-content {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

#ec-cars .ec-cars_slider-content .swiper {
    width: 100%;
    height: 100%;
}

#ec-cars .ec-cars_slider-content .swiper .swiper-wrapper {
    overflow-x: visible;
}

#ec-cars .ec-cars_content {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 0 120px 0;
}

#ec-cars .ec-cars_content .ec-cars_content-item {
    min-width: calc( 50% - 24px );
    max-width: calc( 50% - 24px );
    position: relative;
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_image {
    display: block;
    width: 100%;
    height: 524px;
    background: #0d0d18;
    clip-path: polygon(0 0, calc( 100% - 30px ) 0%, 100% 30px, 100% 100%, 30px 100%, 0% calc( 100% - 30px ));
    position: relative;
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_image img {
    object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_image .ec-cars_content-item_image-thumbs_swiper {
    width: calc( 100% - 20px );
    height: 147px;

    position: absolute;
    left: 10px;
    bottom: 10px;
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_image .ec-cars_content-item_image-thumbs_swiper .ec-cars_content-item_image-thumbs_item {
    display: block;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, calc( 100% - 10px ) 0%, 100% 10px, 100% 100%, 10px 100%, 0% calc( 100% - 10px ));
    position: relative;
    cursor: pointer;
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_image .ec-cars_content-item_image-thumbs_swiper .swiper-slide:not(.swiper-slide-thumb-active) .ec-cars_content-item_image-thumbs_item img {
    filter: grayscale(100%);
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_image .ec-cars_content-item_image-thumbs_swiper .ec-cars_content-item_image-thumbs_item:before {
    content: '';
    display: block;

    width: 70%;
    height: 5px;

    border-radius: 4px 4px 0 0;

    background: #34b300;

    box-shadow: 0 0 24px rgba(47, 129, 255, 1);

    position: absolute;
    left: 50%;
    bottom: 0;

    opacity: 0;
    visibility: hidden;

    transform: translate(-50%, 0);
    transition: all .3s ease;
    z-index: 2;
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_image .ec-cars_content-item_image-thumbs_swiper .swiper-slide-thumb-active .ec-cars_content-item_image-thumbs_item:before {
    opacity: 1;
    visibility: visible;
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_title {
    color: #fff;
    font-family: 'Audiowide', sans-serif;
    font-size: 41px;
    font-weight: 300;
    margin: 0;
    padding: 46px 0 71px;
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 36px 0 0;
    position: relative;
}

#ec-cars .ec-cars_content .ec-cars_content-item:nth-child(2) .ec-cars_content-item_info {
    padding: 0 0 0 36px;
}

#ec-cars .ec-cars_content .ec-cars_content-item:nth-child(1) .ec-cars_content-item_info:before {
    content: '';

    display: block;
    width: 1013px;
    height: 220px;

    background: url("../images/ec_car_first_before.png") center no-repeat;

    position: absolute;
    right: -107px;
    top: calc( 50% - 6px );

    transform: translate(0, -50%);
    pointer-events: none;
    z-index: -1;
}

#ec-cars .ec-cars_content .ec-cars_content-item:nth-child(2) .ec-cars_content-item_info:before {
    content: '';

    display: block;
    width: 1013px;
    height: 220px;

    background: url("../images/ec_car_second_before.png") center no-repeat;

    position: absolute;
    left: -89px;
    top: calc( 50% - 26px );

    transform: translate(0, -50%);
    pointer-events: none;
    z-index: -1;
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_info .ec-cars_content-item_info-desc,
#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_info .ec-cars_content-item_info-pricing {
    min-width: calc( 50% - 10px );
    max-width: calc( 50% - 10px );
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_info .ec-cars_content-item_info-desc {
    display: block;
    padding: 0 0 44px;
    margin: 0;
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_info .ec-cars_content-item_info-desc > li {
    display: flex;
    justify-content: space-between;
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_info .ec-cars_content-item_info-desc > li:not(:last-child) {
    margin-bottom: 20px;
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_info .ec-cars_content-item_info-desc > li > span {
    min-width: 50%;
    max-width: 50%;
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_info .ec-cars_content-item_info-desc > li > span:nth-child(1) {
    color: #a0aecf;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_info .ec-cars_content-item_info-desc > li > span:nth-child(2) {
    color: #34b300;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_info .ec-cars_content-item_info-pricing {

}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_info .ec-cars_content-item_info-pricing .ec-cars_content-item_info-pricing_desc {
    color: #a0aecf;
    font-size: 14px;
    font-weight: 400;
    text-align: right;
    margin: 0;
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_info .ec-cars_content-item_info-pricing .ec-cars_content-item_info-pricing_desc:not(:last-child) {
    margin-bottom: 24px;
}

#ec-cars .ec-cars_content .ec-cars_content-item:nth-child(2) .ec-cars_content-item_info .ec-cars_content-item_info-pricing .ec-cars_content-item_info-pricing_desc:nth-child(2) {
    padding: 0 0 0 20px;
}

#ec-cars .ec-cars_content .ec-cars_content-item:nth-child(2) .ec-cars_content-item_info .ec-cars_content-item_info-pricing .ec-cars_content-item_info-pricing_desc:nth-child(3) {
    padding: 0 0 0 20px;
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_info .ec-cars_content-item_info-pricing .ec-cars_content-item_info-pricing_price {
    display: flex;
    justify-content: center;
    align-items: center;

    background: #fff;

    height: 80px;

    padding: 0 50px;
    margin: 0;

    transform: skewX(-32deg);
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_info .ec-cars_content-item_info-pricing .ec-cars_content-item_info-pricing_price .ec-cars_content-item_info-pricing_price-text {
    color: #05040e;
    font-size: 37px;
    font-weight: 600;
    transform: skewX(32deg);
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_info .ec-cars_content-item_info-pricing .ec-cars_content-item_info-pricing_price .ec-cars_content-item_info-pricing_price-text > span {
    font-size: 16px;
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin: 15px 0 0 0;
    padding: 0 86px 0 0;

    position: relative;
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_buttons > li {
    display: block;

    min-width: calc( 50% - 10px );
    max-width: calc( 50% - 10px );
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_buttons > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    transform: skewX(-32deg);
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_buttons > li.ec-cars_content-item_buttons-more > a {
    color: #a0aecf;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    box-shadow: inset 0 0 0 2px #a0aecf;
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_buttons > li.ec-cars_content-item_buttons-more > a:hover {
    color: #05040e;
    background: #a0aecf;
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_buttons > li > a > span {
    transform: skewX(32deg);
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_buttons > li.ec-cars_content-item_buttons-reservation > a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    background: rgb(0,37,255);
    background: -moz-linear-gradient(0deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    background: linear-gradient(0deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0025ff",endColorstr="#007eff",GradientType=1);
}

#ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_buttons > li.ec-cars_content-item_buttons-reservation > a:hover {
    box-shadow: 0 0 48px rgba(0,126,255,0.5);
}

#ec-cars .ec-cars_content .ec-cars_content-item:nth-child(2) .ec-cars_content-item_buttons {
    padding: 0 0 0 86px;
}

#ec-cars .ec-cars_content .ec-cars_content-item:nth-child(2) .ec-cars_content-item_info .ec-cars_content-item_info-desc,
#ec-cars .ec-cars_content .ec-cars_content-item:nth-child(2) .ec-cars_content-item_info .ec-cars_content-item_info-desc > li > span:nth-child(1),
#ec-cars .ec-cars_content .ec-cars_content-item:nth-child(2) .ec-cars_content-item_buttons > li.ec-cars_content-item_buttons-more {
    order: 2;
}

#ec-cars .ec-cars_content .ec-cars_content-item:nth-child(2) .ec-cars_content-item_info .ec-cars_content-item_info-pricing .ec-cars_content-item_info-pricing_price,
#ec-cars .ec-cars_content .ec-cars_content-item:nth-child(2) .ec-cars_content-item_buttons > li > a {
    transform: skewX(32deg);
}

#ec-cars .ec-cars_content .ec-cars_content-item:nth-child(2) .ec-cars_content-item_info .ec-cars_content-item_info-pricing .ec-cars_content-item_info-pricing_price .ec-cars_content-item_info-pricing_price-text,
#ec-cars .ec-cars_content .ec-cars_content-item:nth-child(2) .ec-cars_content-item_buttons > li > a > span {
    transform: skewX(-32deg);
}

#ec-cars .ec-cars_content .ec-cars_content-item:nth-child(2) .ec-cars_content-item_title,
#ec-cars .ec-cars_content .ec-cars_content-item:nth-child(2) .ec-cars_content-item_info .ec-cars_content-item_info-desc > li > span {
    text-align: right;
}

#ec-cars .ec-cars_content .ec-cars_content-item:nth-child(2) .ec-cars_content-item_info .ec-cars_content-item_info-pricing .ec-cars_content-item_info-pricing_desc {
    text-align: left;
}

#ec-occasion {
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
}

#ec-occasion .ec-occasion_title {
    color: #fff;
    font-size: 39px;
    font-weight: 700;
    text-align: center;
    padding: 40px 0;
    margin: 0;
    position: relative;
}

#ec-occasion .ec-occasion_title:before {
    content: '';
    display: block;

    width: 1895px;
    height: 128px;

    background: url("../images/ec_occasion_title.png") center no-repeat;

    position: absolute;
    left: 0;
    top: 50%;

    pointer-events: none;
    transform: translate(0, -50%);
    z-index: -1;
}

#ec-occasion .ec-occasion_title span:nth-child(1) {
    font-family: 'Audiowide', sans-serif;
    font-weight: 300;
}

#ec-occasion .ec-occasion_title span:nth-child(2) {
    color: #34b300;
}

#ec-occasion .ec-occasion_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#ec-occasion .ec-occasion_content .ec-occasion_content-item {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;

    min-width: calc( 100% / 3 );
    max-width: calc( 100% / 3 );

    height: 624px;

    transform: skewX(-32deg);
    position: relative;
}

#ec-occasion .ec-occasion_content .ec-occasion_content-item .ec-occasion_content-item_image {
    display: block;

    width: 100%;
    height: 100%;

    position: absolute;
    left: 0;
    top: 0;

    overflow: hidden;
}

#ec-occasion .ec-occasion_content .ec-occasion_content-item .ec-occasion_content-item_image img {
    object-fit: cover;
    display: block;
    height: 100%;
    position: absolute;
    left: -290px;
    top: 0;
    z-index: 1;
}

#ec-occasion .ec-occasion_content .ec-occasion_content-item .ec-occasion_content-item_title {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 88px;

    background: rgb(0,37,255);
    background: -moz-linear-gradient(0deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    background: linear-gradient(0deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0025ff",endColorstr="#007eff",GradientType=1);

    padding: 0 40px;
    margin: 0;
}

#ec-occasion .ec-occasion_content .ec-occasion_content-item .ec-occasion_content-item_title span {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    transform: skewX(32deg);
}

#ec-occasion .ec-occasion_content .ec-occasion_content-item .ec-occasion_content-item_image img {
    object-fit: cover;

    display: block;

    height: 100%;

    position: absolute;
    left: -200px;
    top: 0;

    transform: skewX(32deg);
    z-index: -1;
}

#ec-pluses {
    display: block;
    width: 100%;
    margin: 0;
    position: relative;
}

#ec-pluses:after {
    content: '';
    display: block;

    width: 100%;
    height: 625px;

    background: url("../images/ec_pluses_after.png") center top no-repeat;

    position: absolute;
    left: 50%;
    bottom: 0;

    transform: translate(-50%, 0);
    pointer-events: none;
    z-index: -1;
}

#ec-pluses .ec-pluses_content {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 125px 0;
    margin: 0;
}

#ec-pluses .ec-pluses_content .ec-pluses_content-item {
    display: flex;
    justify-content: center;
    flex-direction: column;

    min-width: 27%;
    max-width: 27%;
}

#ec-pluses .ec-pluses_content .ec-pluses_content-item .ec-pluses_content-item_icon {
    display: block;
    width: 100%;
    height: 125px;
    position: relative;
}

#ec-pluses .ec-pluses_content .ec-pluses_content-item .ec-pluses_content-item_icon:before {
    content: '';
    display: block;
    width: 89px;
    height: 89px;

    background: rgb(0,37,255);
    background: -moz-linear-gradient(135deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    background: -webkit-linear-gradient(135deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    background: linear-gradient(135deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0025ff",endColorstr="#007eff",GradientType=1);

    background-size: 150%;

    position: absolute;
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 1;
}

#ec-pluses .ec-pluses_content .ec-pluses_content-item .ec-pluses_content-item_icon:after {
    content: '';
    display: block;

    width: 41px;
    height: 27px;

    background: url("../images/ec_about_icon_car.png") center no-repeat;

    position: absolute;
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);
    z-index: 1;
}

#ec-pluses .ec-pluses_content .ec-pluses_content-item:nth-child(2) .ec-pluses_content-item_icon:after {
    width: 18px;
    height: 26px;
    background: url("../images/ec_about_icon_dollar.png") center no-repeat;
}

#ec-pluses .ec-pluses_content .ec-pluses_content-item:nth-child(2) .ec-pluses_content-item_icon:before {
    box-shadow: 0 0 48px rgba(0,126,255,0.5);
}

#ec-pluses .ec-pluses_content .ec-pluses_content-item:nth-child(3) .ec-pluses_content-item_icon:after {
    width: 24px;
    height: 31px;
    background: url("../images/ec_about_icon_map.png") center no-repeat;
}

#ec-pluses .ec-pluses_content .ec-pluses_content-item .ec-pluses_content-item_info .ec-pluses_content-item_subtitle {
    color: #fff;
    font-family: 'Audiowide', sans-serif;
    font-size: 26px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    margin: 14px 0 5px 0;
}

#ec-pluses .ec-pluses_content .ec-pluses_content-item .ec-pluses_content-item_info .ec-pluses_content-item_title {
    color: #fff;
    font-family: 'Audiowide', sans-serif;
    font-size: 41px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

#ec-contact .ec-contact_title {
    display: flex;
    justify-content: center;
    align-items: center;
}

#ec-contact .ec-contact_title h2 {
    color: #fff;
    font-size: 41px;
    font-weight: 400;
    font-family: 'Audiowide', sans-serif;
    text-align: center;
    margin: 0;
    padding: 130px 0;
    position: relative;
}

#ec-contact .ec-contact_title h2:before {
    content: '///';

    font-family: 'Audiowide', sans-serif;
    font-size: 18px;

    background: rgb(0,37,255);
    background: -moz-linear-gradient(0deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    background: linear-gradient(0deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0025ff",endColorstr="#007eff",GradientType=1);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    position: absolute;
    left: -50px;
    bottom: 136px;

    pointer-events: none;
    transition: all .3s ease;
    z-index: 1;
}

#ec-contact .ec-contact_content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    padding: 0 0 130px 0;
}

#ec-contact .ec-contact_content .ec-contact_content-messages {
    margin: 0 0 20px;
}

#ec-contact .ec-contact_content .ec-contact_content-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

    max-width: 1050px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    color: #a0aecf !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

#ec-contact .ec-contact_content .ec-contact_content-form .ec-contact_content-form_input:nth-child(1),
#ec-contact .ec-contact_content .ec-contact_content-form .ec-contact_content-form_input:nth-child(2),
#ec-contact .ec-contact_content .ec-contact_content-form .ec-contact_content-form_input:nth-child(3) {
    min-width: calc( calc( 100% / 3 ) - 15px );
    max-width: calc( calc( 100% / 3 ) - 15px );
}

#ec-contact .ec-contact_content .ec-contact_content-form .ec-contact_content-form_input:nth-child(4) {
    min-width: calc( 60% - 20px );
    max-width: calc( 60% - 20px );
}

#ec-contact .ec-contact_content .ec-contact_content-form .ec-contact_content-form_input:nth-child(5) {
    min-width:  calc( calc( 100% / 3 ) - 20px );
    max-width: calc( calc( 100% / 3 ) - 20px );
}

#ec-contact .ec-contact_content .ec-contact_content-form .ec-contact_content-form_input:has(> input) {
    display: flex;
    align-items: center;

    width: 100%;
    height: 80px;

    background: #0d0d18;

    border: 0;
    box-shadow: none;

    transform: skewX(32deg);
    transition: all .3s ease;
}

#ec-contact .ec-contact_content .ec-contact_content-form .ec-contact_content-form_input > input {
    display: flex;
    align-items: center;

    width: 100%;
    height: 100%;

    background: transparent;

    color: #a0aecf !important;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Lexend', sans-serif;
    text-shadow: none;

    border: 0;
    box-shadow: none;

    padding: 0 40px;

    transform: skewX(-32deg);
    transition: all .3s ease;
}

#ec-contact .ec-contact_content .ec-contact_content-form .ec-contact_content-form_input > input:valid {
    color: #a0aecf !important;
}

#ec-contact .ec-contact_content .ec-contact_content-form .ec-contact_content-form_input > input::-webkit-input-placeholder {
    transition: all .3s ease;
}

#ec-contact .ec-contact_content .ec-contact_content-form .ec-contact_content-form_input:has(> input:hover),
#ec-contact .ec-contact_content .ec-contact_content-form .ec-contact_content-form_input:has(> input:focus) {
    color: #05040e;
    background: #ffffff;
}

#ec-contact .ec-contact_content .ec-contact_content-form .ec-contact_content-form_input:has(> input:hover) > input,
#ec-contact .ec-contact_content .ec-contact_content-form .ec-contact_content-form_input:has(> input:focus) > input {
    color: #05040e;
}

#ec-contact .ec-contact_content .ec-contact_content-form .ec-contact_content-form_input:has(> input:hover) > input::-webkit-input-placeholder,
#ec-contact .ec-contact_content .ec-contact_content-form .ec-contact_content-form_input:has(> input:focus) > input::-webkit-input-placeholder {
    color: #05040e;
}

#ec-contact .ec-contact_content .ec-contact_content-form .ec-contact_content-form_input:nth-child(4):has(> input) {
    display: flex;
    align-items: center;

    width: 100%;
    height: 80px;

    background: rgb(13,13,24);
    background: -moz-linear-gradient(90deg, rgba(13,13,24,1) 0%, rgba(13,13,24,1) 60%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(13,13,24,1) 0%, rgba(13,13,24,1) 60%, rgba(0,0,0,0) 100%);
    background: linear-gradient(90deg, rgba(13,13,24,1) 0%, rgba(13,13,24,1) 60%, rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0d0d18",endColorstr="#000000",GradientType=1);

    border: 0;
    box-shadow: none;

    margin: 20px 0 0 55px;

    transform: skewX(32deg);
    transition: all .3s ease;
    position: relative;
    z-index: 1;
}

#ec-contact .ec-contact_content .ec-contact_content-form .ec-contact_content-form_input:nth-child(4):has(> input):before {
    content: '';
    display: block;

    width: 100%;
    height: 100%;

    background: rgb(255,255,255);
    background: -moz-linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 60%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 60%, rgba(0,0,0,0) 100%);
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 60%, rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#000000",GradientType=1);

    position: absolute;
    left: 0;
    top: 0;

    opacity: 0;
    visibility: hidden;

    transition: all .3s ease;
    z-index: -1;
}

#ec-contact .ec-contact_content .ec-contact_content-form .ec-contact_content-form_input:nth-child(4):has(> input:hover):before,
#ec-contact .ec-contact_content .ec-contact_content-form .ec-contact_content-form_input:nth-child(4):has(> input:focus):before {
    opacity: 1;
    visibility: visible;
}

#ec-contact .ec-contact_content .ec-contact_content-form .ec-contact_content-form_input:nth-child(4) > input {
    display: flex;
    align-items: center;

    width: 100%;
    height: 100%;

    background: transparent;

    color: #a0aecf;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Lexend', sans-serif;

    border: 0;
    box-shadow: none;

    padding: 0 40px;

    transform: skewX(-32deg);
    transition: all .3s ease;
}

#ec-contact .ec-contact_content .ec-contact_content-form .ec-contact_content-form_input:nth-child(5):has(> button) {
    margin: 20px 0 0 0;
}

#ec-contact .ec-contact_content .ec-contact_content-form .ec-contact_content-form_input:nth-child(5):has(> button) {
    display: flex;
    align-items: center;

    width: 100%;
    height: 80px;

    transform: skewX(32deg);
}

#ec-contact .ec-contact_content .ec-contact_content-form .ec-contact_content-form_input:nth-child(5):has(> button) button {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 100%;

    background: transparent;
    border: 0;
    box-shadow: none;

    color: #fff;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;

    cursor: pointer;
    transform: skewX(-32deg);
    position: relative;
}

#ec-contact .ec-contact_content .ec-contact_content-form .ec-contact_content-form_input:nth-child(5):has(> button) button:before {
    content: '';
    display: block;

    width: 100%;
    height: 100%;

    background: rgb(0,37,255);
    background: -moz-linear-gradient(0deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    background: linear-gradient(0deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0025ff",endColorstr="#007eff",GradientType=1);

    position: absolute;
    left: 0;
    top: 0;

    transform: skewX(32deg);
    transition: all .3s ease;
    z-index: -1;
}

#ec-contact .ec-contact_content .ec-contact_content-form .ec-contact_content-form_input:nth-child(5):has(> button) button:hover:before {
    box-shadow: 0 0 48px rgba(0,126,255,0.5);
}

#ec-footer {
    display: block;
    width: 100%;
    background: #04030a;
    margin: 0;
    position: relative;
    z-index: 1;
}

#ec-footer:before {
    content: '';
    display: block;

    width: 100%;
    height: 1291px;

    background: url("../images/ec_footer_bg.png") right bottom no-repeat;

    position: absolute;
    right: 0;
    bottom: 0;

    pointer-events: none;
    z-index: -1;
}

#ec-footer .ec-footer_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    padding: 120px 0;
    margin: 0;

    position: relative;
}

#ec-footer .ec-footer_content .ec-footer_brand,
#ec-footer .ec-footer_content .ec-footer_goup {
    min-width: 20%;
    max-width: 20%;
}

#ec-footer .ec-footer_content .ec-footer_brand .ec-footer_brand-logo {
    padding: 0 0 66px 0;
}

#ec-footer .ec-footer_content .ec-footer_brand .ec-footer_brand-logo img {
    max-width: 100%;
    height: 70px;
}

#ec-footer .ec-footer_content .ec-footer_brand .ec-footer_brand-copyright {
    color: #fff;
    font-size: 16px;
    margin: 0;
}

#ec-footer .ec-footer_content .ec-footer_brand .ec-footer_brand-copyright span {
    color: #a0aecf;
    margin: 0 5px 0 0;
}

#ec-footer .ec-footer_content .ec-footer_business {
    min-width: 20%;
    max-width: 20%;
    padding: 0 20px;
}

#ec-footer .ec-footer_content .ec-footer_contact {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    min-width: 40%;
    max-width: 40%;

    padding: 0 20px;
    margin: 0;
}

#ec-footer .ec-footer_content .ec-footer_business .ec-footer_business-title {
    color: #2e7efa;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Audiowide', sans-serif;
    margin: 0;
}

#ec-footer .ec-footer_content .ec-footer_business .ec-footer_business-address {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.44;
    margin: 34px 0;
}

#ec-footer .ec-footer_content .ec-footer_business .ec-footer_business-info {
    display: block;

    padding: 0;
    margin: 0;
}

#ec-footer .ec-footer_content .ec-footer_business .ec-footer_business-info > li {
    display: flex;
    align-items: center;
}

#ec-footer .ec-footer_content .ec-footer_business .ec-footer_business-info > li:not(:last-child) {
    margin-bottom: 10px;
}

#ec-footer .ec-footer_content .ec-footer_business .ec-footer_business-info > li > span {
    min-width: 50%;
    max-width: 50%;

    color: #fff;
    font-size: 16px;
}

#ec-footer .ec-footer_content .ec-footer_business .ec-footer_business-info > li > span:nth-child(1) {
    color: #a0aecf;
}

#ec-footer .ec-footer_content .ec-footer_contact .ec-footer_contact-socials {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 24px 0;
    margin: 0;
}

#ec-footer .ec-footer_content .ec-footer_contact .ec-footer_contact-socials > li {
    display: block;
}

#ec-footer .ec-footer_content .ec-footer_contact .ec-footer_contact-socials > li:not(:last-child) {
    margin-right: 15px;
}

#ec-footer .ec-footer_content .ec-footer_contact .ec-footer_contact-socials > li > a {
    color: #fff;
    font-size: 25px;
}

#ec-footer .ec-footer_content .ec-footer_contact .ec-footer_contact-socials > li.facebook > a {
    background: rgb(0,37,255);
    background: -moz-linear-gradient(0deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    background: linear-gradient(0deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0025ff",endColorstr="#007eff",GradientType=1);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#ec-footer .ec-footer_content .ec-footer_contact .ec-footer_contact-socials > li.instagram > a {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#ec-footer .ec-footer_content .ec-footer_contact .ec-footer_contact-socials > li.whatsapp > a {
    color: rgba(0,230,118,1);
}

#ec-footer .ec-footer_content .ec-footer_contact .ec-footer_contact-phone {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 51px;

    height: 76px;

    color: #fff;
    font-size: 16px;
    text-transform: uppercase;

    padding: 0 30px;
    margin: 0;

    position: relative;
    z-index: 1;
}

#ec-footer .ec-footer_content .ec-footer_contact .ec-footer_contact-phone:before {
    content: '';
    display: block;

    width: 488px;
    height: 75px;

    background: url("../images/ec_footer_contact_phone.png") center no-repeat;

    position: absolute;
    left: 50%;
    top: 50%;

    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: -1;
}

#ec-footer .ec-footer_content .ec-footer_contact .ec-footer_contact-phone span:nth-child(2) {
    font-family: 'Audiowide', sans-serif;
}

#ec-footer .ec-footer_content .ec-footer_contact .ec-footer_contact-authors {
    color: rgba(140, 152, 181, .17);
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
    padding: 40px 0 0 0;
}

#ec-footer .ec-footer_content .ec-footer_contact .ec-footer_contact-authors > a {
    color: rgba(255, 255, 255, .17);
}

#ec-footer .ec-footer_content .ec-footer_contact .ec-footer_contact-authors > a:hover {
    color: #2e7efa;
}

#ec-footer .ec-footer_content .ec-footer_goup {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
#ec-footer .ec-footer_content .ec-footer_goup > a {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 70px;
    height: 70px;

    background: rgb(0,37,255);
    background: -moz-linear-gradient(135deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    background: -webkit-linear-gradient(135deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    background: linear-gradient(135deg, rgba(0,37,255,1) 0%, rgba(0,126,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0025ff",endColorstr="#007eff",GradientType=1);
    background-size: 150%;

    box-shadow: 0 0 48px rgba(0,126,255,0.5);

    transform: rotate(45deg);
    transition: all .3s ease;
}

#ec-footer .ec-footer_content .ec-footer_goup > a:hover {
    transform: rotate(0deg);
}

#ec-footer .ec-footer_content .ec-footer_goup > a:hover > i {
    transform: rotate(0deg)
}

#ec-footer .ec-footer_content .ec-footer_goup > a > i {
    transform: rotate(-45deg);
    transition: all .3s ease;
}

.tippy-tooltip.tooltip-theme {
    background-color: #34b300;
    color: #fff;
    font-family: 'Lexend', sans-serif;
    font-size: 12px;
}

.tippy-tooltip.tooltip-theme[data-animatefill] {
    background-color: transparent;
}

.tippy-tooltip.tooltip-theme .tippy-backdrop {
    background-color: #34b300;
}

.tippy-tooltip[data-placement^='top'] .tippy-arrow {
    border-top-color: #34b300;
}

.tippy-tooltip[data-placement^='bottom'] .tippy-arrow {
    border-bottom-color: #34b300;
}

.tippy-tooltip[data-placement^='left'] .tippy-arrow {
    border-left-color: #34b300;
}

.tippy-tooltip[data-placement^='right'] .tippy-arrow {
    border-right-color: #34b300;
}

#ec-header_menu-mobile {
    display: none;
}

@keyframes logo {
    0%,
    100% {transform: translateX(0%);transform-origin: 50% 50%;}
    15% {transform: translateX(-30px) rotate(-6deg);}
    30% {transform: translateX(15px) rotate(6deg);}
    45% {transform: translateX(-15px) rotate(-3.6deg);}
    60% {transform: translateX(9px) rotate(2.4deg);}
    75% {transform: translateX(-6px) rotate(-1.2deg);}
}

@media screen and (max-width: 979px) {
    #ec-header .ec-header_contact,
    #ec-header .ec-header_content {
        flex-direction: column;
    }

    #ec-header .ec-header_contact .ec-header_contact-item:not(:last-child) {
        margin-right: 0;
        margin-bottom: 5px;
    }

    #ec-header .ec-header_content {
        gap: 20px;
    }

    #ec-header_menu-mobile {
        display: flex;
        justify-content: center;
        align-items: center;

        width: 100%;
        height: 70px;

        gap: 15px;

        background: transparent;
        border: 0;

        padding: 0 20px;

        color: #a0aecf;
        font-family: 'Audiowide', sans-serif;
        font-size: 18px;
        font-weight: 300;
        text-transform: uppercase;

        order: -1;

        position: relative;
        transition: all .3s ease;
    }

    #ec-header .ec-header_content .ec-header_menu {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    #ec-header .ec-header_content .ec-header_menu .ec-header_menu-list:not(.show) {
        display: none;
        opacity: 0;
        visibility: hidden;
    }

    #ec-header .ec-header_content .ec-header_menu .ec-header_menu-list.show {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    #ec-header .ec-header_content .ec-header_menu .ec-header_menu-list {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;

        gap: 30px;

        padding: 40px 70px;

        background: #fff;
        border-radius: 10px;

        width: 100%;

        position: absolute;
        top: 100%;

        transition: all .3s ease;
        z-index: 99;
    }

    #ec-header .ec-header_content .ec-header_menu .ec-header_menu-list .ec-header_menu-list_item a:hover,
    #ec-header .ec-header_content .ec-header_menu .ec-header_menu-list .ec-header_menu-list_item a.active {
        color: #000;
    }

    #ec-hero .ec-hero_content .ec-hero_banner {
        padding: 40px 30px;
        transform: skewX(0);
        text-align: center;
    }

    #ec-hero .ec-hero_content .ec-hero_banner .ec-hero_banner-title {
        font-size: 34px;
        transform: skewX(0);
    }

    #ec-about .ec-about_content {
        flex-direction: column;
        gap: 20px;
    }

    #ec-about .ec-about_content .ec-about_content-item {
        min-width: 100%;
        max-width: 100%;
    }

    #ec-cars .ec-cars_title h2 {
        text-align: left;
    }

    #ec-cars .ec-cars_slider {
        height: 2808px;
    }

    #ec-cars .ec-cars_content {
        flex-direction: column;
        gap: 20px;
    }

    #ec-cars .ec-cars_content .ec-cars_content-item {
        min-width: 100%;
        max-width: 100%;
    }

    #ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_info {
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    #ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_info .ec-cars_content-item_info-desc,
    #ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_info .ec-cars_content-item_info-pricing {
        min-width: 100%;
        max-width: 100%;
    }

    #ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_buttons {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    #ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_buttons > li {
        min-width: 100%;
        max-width: 100%;
    }

    #ec-cars .ec-cars_content .ec-cars_content-item:nth-child(2) .ec-cars_content-item_info .ec-cars_content-item_info-desc {
        padding: 20px 0 44px 0;
    }

    #ec-cars .ec-cars_content .ec-cars_content-item:nth-child(2) .ec-cars_content-item_buttons,
    #ec-cars .ec-cars_content .ec-cars_content-item:nth-child(2) .ec-cars_content-item_info,
    #ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_info {
        padding: 0 20px;
    }

    #ec-occasion .ec-occasion_title {
        font-size: 30px;
        word-break: break-word;
        padding: 30px 20px;
    }

    #ec-occasion .ec-occasion_content {
        flex-direction: column;
        gap: 20px;
    }

    #ec-occasion .ec-occasion_content .ec-occasion_content-item {
        min-width: 100%;
        max-width: 100%;
        transform: skewX(0);
    }

    #ec-occasion .ec-occasion_content .ec-occasion_content-item .ec-occasion_content-item_image img {
        transform: skewX(0);
    }

    #ec-occasion .ec-occasion_content .ec-occasion_content-item .ec-occasion_content-item_title {
        width: 100%;
    }

    #ec-occasion .ec-occasion_content .ec-occasion_content-item .ec-occasion_content-item_title span {
        transform: skewX(0);
    }

    #ec-pluses .ec-pluses_content {
        flex-direction: column;
        gap: 20px;
    }

    #ec-pluses .ec-pluses_content .ec-pluses_content-item {
        min-width: 100%;
        max-width: 100%;
    }

    #ec-contact .ec-contact_content .ec-contact_content-form {
        width: 100%;
        flex-direction: column;
        gap: 20px;
        max-width: unset;
        padding: 0 20px;
    }

    #ec-contact .ec-contact_content .ec-contact_content-form .ec-contact_content-form_input {
        min-width: 100% !important;
        max-width: 100% !important;
    }

    #ec-contact .ec-contact_content .ec-contact_content-form .ec-contact_content-form_input:nth-child(4):has(> input) {
        margin: 0;
    }

    #ec-footer .ec-footer_content {
        flex-direction: column;
        gap: 20px;
    }

    #ec-footer .ec-footer_content .ec-footer_brand,
    #ec-footer .ec-footer_content .ec-footer_goup,
    #ec-footer .ec-footer_content .ec-footer_business,
    #ec-footer .ec-footer_content .ec-footer_contact,
    #ec-footer .ec-footer_content .ec-footer_goup {
        min-width: 100%;
        max-width: 100%;
    }

    #ec-footer .ec-footer_content .ec-footer_brand {
        text-align: center;
    }

    #ec-hero .ec-hero_content .ec-hero_banner:before, #ec-hero .ec-hero_content .ec-hero_banner:after {
        display: none;
    }

    #ec-hero,
    #ec-about,
    #ec-cars,
    #ec-occasion,
    #ec-pluses,
    #ec-contact,
    #ec-footer {
        overflow: hidden;
    }

    .ec-cars_arrows .ec-cars_arrows-prev,
    .ec-cars_arrows .ec-cars_arrows-next {
        width: 42px;
        height: 34px;
    }
}

@media screen and (min-width: 979px) and (max-width: 1200px) {
    #ec-hero,
    #ec-about,
    #ec-cars,
    #ec-occasion,
    #ec-pluses,
    #ec-contact,
    #ec-footer {
        overflow: hidden;
    }

    #ec-header .ec-header_content .ec-header_menu .ec-header_menu-list {
        gap: 30px;
    }

    #ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_info .ec-cars_content-item_info-pricing .ec-cars_content-item_info-pricing_price {
        padding: 0 20px;
    }

    #ec-cars .ec-cars_content .ec-cars_content-item .ec-cars_content-item_info .ec-cars_content-item_info-pricing .ec-cars_content-item_info-pricing_price .ec-cars_content-item_info-pricing_price-text {
        font-size: 28px;
    }

    #ec-occasion .ec-occasion_content .ec-occasion_content-item .ec-occasion_content-item_title span {
        font-size: 14px;
    }
}

.modal {
    --bs-modal-zindex: 1055;
    --bs-modal-width: 800px;
    --bs-modal-padding: 40px;
    --bs-modal-margin: 0.5rem;
    --bs-modal-color: ;
    --bs-modal-bg: #05040e;
    --bs-modal-border-width: 0;
    --bs-modal-border-radius: 0;
    --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --bs-modal-inner-border-radius: calc(0.5rem - 1px);
    --bs-modal-header-padding-x: 1rem;
    --bs-modal-header-padding-y: 1rem;
    --bs-modal-header-padding: 1rem 1rem;
    --bs-modal-header-border-width: 0;
    --bs-modal-title-line-height: 1.5;
    --bs-modal-footer-gap: 0.5rem;
    --bs-modal-footer-bg: ;
    --bs-modal-footer-border-width: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-modal-zindex);
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    backdrop-filter: blur(10px);
}
.modal-dialog {
    position: relative;
    width: auto;
    margin: var(--bs-modal-margin);
    pointer-events: none;
}
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
}
.modal.show .modal-dialog {
    transform: none;
}
.modal.modal-static .modal-dialog {
    transform: scale(1.02);
}
.modal-dialog-scrollable {
    height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}
.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-clip: padding-box;
    border-radius: var(--bs-modal-border-radius);
    outline: 0;
}
.modal-backdrop {
    --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-backdrop-zindex);
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg);
    backdrop-filter: blur(10px);
}
.modal-backdrop.fade {
    opacity: 0;
}
.modal-backdrop.show {
    opacity: var(--bs-backdrop-opacity);
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    background: #fff;
    padding: 30px 40px;
    margin: 0 0 40px;
    transform: skewX(-32deg);
    position: relative;
}

.modal-header .modal-title {
    display: flex;
    align-items: center;
    margin: 0;
    transform: skewX(32deg);
}

.modal-header .modal-title span {
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.modal-header .btn-close {
    background: transparent;
    border: 0;
    outline: 0;
    color: #000000;
    font-size: 18px;
    padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
    margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
    cursor: pointer;
    transform: skewX(32deg);
}
.modal-title {
    margin: 0;
    line-height: var(--bs-modal-title-line-height);
    position: relative;
}

.modal-body {
    color: #ffffff;
    position: relative;
    flex: 1 1 auto;
    line-height: 1.5;
    background: #061c06;
    padding: var(--bs-modal-padding);
    clip-path: polygon(0 0, calc( 100% - 30px ) 0%, 100% 30px, 100% 100%, 30px 100%, 0% calc( 100% - 30px ));
}

.modal-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
    background-color: var(--bs-modal-footer-bg);
    border-bottom-right-radius: var(--bs-modal-inner-border-radius);
    border-bottom-left-radius: var(--bs-modal-inner-border-radius);
    border-top: 1px solid #22222a;
}
.modal-footer > * {
    margin: calc(var(--bs-modal-footer-gap) * 0.5);
}
@media (min-width: 576px) {
    .modal {
        --bs-modal-margin: 1.75rem;
        --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }
    .modal-dialog {
        max-width: var(--bs-modal-width);
        margin-right: auto;
        margin-left: auto;
    }
    .modal-sm {
        --bs-modal-width: 300px;
    }
}
@media (min-width: 992px) {
    .modal-lg,
    .modal-xl {
        --bs-modal-width: 800px;
    }
}
@media (min-width: 1200px) {
    .modal-xl {
        --bs-modal-width: 1140px;
    }
}
.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
}
.modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
}
.modal-fullscreen .modal-footer,
.modal-fullscreen .modal-header {
    border-radius: 0;
}
.modal-fullscreen .modal-body {
    overflow-y: auto;
}
@media (max-width: 575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }
    .modal-fullscreen-sm-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }
    .modal-fullscreen-sm-down .modal-footer,
    .modal-fullscreen-sm-down .modal-header {
        border-radius: 0;
    }
    .modal-fullscreen-sm-down .modal-body {
        overflow-y: auto;
    }
}
@media (max-width: 767.98px) {
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }
    .modal-fullscreen-md-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }
    .modal-fullscreen-md-down .modal-footer,
    .modal-fullscreen-md-down .modal-header {
        border-radius: 0;
    }
    .modal-fullscreen-md-down .modal-body {
        overflow-y: auto;
    }
}
@media (max-width: 991.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }
    .modal-fullscreen-lg-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }
    .modal-fullscreen-lg-down .modal-footer,
    .modal-fullscreen-lg-down .modal-header {
        border-radius: 0;
    }
    .modal-fullscreen-lg-down .modal-body {
        overflow-y: auto;
    }
}
@media (max-width: 1199.98px) {
    .modal-fullscreen-xl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }
    .modal-fullscreen-xl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }
    .modal-fullscreen-xl-down .modal-footer,
    .modal-fullscreen-xl-down .modal-header {
        border-radius: 0;
    }
    .modal-fullscreen-xl-down .modal-body {
        overflow-y: auto;
    }
}
@media (max-width: 1399.98px) {
    .modal-fullscreen-xxl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }
    .modal-fullscreen-xxl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }
    .modal-fullscreen-xxl-down .modal-footer,
    .modal-fullscreen-xxl-down .modal-header {
        border-radius: 0;
    }
    .modal-fullscreen-xxl-down .modal-body {
        overflow-y: auto;
    }
}