html {
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
body {
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
dialog,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
textarea,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    font-style: inherit;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: 0 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
ol,
ul {
    list-style: none;
}
figure {
    margin: 0;
}
:focus {
    outline: 0;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
img {
    border: 0;
    -ms-interpolation-mode: bicubic;
    vertical-align: middle;
}
legend {
    white-space: normal;
}
button,
input,
select,
textarea {
    font-size: 100%;
    margin: 0;
    max-width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
button,
input {
    line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
    padding: 0;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}
textarea {
    height: 140px;
}
input:-moz-placeholder,
input::-moz-placeholder,
select,
textarea:-moz-placeholder,
textarea::-moz-placeholder {
    color: #969696;
    opacity: 1;
}
input:-ms-input-placeholder,
select {
    color: #969696;
}
input::-webkit-input-placeholder,
select,
textarea::-webkit-input-placeholder {
    color: #969696;
    opacity: 1;
}
select::-ms-expand {
    opacity: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    color: #1A3760;
}
h1 {
    font-size: 40px;
}
h2 {
    font-size: 32px;
}
h3 {
    font-size: 25px;
}
h4 {
    font-size: 20px;
}
h5 {
    font-size: 18px;
}
*,
:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
*,
:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    background-attachment: fixed;
    background-color: #ffffff;
    color: #5F6973;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    overflow-x: hidden;
    transition: inherit;
    -webkit-font-smoothing: antialiased;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
a {
    text-decoration: none;
    color: #1e1e1e;
}
a:focus,
a:hover {
    color: #f28b00;
    text-decoration: none;
    outline: 0;
}
ol,
ul {
    padding: 0;
}
img {
    max-width: 100%;
    height: auto;
}
b,
strong {
    font-weight: 900;
}
button:focus {
    outline: 0;
}
.clearfix {
    clear: both;
}
@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}
.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

.offcanvas { padding-top:80px; }


.has-dropdown {  position: relative; }
.has-dropdown span { width: 100%; display: inline-block;cursor: pointer; }
.has-dropdown span i { float: right; position: relative;top: 7.5px;margin-left: 7.5px; }

.menu-dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    padding: 25px;
    min-width: 270px;
    background: #fff;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    -webkit-box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
    z-index: 99999;
}
.menu-dropdown .menu-dropdown { left: calc(100% - 10px);top: -25px; }
.menu-dropdown > li > a { display: flex;align-items: center;justify-content: flex-start; }
.menu-dropdown .fa-angle-right { margin-left: auto; }
.has-dropdown:hover > .menu-dropdown {
    opacity: 1;
    visibility: visible;
    display: block;
    -webkit-animation: fadeInUp 0.4s both;
    -moz-animation: fadeInUp 0.4s both;
    -o-animation: fadeInUp 0.4s both;
    animation: fadeInUp 0.4s both;
}


.header { position: absolute;top: 0;left: 0;width: 100%; z-index: 9999; }
.header .container {  display: flex;align-items: center;justify-content: center;height: 80px; }
.header .logo { display: block; }
.header .logo img { max-width: 120px; }
.header .center { text-align: right; margin-left: auto; }
.header .center > li { display: inline-block; padding:0px 10px; }

.header .center > li a,
.header .center > li span {
    position: relative;
    font-size: 16px;
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -ms-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    color: #384a58;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.header .center li:hover > a { color: #D4002A; }
.header .center li:hover > span { color: #D4002A; }

.header .actions { padding-left: 15px;margin-left: 15px;border-left: 1px solid #EEE;text-align: right; }
.header .actions li { display: inline-block; }
.header .actions li a { display: block;font-size: 16px; font-weight: 500;letter-spacing: -0.5px;color: #384a58; }
.header .actions li.login { margin-left: 15px; }
.header .actions li.login a { display: block; padding: 12px 24px; border-radius: 50px; background: #D4002A; color: #FFFFFF; font-size: 18px; line-height: 18px; font-weight: 700; }

.sliders {padding: 0 60px;}
.sliders .item {position: relative;display: flex;align-items: center;justify-content: center;height: 750px;background-repeat: no-repeat;background-size: cover;background-position: center;border-radius: 20px;overflow: hidden;}
.sliders .item .top_title { color: #FFFFFF;font-size: 40px;font-style: normal;font-weight: 400;line-height: 48px;margin-bottom: 10px;}
.sliders .item .middle_title { color: #FFFFFF;font-size: 60px;font-style: normal;font-weight: 600;margin-bottom:10px; } 
.sliders .item .bottom_title { color: #F5C34B;font-size: 35px;font-style: normal;font-weight: 300;}
.sliders .item .btn { background: #FFF;color: #1A3760;font-size: 13px;font-weight: 600;padding: 12px 30px;margin-top:10px; }

.sliders .owl-carousel .owl-nav button.owl-prev, 
.sliders .owl-carousel .owl-nav button.owl-next{ 
    display: inline-block;position: absolute; top: 45%; left: 30px;background: rgba(255, 255, 255, 0.1); border-radius: 50%;color: #FFFFFF;
    font-size: 13px;height: 45px;width: 45px;line-height: 45px;text-align: center;z-index: 9; cursor: pointer; 
}

.sliders .owl-carousel .owl-nav button.owl-next{ left:auto;right:30px; }
.sliders .owl-carousel .owl-nav button.owl-prev:hover, 
.sliders .owl-carousel .owl-nav button.owl-next:hover{ background: #FFF;color:#5F6973; }


.main {  position: relative;  top: -100px; margin-bottom: 50px; z-index: 10; }

.search { display: flex;align-items: flex-end;justify-content: flex-end;background: #FFFFFF; border-radius: 5px;padding: 40px;box-shadow: 0px 18px 60px rgb(23 26 33 / 5%); }




 .search .input-group { display: flex;align-items: center;justify-content: center; }
 .search .input-group .form-control:last-child{ border-top-left-radius: 0px;border-bottom-left-radius: 0px;width: 130px;padding-left: 0px;border-left: 0px;}
 .search .input-group .form-control:first-child { border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-right: 0px;}

 .search .form-group > label { display: block; font-size: 13px;font-weight: 600;line-height: 16px;padding-left: 10px;margin-bottom: 0.5em;color: #1A3760; }


 .search .form-control::placeholder { color: #b1b1b1; }
 .search .form-control:-ms-input-placeholder { color: #b1b1b1; }
 .search .form-control::-ms-input-placeholder { color: #b1b1b1; }

 .search .form-control,
 .search .form-control:active,
 .search .form-control:disabled,
 .search .form-control:focus,
 .search .form-control[readonly] {
    background-color: #FFF;
    border:1px solid #eaeaea;
    border-radius: 8px;
    color: #5F6973;
    font-size: 14px;
    padding: .375rem .75rem;
    font-weight: 400;
    height: 50px;
    line-height: 35px;
    line-height: 35px;
    box-shadow: none;
}

 .search .btn{background: #D4002A;padding: 0 .75rem;height: 50px;line-height:50px;border-radius: 8px;color: #FFF;width: 200px;}
 .search .btn .fa-search{margin-right: 5px;}

body:not(.index) .cars { margin-top: 0;border-bottom: 0; padding-bottom: 0;}

.cars {  padding: 100px 0;border-top: 1px solid #eee; border-bottom: 1px solid #eee; }

.cars .title { margin-bottom: 70px;text-align: center; }
.cars .title h2 { color: #1A3760;font-size: 25px;font-weight: 700;}
.cars .title h3 { color: #595959;font-size: 16px;}

.cars .item { position: relative; display: flex;align-items: center;justify-content: flex-start; background: #FFFFFF; border: 1px solid #EAEAEA;border-radius: 8px;padding: 10px 20px 10px 10px;margin-bottom: 30px;}
.cars .item:hover { 
    -webkit-box-shadow: 0px 18px 60px rgb(23 26 33 / 5%);
    -moz-box-shadow: 0px 18px 60px rgba(23, 26, 33, 0.05);
    -o-box-shadow: 0px 18px 60px rgba(23, 26, 33, 0.05);
    box-shadow: 0px 18px 60px rgb(23 26 33 / 5%);
}
.cars .item .image {  position: relative;margin-right: 20px; max-width: 230px; }
.cars .item .image img { width: 100%;border-radius: 8px; }

.cars .item h4 { margin-bottom: 15px;  }
.cars .item h4, .cars .item h4 a { display: block;color: #1A3760;font-size: 14px;font-style: normal; font-weight: bold;line-height: 16px; }
.cars .item span {  color: #1A3760;font-size: 14px;font-weight: 400; line-height: 22px;}
.cars .item ul { border-top: 1px solid #EAEAEA;padding-top:15px;margin-top:15px; }
.cars .item ul li { display: inline-block;font-size:13px;margin-right: 10px;margin-bottom:10px; }
.cars .item ul li img { max-width: 18px; }
.cars .item .content { position: relative;width:100%; }


.cars .more {  display: block;color: #1A3760; font-size: 13px;font-weight: 600;line-height: 16px; margin-top: 50px; }

.cars .more .fal {
    background: #D4002A;
    border-radius: 50%;
    display: inline-block;
    height: 35px;
    line-height: 35px;
    margin-left: 10px;
    text-align: center;
    color: #FFF;
    width: 35px;
    -webkit-box-shadow: 0px 7px 20px rgb(245 195 75 / 20%);
    -moz-box-shadow: 0px 7px 20px rgba(245, 195, 75, 0.2);
    -o-box-shadow: 0px 7px 20px rgba(245, 195, 75, 0.2);
    box-shadow: 0px 7px 20px rgb(245 195 75 / 20%);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}



.about {
    padding: 150px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 150px;
    text-align: left;
}
.about .elementor {
    display: flex;
    flex-flow: column wrap;
    max-height: 700px;
    width: 100%;
}
.about .elementor .item:nth-child(1) {
    margin-right: 15px;
    height: 325px;
}
.about .elementor .item:nth-child(2) {
    margin-right: 15px;
    height: 180px;
}
.about .elementor .item:nth-child(3) {
    margin-top: 25px;
    height: 180px;
}
.about .elementor .item:nth-child(4) {
    height: 325px;
}
.about .elementor .item {
    width: calc(50% - 15px);
    min-height: 200px;
    height: 200px;
    margin-bottom: 15px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
}
.about .right {  padding-left: 130px; }
.about .right h5 { color: #1A3760;font-size: 25px;margin-bottom: 20px;font-weight: 700; }
.about .right p { color: #5F6973;font-size: 14px; line-height: 21px;margin-bottom: 15px; }
.about .row {display: flex;align-items: center;justify-content: center;}






.services {  padding: 0 0 100px 0;border-bottom: 1px solid #eee;margin-bottom:120px; }

.services .title { margin-bottom: 70px;text-align: center; }
.services .title h2 { color: #1A3760;font-size: 25px;font-weight: 700;}
.services .title h3 { color: #595959;font-size: 16px;}

.services .item { position: relative; background: #FFFFFF; border: 1px solid #EAEAEA;border-radius: 8px;padding: 15px;margin-bottom: 30px;}
.services .item:hover { 
    -webkit-box-shadow: 0px 18px 60px rgb(23 26 33 / 5%);
    -moz-box-shadow: 0px 18px 60px rgba(23, 26, 33, 0.05);
    -o-box-shadow: 0px 18px 60px rgba(23, 26, 33, 0.05);
    box-shadow: 0px 18px 60px rgb(23 26 33 / 5%);
}
.services .item .image {  position: relative;display: block;margin-bottom: 15px; }
.services .item .image img { width: 100%;border-radius: 8px; }

.services .item h4 { margin-bottom: 10px;  }
.services .item h4 a { display: block;color: #1A3760;font-size: 16px;font-style: normal; font-weight: bold;line-height: 16px; }
.services .item span {  color: #1A3760;font-size: 14px;font-weight: 400; line-height: 22px;}
.services .item ul { border-top: 1px solid #EAEAEA;padding-top:15px;margin-top:15px; }
.services .item ul li { display: inline-block;font-size:13px;margin-right: 10px;margin-bottom:10px; }
.services .item ul li img { max-width: 18px; }
.services .item .content { position: relative;width:100%; }


.services .item .more {  display: block;color: #1A3760; font-size: 13px;font-weight: 600;line-height: 16px;margin-top:10px;  }

.services .item .more .fal {
    background: #D4002A;
    border-radius: 50%;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    margin-left: 10px;
    text-align: center;
    color: #FFF;
    width: 30px;
    -webkit-box-shadow: 0px 7px 20px rgb(245 195 75 / 20%);
    -moz-box-shadow: 0px 7px 20px rgba(245, 195, 75, 0.2);
    -o-box-shadow: 0px 7px 20px rgba(245, 195, 75, 0.2);
    box-shadow: 0px 7px 20px rgb(245 195 75 / 20%);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


.cta { display: flex;align-items: center;justify-content: center;background: url(https://creativelayers.net/themes/voiture-html/images/background/3.jpg) center center no-repeat;background-size: cover;color: #FFF;padding:150px 50px; border-radius: 8px; }

.cta strong { display: block;font-size:35px;line-height: 1.2;font-weight: 700; margin-bottom: 10px; }
.cta p { font-size:16px;line-height: 1.2;color:rgba(255,255,255,.9); }
.cta .btn { background: #D4002A;margin-left: auto;font-size:13px;color:#FFF;border-radius: 40px;min-width: 100px;letter-spacing: 1px; }

.car { margin-top:50px; }

.car .title { margin-bottom:30px; }

.car .title .breadcrumb { font-size:12px; }
.car .title .breadcrumb a { color:#1A3760; }

.car .title .breadcrumb li:last-child { color:#6c757d; }

.car .title h1{  font-size: 25px;font-weight: 600;line-height: 41px;color: #1A3760;  }
.car .right form { background: #FFFFFF;border: 1px solid #EAEAEA;border-radius: 8px; margin-bottom: 30px;padding: 40px; } 
.car .right form h4{ font-weight: 600; margin-bottom: 30px;} 
.car .right .form-group { margin-bottom: 20px;}
.car .right .form-control{ border: 1px solid #EAEAEA;border-radius: 8px; box-shadow: none; font-size: 13px;padding-left: 20px;} 

.car .right  .btn-whatsapp { background: #28A745;color: #FFFFFF; }   
.car .right  .btn-whatsapp .fab { margin-right:10px;font-size:20px; }   
.car .right  .btn-submit { background: #F5C34B; color: #1A3760; }
.car .right  .btn { display: flex;align-items: center;justify-content: center;border-radius: 8px;font-size: 13px;font-weight: 600;height: 50px;line-height: 50px; }


.car-gallery { margin-bottom: 15px; }
.car-gallery .owl-prev, .car-gallery .owl-next{ 
    display: inline-block;position: absolute; top: 45%; left: 30px;background: rgba(255, 255, 255, 0.1); border-radius: 50%;color: #FFFFFF;
    font-size: 13px;height: 45px;width: 45px;line-height: 45px;text-align: center;z-index: 9; cursor: pointer; 
}

.car-gallery .owl-next{ left:auto;right:30px; }

.car-gallery .owl-prev:hover,  .car-gallery .owl-next:hover{ background: #FFF;color:#5F6973; }

.car-gallery .item { height: 500px;background-size:cover;background-position: center;background-repeat: no-repeat;border-radius: 8px; }
.car-thumbnail .item { display: block;height: 100px;background-size:cover;background-position: center;background-repeat: no-repeat;border-radius: 8px; }



.car .properties {  position: relative;background: #fff;border: 1px solid #EAEAEA;border-radius: 8px;padding: 30px;margin-top:30px; }

.car .properties h4 { color: #1A3760;font-size: 16px;font-weight: 600;line-height: 19px;margin-bottom: 30px; }

.car .properties .item { display: flex;align-items: center;justify-content: center;border-bottom: 1px solid #EAEAEA;font-size: 13px;font-style: normal;padding-bottom:10px;margin-bottom:10px; }
.car .properties .item:last-child { margin-bottom:0px;padding-bottom: 0px;border-bottom: 0px; }

.car .properties .item .left  {color: #1A3760;font-weight:600;}
.car .properties .item .left img { max-width: 20px;margin-right:10px;vertical-align: middle; }
.car .properties .item .right{ margin-top:0px;margin-left: auto; }


.car .description {  position: relative;background: #fff;border: 1px solid #EAEAEA;border-radius: 8px;padding: 30px;margin-top:30px; }

.car .description  { font-size: 14px;line-height: 24px;color: #5F6973;font-weight: 400; }

.car .description h1, .car .description h2, .car .description h3, .car .description h4, .car .description h5, .car .description h6 { font-weight: 600;margin-bottom: 20px;font-size:22px;line-height: 22px;}

.car .description p + p { margin-top:15px; }

.car .description p + h1, .car .description p + h2, .car .description p + h3, .car .description p + h4, .car .description p + h5, .car .description p + h6{ margin-top:20px; }


.features { padding-bottom: 100px; }
.features .item { display: flex;align-items: flex-start;justify-content: center; }
.features .item h3 { color: #1A3760;font-size: 16px;font-weight: 600;line-height: 19px;margin-bottom:10px; }
.features .item p { font-size: 13px;line-height: 20px;color: #5F6973;line-height: 24px; }
.features .item .fal { display: inline-block; font-size: 25px; min-width: 75px; width: 75px; height: 75px; line-height: 75px; text-align: center; background: url(../uploads/shape.svg) center center no-repeat; background-size: 100%;  color: #FFF;  margin-right: 15px; }



.hero { position: relative; background-image: url(/uploads/hero.jpeg); background-repeat: no-repeat; background-size: cover; padding: 90px 0; }
.hero h1 {  color: #FFFFFF;  font-size: 34px;font-weight: 600;  line-height: 41px; }
.hero .breadcrumb li a { color: #FFFFFF;font-size: 13px;font-weight: 400; line-height: 16px;  } 
.hero .breadcrumb li:last-child { color: rgba(255,255,255,.7); }



.hero.slide { padding:0px;height:600px; }
.hero.slide .item { position: relative;height: 600px;background-size:cover;background-position: center;background-repeat: no-repeat; }

.hero.slide .owl-stage-outer:before { content:'';position: absolute;top:0;left:0;width:100%;height:100%;background: rgba(0,0,0,.1); }

.hero.slide .wrapper { display: flex;align-items: center;justify-content: center;position: absolute;top:0;left:0;width:100%;height: 100%;z-index: 1; }

.hero.slide .owl-prev, .hero.slide .owl-next{ 
    display: inline-block;position: absolute; top: 45%; left: 30px;background: rgba(255, 255, 255, 0.1); border-radius: 50%;color: #FFFFFF;border: none;
    font-size: 13px;height: 45px;width: 45px;line-height: 45px;text-align: center;z-index: 9; cursor: pointer; z-index: 22;
}

.hero.slide .owl-nav button.owl-next{ left:auto;right:30px; }
.hero.slide .owl-nav button.owl-prev:hover, 
.hero.slide .owl-nav button.owl-next:hover{ background: #FFF;color:#5F6973; }


.article { margin-top:100px; }

.article .title { font-size: 35px;color: #1A3760;font-weight: 900;margin-bottom: 60px;text-align: center; }
.article h2, .article h3, .article h4, .article h5, .article h6 { color: #1A3760;font-weight: 600;font-size:22px;line-height: 29px;margin-bottom: 17px;}
.article .section { display: flex;align-items: center;justify-content: center;margin-bottom:60px; }

.article .section .left{padding-right: 15px;}
.article .section .left img {border-radius: 8px;}
.article .section .right{padding-left: 15px;}
.article .section .left, .article .section .right{flex: 1;flex-grow: 1;}

.article .section.inverse { flex-direction: row-reverse; }


.article p { color: #5F6973;font-size: 13px; font-weight: 400;line-height: 24px; }

.article p + p { margin-top:15px;line-height: 24px; }


.service .offcanvas { padding-top:0px; }
.service .header {border-bottom: 1px solid rgba(255,255,255,.1);box-shadow: none; }

.service .header .center > li > a, .service .header .center > li > span{color: #FFF;}
.service .header .actions{ border-left:1px solid rgba(255,255,255,.1); }
.service .header .actions li a{color: #FFF;}

.service .boxes { background: #FFF;padding: 50px 0px;border-top: 1px solid #F1F1F1;}
.service .boxes .wrapper{ display: flex;align-items: flex-start;justify-content: center;}
.service .boxes .item { flex:1;flex-grow: 1;padding:0px 20px;text-align: center; }
.service .boxes .item h6 {  color: #1A3760; font-size: 16px;font-weight: 600;line-height: 19px;margin-bottom:10px; }
.service .boxes .item p {  color: #5F6973;font-size: 13px;font-style: normal;font-weight: 400; line-height: 24px; } 
.service .boxes .item img { max-width: 50px;margin-bottom:10px; }

.service .cars { padding-bottom:100px !important; }


.service .contact {  background: rgb(247, 228, 229, .2);padding:50px 0px;}
.service .contact  h6 {color: #1A3760;font-size: 18px;font-weight: 600; line-height: 19px;margin-bottom: 15px;}
.service .contact .btn {display: inline-block; padding: 10px 24px; border-radius: 50px; background: #D4002A;color: #FFFFFF;min-width: 150px;font-weight: 500;line-height: 18px; margin-top: 10px;}

.service .footer { margin-top:0px !important; }




.scroll-top {
    background-image: url(../images/icon/go_top.png);
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 41px;
    text-align: center;
    position: fixed;
    bottom: 19px;
    right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.booking .main { position: static;background: #D4002A;margin-bottom:0px; }
.booking .main .search { background: none;padding:20px 0px; }
.booking .main .search .form-group > label{ color:#FFF; }
.booking .main .search .btn{background: #FFF;color: #222;}


.booking .main .search .form-control,
.booking .main .search .form-control:active,
.booking .main .search .form-control:disabled,
.booking .main .search .form-control:focus,
.booking .main .search .form-control[readonly]{ border:none; }


.booking { background: #EEF2F6; }

.booking .area { background: #FFF; padding:100px 0px; }


.booking .steps { position: relative; display: flex; align-items: center; justify-content: center;margin-top:50px; }

.booking .steps .item { position: relative; display: flex; align-items: center; justify-content: center; flex: 1;flex-grow: 1;background: rgba(153, 155, 163, 0.1);color: #1A3760; font-weight: 600;padding: 28px 30px 24px; margin-right: 10px;border-top-left-radius: 10px; border-top-right-radius: 10px;}
.booking .steps .item:last-child{ margin-right: 0px; }

.booking .steps .item.active { background: #FFFFFF;}

.booking .steps .item .fa { color: #384a58;font-size: 20px;margin-right: 5px; }

.booking .steps .item .fa:before {content: "\f059";}
.booking .steps .item.active .fa:before { content: "\f058"; color: #28B928; }

.booking .cars.area { padding:0px;border-top:0px; }
.booking .cars.area .item { padding: 30px;border-radius: 0px;border:0px;margin-bottom:0px; -webkit-box-shadow: 0px 18px 60px rgb(23 26 33 / 5%); -moz-box-shadow: 0px 18px 60px rgba(23, 26, 33, 0.05); -o-box-shadow: 0px 18px 60px rgba(23, 26, 33, 0.05); box-shadow: 0px 18px 60px rgb(23 26 33 / 5%); }

.booking .cars.area .item h4{font-size: 18px;margin-bottom: 10px;}
.booking .cars.area .item .actions { margin-left: auto;text-align: center; }
.booking .cars.area .item .actions .price { display: block;font-weight: 600;color: #222; }
.booking .cars.area .item .actions .ask { display: block;font-size: 12px;font-weight: 600;color: #222; }
.booking .cars.area .item .actions .ask + .btn{ background: #F5C34B;color:#222; }
.booking .cars.area .item .actions .btn { display: inline-block;padding: 5px 20px;border-radius: 50px;background: #D4002A; color: #FFFFFF;margin-top: 15px; }

.booking .cars.area .item ul{border-top: 0px;margin-top: 0;padding-top: 0;}



.booking .options .price { font-weight: 700;font-size: 16px;color: #222 }

.booking .buttons { text-align: right; }
.booking .buttons .btn { min-width: 100px;border-radius: 50px;}
.booking .buttons .btn-dark { background: #D4002A; }


body:not(.index) .footer {  margin:100px 0 0 0;border-radius: 0px;  }
.footer { position: relative;background: #EEF2F6;border-radius: 16px;color: #a8a8a8;font-size: 14px;font-weight: 500;margin: 100px 60px 30px 60px; }
.footer .upper { padding: 40px 0px; border-bottom: 1px solid rgba(0,0,0,.10); }
.footer .upper .row {  display: flex;align-items: center;justify-content: center; }

.footer form { display: flex;align-items: center;justify-content: center;width: 100%;margin-bottom:10px; }
.footer form .form-control{  border: none; color: #5F6973;font-size: 12px; }
.footer form .btn-primary, .footer form .form-control { position: relative; padding: 0 20px;border-radius: 8px;font-size: 14px; line-height: 14px;height: 40px;line-height: 40px;font-weight: 500;line-height: 1.5;border: 0; }
.footer form .form-control { border-top-right-radius: 0px;border-top-right-radius: 0px;box-shadow: none; }
.footer form .btn-primary { background: #D4002A;color: #FFFFFF;border-top-left-radius: 0px;border-bottom-left-radius: 0px; }

.footer .middle { padding:60px 0px; }
.footer .bottom { padding-bottom:60px; }

.footer .widget h6{ color: #1A3760;font-size: 13px;font-weight: 600;line-height: 16px; margin-bottom: 20px; text-transform: uppercase; }
.footer, .footer p, .footer a { color: rgba(26, 55, 96, 0.7);font-size: 13px;font-weight: 400;line-height: 24px; }

.footer .widget .big { color: #1A3760;font-size: 24px;font-weight: 600;line-height: 24px; }



.footer .logo img {  max-width: 100px; }
.footer .col-md-4 ul li i {
    width: 20px;
}
.footer .col-md-8 .col-md-4 ul {
    margin: 0;
    padding: 0;
}
.footer .col-md-8 .col-md-4 ul li,
.footer .col-md-8 .col-md-4 ul li a {
    color: #a8a8a8;
    font-size: 14px;
    font-weight: 500;
}
.footer .col-md-8 .col-md-4 h3 {
    color: #384a58;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 18px;
    letter-spacing: -0.25px;
    line-height: 28px;
}
.copyright {
    font-size: 13px;
    padding-top: 30px;
    color: #a8a8a8;
    text-align: center;
}
.for-mobile {
    display: none;
    position: fixed;
    bottom: 50px;
    left: 40px;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 25px;
    cursor: pointer;
    transform-origin: center;
    z-index: 999;
}
.for-mobile > .fa-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: rgba(79, 206, 93, 0.5);
    transition: all 0.2s ease-in-out;
    border-radius: 100%;
    transition: all 0.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: heart;
    animation-name: heart;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}
.for-mobile > .fab {
    position: relative;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #4fce5d;
    text-align: center;
    border-radius: 100%;
    transition: all 0.2s ease-in-out;
    transform-origin: 50% 50%;
}
@-webkit-keyframes heart {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes heart {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@media (min-width: 991.98px) {
    .mobile-header, .mobile-menu { display: none; }

    .search .form-group { position: relative; flex: 1;flex-grow: 1;margin-bottom: 0px;padding-right:15px; }


    
   
}
@media (max-width: 991.98px) {

    body.booking {  padding-bottom: 100px; }


    .booking .main { display: none; }


    .booking .steps .item {  flex-direction: column; padding: 10px;font-size:11px;line-height: 11px;text-align: center;height: 70px; }

    .booking .steps .item .fa{ display: block;margin-right: 0px;margin-bottom: 5px;font-size:15px; }

    .booking .cars.area .item{ padding:15px; }

    .booking .cars.area .actions { display: flex;align-items: center;justify-content: center; padding: 10px; }
    .booking .cars.area .actions .ask  { order: 2;color: #1A3760 !important;font-weight: normal !important; }
    .booking .cars.area .actions .ask br {display: none; }
     .booking .cars.area .actions .price { order:2; }
    .booking .cars.area .actions .btn { margin-right:auto;margin-top:0px !important; order: 1; font-size: 13px;}

    
    .booking .area { padding: 30px;}
    
    .booking .buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
        box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
        width: 100%;
        margin: 0;
        z-index: 9999;
    }
    .booking .buttons .btn {
        padding: 15px 0;
        flex: 1;
        flex-grow: 1;
        border-radius: 0;
    }
    .booking .scroll-top {
        display: none;
    }
    .booking .footer {
        display: none;
    }
    .mdb {
        display: block !important;
    }
   
}
@media (max-width: 991.98px) {

    .offcanvas { padding-top: 70px; }


    .header { display: none; }

    body.show .offcanvas { 
        position: relative;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transform: translate3d(80vw, 0, 0);
        transform: translate3d(80vw, 0, 0);
        -webkit-transition: -webkit-transform .4s ease;
        -o-transition: transform .4s ease;
        transition: -webkit-transform .4s ease;
        -webkit-box-shadow: 0 10px 30px rgb(0 0 0 / 10%); box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
        z-index: 1;
    }
    body.show .sliders{ margin-top: 0px; }
    body.show .mobile-menu { display: block; opacity: 1; visibility: visible; -webkit-animation: fadeInLeft 0.4s both; -moz-animation: fadeInLeft 0.4s both; -o-animation: fadeInLeft 0.4s both; animation: fadeInLeft 0.4s both;  }

    .mobile-header { position: absolute; top: 0; left: 0; width: 100%; height: 70px; padding: 0 25px 0 15px; display: flex; align-items: center; justify-content: center; background: #fff; -webkit-box-shadow: 0 10px 30px rgb(0 0 0 / 10%); box-shadow: 0 10px 30px rgb(0 0 0 / 10%); z-index: 9999; }
    .mobile-header .logo { display: block; max-width: 100px;  }
    .mobile-header .logo img { max-width: 100%; }
    .mobile-header .toggle { position: relative;display: flex;align-items: flex-end;flex-direction: column;color: #384a58;font-size: 13px;margin-left: 15px;}
    .mobile-header .toggle span{ display: block; background: #1A3760; height: 2px;margin-bottom:4px; }
    .mobile-header .toggle span:nth-child(1) { width: 25px; }
    .mobile-header .toggle span:nth-child(2) { width: 18px; }
    .mobile-header .toggle span:nth-child(3) { width: 11px; }
    .mobile-header .rent { display: block; padding: 6px 12px; border-radius: 50px; background: #D4002A; color: #FFFFFF; font-weight: 600; font-size: 12px; line-height: 12px; letter-spacing: -1px; margin-left: auto;  }


    .mobile-menu { display: none; align-items: center;justify-content: center;flex-direction: column;position: fixed; top: 0; left: -80vw;  width: 80vw; max-width: 80vw; overflow-y: scroll; opacity: 0; visibility: hidden; z-index: 9999999; height: 100%; background: #0A2357; }
   
    .mobile-menu .top { display: flex; align-items: center; justify-content: center; height: 70px;padding: 0px 15px;color: #FFF;font-weight: 900;letter-spacing: 1px; border-bottom:1px solid rgba(255,255,255,.1);  }
    .mobile-menu .top .logo { max-width: 200px;  }
    .mobile-menu .top .logo img { max-width: 100%; }
    .mobile-menu .top .close { font-size: 20px;margin-left: auto;color: rgba(255,255,255,.7); }




    .mobile-menu .center li a { display: flex;align-items: center; justify-content: flex-start; color: #FFFFFF;font-size: 13px; }

    .mobile-menu .center > li  { border-bottom: 1px solid rgba(255,255,255,.05); }

    .mobile-menu .center > li > a { padding: 15px;  }

    .mobile-menu .center > li > span { display: flex;align-items: center;justify-content: center; padding: 15px;width: 100%; }

    .mobile-menu .center li .fal { margin-left: auto;font-size: 20px; }
 
    .mobile-menu .center ul ul { border-top: 1px solid rgba(149, 149, 149, 0.2); padding: 15px; margin: 5px 0;  }

    .mobile-menu .center li > ul { display: none;}

    .mobile-menu .center li.open > a .fal { -ms-transform: rotate(90deg); transform: rotate(90deg); }

    .mobile-menu .center li.open > ul {  display: block;padding: 10px 0;background: rgba(0,0,0,.1); border-top: 1px solid rgba(149, 149, 149, 0.2);  }

    .mobile-menu .center li.open > ul li a {  padding: 5px 15px;   }


    .mobile-menu .bottom  { margin-top:60px; }

    .mobile-menu .bottom li a {position: relative;display: block;color: #FFFFFF;font-size: 12px;padding:0 50px 0 15px;line-height: 21px;margin-bottom: 10px;  }

    .mobile-menu .bottom li .fal { width: 20px; }
    
    .mobile-menu .bottom li a span { display: block; line-height: 16px; margin-top: 5px;color: #FFFFFF;font-size: 13px; }
    
    .mobile-menu .bottom li.socials  { margin-top: 20px;padding-left:15px; }
    .mobile-menu .bottom li.socials a { display: inline-block;padding:0;margin-right: 15px;}


    .main { top: 0;border-bottom:1px solid #EEE; }
    .main .search {  display: block;box-shadow: none;padding:40px 20px; }
    .main .search .form-group{margin-bottom: 15px;padding-right: 0px;width: 100%;}
    .main .search .btn { width:100%; }

    .sliders { padding:0px !important; }
    .sliders .item{ height: 400px !important;border-radius: 0px !important; }
    .sliders .item .container {   display: flex;align-items: center;justify-content: center; flex-direction: column; width: 100%;height: 100%;padding:50px 15px 30px 15px;  }
    .sliders .item .top_title{ font-size:20px !important;line-height: 20px !important;}
    .sliders .item .middle_title{ font-size: 30px !important;line-height: 40px !important; }
    .sliders .item .bottom_title{     font-size: 18px !important; line-height: 22px !important; }
    .sliders .item .btn{ margin-top: auto !important;width: 100%; }

    .features { text-align: center; }
    .features .item { display: block;margin-bottom: 30px; }
    .features .item .fal { margin:0 0 10px 0; }

    .hero { text-align: center; }
    .hero.slide .owl-nav{ display: none; }
    .hero.slide, .hero.slide .item { height: 400px; }
    .hero.slide .container { width:100%; }
    .hero.slide h1 { font-size:25px; }
    
 
    .article { margin-top:50px; }
  
    .article .section { flex-direction: column; margin-bottom: 30px; }
    .article .section.inverse { flex-direction: column-reverse; }

    .article .section .left { margin-bottom:30px;padding-right: 0;}
    .article .section .right { padding-left: 0;}
    .article .section .left img { border-radius: 8px; }

    .article .section.inverse .left { order:2; }
    .article .section.inverse .right { order:1; }


    .service .offcanvas { padding-top:0px; }

    .service .mobile-header{ background: none;border-bottom: 1px solid rgba(255,255,255,.1);box-shadow: none; }

    .service .mobile-header .toggle span{ background: #FFFFFF; }

    .service .boxes { background: #FFF;padding: 50px 0px;border-top: 1px solid #F1F1F1;}
    .service .boxes .wrapper{ display: flex;align-items: flex-start;justify-content: center;}
    .service .boxes .item { flex:1;flex-grow: 1;padding:0px 20px;text-align: center; }
    .service .boxes .item h6 {  color: #1A3760; font-size: 16px;font-weight: 600;line-height: 19px;margin-bottom:10px; }
    .service .boxes .item p {  color: #5F6973;font-size: 13px;font-style: normal;font-weight: 400; line-height: 24px; } 
    .service .boxes .item img { max-width: 50px;margin-bottom:10px; }

    .service .cars { padding-bottom:100px !important; }


    .service .contact {  background: rgb(247, 228, 229, .2);padding:50px 0px;}
    .service .contact  h6 {color: #1A3760;font-size: 18px;font-weight: 600; line-height: 19px;margin-bottom: 15px;}
    .service .contact .btn {display: inline-block; padding: 10px 24px; border-radius: 50px; background: #D4002A;color: #FFFFFF;min-width: 150px;font-weight: 500;line-height: 18px; margin-top: 10px;}

    .service .footer { margin-top:0px !important; }


    .cars .item { display: block;margin-bottom: 30px;padding:10px; }
    .cars .item .image{width: 100%;max-width: 100%;}
    .cars .item .content { padding: 15px 10px 0px 10px; }
    .cars .item h4 { font-size: 18px; }
    
    .boxes .wrapper{ display: block !important; }   
    .boxes .wrapper .item { margin-bottom: 30px; }
    .boxes .wrapper .item:last-child { margin-bottom:0px; }

    .contact { text-align: center; }

    .contacts{ margin:50px 0px !important; }
    .contacts .left { margin-bottom:50px !important; }
    
    .car .title h1{ font-size:20px;line-height:26px;margin-top:5px; }
    .car .title .breadcrumb{ font-size:11px; }
    .car-gallery .item{ height: 300px; }
    .car .right { margin-top:30px; }

    .cta { display: block;padding: 70px 30px;  }
    .cta strong{ font-size: 25px;line-height: 30px; }
    .cta .content {margin-bottom: 15px;}
 
   
   
    .footer { margin:50px 0 0 0;border-radius: 0;text-align: center; }
    .footer .upper{ display: block; }
    .footer .upper .row{display: block;}
    .footer .upper .logo{margin-bottom: 30px;}
    .footer .upper a {color: #1A3760;}
    .footer .text-right { text-align: center; }
    .footer .widget { margin-bottom:40px; }
   
}
