html{
    height: 100%;
    font-size: 62.5%; /* Equal to 10px */
}
html, html a {
    -webkit-font-smoothing: antialiased !important;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);    
}
body{
    margin: 100px 0 0 ;
    padding: 0;
    font-family: 'Roboto Condensed', 'Myriad Pro', sans-serif; 
    font-size: 1.5rem;
    line-height: 1.3;
    color: #000;
    height: 100%;
    background: #fff;
    -webkit-font-smoothing: antialiased; 
}
button, a{
    text-decoration: none;
    color: #333;
    outline: 0 transparent!important;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
a:focus, a:hover, a:active, a:selected, a:visited{
    outline: 0;
}
a:hover{
    color:#e91b2b; 
}
*, *:after, *:before{
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box;    
    -ms-box-sizing: border-box;    
    -o-box-sizing: border-box;    
    box-sizing: border-box;   
}
table{
    width: 100%;
    border: 0;
}
h1, h2, h3, h4, h5{
    line-height: 1.2;
    margin: 0 0 12px;
}
h1{
    font-size: 2.6rem;
}
h2{
    font-size: 2.4rem;
}
h3{
    font-size: 2.2rem;
}
h4{
    font-size: 1.8rem;
}
h5{
    font-size: 1.6rem;
}
p{
    margin: 0 0 8px;
}       
hr {
    display: block;
    height: 1px;
    background: #333;
    border: 0;
    margin: 10px 0;
    padding: 0;
}
ul, ol{
    margin: 0 0 10px;
    padding: 0 0 0 16px;
}
li{
    margin: 0 0 2px;
    padding: 0;
}     

.floatL{
    float: left!important;
}
.floatR{
    float: right!important;
}
.clearBoth{
    clear: both;
    display: block;
}
.icon-qv{
    margin-right: 6px;
}
#mobileNavBtn{
    display: none;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -20px;
    background: transparent;
    z-index: 9;
    text-align: center;
    color: #e91b2b;
    font-size: 3.6rem;
    line-height: 40px;
}

.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.pace-inactive {
    display: none;
}
.pace .pace-progress {
    background: transparent;
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 100%;
    width: 100%;
    height: 4px;
}
.loader{
    background: url(../images/loader.gif) center no-repeat;
    width: 64px;
    height: 64px;
    position: absolute;
    left: 50%;
    top:50%;
    margin: -32px 0 0 -32px;
    z-index: 999;
}

img{
    border: 0;
    vertical-align: middle;
}
picture{
    display: block;
    margin: 0;
    text-align: center;
}
picture img{
    max-width: 100%; 
}
.photo{
    background: #fff url(../images/loader.gif) center no-repeat;
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 0;
}
.photo img{
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
}
a.photo:hover img, a:hover .photo img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.pace-done .photo{
    background: transparent;
}
.pace-done .photo img{
    opacity: 1;
    filter: alpha(opacity=100);
}


/* Alerts */              
.alert{
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 12px; 
}
.alert.success{
    color: #117711;
}    
.alert.error{
    color: #e51400;
}
.alert.info{
    color: #2288cc;
}
.notification{
    color: #fff;
    font-size: 1.4rem;
    padding: 10px 25px 10px 35px;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    margin: 5px 0;
    position: relative;
    text-align: left;
    background-repeat: no-repeat;
    background-position: 10px center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}              
.notification .close-btn {
    background: url(../images/icon-clear.png) center no-repeat;
    width: 30px;
    height: 100%;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    cursor: pointer;
}
.notification.info{
    background-color: #2288cc;  
    background-image: url(../images/icon-notification.png); 
} 
.notification.error{
    background-color: #e51400;
    background-image: url(../images/icon-error.png);
} 
.notification.success{
    background-color: #117711;
    background-image: url(../images/icon-success.png);    
}
/* */


