/*--------------------------------------------------------------
1.0 Reset
--------------------------------------------------------------*/
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, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    border: 0;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

html {
    font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units https://clagnut.com/blog/348/#c790 */
    overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
    -webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
    -ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
    box-sizing: border-box; /* Apply a natural box layout model to the document; see https://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
}
*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
}

body {
    background: #fff; /* Fallback for when there is no custom background color defined. */
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
    display: block;
}

table { /* tables still need 'cellspacing="0"' in the markup */
    border-collapse: separate;
    border-spacing: 0;
}

a:focus,
a:hover,
a:active {
    outline: 0;
}

a img {
    border: 0;
}

img{
    height: auto;
    display: block;
    max-width: 100%;
}

figure,
footer.footer,
.about-sec-wrap,
.inner-banner-wrap{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
p,
.content-hold,
.entry-content,
.content-wrap{
    margin: 0 0 25px;
}

p:last-of-type{
    margin-bottom: 0;
}

h1,h2,h3,h4,h5,h6{
   clear: both;
   line-height: 1.5;
   font-weight: 700;
   color: #000;
   margin: 0;
}

h1 {  
    font-size: 40px;  
    margin-bottom: 20px;
}  

h2 {
    font-size: 35px; 
    margin-bottom: 20px;
}

h3 {
    font-size: 28px; 
    margin-bottom: 15px;
    }

h4 {
    font-size: 24px;
    margin-bottom: 10px;
    }

h5 {
    font-size: 20px; 
    margin-bottom: 10px;
    }

h6 {
    font-size: 16px;
    margin-bottom: 10px;
}

h6.small{
    font-size: 14px;
}

b,
strong {
    font-weight: 700;
}

dfn,
cite,
em,
i {
    font-style: italic;
}



/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 15px;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 25px;
}

figure {
    margin: 0;
}

