html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

@font-face {
  font-family: "e-Ukraine-Bold";
  src:
    url("../fonts/e-Ukraine-Bold.woff") format("woff"),
    url("../fonts/e-Ukraine-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "e-Ukraine-Medium";
  src:
    url("../fonts/e-ukraine-medium.woff") format("woff"),
    url("../fonts/e-ukraine-medium.woff2") format("woff2");
}
@font-face {
  font-family: "e-Ukraine-Light";
  src:
    url("../fonts/e-Ukraine-Light.woff") format("woff"),
    url("../fonts/e-Ukraine-Light.woff2") format("woff2");
}
@font-face {
  font-family: "e-Ukraine-Thin";
  src:
    url("../fonts/e-Ukraine-Thin.woff") format("woff"),
    url("../fonts/e-Ukraine-Thin.woff2") format("woff2");
}

*{
    box-sizing: border-box;
}
body{
    background: #151718;
    font-size: 16px;
    font-family: "e-Ukraine-Bold";
    color: #F0E5D5;
}
a{
    display: inline-block;
    text-decoration: none;
    transition: all .3s;
}
img{
    max-width: 100%;
}
.overflow-hidden{
    overflow: hidden;
}
.container{
    max-width: 1440px;
    padding: 0 30px;
    margin: auto;
}
section h2{
    font-family: "e-Ukraine-Bold";
    text-align: center;
    color: #fff;
    font-size: 85px;
    letter-spacing: -.07em;
    line-height: 1;
}
.btn-theme{
    background: #151718;
    font-size: 16px;
    color: #F0E5D5;
    border-radius: 35px;
    font-family: "e-Ukraine-Bold";
    text-transform: uppercase;
    padding: 0 90px 0 32px;
    position: relative;
    display: inline-block;
    line-height: 70px;
}
.btn-theme span{
    position: absolute;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 9px;
    right: 9px;
    background: #F0E5D5;
    border-radius: 50%;
    transition: all .3s;
}
.btn-theme span svg{
    display: block;
    transition: all .3s;
}
.btn-theme:hover{
    background: #AD8B59;
}
.btn-theme:hover svg{
    transform: rotate(90deg);
}
.btn-theme-light{
    line-height: 68px;
    border: 1px solid #151718;
    border-radius: 35px;
    padding: 0 30px;
    color: #151718;
    background: rgb(245, 245, 245, .7);
}
.btn-theme-light:hover{
    background: rgba(173, 139, 89, .7);
    color: #fff;
    border-color: #fff;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}
button{
	border: 0;
	transition: all .3s;
}
@media screen and (max-width: 1199px){
    section h2{
        font-size: 60px;
    }
}
@media screen and (max-width: 991px){
    section h2{
        font-size: 44px;
    }
}
@media screen and (max-width: 767px){
    .container{
        padding: 0 15px;
    }
}
/* header */
header{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: #151718;
    display: flex;
    align-items: center;
    padding: 25px;
}
header .header_center{
    width: 258px;
}
header .header_left,
header .header_right{
    width: calc((100% - 258px) / 2);
}
header .header_left ul,
header .header_right ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
header .header_right ul{
    justify-content: flex-end;
    justify-content: center;
}
header .header_right ul li ul{
    display: none;
}
header a{
    color: #F0E5D5;
}
header a:hover{
    color: #AD8B59;
}
.open_mobile_menu{
    display: none;
}
.open_mobile_menu svg rect {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-box: fill-box;
  transform-origin: center;
}
.open_mobile_menu.opened svg rect:nth-child(1) {
  transform: translateY(0px) rotate(45deg);
}
.open_mobile_menu.opened svg rect:nth-child(2) {
  opacity: 0;
}
.open_mobile_menu.opened svg rect:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
.mobile_menu{
    position: absolute;
    left: 0;
    top: 100%;
    background: #151718;
    padding: 30px 15px;
    width: 100%;
    height: 100vh;
    display: none;
}
.mobile_menu ul{
    margin-bottom: 50px;
}
.mobile_menu ul li{
    margin-bottom: 20px;
    text-align: center;
}
.mobile_menu ul li a{
    font-size: 20px;
    line-height: 1.4;
}
.mobile_menu .phone{
    width: 100%;
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}
.mobile_menu .address{
    margin-top: 40px;
    font-size: 16px;
    text-align: center;
}

@media screen and (max-width: 1440px){
    header{
        padding: 20px;
    }
    header .header_center{
        text-align: center;
    }
    header .header_center img{
        height: 60px;
    }
}
@media screen and (max-width: 1199px){
    body{
        font-size: 14px;
    }
}
@media screen and (max-width: 767px){
    header{
        padding: 10px 15px;
    }
    header .header_left{
        display: none;
    }
    header .header_left ul,
    header .header_right ul{
        display: none;
    }
    header .header_right{
        text-align: right;
        justify-content: flex-end;
        width: calc(100% - 186px);
    }
    header .header_center{
        text-align: left;
        width: 186px;
    }
    .open_mobile_menu{
        display: inline-block;
        background: none;
        border: 0;
    }
}
/* -- header */

/* hero */
.hero{
    padding: 0 30px;
}
.hero_banner{
    border-radius: 60px;
    position: relative;
    overflow: hidden;
    min-height: 43vw;
    display: flex;
    align-items: center;
    padding: 60px;
}
.hero_banner_image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: .7;
    z-index: 1;
}
.hero_banner_image:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .3;
}
.hero .hero_content{
    position: relative;
    z-index: 9;
    max-width: 750px;
}
.hero h1{
    font-size: 90px;
    line-height: 1;
    letter-spacing: -.07em;
    color: #fff;
    font-family: "e-Ukraine-Bold";
}
.hero p{
    font-size: 38px;
    line-height: 1.3;
    letter-spacing: -.07em;
    color: #fff;
    font-family: "e-Ukraine-Thin";
}
.hero p strong{
    font-family: "e-Ukraine-Bold";
}
.hero .hero_buttons{
    margin-top: 80px;
    display: flex;
    align-items: center;
    gap: 30px;
}
@media screen and (max-width: 1440px){
    .hero h1{
        font-size: 72px;
    }
    .hero p{
        font-size: 30px;
    }
    .hero .hero_content{
        max-width: 670px;
    }
    .hero .hero_buttons{
        margin-top: 40px;
    }
}
@media screen and (max-width: 1199px){
    .hero_banner{
        padding: 60px 30px;
    }
}
@media screen and (max-width: 991px){
    .hero h1{
        font-size: 70px;
    }
    .hero p{
        font-size: 20px;
    }
}
@media screen and (max-width: 767px){
    .hero {
        padding: 0 15px;
    }
}
@media screen and (max-width: 600px){
    .hero h1 {
        font-size: 50px;
        margin-bottom: 10px;
    }
    .hero .hero_buttons{
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .hero .hero_buttons a{
        min-width: 225px;
    }
    .hero .hero_buttons a.btn-theme-light{
        text-align: center;
    }
}
@media screen and (max-width: 479px){
    .hero_banner {
        padding: 60px 15px;
    }
}

/* -- hero */

/* catalog */
.catalog{
    background-image: url(../images/car2go.svg);
    background-position: 0 200px;
    background-size: 100% auto;
    background-repeat: no-repeat;
}
.catalog .catalog__top_text{
    padding: 110px 0;
}
.catalog .catalog__top_text p{
    font-size: 38px;
    line-height: 1.6;
    letter-spacing: -.07em;
    color: #F0E5D5;
}
.catalog .catalog__top_text p span{
    color: #fff;
}
.catalog__items{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 110px;
}
.catalog__items .item{
    width: calc((100% - 40px) / 3);
    background: #fff;
    border-radius: 50px;
    padding: 20px;
    position: relative;
		z-index: 9;
}
.catalog__items .item.active{
	z-index: 99;
}
.catalog__items .item img{
    border-radius: 30px;
    aspect-ratio: 611 / 356;
    object-fit: cover;
}
.catalog__items .item .meta{
    padding: 15px 12px;
}
.catalog__items .item p,
.catalog__items .item li{
    color: #000;
}
.catalog__items .item .meta li{
    line-height: 1.5;
    font-family: "e-Ukraine-Thin";
}
.catalog__items .item .meta li strong{
    font-family: "e-Ukraine-Bold";
}
.catalog__items .item p.title{
    font-size: 30px;
    font-family: "e-Ukraine-Medium";
    line-height: 1;
    letter-spacing: -.04em;
    margin-bottom: 10px;
}
.catalog__items .item .item_bottom{
    margin-top: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    position: relative;
    gap: 20px;
    right: -20px;
    z-index: 9;
}
.catalog__items .item .item_bottom .price{
    border: 1px solid #333333;
    padding: 22px;
    border-radius: 30px;
    cursor: pointer;
    position: absolute;
    left: -20px;
    top: 5px;
    background: #fff;
    transition: all .3s;
    min-width: 190px;
}
.catalog__items .item .item_bottom .price:after{
    content: '';
    position: absolute;
    width: 13px;
    height: 7px;
    top: 27px;
    right: 20px;
    background-image: url(../images/arrow-price.svg);
    background-size: 13px;
    transition: all .3s;
}
.catalog__items .item .item_bottom .price.opened:after{
    transform: rotate(180deg);
}
.catalog__items .item .item_bottom .price p{
    font-size: 16px;
    line-height: 16px;
    font-family: "e-Ukraine-Thin";
}
.catalog__items .item .item_bottom .price p strong{
    font-family: "e-Ukraine-Bold";
}
.catalog__items .item .item_bottom .price ul{
    display: none;
}
.catalog__items .item .item_bottom .price ul li{
    padding: 22px 0 0;
}
.catalog__items .item .item_bottom .price ul li{
    font-family: "e-Ukraine-Thin";
}
.catalog__items .item .item_bottom .price ul li strong{
    font-family: "e-Ukraine-Bold";
}
.catalog__items .item .item_bottom .getquote{
    color: #AD8B59;
    text-transform: uppercase;
}
.catalog__items .item .item_bottom .getquote:hover{
    color: #151718;
}
.catalog__items .item .item_bottom .readmore{
    background: #AD8B59;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.catalog__items .item .item_bottom .readmore svg{
    transition: all .3s;
}
.catalog__items .item .item_bottom .readmore:hover svg{
    transform: rotate(90deg);
}
.catalog__items .item .item_bottom .readmore svg path{
    transition: all .3s;
}
.catalog__items .item .item_bottom .readmore:hover svg path{
    fill: #151718;
}
.catalog__items .item .mask{
    position: absolute;
    background: #151718;
    width: 71px;
    height: 91px;
    bottom: -1px;
    right: -1px;
    z-index: 1;
    border-radius: 35px 0 0 0;
}
.catalog__items .item .mask:after{
    content: '';
    position: absolute;
    width: 47px;
    height: 50px;
    right: 1px;
    top: -48px;
    background-image: url(../images/border-mask.svg);
    background-size: 50px;
    background-position: right;
}
.catalog__items .item .mask:before{
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    left: -50px;
    bottom: 1px;
    background-image: url(../images/border-mask.svg);
    background-size: 50px;
    background-position: right;
}
.catalog__filter{
    margin-top: 110px;
}
.catalog__filter form{
    background: #F0E5D5;
    border-radius: 50px;
    padding: 30px;
    display: flex;
    gap: 40px;
}
.catalog__filter form p{
    color: #151718;
    font-size: 16px;
    letter-spacing: -.04em;
    line-height: 1;
    font-family: "e-Ukraine-Medium";
    margin-bottom: 15px;
    width: 100%;
}
.catalog__filter form input{
    line-height: 58px;
    border-radius: 30px;
    border: 1px solid #151718;
    padding: 0 20px;
    background: transparent;
    font-size: 14px;
    letter-spacing: -.04em;
    font-family: "e-Ukraine-Light";
}
.catalog__filter form input::-webkit-input-placeholder {color:#151718;}
.catalog__filter form input::-moz-placeholder          {color:#151718;}/* Firefox 19+ */
.catalog__filter form input:-moz-placeholder           {color:#151718;}/* Firefox 18- */
.catalog__filter form input:-ms-input-placeholder      {color:#151718;}
.catalog__filter_price input{
    width: 100px;
}
.nice-select{
    height: 58px;
    border: 1px solid #151718;
    padding: 0 20px;
    border-radius: 30px;
    line-height: 58px;
    background: none;
    color: #151718;
}
.catalog__filter form input.flatpickr-input{
    padding-left: 64px;
    background-image: url(../images/calendar.svg);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: 20px center;
    width: 200px;
}
.catalog__filter_class{
    width: 180px;
}
.catalog__filter_class_select{
    padding: 20px;
    border: 1px solid #151718;
    border-radius: 30px;
    width: 180px;
    position: absolute;
    z-index: 9;
    background: #F0E5D5;
    cursor: pointer;
}
.catalog__filter_class_select:after{
    content: '';
    position: absolute;
    width: 13px;
    height: 7px;
    top: 27px;
    right: 20px;
    background-image: url(../images/arrow-price.svg);
    background-size: 13px;
    transition: all .3s;
}
.catalog__filter_class_select.opened:after{
    transform: rotate(180deg);
}
.catalog__filter_class_select p{
    font-size: 14px!important;
    font-family: "e-Ukraine-Light"!important;
    letter-spacing: -.04em;
    line-height: 1.4!important;
    margin-bottom: 0px!important;
}
.catalog__filter_class_select label{
    color: #151718;
    display: block;
    cursor: pointer;
    font-size: 14px;
    font-family: "e-Ukraine-Light";
    letter-spacing: -.04em;
    line-height: 1.4;
    width: 100%;
    margin-bottom: 20px;
}
.catalog__filter_class_select label:hover{
    color: #AD8B59;
}
.catalog__filter_class_select label:last-of-type{
    margin-bottom: 0;
}
.vehicleClasses{
    display: none;
    margin-top: 20px;
}
.vehicleClasses input[type="radio"]{
    display: none;
}
@media screen and (max-width: 1440px){
    .catalog .catalog__top_text p{
        font-size: 30px;
    }
    .catalog__items .item .item_bottom .getquote{
        max-width: 60px;
        text-align: center;
    }
}
@media screen and (max-width: 1199px){
    .catalog__items .item .item_bottom{
        gap: 10px;
    }
    .catalog__items .item .item_bottom .price{
        min-width: 155px;
        padding: 22px 0 22px 15px;
    }
    .catalog__items .item .item_bottom .price p{
        font-size: 14px;
    }
    .catalog__items .item .item_bottom .price:after{
        right: 10px;
    }
    .catalog__items .item p.title{
        font-size: 24px;
    }
    .catalog .catalog__top_text {
        padding: 50px 0;
    }
    .catalog__items{
        margin-top: 50px;
    }
}
@media screen and (max-width: 1080px){
    .catalog__items .item{
        width: calc((100% - 20px) / 2);
    }
}
@media screen and (max-width: 767px){
    .catalog__items .item {
        width: 100%;
    }
    .catalog .catalog__top_text p {
        font-size: 20px;
    }
}

/* -- catalog */

/* advantages */
.advantages{
    padding-top: 110px;
}
.advantages h2{
    color: #AEA594;
    line-height: 1;
}
.advantages_wrapper{
    background: #AEA594;
    margin-top: -8px;
    padding: 80px 0;
}
.advantages_wrapper_container{
    max-width: 1440px;
    padding: 0 30px;
    margin: auto;
    display: flex;
    gap: 20px;
}
.advantages_wrapper_container > .item{
    width: calc((75% - 40px) / 2);
    /* width: calc((100% - 40px) / 3); */
    background: #F0E5D5;
    border-radius: 50px;
    padding: 20px;
}
.advantages_wrapper_container .item .text{
    padding: 10px;
}
.advantages_wrapper_container > .item p,
.advantages_wrapper_container > .item li{
    color: #151718;
    font-family: "e-Ukraine-Light";
    font-size: 16px;
    letter-spacing: -.04em;
    line-height: 1.7;
}
.advantages_wrapper_container > .item p strong,
.advantages_wrapper_container > .item li strong{
    font-family: "e-Ukraine-Medium";
}
.advantages_wrapper_container > .item ul{
    padding-left: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.advantages_wrapper_container > .item li{
    list-style: disc;
}
.advantages_wrapper_container > .item img{
    border-radius: 30px;
}
.advantages_wrapper_container > .item:nth-child(2){
    width: 25%;
}
.advantages_wrapper_container > .item:nth-child(3){
    border-radius: 0;
    background: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
}
.advantages_wrapper_container > .item:nth-child(3) .item{
    background: #F0E5D5;
    border-radius: 50px;
    padding: 20px;
    width: 100%;
    height: 100%;
    position: relative;
}
.advantages_wrapper_container > .item:nth-child(3) .item .image{
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: 30px;
    background-position: center;
    background-size: cover;
}
@media screen and (max-width: 1199px){
    .advantages_wrapper_container .item .text{
        padding: 10px 0;
    }
    .advantages_wrapper_container > .item p, .advantages_wrapper_container > .item li{
        font-size: 14px;
    }
}
@media screen and (max-width: 991px){
    .advantages h2{
        font-size: 70px;
    }
    .advantages_wrapper_container{
        flex-wrap: wrap;
    }
    .advantages_wrapper_container > .item:first-child{
        width: 100%;
    }
    .advantages_wrapper_container > .item:nth-child(2),
    .advantages_wrapper_container > .item:nth-child(3){
        width: calc((100% - 20px) / 2);
    }
}
@media screen and (max-width: 600px){
    .advantages_wrapper_container > .item:nth-child(2),
    .advantages_wrapper_container > .item:nth-child(3){
        width: 100%;
    }
    .advantages_wrapper_container > .item:nth-child(3) .item:first-child{
        min-height: 300px;
    }
}

/* -- advantages */

/* faq */
.faq h2{
    padding: 110px 0;
}
.faq__items{
    border: 1px solid #F0E5D5;
    border-radius: 50px;
    padding: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.faq__items .item{
    width: 100%;
}
.faq__items .title{
    font-family: "e-Ukraine-Medium";
    font-size: 30px;
    line-height: 40px;
    padding: 10px 0;
    letter-spacing: -.04em;
    position: relative;
    padding-right: 40px;
    overflow: hidden;
    cursor: pointer;
}
.faq__items .title:after{
    content: '';
    position: absolute;
    width: 40px;
    height: 100%;
    top: 0;
    right: 0;
    background: #151718;
    z-index: 10;
}
.faq__items .title span{
    display: inline;
    background: #151718;
    position: relative;
    z-index: 9;
    padding-right: 5px;
}
.faq__items .title span:not(.arrow)::before{
    content: '';
    width: 100vw;
    left: calc(100% + 5px);
    height: 2px;
    position: absolute;
    bottom: 19px;
    background-image: repeating-linear-gradient(
        to right,
        #F0E5D5 0 2px,
        transparent 2px 8px
    );
    z-index: 1;
}
.faq__items .title .arrow{
    position: absolute;
    width: 25px;
    height: 14px;
    bottom: 23px;
    right: 0;
    background: #151718 url(../images/arrow-faq.svg);
    background-size: 25px;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 11;
    transition: all .3s;
}
.faq__items .title.opened .arrow{
    transform: rotate(180deg);
}
.faq__items .description{
    display: none;
}
.faq__items .description p{
    font-family: "e-Ukraine-Light";
    font-size: 14px;
    color: #F0E5D5;
    line-height: 1.7;
    letter-spacing: -.04em;
}
@media screen and (max-width: 1199px){
    .faq__items .title{
        font-size: 20px;
        line-height: 32px;
    }
    .faq__items .title span:not(.arrow)::before{
        bottom: 11px;
    }
}
@media screen and (max-width: 991px){
    .faq h2 {
        padding: 50px 0;
    }
}
@media screen and (max-width: 767px){
    .faq__items{
        padding: 30px;
    }
    .faq__items .title{
        font-size: 18px;
        line-height: 32px;
    }
}
/* -- faq */

/* testimonials */
.testimonials{
    padding: 110px 0;
}
.testimonials h2{
    margin-bottom: 110px;
}
.star{
    background-image: url(../images/star.svg);
    background-position: center;
    background-size: 30px;
    width: 30px;
    height: 30px;
    display: inline-block;
    background-repeat: no-repeat;
}
.star-stroke{
    background-image: url(../images/star-stroke.svg);
    background-position: center;
    background-size: 30px;
    width: 30px;
    height: 30px;
    display: inline-block;
    background-repeat: no-repeat;
}
.cars2go_testimonials .item{
    border: 1px solid rgba(240, 229, 213, .4);
    border-radius: 50px;
    padding: 30px 30px 40px;
    position: relative;
}
.cars2go_testimonials .item::after{
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    right: 112px;
    top: -1px;
    border-radius: 0 50px 0 0;
    border-top: 1px solid #6d6963;
    border-right: 1px solid #6d6963;
    z-index: 12;
}
.cars2go_testimonials .item::before{
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    right: -1px;
    top: 112px;
    border-radius: 0 50px 0 0;
    border-top: 1px solid #6d6963;
    border-right: 1px solid #6d6963;
    z-index: 12;
}
.cars2go_testimonials .item .date{
    width: 115px;
    height: 115px;
    position: absolute;
    top: -2px;
    right: -2px;
    background: #151718;
    border-radius: 0 0 0 50px;
    border-bottom: 1px solid #6d6963;
    border-left: 1px solid #6d6963;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #AD8B59;
    font-size: 16px;
    letter-spacing: -.04em;
    z-index: 9;
}
.cars2go_testimonials .item .date:before{
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: #151718;
    left: -50px;
    top: -1px;
}
.cars2go_testimonials .item .date:after{
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: #151718;
    right: -1px;
    bottom: -50px;
}
.cars2go_testimonials .item p{
    font-family: "e-Ukraine-Bold";
    color: #F0E5D5;
    line-height: 2;
    font-size: 16px;
    letter-spacing: -.04em;
    position: relative;
    z-index: 29;
}
.cars2go_testimonials .item p.name{
    font-size: 30px;
    font-family: "e-Ukraine-Medium";
    line-height: 1;
    position: relative;
    z-index: 29;
}
.cars2go_testimonials .item .rating{
    margin: 20px 0 15px;
    position: relative;
    z-index: 29;
}
.nav_cars2go_testimonials{
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}
.nav_cars2go_testimonials button{
    border: 1px solid #F0E5D5;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: none;
    cursor: pointer;
    transition: all .3s;
}
.nav_cars2go_testimonials button:hover{
    background: #F0E5D5;
}
.nav_cars2go_testimonials button svg{
    display: block;
    margin: auto;
}
.nav_cars2go_testimonials button svg path{
    fill: #F0E5D5;
    transition: all .3s;
}
.nav_cars2go_testimonials button:hover svg path{
    fill: #333333;
}
@media screen and (max-width: 991px){
    .cars2go_testimonials .item p.name{
        font-size: 20px;
    }
    .cars2go_testimonials .item p{
        font-size: 14px;
    }
    .testimonials{
    padding: 50px 0;
    }
    .testimonials h2{
        margin-bottom: 50px;
    }
}

/* -- testimonials */

/* footer */
.footer_top .container{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.footer_top .container > div{
    width: calc((100% - 20px) / 2);
}
.footer_top .footer_top_title{
    font-size: 55px;
    color: #fff;
    margin-bottom: 40px;
}
.footer_top .contacts,
.footer_top .follow_us{
    border: 1px solid #6d6963;
    border-radius: 50px;
    min-height: 182px;
    display: flex;
    padding: 30px;
}
.footer_top .contacts{
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.footer_top .contacts .phone{
    font-size: 30px;
    color: #F0E5D5;
    font-family: "e-Ukraine-Medium";
    display: block;
}
.footer_top .contacts .phone:hover{
    opacity: .7;
}
.footer_top .contacts p{
    font-size: 16px;
    letter-spacing: -.04em;
    line-height: 2;
}
.footer_top .follow_us{
    align-items: center;
    gap: 40px;
}
.footer_top .follow_us a{
    height: 102px;
    width: 102px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #6d6963;
    border-radius: 50%;
}
.footer_top .follow_us a:hover{
    background: #F0E5D5;
}
.footer_top .follow_us a svg path{
    transition: all .3s;
}
.footer_top .follow_us a:hover svg path{
    fill: #151718;
}
.footer_top #map{
    width: 100%;
    height: 362px;
}
.footer_top .map_container{
	width: 100%!important;
	overflow: hidden;
	height: 342px;
	border-radius: 50px;
	border: 1px solid #6d6963;
}
.footer_bottom{
    width: 100%;
    z-index: 99;
    background: #151718;
    display: flex;
    align-items: center;
    padding: 25px;
}
.footer_bottom .footer_bottom_center{
    width: 258px;
}
.footer_bottom .footer_bottom_left,
.footer_bottom .footer_bottom_right{
    width: calc((100% - 258px) / 2);
}
.footer_bottom .footer_bottom_left ul,
.footer_bottom .footer_bottom_right ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.footer_bottom .footer_bottom_right ul{
    justify-content: flex-end;
    justify-content: center;
}
.footer_bottom .footer_bottom_right ul li ul{
    display: none;
}
.footer_bottom a{
    color: #F0E5D5;
}
@media screen and (max-width: 1440px){
    .footer_bottom .footer_bottom_center{
        text-align: center;
    }
    .footer_bottom .footer_bottom_center img{
        height: 60px;
    }
}
@media screen and (max-width: 1280px){
    .footer_top .follow_us{
        gap: 25px;
    }
    .footer_top .follow_us a{
        width: 80px;
        height: 80px;
    }
}
@media screen and (max-width: 991px){
    .footer_top .footer_top_title{
        font-size: 40px;
        margin-bottom: 30px;
    }
    .footer_top .follow_us a{
        width: 60px;
        height: 60px;
    }
    .footer_top .follow_us{
        gap: 20px;
    }
    .footer_top .follow_us svg{
        width: 32px;
    }
    .footer_top .contacts, .footer_top .follow_us{
        padding: 20px;
    }

}
@media screen and (max-width: 767px){
    .footer_top .container{
        flex-wrap: wrap;
        gap: 30px;
    }
    .footer_top .container > div{
        width: 100%;
    }
    .footer_top .footer_top_title{
        font-size: 30px;
        margin-bottom: 20px;
        text-align: center;
    }
    .footer_top .contacts, .footer_top .follow_us{
        justify-content: center;
        align-items: center;
    }
    .footer_top .contacts p{
        text-align: center;
    }
    .footer_bottom .footer_bottom_left ul,
    .footer_bottom .footer_bottom_right ul{
        display: none;
    }
}

/* -- footer */

/* modal */
.modal{
	position: fixed;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,.8);
	opacity: 0;
	visibility: hidden;
	top: -20px;
	transition: all .3s;
	padding: 15px;
}
.modal.opened{
	visibility: visible;
	opacity: 1;
	top: 0;
}
.modal .content{
	width: 100%;
	border-radius: 50px;
	background: #fff;
	padding: 30px;
	max-width: 600px;
	position: relative;
}
.modal .close{
	position: absolute;
	top: -50px;
	right: 0px;
	transition: all .3s;
	cursor: pointer;
}
.modal .close:hover{
	opacity: .7;
}
.modal form{
	text-align: center;
}
.modal form input{
    line-height: 58px;
    border-radius: 30px;
    border: 1px solid #151718;
    padding: 0 20px;
    background: transparent;
    font-size: 14px;
    letter-spacing: -.04em;
    font-family: "e-Ukraine-Light";
		width: 100%;
		text-align: center;
}
.modal form input::-webkit-input-placeholder {color:#151718;}
.modal form input::-moz-placeholder          {color:#151718;}/* Firefox 19+ */
.modal form input:-moz-placeholder           {color:#151718;}/* Firefox 18- */
.modal form input:-ms-input-placeholder      {color:#151718;}
.modal form button{
	cursor: pointer;
	border: 0;
}
.modal form .form_group{
	margin-bottom: 10px;
}
.modal .modal_title{
	font-size: 45px;
	color: #000;
	text-align: center;
	margin-bottom: 30px;
	letter-spacing: -.04em;
}
.modal .success{
	margin: 10px 0;
	text-align: center;
	font-size: 16px;
	color: green;
	display: none;
}
@media screen and (max-width: 767px){
	.modal .modal_title{
		font-size: 30px;
	}
}
/* -- modal */

.error-message{
	text-align: center;
	padding: 20px;
	font-weight: 600;
	color: red;
}
.g-recaptcha{
	margin:0 auto 10px;
	max-width: 316px;
}
.g-recaptcha.error {
	border: 2px solid #e74c3c;
	border-radius: 4px;
	padding: 5px;
}
.recaptcha-error-message {
	color: #e74c3c;
	font-size: 16px;
	margin-top: 5px;
	text-align: center;
	font-weight: 600;
	margin-bottom: 20px;
}