/* Listing */
.listing{
    position: relative;
}
.listing ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.listing li{
    margin: 0;
    padding: 0; 
}
.listing .holder{
    display: block;
    position: relative;
    overflow: hidden;
}
.listing .title{
    display: block;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    max-height: 60px;
    -webkit-box-orient: vertical;     
    -webkit-line-clamp: 3;   
}
.listing .date{
    display: block;
}  
.listing .summary{
    display: block;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.listing .details{
    display: block;
}
.listing .photo{
    z-index: 0; 
}
.listing .photo img{
    width: 100%;
    height: 100%;
    display: block; 
    position: relative;
    left: 0;
    top: 0;
}
/* */


/* Paging */
.page-numbering{
    margin: 0;
    width: auto;
    height: 28px;
    padding-top: 10px;
    border-top: 1px solid #a8a8a8;
    clear: both;
}
.page-numbering ul{
    margin: 0;
    padding: 0;
    display: inline-block;
    height: 28px;
    width: auto;
    float: right;
}
.page-numbering li{
    width: 28px!important;
    height: 28px;
    margin: 0 6px 0 0 !important;
    padding: 0 0 0 0;
    display: inline;
    text-align: center;
    float: left; 
}
.page-numbering a{
    display: block;
    font-size: 16px;
    line-height: 28px;
    color: #a8a8a8;
    background-color: transparent;
    position: relative;
    width: 28px;
    height: 28px;
    z-index: 1;
    border: 1px solid #a8a8a8;  
    -webkit-transform: skew(-15deg);
    -moz-transform: skew(-15deg);
    -o-transform: skew(-15deg);  
}
.page-numbering a:hover{
    color: #fff;      
    border: 1px solid #e91b2b;
}
.page-numbering a .fa{
    display: block;
    font-size: 18px;
    line-height: 26px;
}
.page-numbering a:after, .page-numbering a:before{
    content:'';
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
    width:100%;
    height: 0;
    background-color: #e91b2b; 
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
.page-numbering a:before{
    top:0;
}
.page-numbering a:after{
    bottom:0;
}
.page-numbering a:hover:before, .page-numbering a:hover:after{
    height:100%;
}
.page-numbering a.selected{    
    color: #fff;
    background-color: #e91b2b; 
    border: 1px solid #e91b2b;
}
/* */


/* Forms */
input, select, textarea, button{
    color: #000;
    font-family: 'Roboto Condensed', 'Myriad Pro', sans-serif;
    font-size: 1.4rem;
}
textarea {
    resize: vertical;
    min-height: 100px;
}
input, textarea{
    text-indent:15px;
}
select{
    text-indent:10px;
}

.form .input{
    float: left;
    position: relative;
    margin-bottom: 10px;
    width: 49%;
    height: 36px;
    border: 1px solid #ccc;    
}
.form .input input[type='text'],
.form .input input[type='password'],
.form .input input[type='email'],
.form .input input[type='tel'],
.form .input select{
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;    
    line-height: 36px;
    background: #fff;
    color: #a4a4a4;
    display: block;
}
.form .input select option{
    color: #333;
}
.form .input.full{
    width: 100%;
    clear: both;
}
.form textarea{
    width: 100%;
    margin-bottom: 10px;
    padding: 10px 0;
    border: 1px solid #ccc;
    clear: both;
    display: block;
    min-height: 236px;
}
.form .separator{
    float: left;
    margin-bottom: 10px;
    width: 2%;
    height: 36px;
}
.form.small .input{
    float: none;
    width: 100%;
    clear: both;
}
/* */


/* Contact info box */
.contact-info table{
    width: 100%;
    border: 0;
}
.contact-info td{
    padding-top: 6px ;
}
.contact-info td:first-child{
    padding-right: 10px ;
    text-align: center;
    width: 20px;
    text-align: center;
}
.contact-info tr:first-child td{
    padding-top: 0;    
}
.contact-info .fa{
    font-size: 1.8rem;
}
/* */


/* Google Map */
.map{
    background: url(../images/loader.gif) center no-repeat;
    position: relative;
    height: 400px;
    overflow: hidden;
}
.map iframe{
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}
/* */


/* Btns */
.btn{
    display: block;
    position: relative;
    z-index: 0;
    float: left;
    padding: 0 20px;
    text-align: center;
    font-size: 1.4rem;
    line-height: 38px;
    overflow: hidden;
    color: #e91b2b;
    background: #fff;
    margin-bottom: 10px;
}
.btn:before,
.btn:after{
    content: "";
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 0;
    background: #e91b2b; 
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;   
}
.btn:before{
    left: 0;
}
.btn:after{
    right: 0;
}
.btn:hover{
    color: #fff;   
}
.btn:hover:before,
.btn:hover:after{
    width: 100%;
}

.btn .left{
    margin-right:10px; 
}
.btn .right{
    margin-left: 10px; 
}
/* */


/* Holders */
header{
    padding: 0 40px;
    position: fixed;
    background: #333;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999; 
}
header .center{
    position: relative;
    max-width: 1280px;
    margin: 0 auto
}

.main-logo{
    float: left;
    padding: 20px 15px;
    display: block;
    background: #fff;
    margin-bottom: -20px;
}

.main-menu{
    float: right;
}
.main-menu ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.main-menu li{
    margin: 0;
    padding: 0;
    float: left;
}
.main-menu li a{
    display: block;
    color: #fff;
    padding: 36px 16px 0;
    position: relative;
    font-size: 1.7rem;
    text-transform: uppercase;
}
.main-menu li a:before{
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #e91b2b;
    max-height: 0;
    height: 10px;
    display: block; 
    -webkit-transform: skew(-15deg);
    -moz-transform: skew(-15deg);
    -o-transform: skew(-15deg);
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.main-menu li a.selected{
    color: #e91b2b;
}
.main-menu li a:hover:before, .main-menu li a.selected:before{
    max-height: 10px;
}
.main-menu nav{
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
.main-menu li a small{
    text-transform: none;
}

.featured-contact{
    float: left;
    width: 60%;
    font-size: 1.7rem;
    line-height: 1.4;
    color: #191509;
}
.featured-contact .photo{
    width: 24%;
    float: left;
    max-width: 180px;
}
.featured-contact .info{
    float: right;
    width: 72%;
}
.featured-contact .col{
    float: left;
    width: 48%;
    margin-right:2%;
}
.featured-contact .btn{
    background: transparent;
    line-height: 30px;
    padding: 0 34px;
    color: #191509;
    border: 1px solid #7f7f7f;
    margin-top: 8px;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
}
.featured-contact .btn:hover{
    color: #fff;
    border-color: #e91b2b;
}

.footer-menu{
    float: left;
    width: 18%;
    margin-left: 4%;
}
.footer-menu ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-menu li{
    margin: 0 0 3px;
    padding: 0;
    list-style: none;
}
.footer-menu li a{
    color: #191509;
    font-size: 1.7rem;
}
.footer-menu li a:hover,
.footer-menu li a.selected{
    color: #e91b2b;
}

.footer-social{
    float: right;
    width: 14%;
    margin-left: 4%;
}
.footer-social ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-social li{
    margin: 0 0 0 8px;
    padding: 0;
    float: left;
}
.footer-social li:first-child{
    margin: 0;
}
.footer-social li a{
    display: block;
    color: #191509;
    display: block;
    text-align: center; 
    font-size: 4rem;
}
.footer-social li a:hover{
    color: #e91b2b;
}

header .overlay{
    background: url(../images/bg-black60.png);
    background: rgba(0,0,0,.6);
    position: fixed;
    top: 100px;
    bottom:0;
    left: 0;
    width: 0;
    z-index: 996;
    opacity:0;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
.panel-on{
    overflow: hidden;
}
.panel-on header .overlay{
    opacity:1;
    width: 100%;
}


h4.sub-title{
    font-size: 2rem;
    margin-bottom: 20px;
}

footer{
    background: #000;
    padding: 20px 40px;
    position: relative;
}
footer .center{
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    color: #fff;    
    font-size: 1.4rem;
    line-height: 1.5;
}
footer a{
    color: #fff; 
}

.main-content{
    padding: 40px;
    position: relative; 
    min-height: 100px;
}
.main-content .center{
    position: relative;
    max-width: 1280px;
    margin: 0 auto; 
}
/* */


/* home */
.main-slider{
    position: relative;
    overflow: hidden;
    height: 500px;
}
.main-slider .flexslider{
    z-index: 0;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;    
}
.main-slider .photo{
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -960px;
    height: 500px;
    width: 1920px;
}
.main-slider .photo .photo-back{
    background-attachment: fixed;
    background-position: center 100px;
    background-color: transparent;
    background-repeat: no-repeat;     
    height: 100%;
}
.main-slider .holder{
    padding: 0 40px;
    height: 100%;
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1;  
    -webkit-box-shadow: inset 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: inset 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: inset 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
    -o-box-shadow: inset 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
}
.main-slider .center{
    margin: 0 auto;
    max-width: 1280px;
    height: 100%;
}
.main-slider .form{        
    min-height: 280px;
    width: 260px;
    float: right;
    margin-right: -20px;
    position: relative;
    padding: 60px 100px;
    -webkit-box-sizing: content-box; 
    -moz-box-sizing: content-box;    
    -ms-box-sizing: content-box;    
    -o-box-sizing: content-box;    
    box-sizing: content-box;  
}
.main-slider .form .back{
    background: url(../images/bg-black75.png);
    background: rgba(0, 0, 0, 0.75);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    -webkit-transform: skew(-17deg);
    -moz-transform: skew(-17deg);
    -o-transform: skew(-17deg);
    transform: skew(-17deg)
}
.main-slider .form .content{
    position: relative;
    z-index: 1;
}
.main-slider h2{
    color: #fff;
    font-size: 4rem;
    font-style: italic;
    margin-bottom: 18px;
    text-shadow: 1px 1px 0 #333;
}
.main-slider .custom-select{
    position: relative;
    border: 2px solid #fff;
    height: 50px;
    max-width: 202px;
    margin-bottom: 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.main-slider .custom-select:after{
    content: "\f107";
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    width: 46px;
    height: 46px;
    line-height: 46px;
    font-family: FontAwesome;
    text-align: center;
    display: block;
    font-size: 3.2rem;
    color: #fff;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.main-slider .custom-select select{
    background: transparent; 
    color: #fff;
    line-height: 46px;
    height: 46px;
    border: 0;
    padding: 0; 
    font-size: 1.8rem;
    font-style: italic;
    width: 100%;
    position: relative;
    z-index: 2;    
    outline: 0 transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; 
}
.main-slider .custom-select select option{
    color: #333;
}
.main-slider .btn{
    color: #e91b2b;
    background: #fff;
    padding: 0 20px;
    line-height: 50px;
    font-size: 2.4rem;
    font-style: italic;
    margin-top:10px;
    text-transform: uppercase;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.main-slider .btn:hover{
    color: #fff;
}

h2.sub-title{
    text-transform: uppercase;
    letter-spacing: -1px;
    font-size: 2.6rem;
    margin-bottom: 18px;
    padding-bottom: 18px;
    color: #000;
    position: relative;
} 
h2.sub-title:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 100%;
    max-width: 280px;
    background: #000;
    display: block; 
}

.featured-glance{
    /*float: left;
    width: 48%;
    text-align: justify;*/
}

.featured-offers{
    float: right;
    width: 48%;
    margin-bottom: 20px; 
}

.flex-control-paging{
    bottom: -32px;
}
.flex-control-paging li{
    margin: 0 4px;
}
.flex-control-paging li a{
    background: #ccc;
    width: 11px;
    height: 11px; 
}
.flex-control-paging li a:hover, 
.flex-control-paging li a.flex-active{
    background: #a32c2c;
}

.main-content.grey{
    background: #e6e6e6;
}

.featured-vehicules{
    position: relative;
}
.featured-vehicules .btn.all{
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 40px;
    line-height: 50px;
    background: #fff;
    display: block;
    color: #000;
    font-size: 2.4rem;
    text-transform: uppercase;
    border:1px solid #cdcdcd;
    -webkit-border-radius:3px; 
    -moz-border-radius:3px; 
    border-radius:3px; 
}
.featured-vehicules .btn.all:hover{
    color: #fff;
}

.listing.vehicules li{
    float: left;
    width: 23.5%;
    margin: 0 2% 25px 0;
    position: relative;
}
.listing.vehicules li:nth-child(4n){
    margin-right: 0;
}
.listing.vehicules .photo{
    padding-bottom: 75%; 
}
.listing.vehicules img{
    position: absolute;
}
.listing.vehicules .details{
    background: url(../images/bg-overlay.png) repeat-x left bottom;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 60px 20px 20px 20px;
    color: #fff;
    -webkit-box-sizing: content-box; 
    -moz-box-sizing: content-box;    
    -ms-box-sizing: content-box;    
    -o-box-sizing: content-box;    
    box-sizing: content-box;   
}
.listing.vehicules .price{
    font-size: 1.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
}
.listing.vehicules .price strong{
    font-size: 2.8rem;
    padding-right: 4px;
}
.listing.vehicules .title{
    font-size: 1.5rem;
    text-transform: uppercase;
    clear: both;
    margin-bottom: 12px;    
}
.listing.vehicules .btn{
    background: transparent!important;
    color: #fff!important;
    font-size: 1.3rem;
    border:2px solid #fff;
    line-height: 32px;
    padding: 0 25px;
    margin: 0;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
}
.listing.vehicules .btn:after,
.listing.vehicules .btn:before{
    display: none;
}
.listing.vehicules .holder:before{
    content: "";
    opacity:0;
    background: url(../images/bg-red75.png);
    background: rgba(185, 0, 0, 0.75);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
.listing.vehicules .hidden{
    overflow: hidden;
    max-height: 0;       
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
    display: block;
}
.listing.vehicules .holder:hover .hidden{
    max-height: 100px;
}
.listing.vehicules .holder:hover:before{
    opacity:1;
}

.parallax{
    width: 100%;
    position: relative;
    background: #fff url(../images/loader.gif) center no-repeat; 
    overflow: hidden;
    height: 400px;
    border-bottom: 1px solid #efefef;
}
.parallax .holder{
    padding: 0 40px;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 111;
    -webkit-box-shadow: inset 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: inset 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: inset 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
    -o-box-shadow: inset 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
}
.parallax .center{
    max-width: 1280px;
    margin: 0 auto;
    color: #fff;
    position: relative;
    height: 100%;
    width: 100%;
}
.parallax .para-back{        
    background-color: #efefef;
    background-repeat: no-repeat;
    background-position: center;  
    background-attachment: fixed;  
    background-size: auto 100%;
    height: 100%;
    width: 100%;    
    position: absolute;
    opacity:0;
}
.pace-done .parallax .para-back{
    opacity:1;
}
.parallax .blank{
    width: 100%;
    position: relative;
    z-index: -1;
    display: block;
}
.parallax .content-holder{
    float: left;
    width: 50%;
    position: relative;
    height: 100%;
    max-width: 500px;
}
.parallax .content{
    position: relative;
    padding: 100px 70px 20px 70px;
    z-index: 1;
    letter-spacing: -1px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    -ms-box-sizing: content-box;
    -o-box-sizing: content-box;
    box-sizing: content-box;
}
.parallax .back {
    background: url(../images/bg-black75.png);
    background: rgba(0, 0, 0, 0.75);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    -webkit-transform: skew(-20deg);
    -moz-transform: skew(-20deg);
    -o-transform: skew(-20deg);
    transform: skew(-20deg);
}
.parallax h1{
    color: #fff;
    text-transform: uppercase;
    font-size: 4.4rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1px;
    font-style: italic;
    text-shadow: 1px 1px 0 #333;
}
.parallax h1 span{
    display: block;
    font-size: 2.6rem;
    padding-left: 20px;
    padding-top: 2px;
}
.parallax h1 strong{
    display: block;
    font-size: 6rem;
}
.parallax .btn{
    line-height: 54px;
    padding: 0 35px;
    background: transparent;
    color: #fff;
    text-transform: uppercase;
    font-size: 2.4rem;
    border: 2px solid #fff;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;    
}


/* Listing */
.listing.offers{

}
.listing.offers li{
    float: left;
    width: 49%;
    margin: 0 2% 20px 0;
}
.listing.offers li:nth-child(2n){
    margin-right: 0;
}

.page-banner{
    background: #efefef url(../images/loader.gif) center no-repeat;;
    overflow: hidden;
    position: relative;
    height: 200px;
}
.page-banner .photo{
    background: #efefef url(../images/loader.gif) center no-repeat;;
    width: 1920px;
    height: 200px;
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -960px;
    z-index: 0;
}
.page-banner .photo .photo-back{
    background-attachment: fixed;
    background-position: center 100px;
    background-color: transparent;
    background-repeat: no-repeat;     
    height: 100%;
}

.page-banner .holder{
    height: 100%;
    position: relative;
    z-index: 1;
    padding: 0 40px;
    -webkit-box-shadow: inset 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: inset 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: inset 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
    -o-box-shadow: inset 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
}
.page-banner .center{
    margin: 0 auto;
    max-width: 1280px;
}
.page-banner h2{
    color: #fff;
    font-size: 4rem;
    line-height: 50px;
    font-style: italic;
    margin-bottom: 0;
    position: absolute;
    left:0;
    top:0;
    text-shadow: 1px 1px 0 #333;
}
.page-banner .custom-select{
    position: relative;
    border: 2px solid #fff;
    height: 50px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    float: left;
    width: 46%;
    margin-right: 4%;
}
.page-banner .custom-select:after{
    content: "\f107";
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    width: 46px;
    height: 46px;
    line-height: 46px;
    font-family: FontAwesome;
    text-align: center;
    display: block;
    font-size: 3.2rem;
    color: #fff;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.page-banner .custom-select select{
    background: transparent; 
    color: #fff;
    line-height: 46px;
    height: 46px;
    border: 0;
    padding: 0; 
    font-size: 1.8rem;
    font-style: italic;
    width: 100%;
    position: relative;
    z-index: 2;
    outline: 0 transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; 
}
.page-banner .custom-select select option{
    color: #333;
}
.page-banner .btn{
    color: #e91b2b;
    background: #fff;
    padding: 0 20px;
    line-height: 50px;
    font-size: 1.8rem;
    font-style: italic;
    text-transform: uppercase;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    position: absolute;
    right:0;
    top:0;
}
.page-banner .btn:hover{
    color: #fff;
}
.page-banner .form{
    padding: 73px 0;
    position: relative;
}
.page-banner .content{
    margin-left: 22%;
    position: relative;
    padding-right: 168px;
    padding-left: 270px;
    min-height: 54px;
}
.page-banner .form .back {
    background: url(../images/bg-black75.png);
    background: rgba(0, 0, 0, 0.75);
    position: absolute;
    top: 0;
    right: 18%;
    left: 18%;
    height: 100%;
    z-index: 0;
    -webkit-transform: skew(-17deg);
    -moz-transform: skew(-17deg);
    -o-transform: skew(-17deg);
    transform: skew(-17deg);
}
.page-banner h1{
    color: #fff;
    font-size: 4rem;
    line-height: 54px;
    min-height: 54px;
    position: relative; 
    z-index: 2;
    font-style: italic;
    margin-bottom: 0;
    text-align: center;
    text-shadow: 1px 1px 0 #333;
}


/* About */
.photo-gallery{
    float: left;
    width: 56%; 
    margin-right: 3%;
    margin-bottom: 20px;
}
.photo-gallery .preview-area{
    background: url(../images/loader.gif) center no-repeat;
    position: relative;
    padding-bottom: 75%;
}
.photo-gallery .preview-area img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0; 
}
.photo-gallery .preview-area iframe{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border: 0;
    opacity: 0;
}
.photo-gallery .preview-area .active{
    z-index: 1;
}
.photo-gallery .thumb-holder{
    height: 114px;
    width: 100%;
    position: relative;
    overflow: hidden;
    opacity:0;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
.pace-done .photo-gallery .thumb-holder{
    opacity:1;
}
.photo-gallery ul{
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    list-style: none;   
    height: 98px;  
    overflow: hidden;
}
.photo-gallery li{
    margin: 8px 0 0 8px;
    padding: 0;
    float: left;
    height: 90px;  
    display: inline;
    position: relative;
}
.photo-gallery li:first-child{
    margin-left:0;
}
.photo-gallery li a{
    background: url(../images/loader.gif) center no-repeat;
    height: 90px;
    display: block;  
    position: relative;
}
.photo-gallery li img{
    max-height: 90px;
    max-width: 100%;
    position: relative;
    z-index: 0;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    -ms-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s;
}
.photo-gallery li .fa{
    position: absolute;
    z-index: 1;
    font-size: 40px;
    line-height: 40px;
    width: 40px;
    height: 40px;
    text-align: center;
    left: 50%;
    top: 50%;              
    margin: -20px 0 0 -20px;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
    color: #e91b2b;
}
.photo-gallery li .fa:before{
    position:relative;
    z-index: 1;
}
.photo-gallery li .fa:after{
    content:"";
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -15px 0 0 -15px;
    background: #fff;
    z-index: -1;
    width: 30px;
    height: 30px;
    -webkit-border-radius: 30px; 
    -moz-border-radius: 30px; 
    border-radius: 30px; 
}
.photo-gallery li:hover .fa{
    color: rgba(237, 28, 36, 0.85);
}
.photo-gallery li a.selected:before{
    content:"";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    z-index: 1; 
    border: 4px solid #e91b2b;
}
.photo-gallery .preview-area .label{
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
    color: #fff;
    font-style: italic;
    font-size: 1.3rem;
    padding: 8px 10px;
    background: url(../images/bg-red75.png);
    background: rgba(185, 0, 0, 0.75);    
}
.cars-page .photo-gallery .preview-area .label{
    display: block;
}


article{
    position: relative;
}
article .details{
    text-align: justify;
}

.share-btns{
    position: absolute;
    right: 0;
    top: 0; 
}
.share-btns ul{
    margin: 0;
    padding: 0;
    list-style: none;
    height: 42px;
}
.share-btns li{
    float: right;
    margin: 0 0 0 1px;
    padding: 0;
    width: 42px;
    height: 42px;
    line-height: 42px; 
    text-align: center;
    overflow: hidden;
    position: relative;
}
.share-btns li a{
    display: block;    
    position: relative;
}
.share-btns li .fa{
    position: relative;
    z-index: 0;
    display: block;
    font-size: 2rem;
    line-height: 42px;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
.share-btns li:hover .fa{
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
}
.share-btns li span{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    margin: 0;
    padding: 0;
    opacity:0;  
    filter: alpha(opacity=0);
}
.share-btns .fa-facebook{
    background: #39579a;
    color: #fff;
}
.share-btns .fa-twitter{
    background: #50aaf0;
    color: #fff;
}
.share-btns .fa-pinterest{
    background: #c00112;
    color: #fff;
}
.share-btns .fa-envelope{    
    background: #777;
    color: #fff;
}
.share-btns .fa-print{
    background: #3f4850;
    color: #fff;
}


/* Details */
article .title{
    font-size: 3rem;
    color: #e91b2b;
}
article .price{
    font-size: 2.4rem;
    margin-bottom: 20px;
}
article .price strong{
    padding-right: 4px;
}

/* contact */
.page-banner iframe{
    display: block;
    border: 0;
    width: 100%;
    height: 100%;
} 

.contact-map{
    float: left;
    width: 36%;
}
.contact-map iframe{
    display: block;
    border: 0;
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
}

.contact-form{
    float: right;
    width: 60%;
}
.contact-form .btn{
    color: #fff;
    background: #e91b2b;
    padding: 0 30px;
    line-height: 36px;
    font-size: 1.6rem;
    font-style: italic;
    text-transform: uppercase;
    float: right;
    border: 2px solid #e91b2b;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.contact-form .btn:hover{
    color: #e91b2b;
}
.contact-form .btn:before,
.contact-form .btn:after{
    background: #fff;
}