table {
    margin: 0 0 30px;
    width: 100%;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/

.clr-red{
    color: red;
}

label{
    display: block;
    font-size: 15px;
    font-weight: 400;
}

.form-inline{
    justify-content: space-between;
}

.form-inline .form-group:last-child {
    float: right;
}

.form-inline .form-group {
    width: 48%;
    margin-bottom: 15px;
}

.form-inline .input {
    width: 100%;
}

button,
input,
select,
textarea {
    font-size: 100%; /* Corrects font size not being inherited in all browsers */
    margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
    vertical-align: baseline; /* Improves appearance and consistency in all browsers */
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: none;
    cursor: pointer;
    -webkit-appearance: button;
    background: #000000;
    border-radius: 0;
    color: #ffffff;
    display: block;
    font-size: 14px;
    line-height: 1;
    padding: 15px 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition-property: background, color;
    transition-duration: 0.5s;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background-color: #ce232b;
    border: 1px solid #ce232b;
}

input[type="text"], input[type="password"], textarea, input[type="email"], input[type="tel"], input[type="url"], input[type="search"], select {
    width: 100%;
    border: 1px solid #ccc;
    background-color: transparent;
    border-radius: 0;
    color: #000;
    font-size: 14px;
    line-height: 1;
    padding: 10px;
    height: 40px;
}

textarea{
    height: 150px;
}

.CaptchaImage {margin: 0 auto; display: block;}
.form-btns {display: flex; justify-content: center;}


::-webkit-input-placeholder {
    color: #000;
}

:-moz-placeholder { /* Firefox 18- */
    color: #000;
}

::-moz-placeholder {  /* Firefox 19+ */
    color: #000;
}

:-ms-input-placeholder {  
    color: #000; 
}

form.wpcf7-form.invalid input.wpcf7-validates-as-required::-webkit-input-placeholder {
   color: #000;
}
form.wpcf7-form.invalid input.wpcf7-validates-as-required:-moz-placeholder {
   color: #000;
}
form.wpcf7-form.invalid input.wpcf7-validates-as-required::-moz-placeholder {
   color: #000;
}
form.wpcf7-form.invalid input.wpcf7-validates-as-required :-ms-input-placeholder {  
   color: #000;
}

textarea.form-control {
    border-radius: 0;
    color: #000;
}

input[type="text"]:focus, 
input[type="password"]:focus, 
textarea:focus, 
input[type="email"]:focus, 
input[type="tel"]:focus, 
input[type="url"]:focus, 
input[type="search"]:focus{
    border-color: #ce232b;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(167,0,0,.075),0 0 8px rgba(167,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(167,0,0,.075),0 0 8px rgba(167,0,0,.075);
}

span.wpcf7-not-valid-tip {
    position: absolute;
    font-size: 12px;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/

/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/

a {
    color: #ce232b;
    transition: all 400ms ease-in-out;

}

a,a:hover{
    text-decoration: none;
}


/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ce232b;
    border-top: 1px solid #ce232b;
    padding: 0px;
}

.navbar-nav li{
    position: relative;
}
.navbar-nav li a {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    padding: 10px 20px;
}
.navbar-nav>li:hover>a,
.navbar-nav>li.active>a{
    background-color: #ce232b;
}
.navbar-nav li ul{
    list-style: none;
}

.navbar-nav li ul.sub-menu{
    position: absolute;
    top: 133%;
    left: 0px;
    z-index: 5;
    padding: 0;
    margin: 0;
    background-color: #fff;
    width: 200px;
}
.navbar-nav li ul.sub-menu li a{
    padding: 10px 15px;
    width: 100%;
    display: inline-block;
    color: #000;
    font-weight: normal;
}
.navbar-nav li ul.sub-menu ul.sub-menu{
    left: 101%;
    top: 0px;
}

.navbar-nav li ul li:hover>a,
.navbar-nav li ul li.active>a{
    background-color:#000 ;
    color: #fff;
}

.navbar-nav li ul{
    opacity: 0;
    transform: translateY(15px);
    transition: all 400ms ease-in-out;
    visibility: hidden;
}
.navbar-nav li:hover>ul.sub-menu,
.navbar-nav li ul.sub-menu li:hover ul.sub-menu{
    opacity: 1;
    transform: translateY(0px);
    visibility: visible;
}

.navbar .navbar-collapse{
    justify-content: flex-end;
}

.navbar .navbar-brand {
    width: 80%;
    padding: 20px 30px;
    margin-right: 0;
    display: block;
    background-color: #fff;
}

/*-------------------------------------- 
13.1 Basic Styles
----------------------------------------*/

.finance{
	padding-top: 28%;
}

.fnt-semi{
    font-weight: 600;
}

.fnt-bold{
    font-weight: 700;
}

.fnt-exbold{
    font-weight: 800;
}

@keyframes slideUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes slideUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

img{
    transition-property: transform;
    transition-duration: 0.5s;
}

.site{
    display: flex;
    flex-direction: column;
}

body {
    color: #000;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    max-width: 100%;
    overflow-x:hidden; 
    line-height: 1.85;
    font-family: 'Open Sans', sans-serif;
}

/*-------------------------------------- 
14.0 Extra Styles
----------------------------------------*/

/*------------ Helper Class -------------*/
.font1{
    font-family: 'Open Sans', sans-serif;
}
.font2,h1,h2,h3,h4,h5,h6,.main-banner-slider .banner-content .contant-no{
    font-family: 'Open Sans Condensed', sans-serif;
}
.link-cover{
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    z-index: 2;
}
.main-title{
    font-size: 35px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #ce232b;
}
.main-title span{
    color: #08498c;
    display: block;
    font-size: 15px;
    letter-spacing: 1px;
}
.w-overlay,
.b-overlay{
    position: relative;
}
.w-overlay:before,
.b-overlay:before{
    content: '';
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    z-index: 1;
}
.w-overlay:before{
    background-color: rgba(255, 255, 255, 0.8);
}
.b-overlay:before{
    background-color: rgba(0, 0, 0, 0.8);
}
.content-main-wrap{
    position: relative;
    z-index: 1;
}
.des p{
    margin-bottom: 0px;
}
.pri-color{
    color: #ce232b;
}
.sec-color{
    color: #000000;
}
.link{
    color: #000;
}
.link:hover{
    color: #ce232b;
}
.inner-title {
    text-transform: uppercase;
    border-bottom: 5px solid #ce232b;
    display: inline-block;
    line-height: 1;
    color: #000;
    padding-bottom: 20px;
}
.inner-title .sub-title{
    display: block;
    font-size: 16px;
    margin-top: 10px;
    color: #000;
}
.btn-wrap a{
    font-size: 18px;
    font-weight: 700;
    border: 2px solid #ce232b;
    color: #ce232b;
    text-transform: uppercase;
    padding: 10px 30px;
}
.btn-wrap a:hover{
    color: #fff;
    background-color: #ce232b;
}

.image-effect{
    overflow: hidden;
}
.image-effect img{
    transition: all 400ms ease-in-out;
}
.image-effect:hover img{
    transform: scale(1.1);
}

/*------------ Header ----------------*/
header{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 6;
    transition: all 400ms ease-in-out;
}
header.shrinked .navbar .navbar-brand {
    width: 180px;
}
header.shrinked{
    background-color: #000;
    top: -51px;
}
.top-header-sec {
    padding: 10px 0px;
}
.top-header-sec ul{
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    display: inline-flex;
    align-items: center;
}
.top-header-sec ul li{
    margin-right: 30px;
    font-size: 14px;
}
.top-header-sec ul li,
.top-header-sec ul li a{
    color: #fff;
}
.top-header-sec ul li i{
    margin-right: 5px;
}

/*-------- Header Topbar -------------*/
.topbar-wrap{
    background-color: #fff;
}
.topbar-wrap .contact-details{
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0px;
    padding: 0px;
    list-style: none;
    padding: 5px 50px;
    background-color: #ffffff;
}

.topbar-wrap .contact-details li{
    margin-right: 30px;
}

.topbar-wrap .contact-details li:last-child{
    margin-right: 0;
}

.topbar-wrap .contact-details li a{
    color: #000;
}

.topbar-wrap .contact-details li a:hover{
    color: #ce232b;
}

/*------- Banner Slider ------------------*/
.main-banner-slider{
    padding: 0px;
    list-style: none;
    margin: 0px;
    position: relative;
}

.main-banner-slider li{
    position: relative;
}

.main-banner-slider .banner-content{
    position: absolute;
    z-index: 2;
    top: 25%;
    left: 0px;
    bottom: 0px;
    right: 0px;
}

.main-banner-slider .banner-content .des{
    font-size: 17px;
    line-height: 1.4;
    font-weight: 600;
}

.main-banner-slider .banner-content h1{
    margin-bottom: 30px;
    line-height: 1;
    font-size: 56px;
}
.main-banner-slider .banner-content .contant-no{
    font-size: 34px;
    font-weight: 800;
    color: #fff;
}
.main-banner-slider .banner-content .contant-no:hover{
    color: #ce232b;
}
.main-banner-slider .breadcrumb li,
.main-banner-slider .breadcrumb li a{
    color: #ffffff;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 600;
}

.main-banner-slider .breadcrumb-item+.breadcrumb-item::before{
    color: #fff;
}

.main-banner-slider figure.b-overlay:before{
    background-color: rgba(0, 0, 0, 0.4);
}

.main-banner-slider .slick-active .box{
    animation-name: slideUp;
    -webkit-animation-name: slideUp;
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    visibility: visible !important;
}
.main-banner-slider .box{
    opacity: 0;
}
.main-banner-slider .slick-active .box{
    opacity: 1;
}
.banner-slider-wrap:after,
.banner-slider-wrap:before{
    content: '';
    position: absolute;
    left: 0px;
    right: 0px;
    z-index: 1;
}
.banner-slider-wrap:after{
    bottom: 0px;
    background-image: linear-gradient(to top, rgba(0,0,0,1) , rgba(0,0,0,0));
    height: 240px;
}
.banner-slider-wrap:before{
    top: 0px;
    height: 340px;
    background-image: linear-gradient(to bottom, rgba(0,0,0,1) , rgba(0,0,0,0));
}
.banner-slider-wrap {
    position: relative;
}
.banner-slider-wrap .slick-prev:before, 
.banner-slider-wrap .slick-next:before {
    content: '\f053';
    font-family: 'FontAwesome';
    opacity: 1;
    font-size: 35px;
}
.banner-slider-wrap .slick-prev:before{
    content:'\f053';
}
.banner-slider-wrap .slick-next:before{
    content:'\f054';
}
.banner-slider-wrap .slick-arrow{
    z-index: 2;
    top: 40%;
}
.banner-slider-wrap .slick-arrow:hover{
    border: 0px;
}
.banner-slider-wrap .slick-prev{
    left: 30px;
}

.banner-slider-wrap .slick-next{
    right: 30px;
}
.main-banner-slider figure img{
    height: 900px;
    width: 100%;
    object-fit: cover;
}

/*-------- Breadcrumb--------*/
.breadcrumb {
    background-color: transparent;
    padding: 0px;
    margin: 0;
}

/*--------- Vehicle Types --------*/
.vehicle-types-wrap {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 2;
}
.vehicle-types figure {
    position: relative;
    background-color: rgba(255,255,255,0.5);
    min-height: 235px;
    align-items: center;
    justify-content: center;
}

.vehicle-types figure figcaption {
    position: absolute;
    right: 0px;
    bottom: 0px;
    left: 0;
    color: #fff;
    font-size: 25px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 20px;
    background-color: rgba(206, 35, 43, 0.9);
    z-index: 1;
}
.vehicle-types-wrap .row :last-child .vehicle-types figure{
    padding: 0px 50px;
}

/*------ About Us Section ---------*/
.text-content-wrapper{
    margin-bottom: 40px;
}
.welcome-main-wrap{
    position: relative;
    z-index: 2;
    background-color: rgba(255,255,255,0.6);
    padding-bottom: 50px;
}
.about-sec-wrap{
    border-bottom: 1px solid #ce232b;
}
.welcome-main-wrap .featured-img{
    background-image: url('../siteart/welcome-img.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}
.welcome-content-wrapper{
    padding: 50px 30px 50px;
}
.contact-details-wrap{
    margin-top: 30px;
}
.contact-details-wrap ul{
    padding: 0px;
    font-size: 15px;
    margin: 0px;
    list-style-type: none;
}
.des p{
    margin-bottom: 0; 
}
.sec-title{
    text-transform: uppercase;
    font-size: 21px;
    border-bottom:4px solid #ce232b; 
    display:inline-block;
    line-height: 1;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

/*------ Location Section ---------*/
.location-main-wrap {
    background-color: rgba(0,0,0,0.8);
    padding: 40px 0px;
    margin-bottom: 40px;
}
.location-main-wrap ul{
    padding: 0px;
    margin: 0px;
    list-style: none;
}
.location-main-wrap ul li{
    line-height: 1;
    margin-bottom: 10px;
}
.location-main-wrap h5 {
    margin-bottom: 10px;
    line-height: 1;
}
.location-main-wrap h5,
.location-main-wrap ul,
.location-main-wrap ul li a{
    color: #f9f9f9;
}


/*-------- Footer -------*/
footer{
    padding: 50px 0px;
    font-size: 14px;
}
footer.b-overlay:before{
    background-color: rgba(206, 35, 43, 0.7);
}
.copyright {
    font-size: 14px;
    line-height: 1.7;
}

footer ul{
    margin-bottom: 0px;
    padding: 0px;
    list-style: none;
}
footer ul.footer-menu{
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 10px;
}
ul.footer-menu li{
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid #fff;
    line-height: 1;
}
ul.footer-menu li:last-child{
    margin-right: 0;
    padding-right: 0px;
    border-right: 0;
}
ul.footer-menu li a{
    text-decoration: underline;
}

footer h5,
footer ul li,
footer ul li a,
footer .footer-content .right-content{
    color: #fff;
}
footer ul li a:hover{
    color: #ce232b;
}
footer .footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .footer-content .right-content{
    padding-left: 50px;
    margin-left: 50px;
    border-left: 5px solid #fff; 
}
footer .footer-content .right-content a{
    color: #fff;
}
footer .footer-content .right-content a:hover{
    color: #ce232b;
}
footer .text-content,
footer .text-content h5{
    font-size: 17px;
}
footer .text-content h5{
    margin-bottom: 5px;
}
footer .row{
    align-items: center;
}

/*--------- Inner banner ----------*/
.inner-banner-wrap{
    height: 550px;
    display: flex;
    align-items: center;
}
.inner-banner-wrap.b-overlay:before{
    background-color: rgba(0,0,0,0.4);
}
.inner-banner-content{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 33%;
    margin-top: 120px;
}

.inner-banner-content .des{
    font-size: 17px;
    line-height: 1.4;
    font-weight: 600;
}

.inner-banner-content h1{
    margin-bottom: 30px;
    line-height: 1;
    font-size: 56px;
}
.inner-banner-content .contant-no{
    font-size: 34px;
    font-weight: 800;
    color: #fff;
}
.inner-banner-content .contant-no:hover{
    color: #ce232b;
}
.inner-banner-content h1,
.inner-banner-content .des,
.inner-banner-content a{
    color: #fff;
}
.inner-banner-content .link{
    font-size: 18px;
    font-weight: 700;
}
.inner-contents {
    padding: 50px;
    background: rgba(255,255,255,0.7);
}
.inner-contents-wrap{
    background-image: url('../siteart/content-bg.jpg');
    background-repeat: no-repeat;background-size: cover;
    background-position: center center;
}
.contact-des p{
    margin-bottom: 0;
}
.contact-des {
    margin-bottom: 10px;
}

/*-------- Map ---------*/
.map-wrap iframe {
    width: 100%;
    margin-bottom: -9px;
    height: 300px;
}



/*  SCROLLING IMAGE INVENTORY SANDHILLS 
------------------------------------------------*/
.scrolling-wrap {
    width:100%!important;
    height:90px!important;
    overflow:hidden;
	z-index: 1!important; 
	margin-top: 10px; 
	margin-bottom: 10px;
}
 
.scrolling{
    width:100%!important;
    height:90px!important;
}

/* Footer Styles */

a.footerlink:link, a.footerlink:visited, a.footerlink:active{text-decoration:underline; font-family:Arial, Helvetica, sans-serif;font-size:15px; color: #fff;}
a.footerlink:hover {text-decoration:none; font-family:Arial, Helvetica, sans-serif;font-size:15px;}

.footertext{font-family:Arial, Helvetica, sans-serif;font-size:15px; color:#fff;}

.smallfootertext{font-family:Arial, Helvetica, sans-serif;font-size:15px; color:#fff;}

.divfooter {max-width: auto; text-align: left; margin:0 auto;}
