/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}


.site-container {
    max-width: 1400px;
    margin: auto;
    display: block;
    padding: 0 15px;
}
.reduced-container {
    max-width: 1200px;
}


.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin-bottom: 10px;
    overflow: hidden;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.video-half {
    display: inline-block;
    width: 50%;
    float: left;
    margin-right: 20px;
    margin-bottom: 5px;
}


.youtube-play-button {
    cursor: pointer;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.youtube-play-button img{
    width: 100%;
    height: auto;
}
.youtube-play-button .play-button {
    width: 90px;
    height: 60px;
    background-color: #333;
    box-shadow: 0 0 30px rgba( 0, 0, 0, 0.6);
    z-index: 1;
    opacity: 0.8;
    border-radius: 6px;
    cursor: pointer;
    top: 50%;
    left: 50%;
    transform: translate3d( -50%, -50%, 0);
    position: absolute;
}
.youtube-play-button:hover .play-button{
    background-color: #d02f38;
}
.youtube-play-button .play-button:before {
    content: "";
    border-style: solid;
    border-width: 15px 0 15px 26.0px;
    border-color: transparent transparent transparent #fff;
    border-width: 8px 0 8px 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d( -50%, -50%, 0);
}
.video-container-box {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.video-container-box .youtube-play-button {
    position: initial;
}
.video-youtube-box {
    position: relative;
}
.video-youtube-box img{
    margin: 0; 
    width: 100%;
    height: auto;
    float: left;
}
.video-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.center{
    text-align: center;
}           

* {
    font-family: 'Roboto', sans-serif;
}

body {
    color: #898989;
}
a {
    color: #337ab7;
}
p {
    font-size: 18px;
    line-height: 1.7;
    color: #898989;
    margin-bottom: 15px;
}
li {
    font-size: 18px;
    line-height: 1.7;
    color: #898989;
}
ul.two {
    display: inline-block;
    width: 100%;
}
ul.two li{
    width: 50%;
    float: left;
    padding-right: 20px;
}
ul.three {
    display: inline-block;
    width: 100%;
}
ul.three li{
    width: 33%;
    float: left;
    padding-right: 20px;
}
ul.four {
    display: inline-block;
    width: 100%;
}
ul.four li{
    width: 25%;
    float: left;
    padding-right: 20px;
}
ul.flow {
    display: initial;
}
ul.flow li {
    display: flow-root;
}

.h2, h2 {
    font-size: 32px;
    line-height: 1.4;
    color: #000;
}
.h3, h3 {
    font-size: 28px;
    line-height: 1.4;
    color: #000;
}
.h4, h4 {
    font-size: 22px;
    line-height: 1.4;
    color: #000;
}


.buttons-center {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
}
.buttons-center a {
    border: 0;
    border-radius: 4px;
    color: #fff;
    background-color: #4d9ed0;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    text-overflow: ellipsis;
    transition: background-color .2s,color .2s;
    white-space: nowrap;
}
.buttons-center a:hover {
    background-color: #4eb0ed;
    color: #fff;
    text-decoration: none;
}
.default-button {
    border: 0;
    border-radius: 4px;
    color: #fff;
    background-color: #4d9ed0;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    text-overflow: ellipsis;
    transition: background-color .2s,color .2s;
    white-space: nowrap;
}
.default-button:hover {
    background-color: #4eb0ed;
    color: #fff;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}
.img-half {
    display: inline-block;
    width: 50%;
    float: left;
    margin-right: 20px;
    margin-bottom: 3px;
}
.img-half img {
    width: 100%;
    height: auto;
}


.top-bar {
    display: inline-block;
    width: 100%;
    background-color: #000;
    text-align: right;
}
.top-bar ul {
    display: inline-block;
    margin: 0;
    padding: 0;
}
.top-bar ul li {
    display: inline-block;
    list-style: none;
    line-height: 40px;
}
.top-bar .contact-info {
    float: left;
    margin: 0;
}
.top-bar .contact-info li {
    border: 0;
    padding: 0 20px;
    font-size: 15px;
    color: #fff;
    line-height: 45px;
}
.top-bar .contact-info li i {
    color: #4d9ed0;
    margin-right: 5px;
    font-size: 14px;
}
.top-bar .contact-info a {
    color: #fff
}
.top-bar .contact-info li.addr {
    display: none;
}
.top-bar .email {
    display: inline-block;
    margin: 0;
    margin-right: 20px;
}
.top-bar .email a {
    color: #fff;
    font-size: 15px;
}
.top-bar .email i {
    color: #4d9ed0;
    margin-right: 5px;
    font-size: 14px;
}

.top-bar .social {
    float: right;
    margin: 0;
}
.top-bar .social li {
    display: inline-block;
    list-style: none;
    font-size: 15px;
    color: #fff;
    padding: 0px 10px;
    line-height: 45px;
}
.top-bar .social li a {
    color: #fff;
}
.top-bar .social li a:hover {
    color: #4d9ed0;
}
.top-bar .social li a i {
    margin-right: 5px;
    font-size: 14px;
}



header {
    display: inline-block;
    width: 100%;
    padding: 0;
}
header .logo {
    display: inline-block;
    float: left;
    max-width: 400px;
}
header .logo img {
    width: 100%;
    height: auto;
}
header nav.menu {
    display: inline-block;
    float: right;
}
header .main-menu {
    margin: 0;
    margin-top: 50px;
}
header .main-menu li {
    display: inline-block;
    list-style: none;
    position: relative;
}
header .main-menu li a {
    color: #2b2b2b;
    font-size: 16px;
    text-transform: uppercase;
    padding: 10px;
}
header .main-menu li a:hover {
    color: #4d9ed0;
    text-decoration: none;
}
header .main-menu li ul li a {
    padding: 6px;
    font-size: 15px;
}
header .main-menu .sub-menu {
    display: none;
}
header .main-menu li:hover .sub-menu {
    display: block;
    position: absolute;
    margin: 0;
    width: 280px;
    background: #fff;
    padding: 10px;
    z-index: 999;
}
header .main-menu .sub-menu li {
    display: block;
}
header .main-menu .sub-menu li a {
    display: inline-block;
    width: 100%;
}
header .main-menu .menu-search {
    position: relative;
}
header .main-menu .menu-search a {
    cursor: pointer;
}
header .main-menu .menu-search-form {
    display: none;
}
header .main-menu .menu-search form {
    position: absolute;
    right: 0;
    margin-top: 10px;
    background-color: #fff;
    padding: 7px 8px;
    z-index: 2;
    border-radius: 4px;
    box-shadow: 0 0 5px 0 rgba(0,0,0,.14);
}
header .main-menu .menu-search form input {
    font-size: 16px;
    background-color: #f9f9f9;
    border: 1px solid #efefef;
    padding: 4px 10px;
    width: 230px;
}
header .show-mobile {
    display: none;
}
header .close-menu {
    display: none;
}
.menu-overlay {
    display: none;
}


.home-hero {
    background: url(../images/homepage-top-banner-black.jpg) center center no-repeat;
    background-size: cover;
    text-align: center;
    display: inline-block;
    width: 100%;
    padding: 200px 0;
}
.home-hero h1 {
    z-index: 5;
    white-space: nowrap;
    font-size: 44px;
    line-height: 1.4;
    font-weight: 900;
    color: rgb(255, 255, 255);
    text-shadow: rgb(46, 46, 46) 2px 2px;
    margin: 0px;
    padding: 0px;
    opacity: 1;
}
.home-hero a {
    z-index: 6;
    white-space: nowrap;
    font-size: 18px;
    line-height: 14px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    background-color: rgb(77, 158, 208);
    border-radius: 3px;
    outline: none;
    box-shadow: rgb(153, 153, 153) 0px 0px 0px 0px;
    cursor: pointer;
    text-align: center;
    padding: 15px 35px 15px 25px;
    margin: 50px auto;
    display: inline-block;
}
.home-hero a:hover {
    background-color: #4eb0ed;
    color: #fff;
    text-decoration: none;
}


hr.h2_underline {
    background-color: #4d9ed0;
    height: 3px; 
    width: 75px;
    display: inline-block;
    border: 0;
}

.luxury-section {
    display: inline-block;
    width: 100%;
    padding: 60px 0;
}
.luxury-section h2 {
    font-size: 36px;
    color: #000;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
}
.luxury-section p {
    font-size: 24px;
    color: #000;
    font-weight: 500;
    margin: 15px 0;
}
.luxury-section a {
    margin-top: 70px;
}



.service-section {
    background-color: #f8f9f9;
    display: inline-block;
    width: 100%;
    padding: 20px 0;
}
.service-section .item {
    margin: 20px 0;
}
.service-section .item .image  {

}
.service-section .item .image img {
    width: 100%;
    height: auto;
}
.service-section .item h5 {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin: 20px 0;
}
.service-section .item p {
    font-size: 16px;
}
.service-section .item a {
    font-size: 14px;
}
.service-section .item a:hover {
    text-decoration: underline;
}




.cars-section {
    display: inline-block;
    width: 100%;
    padding: 50px 0;
}
.cars-section .item {
    margin: 30px 0;
    text-align: center;
}
.cars-section .item p.name {
    margin: 10px 0;
    text-transform: uppercase;
}
.cars-section .item p.name a {
    color: #000;
}
.cars-section .item:hover p.name a {
    color: #337ab7;
}
.cars-section .item img {

}



.call-cta {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.call-cta p {
    text-align: center;
    font-size: 45px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}
.call-cta p a {
    margin-left: 10px;
}
.call-cta p i {
    margin: 0 10px;
    font-size: 35px;
}



.full-image-section {
    display: inline-block;
    width: 100%;
    padding: 130px 0;
    background: url('../images/san-diego-limobuses-wine-weddings-black.jpg') center center no-repeat;
    background-size: cover;
}
.full-image-section h2 {
    color: #fff;
    font-size: 32px;
    text-transform: uppercase;
}
.full-image-section p {
    color: #c9c9c9;
    font-size: 18px;
    max-width: 900px;
    margin: 20px 0;
}


.why-section {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 50px 0;
}
.why-section h2 {
    font-size: 24px;
    font-weight: 500;
}
.why-section p {
    color: #898989;
    font-size: 16px;
    max-width: 800px;
    margin: 30px auto;
}
.why-section .img {

}
.why-section .img img {

}




.core-values {
    display: inline-block;
    width: 100%;
    padding: 30px 0;
}
.core-values .item {
    text-align: center;
    margin-bottom: 30px;
}
.core-values .item .icon {

}
.core-values .item .icon span {
    font-size: 30px;
}
.core-values .item h2 {
    font-size: 24px;
    margin: 20px 0;
}
.core-values .item h2 a {
    color: #000;
}
.core-values .item p {
    font-size: 16px;
    margin: 20px 0;
}
.core-values .item a.read-more {
    text-transform: none;
}

.center-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 30px 0;
}


.full-logos {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 30px 0;
    background-color: #f8f9f9;
}
.full-logos .item {
    display: inline-block;
    margin: 15px;
}
.full-logos .item img {

}


.contact-section {
    text-align: center;
}

footer {
    background-color: #171717;
    color: #a3a3a3;
    display: inline-block;
    width: 100%;
    padding: 50px 0;
    float: left;
}
footer h3 {
    border-bottom: 1px solid rgba(255,255,255,.1);
    color: #fff;
    font-size: 18px;
    margin: 0 0 20px;
    padding-bottom: 16px;
    position: relative;
    border-color: #2e2e2e;
}
footer h3:after {
    bottom: -1px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 73px;
    background-color: #4d9ed0;
}
footer li {
    list-style: none;
}
footer .footer-logo img {
    margin-bottom: 20px;
}
footer .contact-info p {
    color: #a3a3a3;
    font-size: 16px;
    margin: 15px 0;
}
footer .contact-info ul {
    margin: 0;
    padding: 0;
}
footer .contact-info ul li {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    font-size: 16px;
}
footer .contact-info ul li a:hover {
    color: #fff;
}
footer .contact-info ul li i {
    color: #337ab7;
    width: 30px;
}
footer .navigation {
    margin-bottom: 30px;
}
footer .navigation ul {
    margin: 0;
    padding: 0;
}
footer .navigation ul li {
    display: inline-block;
    float: none;
    width: calc(50% - 2px);
    margin-bottom: 17px;
}
footer .navigation ul li a {
    font-size: 16px;
    position: relative;
    color: #a3a3a3;
    padding-left: 15px;
}
footer .navigation ul li a:before {
    content: "\203A";
    font-size: 20px;
    font-weight: bold;
    left: 0;
    top: -7px;
    position: absolute;
}
footer .navigation ul li a:hover {
    color: #4d9ed0;
}
footer .connect ul {
    margin: 0;
    padding: 0;
}
footer .connect ul li {
    display: inline-block;
}
footer .connect ul li a {
    color: #fff;
    padding: 5px;
    font-size: 18px;
    margin-right: 10px;
}
footer .connect ul li a:hover {
    color: #337ab7;
}
footer .working-hours table {
    width: 100%;
    border: 1px solid rgba(255,255,255,.1);
    border-collapse: separate;
    border-spacing: 0 8px;
    width: 100%;
    padding: 10px 0;
}
footer .working-hours table td {
    font-size: 16px;
    color: #fff;
    text-align: right;
    padding-right: 25px;
}
footer .working-hours table th {
    color: #3cb2cf;
    padding-left: 25px;
    font-size: 16px;
    font-weight: normal;
}
footer .quick-links ul {
    margin: 0;
    padding: 0;
}
footer .quick-links ul li {
    display: inline-block;
    float: none;
    width: calc(50% - 2px);
    margin-bottom: 12px;
}
footer .quick-links ul li a {
    font-size: 16px;
    position: relative;
    color: #a3a3a3;
    padding-left: 15px;
}
footer .quick-links ul li a:before {
    content: "\203A";
    font-size: 20px;
    font-weight: bold;
    left: 0;
    top: -7px;
    position: absolute;
}
footer .quick-links ul li a:hover {
    color: #4d9ed0;
}
footer .footer-links {
    margin-bottom: 0;
    margin-top: 20px;
    text-align: center;
}
footer .footer-links a {
    color: #9c9c9c;
    font-size: 16px;
    margin: 10px;
    display: inline-block;
}
.copyright-footer {
    padding: 25px 0;
    background-color: #171717;
    border-top: 1px solid #2e2e2e;
    display: inline-block;
    text-align: center;
    width: 100%;
}
.copyright-footer p {
    color: #9c9c9c;
    font-size: 16px;  
    margin: 0;  
}




/*default pages*/

.default-content {
    padding-bottom: 100px;
}

.title-section {
    background-color: #f8f9f9;
    padding: 50px 0;
    margin-bottom: 30px;
}
.title-section h1 {
    color: #4e4e4e;
    font-size: 36px;
    text-transform: uppercase;
    text-align: center;
    padding: 10px;
}

.default-content h2,
.default-content h3 {
    color: #000;
    margin: 20px 0 20px;
    padding-bottom: 15px;
    position: relative;
    border-color: #2e2e2e;
}
.default-content h2:after,
.default-content h3:after {
    bottom: -1px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 73px;
    background-color: #4d9ed0;
}
.default-content h2,
.default-content h3 {
    padding: 0;
}
.default-content h2:after,
.default-content h3:after {
    display: none;
}


table.car-table tr th {
    padding: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: normal;
    color: #000;
}
table.car-table tr td {
    padding: 10px;
}


/*cars page*/

.cars .flow {
    display:-webkit-box;
    display:-moz-flex;
    display:-moz-box;
    display:-ms-flexbox;
    display:flex;
    justify-content: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    display:-webkit-flex;
    flex-direction:row;
}
.cars .item {
    margin: 30px 0;
}
.cars .item .image {
    text-align: center;
}
.cars .item .image img {
    margin: auto;
}
.cars .item .title a {
    color: #fff;
    background-color: #4d9ed0;
    display: block;
    font-size: 18px;
    padding: 12px 15px;
    text-align: center;
    text-transform: uppercase;
}
.cars .item .title a:hover {
    background-color: #2d85bb;
    text-decoration: none;
}
.cars .item .options ul {
    padding: 0;
    margin: 0;
}
.cars .item .options ul li {
    list-style: none;
    position: relative;
    color: #5a5a5a;
    border-bottom: 1px solid #ececec;
    padding: 7px 0;
    font-size: 16px;
}
.cars .item .options ul li:before {
    color: #337ab7;
    content: "\2713";
    font-weight: bold;
    margin-right: 10px;
}

.car-inner {
    padding: 30px 0;
}
.car-inner .left-details .title {
    color: #fff;
    background-color: #4d9ed0;
    display: block;
    font-size: 18px;
    margin-top: 50px;
    padding: 12px 15px;
    text-align: center;
    text-transform: uppercase;
}
.car-inner .left-details .options ul {
    padding: 0;
    margin: 0;
}
.car-inner .left-details .options ul li {
    list-style: none;
    position: relative;
    color: #5a5a5a;
    border-bottom: 1px solid #ececec;
    padding: 7px 0;
    font-size: 16px;
}
.car-inner .left-details .options ul li:before {
    color: #337ab7;
    content: "\2713";
    font-weight: bold;
    margin-right: 10px;
}
.car-inner .prices {
    margin: 25px 0;
}
.car-inner .prices .line {
    display: inline-block;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 5px;
}
.car-inner .prices .line .left {
    display: inline-block;
    width: 60%;
    float: left;
    background-color: #11374f;
}
.car-inner .prices .line .left p {
    color: #fff;
    font-size: 20px;
    margin: 0;
    padding: 10px;
    padding-left: 15px;
}
.car-inner .prices .line .left p span {
    color: #4d9ed0;
    font-size: 16px;
    text-transform: capitalize;
}
.car-inner .prices .line .right {
    display: inline-block;
    width: 40%;
    float: left;
    background-color: #4d9ed0;
}
.car-inner .prices .line .right p {
    color: #fff;
    font-size: 20px;
    margin: 0;
    padding: 10px;
    padding-left: 15px;
}
.car-inner .prices a.quote {
    color: #fff;
    background: #4d9ed0;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    text-transform: uppercase;
    border-radius: 4px;
    margin-top: 15px;
}
.car-inner .prices a.quote:hover {
    color: #11374f;
    text-decoration: none;
}
.car-inner table {
    margin: 25px 0;
}
.car-inner table th {
    font-size: 18px;
    padding: 10px;
}
.car-inner table td {
    font-size: 18px;
    padding: 10px;
}

.car-inner .image-gallery {
    display: inline-block;
    width: 100%;
    border: 1px solid #ccc;
    margin-bottom: 20px;
}
.car-inner .image-gallery img {
    width: 50%;
    height: auto;
    float: left;
    padding: 10px 5px;
}
/*.car-inner .image-gallery img:hover {
    opacity: 0.7;
}*/
/*.car-inner .image-gallery img:first-child {
    width: 100%;
    height: auto;
    margin: 0;
    opacity: 1;
    padding: 0;
}*/

/*rates page*/

.rates .line {
    display: inline-block;
    width: 100%;
    margin: 30px 0;
}
.rates .line h2 {
    text-align: center;
    padding: 0;
}
.rates .line h2:after {
    display: none;
    padding: 0;
}
.rates .line .relative {
    max-width: 700px;
    display: block;
    margin: auto;
}
.rates .line .image {
    width: 300px;
    float: left;
    text-align: center;
    margin-right: 20px;
}
.rates .line .details table tr th {
    font-size: 18px;
    padding: 10px;
}
.rates .line .details table tr td {
    font-size: 18px;
    padding: 10px;
}
.rates .center-buttons {
    text-align: center;
    display: inline-block;
}


/*locations*/

.city-zone-list .item {
    margin-bottom: 10px;
    display: inline-block;
    width: 100%;
}
.city-zone-list .item h4 {
    font-weight: normal;
    cursor: pointer;
    color: #333;
    font-size: 18px;
}
.city-zone-list .item .vc_toggle_content {
    display: none;
}


.terms h4 {
    margin-top: 30px;
    font-size: 20px;
}


/*sitemap*/

.sitemap {
    padding-bottom: 50px;
}
.sitemap .sitemap-section {
    display: inline-block;
    width: 100%;
    margin-bottom: 50px;
}
.sitemap .title {
    display: inline-block;
    width: 100%;
    text-align: center;
}
.sitemap .title h4 {
    margin-bottom: 20px;
}
.sitemap .links {
    display: inline-block;
    width: 100%;
}
.sitemap .links a {
    display: inline-block;
    width: 33.33%;
    float: left;
    font-size: 16px;
    line-height: 1.5;
    padding: 10px;
    text-align: center;
}


/*search page*/
.search-section {
    max-width: 1200px;
    margin: auto;
    margin-bottom: 50px;
}
.result-search {
    display: inline-block;
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
}
.result-search .img {
    width: 200px;
    display: inline-block;
    float: left;
    margin-right: 20px;
    min-height: 100px;
}
.result-search .img img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 150px;
    margin: auto;
    display: block;
}
.result-search .text p {
    margin: 0;
    font-size: 16px;
    text-transform: capitalize;
}
.result-search .text .title {
    font-size: 18px;
    font-weight: bold;
    display: block;
}


/*services page*/

.service-inner .main-img {
    display: inline-block;
    width: 100%;
}
.service-inner .main-img img {
    width: 100%;
    height: auto;
}
.service-inner .image-gallery {
    display: inline-block;
    width: 100%;
    border: 1px solid #ccc;
    margin-bottom: 20px;
}
.service-inner .image-gallery img {
    width: 20%;
    height: auto;
    float: left;
    padding: 10px 5px;
}
.service-inner .image-gallery img:hover {
    opacity: 0.7;
}
.service-inner .image-gallery img:first-child {
    width: 100%;
    height: auto;
    margin: 0;
    opacity: 1;
    padding: 0;
}

.service-inner table {
    margin: 25px 0;
}
.service-inner table th {
    font-size: 18px;
    padding: 10px;
}
.service-inner table td {
    font-size: 18px;
    padding: 10px;
}

.service-inner {
    max-width: 1200px;
    margin: auto;
    display: block;
}
.service-inner .service-cats {
    width: 280px;
    float: left;
    display: inline-block;
}
.service-inner .service-cats ul {
    margin: 0;
    padding: 0;
}
.service-inner .service-cats ul li {
    list-style: none;
    border-bottom: 1px solid #e5e5e5;
    display: block;
}
.service-inner .service-cats ul li a {
    padding: 10px;
    display: inline-block;
    width: 100%;
    font-size: 16px;
    color: #898989;
}
.service-inner .service-cats ul li a:hover {
    color: #337ab7;
    text-decoration: none;
}
.service-inner .contact-info {
    margin-top: 40px;
    margin-right: 10px;
}
.service-inner .contact-info h4 {
    font-size: 18px;
    font-weight: 500;
}
.service-inner .contact-info p {
    background-color: #f7f7f7;
    border-radius: 4px;
    padding: 5px;
    position: relative;
    margin-bottom: 5px;
    display: inline-block;
    width: 100%;
}
.service-inner .contact-info p i {
    color: #4d9ed0;
    width: 25px;
    font-size: 15px;
}
.service-inner .contact-info p a {
    color: #898989;
    font-size: 16px;
    white-space: normal;
    word-break: break-all;
}
.service-inner .contact-info p a:hover {
    color: #4d9ed0;
    text-decoration: none;
}

.service-inner .service-text {
    display: inline-block;
    float: left;
    width: calc(100% - 280px);
    padding-left: 20px;
    border-left: 1px solid #e5e5e5;
    padding-bottom: 50px;
}


.services .item {
    margin-bottom: 30px;
}
.services .item .inner {
    position: relative;
    background: #fff;
    border: 1px solid #e7e7e7;
    overflow: hidden;
    padding-bottom: 70px;
}
.services .item .img {
    width: 100%;
}
.services .item .img img {
    width: 100%;
    height: auto;
}
.services .item .text {
    background-color: #fff;
    border-top: 5px solid #4d9ed0;
    left: 0;
    padding-left: 20px;
    padding-right: 20px;
    position: absolute;
    top: 100%;
    -ms-transform: translateY(-72px);
    transform: translateY(-72px);
    transition: .4s transform ease;
    width: 100%;
    min-height: 120px;
}
.services .item:hover .text {
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}
.services .item .text .title {
    font-size: 18px;
    color: #000;
    margin: 20px 0;
    text-transform: uppercase;
}
.services .item .text a {
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}
.services .item .text .intro {
    font-size: 14px;
    margin-bottom: 10px;
}
.services-category .item:hover .text .title {
    margin: 10px 0;
}


/*contact page*/
.content-contact {
    padding-bottom: 100px;
}
.form-div {
    display: inline-block;
    width: 100%;
}
.contact-form {
    display: block;
    max-width: 1000px;
    margin: 20px auto;
}
.contact-form input {
    border: 1px solid rgba(0,0,0,.1);
    color: inherit;
    padding: 10px;
    height: auto;
    font-size: 16px;
    min-height: 45px;
}
.contact-form select {
    border: 1px solid rgba(0,0,0,.1);
    color: inherit;
    padding: 10px;
    height: auto;
    font-size: 16px;
    min-height: 45px;
}
.contact-form textarea {
    border: 1px solid rgba(0,0,0,.1);
    color: inherit;
    padding: 10px;
    height: auto;
    font-size: 16px;
    line-height: 1.5;
    min-height: 150px;
}
.contact-form label.error{
    display: block;
    color: red;
}
th.info-table-icon {
    text-align: center;
}





































