/*
Theme Name: Book a transfer
Theme URI: https://corporate-van.com
Author: Maksim Mikulich
Author URI: https://t.me/mklchmx
Description: Book a transfer
Version: 5.1.3.0
Tested up to: 5.8.1
Requires PHP: 5.6
License: MIT License
License URI: https://github.com/crftwrk/bootscore/blob/main/LICENSE
Text Domain: book-a-transfer
Tags: featured-images, threaded-comments, translation-ready
*/

/*--------------------------------------------------------------
1. Temporary
--------------------------------------------------------------*/

/* scroll-behaviour: smooth not supportet by Safari. 
jQuery smooth scroll script will be removed when Safari supports it */
html {
  scroll-behavior: auto !important;
}

/* Checks and select fallback for webkit browsers. Doesn't compile correctly? */
.form-check-input, .form-select, .form-range {
  -webkit-appearance: none;
  -moz-appearance: none;
}

/*
Remove autop (WP 5.7 bug near shortcode)
https://wordpress.org/support/topic/how-to-stop-wp-from-adding-p-tag-automatically/
*/
p:empty:before {
  content: none;
}

/* To Top Button Fallback (done by classes) */
.top-button {
  position: fixed;
  z-index: 1020;
}

/* Dropdown Search (replaced by Collapse component in 5.1.0.0. Fallback to old headers) */
@media (max-width: 782px) {
  .logged-in.admin-bar .dropdown-search {
    top: 100px !important;
  }
}

@media (min-width: 783px) {
  .logged-in.admin-bar .dropdown-search {
    top: 86px !important;
  }
}

.dropdown-search.dropdown-menu[data-bs-popper] {
  top: 54px;
}

.dropdown-search .searchform {
  opacity: 0;
  transition: opacity 0.8s;
  transition-delay: 0.3s;
}

.dropdown-search.show .searchform {
  opacity: 1;
}

@media (max-width: 991px) {
  .btn-dropdown.right {
    padding-right: 0;
    border: none;
  }

  #dropdown-search:hover {
    color: currentColor;
    background-color: transparent;
    border-color: transparent;
  }

  #dropdown-search:focus {
    box-shadow: none;
  }
}
/* Dropdown Search Fallback End */

/* Offcanvas Backdrop */
.offcanvas-backdrop.fade {
  transition: opacity 0.4s ease-in-out;
}

.offcanvas-backdrop {
  cursor: pointer;
}
/* Offcanvas Backdrop END */

/*--------------------------------------------------------------
2. Header
--------------------------------------------------------------*/

@media (max-width: 782px) {
  #wpadminbar {
    position: fixed;
  }

  .logged-in.admin-bar .fixed-top,
  .logged-in.admin-bar .offcanvas:not(.offcanvas-bottom),
  .logged-in.admin-bar .modal {
    top: 46px;
  }

  .logged-in.admin-bar .modal-fullscreen {
    height: calc(100% - 46px);
  }
}

@media (min-width: 783px) {
  .logged-in.admin-bar .fixed-top,
  .logged-in.admin-bar .offcanvas:not(.offcanvas-bottom),
  .logged-in.admin-bar .modal {
    top: 32px;
  }

  .logged-in.admin-bar .modal-fullscreen {
    height: calc(100% - 32px);
  }
}

#nav-main .menu-item:last-child .nav-link {
  padding-right: 0;
}

/*--------------------------------------------------------------
3. Body
--------------------------------------------------------------*/

body {
  position: relative;
  word-break: break-word;
}

::-moz-selection {
  text-shadow: none;
}

::selection {
  text-shadow: none;
}

#content {
  min-height: 600px;
}

/*--------------------------------------------------------------
4. Alerts
--------------------------------------------------------------*/

.alert.alert-danger,
.alert.alert-warning,
.alert.alert-info,
.alert.alert-success {
  padding-left: 3.25rem;
}

.alert::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translate(0, -50%);
}

.alert-danger::before {
  content: '\f071';
}

.alert-warning::before {
  content: '\f06a';
}

.alert-info::before {
  content: '\f05a';
}

.alert-success::before {
  content: '\f058';
}

/*--------------------------------------------------------------
5. Breadcrumb
--------------------------------------------------------------*/

@media (max-width: 991px) {
  .breadcrumb {
    display: block !important;
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
  }

  .breadcrumb::-webkit-scrollbar {
    display: none;
  }
}

/*--------------------------------------------------------------
6. To Top Button
--------------------------------------------------------------*/

.top-button {
  right: 5%;
  bottom: 30px;
  opacity: 0;
  transition: opacity 1s;
}

.top-button.visible {
  opacity: 1;
}

/*--------------------------------------------------------------
7. Single Post
--------------------------------------------------------------*/

img {
  height: auto;
  max-width: 100%;
}

.wp-post-image {
  width: 100%;
}

.page-image img,
.post-image img {
  width: 100%;
  object-fit: contain;
  height: auto;
}

.featured-full-width-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

[rel='prev']:before {
  content: '« ';
}

[rel='next']:after {
  content: ' »';
}

/*--------------------------------------------------------------
8. Comments
--------------------------------------------------------------*/

ul.comment-list {
  list-style: none;
  padding: 0;
}

ul.comment-list li {
  list-style: none;
}

.avatar {
  width: 80px;
}

.comment-list ul.children {
  padding-left: 96px;
}

@media (max-width: 991px) {
  .comment-list ul.children ul.children {
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .comment-list ul.children ul.children ul.children {
    padding-left: 0;
  }
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

#cancel-comment-reply-link {
  margin-left: 1rem;
}

/* 
    Adding width to comment. 
    When using <pre> in comment, comment-content will not crashed
*/

.comment-content {
  width: calc(100% - 96px);
}

/*--------------------------------------------------------------
9. Archive
--------------------------------------------------------------*/

@media (max-width: 767px) {
  .card-img-left img {
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
    width: 100%;
    height: auto;
  }
}

@media (min-width: 768px) {
  .card-img-left img {
    border-top-left-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
}

@media (max-width: 991px) {
  .card-img-left-md img {
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
    width: 100%;
    height: auto;
  }
}

@media (min-width: 992px) {
  .card-img-left-md img {
    border-top-left-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
}

/*--------------------------------------------------------------
10. Widgets
--------------------------------------------------------------*/

.widget-area ul,
.bootscore-footer ul {
  padding: 0;
  list-style: none;
  margin-bottom: 0;
}

.widget-area ul li ul li {
  padding: 0 1rem;
}

#footer-menu li a {
  padding-left: 0;
}

/*--------------------------------------------------------------
11. Utilities
--------------------------------------------------------------*/

/* 
Add width-100 class to element to stretch it to the entire width 
of the screen when element is in .container.
https://bootscore.me/documentation/width-height-classes/
*/

/* Hide horizontal scrollbars on Windows Chrome & Firefox */

body {
  overflow-x: hidden;
}

.width-100 {
  position: relative;
  width: 100vw;
  margin-left: -50vw;
  left: 50%;
}

/* 
Hide racaptcha v3 badge 
*/

.grecaptcha-badge {
  display: none !important;
}

/* 
Clear
*/

.clear-both {
  clear: both;
}

/* 
z-index
*/

.zi-1000 {
  z-index: 1000 !important;
}

.zi-1020 {
  z-index: 1020 !important;
}

.zi-1030 {
  z-index: 1030 !important;
}

.zi-1040 {
  z-index: 1040 !important;
}

.zi-1050 {
  z-index: 1050 !important;
}

.zi-1060 {
  z-index: 1060 !important;
}

.zi-1070 {
  z-index: 1070 !important;
}

.zi-n1 {
  z-index: -1 !important;
}

/*
Cursor
*/

.cursor-pointer {
  cursor: pointer;
}

/*
Focus
*/

.focus-none {
  box-shadow: none !important;
  outline: 0 !important;
}

/* 
Hover 
*/

.hover {
  transition: filter 0.3s;
}

.hover:hover {
  filter: brightness(0.95);
}

/*--------------------------------------------------------------
12. Colors
--------------------------------------------------------------*/

::selection {
  color: #fff;
  background-color: #ac9455;
}

::-moz-selection {
  color: #fff;
  background-color: #ac9455;
}

pre {
  background-color: var(--bs-light);
}

:focus {
  outline: none !important;
  outline: -webkit-focus-ring-color none !important;
  outline-color: -webkit-focus-ring-color none !important;
  outline-style: none !important;
  outline-width: 0 !important;
}

/*--------------------------------------------------------------
13. HTML Markups (Theme Unit Test Data)
--------------------------------------------------------------*/

/*
pre
*/

pre {
  padding: 1rem;
  border-radius: 0.25rem;
}

img {
  height: auto;
  max-width: 100%;
}

iframe {
  max-width: 100%;
}

pre {
  max-width: 100%;
  border-radius: 0.25rem;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/

.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/

.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*='wp-image-'] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

.blocks-gallery-grid .blocks-gallery-image figcaption,
.blocks-gallery-grid .blocks-gallery-item figcaption,
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
  overflow: auto;
  padding: 0.5rem;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.5);
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/

.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

@font-face {
	font-family: 'Proxima Nova';
	src: url('/wp-content/themes/book-a-transfer/fonts/proximanova/ProximaNova-Regular.eot');
	src: local('Proxima Nova Regular'), local('ProximaNova-Regular'),
		url('/wp-content/themes/book-a-transfer/fonts/proximanova/ProximaNova-Regular.eot?#iefix') format('embedded-opentype'),
		url('/wp-content/themes/book-a-transfer/fonts/proximanova/ProximaNova-Regular.woff') format('woff'),
		url('/wp-content/themes/book-a-transfer/fonts/proximanova/ProximaNova-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Proxima Nova';
	src: url('/wp-content/themes/book-a-transfer/fonts/proximanova/ProximaNova-Bold.eot');
	src: local('Proxima Nova Bold'), local('ProximaNova-Bold'),
		url('/wp-content/themes/book-a-transfer/fonts/proximanova/ProximaNova-Bold.eot?#iefix') format('embedded-opentype'),
		url('/wp-content/themes/book-a-transfer/fonts/proximanova/ProximaNova-Bold.woff') format('woff'),
		url('/wp-content/themes/book-a-transfer/fonts/proximanova/ProximaNova-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}
html, body {font-family:'Proxima Nova',sans-serif!important;color:#2b2b2b!important;}

a, button, input {-webkit-transition: all 0.5s ease;-o-transition: all 0.5s ease;transition: all 0.5s ease;}
body a:hover {color:#ac9455;}

header, section, footer {position:relative;}
header {z-index: 1;}

.container {max-width: 1220px!important;}
section .btn-primary {border-color:#2b2b2b;background-color:#2b2b2b;color:#fff;font-size: 1rem;padding: .75rem 2.5rem;font-weight:bold;}
section .btn-primary:hover {border-color:#ac9455;background-color:#ac9455;}
section .btn-outline-primary {color: #2b2b2b;border-color: #2b2b2b;font-size: .9rem;font-weight: bold;padding: 0.5rem 1rem;}
section .btn-outline-primary:hover {border-color:#ac9455;background-color:#ac9455;color:#fff;}


section .alert-info {color: #ac9455;background-color: #f2f2f2;border-color: #f2f2f2;}

.breadcrumbs {width:100%;background-color:#f2f2f2;border-radius:3px;margin-top:2rem;margin-bottom:1rem;padding:.5rem 1rem;}
.breadcrumbs a {display: block;color: #2b2b2b;text-decoration:none;}
.breadcrumbs ul {list-style:none;padding:0;margin:0;display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;-webkit-flex-wrap: wrap;-ms-flex-wrap: wrap;flex-wrap: wrap;-webkit-align-content: flex-start;-ms-flex-line-pack: start;align-content: flex-start;font-family: Barlow, sans-serif;font-weight: 600;font-size: 13px;line-height: 16px;letter-spacing: .06em;text-transform: uppercase;}
.breadcrumbs li {position: relative;display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}
.breadcrumbs li:not(:last-child) {margin-right: 12px;}
.breadcrumbs li:not(:last-child):after {content: '/';margin-left: 11px;color: #2b2b2b;}
.breadcrumbs li:last-child, .breadcrumbs li:last-child a {color:#ac9455;}

.header-top {background-color:#ac9455;color:#fff;padding:.5rem 0;}
.header-bottom {position:relative;background-color:#2b2b2b;-webkit-box-shadow: 0 0 35px rgba(0, 0, 0, .15);box-shadow: 0 0 35px rgba(0, 0, 0, .15);}
.site-header .contacts {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;-webkit-box-align: center;-webkit-align-items: center;-ms-flex-align: center;align-items: center;justify-content: flex-end;-webkit-justify-content: flex-end;}
.site-header .contacts a {font-size:.95rem;color:#fff;text-decoration:none;margin-left:3rem;font-weight: bold;}
.site-header .contacts a:first-child {margin-left:0;}
.logo {height:33px;}
.header-buttons {margin-left:3rem;}
.site .btn-primary {border-color:#2b2b2b;background-color:#2b2b2b;color:#fff;}
.site .btn-primary:hover {border-color: #ac9455;background-color: #ac9455;}
.btn-primary.white {border-color:#fff;background-color:#fff;color:#2b2b2b;font-size: .9rem;padding: 0.5rem 1rem;font-weight:bold;}
.btn-primary.white:hover {border-color:#ac9455;background-color:#ac9455;}
.btn-primary.white:disabled, .btn-primary.white.disabled {border-color:#fff;background-color:#fff;color:#ac9455;opacity:0.5;}

.btn-primary.gold {border-color:#ac9455;background-color:#ac9455;color:#fff;font-size: .9rem;padding: 0.5rem 1rem;font-weight:bold;}
.btn-primary.gold:hover {border-color:#6f5f35;background-color:#6f5f35;color:#fff;}
.btn-primary.gold:disabled, .btn-primary.gold.disabled {border-color:#fff;background-color:#fff;color:#ac9455;opacity:0.5;}

section .wpcf7 .wpcf7-submit {font-size: 1rem;padding: .75rem 2.5rem;}

.site-header .navbar-nav {justify-content: space-between;width: -webkit-fit-content;font-size: .9rem;}
.site-header .navbar-nav .nav-link {color:#fff;font-weight:bold;}
.site-header .navbar-nav .nav-item {position:relative;display: flex;justify-content: space-between;align-items: center;flex-wrap: nowrap;}
.site-header .navbar-nav .nav-item:not(:last-child):after {content:'/';position:relative;display: block;color:rgba(255,255,255,.25);width: 20px;text-align: center;height: 20px;}
.site-header .navbar-nav .nav-link:hover, .site-header .navbar-nav .nav-item .nav-link.active {color:#ac9455;}
.site-header .contacts a:hover {color:#2b2b2b;}

section h1 {font-weight:bold;font-size: 2.5rem;}
section h2 {font-weight:bold;font-size: 1.85rem;}
section .title {color:#2b2b2b;margin-bottom:20px;}
section .title.white {color:#fff;}
section .title span {color:#ac9455;position:relative;}
section .title.white span {color:#ac9455;}

/* top */
.top {background-color:#2b2b2b;color:#fff;background-image: url('/wp-content/themes/book-a-transfer/img/top-bg.jpg');background-size: cover;background-position: center;}
.top h1 {font-weight:bold;font-size:3.5rem;text-decoration: underline;text-decoration-color: rgba(24,23,61,.2);text-decoration-style: solid;text-decoration-thickness: 8px;margin-bottom: 0;}
.top span {display: block;margin-bottom:1rem;color: #ac9455;font-size:1.25rem;}
/*.top .top-bck {padding:6.5rem 0 1rem;position:relative;text-align: center;}*/
.top .top-bck {padding:10rem 0;position:relative;text-align: center;}
.top .top-bck figure {max-width: 50rem;margin: 0 auto;display: none;}

.btn-reviews {position: absolute;top:auto;right:1.65rem;width: 5rem;}
.btn-reviews:before {content:'';display:block;position: relative;background-color:#ac9455;height:0;-webkit-transition: height 0.5s ease;-o-transition: height 0.5s ease;transition: height 0.5s ease;}
.btn-reviews:hover {cursor: pointer;}
.btn-reviews:hover:before {height: 5px;}
.btn-reviews a {display: block;position: relative;}
.relative {position: relative;}

/* trip */
.trip {margin-bottom:20px;margin-top:35px;}
.trip-item {position:relative;margin-bottom:25px;overflow:hidden;border-radius:5px;z-index: 0;}
.trip-item:after {content:'';width:100%;height:50%;bottom:0;left:0;position:absolute;z-index:1;background: rgb(172, 148, 85);background: -moz-linear-gradient(0deg, rgba(172, 148, 85,1) 0%, rgba(172, 148, 85,0) 100%);background: -webkit-linear-gradient(0deg, rgba(172, 148, 85,1) 0%, rgba(172, 148, 85,0) 100%);background: linear-gradient(0deg, rgba(172, 148, 85,1) 0%, rgba(172, 148, 85,0) 100%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2b2b2b",endColorstr="#2b2b2b",GradientType=1);-webkit-transition: height 0.5s ease;-o-transition: height 0.5s ease;transition: height 0.5s ease;}
.trip-list a {text-decoration:none;color:#fff;}
.trip-item-title {position:absolute;bottom:0;z-index:2;left:0;padding:1rem 1.75rem;width:100%;}
.trip-item-title h3 {font-weight:bold;font-size:1.15rem;}
.trip-item-title h3:after {content:'';position:absolute;right:1.75rem;top: calc(50% - 6px);background-image:url('/wp-content/themes/book-a-transfer/img/arrow.svg');width:20px;height:6px;-webkit-transition: right 0.5s ease;-o-transition: right 0.5s ease;transition: right 0.5s ease;}
.trip-list a:hover {color:#fff;}
.trip-list a:hover .trip-item:after {height:60%;}
.trip-list a:hover .trip-item-title h3:after {right:1.5rem;}
.trip-item-img {max-height:220px;height:220px;display: flex;flex-wrap: wrap;filter: grayscale(1);}
.trip-item-img img {object-fit: cover;height: 100%;width: 100%;}

/* advantages */
.advantages {background-color:#f2f2f2;padding-top:35px;padding-bottom:20px;}
.advantages-list {align-items: stretch;height:100%;}
.advantages-list .col-xl-6 {display:flex;}
.advantage-item {width: 100%;background-color:#fff;margin-bottom:25px;display:flex;align-items: center;border-radius:5px;padding: 1.25rem 4rem;align-content: center;}
.advantage-icon {min-width:85px;margin-right:1.25rem;}
.advantage-text h3 {font-weight:bold;font-size:1.2rem;margin-bottom:.75rem;}
.advantage-text p {width:100%;margin-bottom:0;}

/* locations */
.locations {background-color:#f2f2f2;padding-top:35px;padding-bottom:35px;}
.locations figure {max-width:80%;margin:0 auto;}
.locations-list {display:flex;flex-wrap:wrap;justify-content:start;margin-bottom: 2rem;}
.locations-list li {flex-basis: calc(100% / 5);}
.color-text {text-transform: uppercase;color:#ac9455;}

/* popular */
.popular {background:#2b2b2b url('/wp-content/themes/book-a-transfer/img/popular-bg.jpg') no-repeat top right;padding-top:35px;}
.car-list {align-items: stretch;height: 100%;}
.car-list .col-xl-4 {display:flex;flex-wrap: wrap;}
.home .car-list .item {margin: 0 1rem;display: flex!important;height: auto;}
.home .car-list .slick-track {display: flex;}
.car-card {width: 100%;margin-top:2rem;background-color:#fff;margin-bottom:25px;border-radius:3px;padding:2rem;overflow: hidden;display:flex;flex-wrap:wrap;position: relative;}
.car-card-img {width: calc(100% + 4rem);margin: -2rem -2rem 0;}
.car-card-img img {width:100%;}
.car-card-purpose {margin-bottom:.5rem;color:#fff;font-weight:bold;text-transform: uppercase;position:absolute;}
.car-card-title {font-size:1.5rem;font-weight:bold;line-height:1.65rem;margin-bottom:.75rem;}
.car-card-title a {text-decoration:none;color:#ac9455;}
.car-card .car-card-link {margin-top:1rem;display:flex;justify-content:center;width: 100%;align-items: flex-end;}
.car-card-for {width:100%;display: block;position: relative;}
.car-card-text {font-size:.95rem;}
.car-card-for-list {width: 100%;flex-direction: row;display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;-webkit-box-align: center;-webkit-align-items: center;-ms-flex-align: center;align-items: center;padding-bottom: .85rem;border-bottom: 1px solid #f2f2f2;margin-bottom: 1rem;justify-content: space-around;}
.car-card-for-list > div {flex-basis: auto;flex-wrap: nowrap;flex-direction: row;height: 30px;display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;-webkit-box-align: center;-webkit-align-items: center;-ms-flex-align: center;align-items: center;}
.car-card-for-list span {width: auto;display: block;position: relative;padding-left: 18px;font-size: 1rem;font-weight:bold;color:#ac9455;}
.car-card-for-list span:before {content: '';position: absolute;left: 0;top: 6px;width: 12px;height: 12px;background: url('/wp-content/themes/book-a-transfer/img/x.svg') center no-repeat;}
.car-card-luggage:after, .car-card-luggage:before, .car-card-seats:after, .car-card-seats:before {content: '';position: absolute;}
.car-card-seats {padding-left: 40px;position: relative;}
.car-card-seats:before {top:0;left:0;width: 30px;height: 30px;background: url('/wp-content/themes/book-a-transfer/img/icon-seats.svg') center no-repeat;}
.car-card-luggage {padding-left: 40px;position: relative;}
.car-card-luggage:before {top:0;left: 0;width: 30px;height: 30px;background: url('/wp-content/themes/book-a-transfer/img/icon-luggage.svg') center no-repeat;}
.car-card-toilet img {position: relative;width: auto;height: 30px;}

/* service */
.service {background:#f2f2f2 url('/wp-content/themes/book-a-transfer/img/service-bg.jpg') no-repeat center bottom;padding:3.5rem 0;}
.service p {width: 100%;margin: 0 auto 1rem;}

/* footer */
.busrental-footer {background-color:#2b2b2b;color:#fff;}
.busrental-info {background-color:#ac9455;color:#fff;}
.busrental-footer .contacts {margin: 1rem 0;}
.busrental-footer .navbar-brand {margin-right:0;}
.busrental-footer .contacts a {font-size:.95rem;color:#fff;text-decoration:none;display:block;}

.footer_widget .widget-title {font-size:1rem;font-weight:bold;border-bottom:1px solid rgba(255,255,255,.2);padding-bottom:.5rem;}
.footer_widget .menu {margin-bottom:0;padding-left:0;list-style:none;}
.footer_widget .menu .menu-item {font-size:.95rem;}
.footer_widget .menu .menu-item a {text-decoration:none;color:#fff;}
.footer_widget .menu .menu-item a:hover {color:#ac9455;}
.footer_widget #menu-locations {display: flex;flex-wrap: wrap;}
.footer_widget #menu-locations li {flex-basis:50%;}

/* Trip page */
.page-template-page-trip .top {background-image: url('/wp-content/themes/book-a-transfer/img/fleet-bg.jpg');background-size: 100%;background-position: top center;background-attachment: fixed;}
.page-template-page-trip .top h1 {font-weight:bold;font-size:2.25rem;text-decoration:none;position:relative;}
.page-template-page-trip .top h1 span {display: inline;font-size: inherit;}
.page-template-page-trip .top p {display: block;margin-top:1rem;}
.page-template-page-trip .top .top-bck {padding: 6.5rem 0;position: relative;}
.page-template-page-trip .trip-item:after {content:none;}
.page-template-page-trip .trip-item:nth-child(2n) {background-color:#f2f2f2;}
.page-template-page-trip .trip-title a {color:#2b2b2b;text-decoration:none;}
.page-template-page-trip .trip-title a:hover {color:#ac9455;}
.page-template-page-trip .trip-item {padding:2rem 0;margin-bottom:0;}
.page-template-page-trip .trip-item .col-md-3 a {display:block;}
.page-template-page-trip .service p, .trip-template-default .service p {width: 100%;}

.trip-img {position:relative;overflow:hidden;border-radius:10px;min-height:240px;filter: grayscale(1);}
.trip-img img {object-fit: cover;height: 240px;width: 100%;}
.trip-template-default .trip-list {margin-bottom: 2rem;}
.trip-template-default .trip-list .item {margin: 0 1rem;}
.trip-template-default .trip-list .trip-item {margin-bottom: 0;}
.trip-template-default .trip-list .slick-prev:before, .trip-template-default .trip-list .slick-next:before {color:#2b2b2b;}
.trip-template-default .trip-list .slick-prev:hover:before, .trip-template-default .trip-list .slick-next:hover:before {color:#ac9455;}

/* Event page */
.page-template-page-event .top {background-image: url('/wp-content/themes/book-a-transfer/img/fleet-bg.jpg');background-size: 100%;background-position: top center;background-attachment: fixed;}
.page-template-page-event .top h1 {font-weight:bold;font-size:2.25rem;text-decoration:none;position:relative;}
.page-template-page-event .top h1 span {display: inline;font-size: inherit;}
.page-template-page-event .top p {display: block;margin-top:1rem;}
.page-template-page-event .top .top-bck {padding: 4rem 0;position: relative;}
.page-template-page-event .event-item:after {content:none;}
.page-template-page-event .event-item:nth-child(2n) {background-color:#f2f2f2;}
.page-template-page-event .event-title a {color:#2b2b2b;text-decoration:none;}
.page-template-page-event .event-title a:hover {color:#ac9455;}
.page-template-page-event .event-item {padding:2rem 0;margin-bottom:0;}
.page-template-page-event .event-item .col-md-3 a {display:block;}
.page-template-page-event .service p, .event-template-default .service p {width: 100%;}

.event-img {position:relative;overflow:hidden;border-radius:10px;min-height:190px;filter: grayscale(1);}
.event-img img {object-fit: cover;height: 190px;width: 100%;}
.event-template-default .event-list {margin-bottom: 2rem;}
.event-template-default .event-list .item {margin: 0 1rem;}
.event-template-default .event-list .event-item {margin-bottom: 0;}
.event-template-default .event-list .slick-prev:before, .event-template-default .event-list .slick-next:before {color:#2b2b2b;}
.event-template-default .event-list .slick-prev:hover:before, .event-template-default .event-list .slick-next:hover:before {color:#ac9455;}

/* Fleet page */
.fleet {background:#2b2b2b url('/wp-content/themes/book-a-transfer/img/popular-bg.jpg') no-repeat top right;padding-top:35px;}
.fleet h1.title {font-size:1.85rem;}
.fleet-nav {background-color:#fff;margin-bottom:1.5rem;color:#ac9455;height:60px;border-radius:3px;display: flex;flex-wrap: nowrap;justify-content: space-between;}
.fleet-nav .fleet-nav-item {width:100%;background-color:transparent;border:0;text-transform:uppercase;display: flex;flex-wrap: nowrap;align-items: center;justify-content: center;}
.fleet-nav .fleet-nav-item span {margin-right:.75rem;height: 30px;display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;-webkit-box-align: center;-webkit-align-items: center;-ms-flex-align: center;align-items: center;-webkit-box-pack: center;-webkit-justify-content: center;-ms-flex-pack: center;justify-content: center;}
.fleet-nav-item img:last-child {display: none;}
.fleet-nav .fleet-nav-item span img {object-fit: contain;height:20px;}
.fleet-nav-item.active img, .fleet-nav-item:hover img {display: none;}
.fleet-nav-item.active img:last-child, .fleet-nav-item:hover img:last-child {display: block;}
.fleet-nav .fleet-nav-item:not(:fist-child) {border-left:1px solid #f2f2f2;}
.fleet-nav-item.active b, .fleet-nav-item:hover b {color:#2b2b2b;}

.car-card-third .car-card-icon {width:30px;}
.car-card-third .car-card-title {font-size: 1rem;font-weight: bold;color: #ac9455;padding-left:10px;margin: 0;line-height: normal;}

.page-template-page-cars .advantages-list {height: auto;display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;flex-direction: row;flex-wrap: wrap;-webkit-box-align: center;-webkit-align-items: center;-ms-flex-align: center;align-items: center;padding-bottom: .85rem;border-bottom: 1px solid #f2f2f2;margin-bottom: 1rem;justify-content: space-around;}
.page-template-page-cars .advantages-list > div {height: 30px;display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;-webkit-box-align: center;-webkit-align-items: center;-ms-flex-align: center;align-items: center;}
.page-template-page-cars .advantages-list .advantages-item-icon img {height: 30px;}
.page-template-page-cars .advantages-list .advantages-item-title {font-size: 1rem;padding-left:10px;margin: 0;line-height: normal;}
.page-template-page-cars .advantages-list .advantages-item:nth-child(3n+4) {margin-top:1rem;}

.page-template-page-cars .car-card-for > div:last-child {border-bottom:0;padding-bottom:0;}
.page-template-page-cars .car-card .car-type {position:absolute;background-color:#2b2b2b;color:#fff;font-size: 1rem;font-weight: bold;padding:0 1rem;text-transform:uppercase;border-radius:5px;right:2rem}
.page-template-page-cars .car-card {margin-top:0;}
.page-template-page-cars .car-card-img {margin-top: .5rem;}

/* Single Car */
.fleet-single-advantages-title, .trip-single-advantages-title {font-size: 1rem;font-weight:bold;color: #ac9455;}
.fleet-single-advantages, .trip-single-advantages {background-color:#f2f2f2;padding:1rem 2rem;border-radius:5px;}
.fleet-single-advantages-list, .trip-single-advantages-list {height: auto;display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;flex-direction: row;flex-wrap: wrap;-webkit-box-align: center;-webkit-align-items: center;-ms-flex-align: center;align-items: center;padding-bottom: .85rem;border-bottom: 1px solid #f2f2f2;margin-bottom: 1rem;}
.fleet-single-advantages-list {margin-bottom: 0;border:0;}
.fleet-single-advantages-item, .trip-single-advantages-item {margin-top: 1rem;width:50%;height: 30px;display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;-webkit-box-align: center;-webkit-align-items: center;-ms-flex-align: center;align-items: center;}
.fleet-single-advantages-item img, .trip-single-advantages-item img {position: relative;width: auto;height: 30px;}
.fleet-single-advantages-item_title, .trip-single-advantages-item_title {font-size: 1rem;font-weight: normal;padding-left:10px;margin: 0;line-height: normal;}
.fleet-single-button {margin-top:1rem;}
.fleet-single-car-type {word-break: normal;width:fit-content;color:#fff;background-color:#2b2b2b;margin-bottom: 0.5rem;font-size: 1rem;font-weight: bold;padding:0 1rem;text-transform:uppercase;border-radius:5px;}
.fleet-single-gallery-display {position:relative;list-style:none;margin: 0;padding: 0;}
.fleet-single-gallery-display_item {position: absolute;top: 0;left: 0;right: 0;bottom: 0;opacity: 0;transition:opacity .8s}
.fleet-single-gallery-display_item {height: 350px;overflow: hidden;display: flex;}
.fleet-single-gallery-display_item img {object-fit:cover;width:100%;height:100%;}
.fleet-single-gallery-display_item.active {position: relative;z-index: 1;opacity:1}
.fleet-single-gallery-display_item-image {width: 100%;max-width: 100%;object-fit: cover;height: 100%;}
.fleet-single-gallery-item_link {display:flex;width: 100%;height: 80px;flex-wrap:nowrap;}
.fleet-single-gallery-list {display: -webkit-box;display: -ms-flexbox;display: flex;margin-left: -.3125rem;margin-right: -.3125rem;margin-top:.625rem;padding: 0;}
.fleet-single-gallery-item {display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-align: center;-ms-flex-align: center;align-items: center;position: relative;width: calc(20% - .625rem);margin-right: .3125rem;margin-left:.3125rem}
.fleet-single-gallery-item.active:after {content: '';display: block;position: absolute;z-index: 2;top: 0;right: 0;left: 0;bottom: 0;width: 100%;height: 100%;border: .1875rem solid #ac9455;box-sizing:border-box}
.fleet-single-gallery-item_image {width: 100%;max-width: 100%;height:auto}
.fleet-single-gallery {position:relative;z-index:0;}
.single-cars .transportation-service {background-color: #f2f2f2;}

/* Single Trip */
.trip-single-image {border-radius:5px;position:relative;overflow:hidden;}
.section-fleet__nav {display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-pack: center;-ms-flex-pack: center;justify-content: center;-ms-flex-wrap: wrap;flex-wrap: wrap;text-transform: uppercase;font-weight: 300;margin-top:.9375rem;list-style:none;padding: 0;}
.section-fleet__nav-item:not(:first-child) {margin-left:.9375rem}
.section-fleet__nav-item:not(:last-child):after {content: '/';display: inline;margin-left:.9375rem}
.section-fleet__nav-item:nth-child(4) {margin-left:0}
.trip-single-button {margin-top:1rem;}
.section-fleet__nav-item_link {font-weight: bold;color: #ac9455;text-decoration:none;}
.section-fleet__nav-item.active .section-fleet__nav-item_link {color: #2b2b2b;}
.section-fleet__carousel {padding:0;}
.section-fleet__append {display:none;}
.section-fleet__carousel-item {width:50%;margin:0 auto;list-style:none;position: relative;}
.section-fleet__carousel-item a {color:#ac9455;text-decoration:none;}
.section-fleet__carousel-item .car-type {word-break: normal;position:absolute;z-index:99;color:#fff;right:0;background-color:#2b2b2b;font-size: 1rem;font-weight: bold;padding:0 1rem;text-transform:uppercase;border-radius:3px;}
.section-fleet__carousel-item_title {font-weight:bold;margin-top:2rem;position:absolute;right:0;}

.section-fleet .owl-nav {position: absolute;top: 50%;left: 50%;width: 60%;transform: translate(-50%,0%);}
.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next {position:absolute;}
.owl-carousel .owl-nav .owl-prev {left:0;}
.owl-carousel .owl-nav .owl-next {right:0;}
.owl-carousel .owl-nav .owl-prev.disabled, .owl-carousel .owl-nav .owl-next.disabled {opacity:0;}

.owl-carousel, .owl-carousel .owl-item {-webkit-tap-highlight-color: transparent;position: relative}
.owl-carousel {display: none;width: 100%;z-index: 1;}
.owl-carousel .owl-stage {position: relative;-ms-touch-action: pan-Y;touch-action: manipulation;-moz-backface-visibility: hidden}
.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;-webkit-transform: translate3d(0, 0, 0)}
.owl-carousel .owl-item, .owl-carousel .owl-wrapper {-webkit-backface-visibility: hidden;-moz-backface-visibility: hidden;-ms-backface-visibility: hidden;-webkit-transform: translate3d(0, 0, 0);-moz-transform: translate3d(0, 0, 0);-ms-transform: translate3d(0, 0, 0)}
.owl-carousel .owl-item {min-height: 1px;float: left;-webkit-backface-visibility: hidden;-webkit-touch-callout: none;}
.owl-carousel .owl-item img {display: block;width: 100%}
.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {display: none}
.no-js .owl-carousel, .owl-carousel.owl-loaded {display: block}
.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {cursor: pointer;-webkit-user-select: none;-khtml-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none}
.owl-carousel.owl-loading {opacity: 0;display: block}
.owl-carousel.owl-hidden {opacity: 0}
.owl-carousel.owl-refresh .owl-item {visibility: hidden}
.owl-carousel.owl-drag .owl-item {-ms-touch-action: pan-y;touch-action: pan-y;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none}
.owl-carousel.owl-grab {cursor: move;cursor: grab}
.owl-carousel.owl-rtl {direction: rtl}
.owl-carousel.owl-rtl .owl-item {float: right}
.owl-carousel .animated {animation-duration: 1s;animation-fill-mode: both}
.owl-carousel .owl-animated-in {z-index: 0}
.owl-carousel .owl-animated-out {z-index: 1}
.owl-carousel .fadeOut {animation-name: fadeOut}
@keyframes fadeOut {0% {opacity: 1}100% {opacity: 0}}
.owl-height {transition: height .5s ease-in-out}
.owl-carousel .owl-item .owl-lazy {opacity: 0;transition: opacity .4s ease}
.owl-carousel .owl-item .owl-lazy:not([src]), .owl-carousel .owl-item .owl-lazy[src^=""] {max-height: 0}
.owl-carousel .owl-item img.owl-lazy {transform-style: preserve-3d}
.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(../libs/OwlCarousel/dist/assets/owl.video.play.png) no-repeat;cursor: pointer;z-index: 1;-webkit-backface-visibility: hidden;transition: transform .1s ease}
.owl-carousel .owl-video-play-icon:hover {-ms-transform: scale(1.3, 1.3);transform: scale(1.3, 1.3)}
.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {display: none}
.owl-carousel .owl-video-tn {opacity: 0;height: 100%;background-position: center center;background-repeat: no-repeat;background-size: contain;transition: opacity .4s ease}
.owl-carousel .owl-video-frame {position: relative;z-index: 1;height: 100%;width: 100%}

/* About us */
.page-template-page-about .advantage-icon {height:90px;}
.page-template-page-about .advantage-icon img {height:100%;}
.page-template-page-about .advantage-text h3 {margin-bottom:0;font-size:2rem;}
.page-template-page-about .advantages {padding-bottom:10px;}

.reviews {margin-top:35px;margin-bottom:25px;}
.reviews .title {margin-bottom:.5rem;}
.reviews .title span {color:#ac9455;}

.pagination {justify-content: center;}
.navigation {margin:0 0 2rem;text-align: center;}
.nav-links span.current, .nav-links a:hover {background-color: #2b2b2b;color: #fff;}
.nav-links {display: flex;padding: 0;margin: 0;overflow: hidden;}
.nav-links a, .nav-links span {margin: 0;text-decoration: none;line-height: 1;font-size:.95rem;font-weight:600;min-width: 1em;display: block;border-radius: .25rem;color: #2b2b2b;padding: .75rem 1rem;}

.glsr-default .glsr-review>.glsr-review-avatar img {border-radius:50%;overflow:hidden;}
.glsr .glsr-reviews-wrap {margin-top:2rem;}
div[data-shortcode="site_reviews_form"] {margin-top: 2rem;}
.glsr-default .glsr-review>.glsr-review-date {font-size:.9rem;}
.glsr-default .glsr-review>.glsr-review-content {background-color:#f2f2f2;padding:1rem;border-radius:5px;position: relative;}
.glsr-default .glsr-review>.glsr-review-content:before {content: '';position: absolute;bottom: 0;left: 2rem;width: 0;height: 0;border: 14px solid transparent;border-top-color: #f2f2f2;border-bottom: 0;border-right: 0;margin-left: -7px;margin-bottom: -14px;}
.glsr-default .glsr-review>.glsr-review-author {font-size:0.9rem;font-weight:bold;}
.glsr-star-full, .glsr-star-rating--stars[class*=" s"]>span.gl-active, .glsr-star-rating--stars[class*=" s"]>span.gl-active.gl-selected {background-image: url('/wp-content/themes/book-a-transfer/img/review-star.svg')!important;}
.glsr-default form.glsr-form .glsr-field-toggle input[type=checkbox]:checked+.glsr-toggle-track:before {background-color: #ac9455!important;}
.glsr-default button.glsr-button {justify-content: center;}
.home .reviews .glsr-review {margin:0 1rem;}
.home .reviews .slick-prev:before, .home .reviews .slick-next:before {color:#2b2b2b;}
.home .reviews .slick-prev:hover:before, .home .reviews .slick-next:hover:before {color:#ac9455;}
.page-template-page-about .reviews .glsr-review {margin:0 1rem;}
.page-template-page-about .reviews .slick-prev:before, .page-template-page-about .reviews .slick-next:before {color:#2b2b2b;}
.page-template-page-about .reviews .slick-prev:hover:before, .page-template-page-about .reviews .slick-next:hover:before {color:#ac9455;}
.slick-dotted.slick-slider {margin-bottom: 40px!important;}
.slick-dots {bottom: -40px!important;}
.slick-dots li button:before {height: 3px!important;border-radius:1px;font-size: 0!important;background-color: #f2f2f2;opacity: 1!important;-webkit-transition: background-color 0.5s ease;-o-transition: background-color 0.5s ease;transition: background-color 0.5s ease;}
.slick-dots li.slick-active button:before {background-color:#ac9455;}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {background-color:#ac9455;}


.about {margin-bottom:2rem;}
.about .col-xl-6.col-lg-6 {position:relative;}
.about .bg-block {background-color:#2b2b2b;color:#fff;border-radius:5px;padding:3rem;}
.about .bg-block h1 {font-size:1.75rem;}
.about .bg-block p {margin-bottom:0;}
.about-image {position:relative;z-index:0;right:0;bottom:0;width:100%;border-radius:5px;overflow: hidden;}

/* Contacts */
.contacts-address {background-color:#f2f2f2;border-radius:5px;padding:2rem;}
.page-template-page-contacts .fform {background-image: url('/wp-content/themes/book-a-transfer/img/form-bg.jpg');background-size: cover;background-position: top center;background-repeat: no-repeat;border-radius:5px;position: relative;overflow: hidden;}
.page-template-page-contacts .fform form {background-color: rgba(172, 148, 85,.95);color: #fff;padding: 2rem;}
.page-template-page-contacts .fform .form-control {background-color: transparent;color:#fff;border: 0;border-bottom: 1px solid #fff;border-radius: 0;}
.page-template-page-contacts textarea {height: auto;max-height: 90px;}
.page-template-page-contacts .fform .form-control:focus {box-shadow:none;border-color:#f2f2f2;}
.page-template-page-contacts .fform .form-control::placeholder {color:#fff;}

.contacts-form__name_container, .contacts-form__email_container {display: inline-block;width: calc(50% - 10px);margin: 0;}
.contacts-form__email_container {margin-left: 15px;}
.contacts-form__explanation {text-align:right;margin-top:.5rem;font-size: .85rem;}
.fform .form-switch {margin-bottom: 1rem;}
.form-check-label {font-size:.85rem;}
.wpcf7-list-item {display:block;margin: 0;}
.fform .form-check-input {background-color: #f2f2f2;border-color:#f2f2f2;}
.fform .form-check-input:checked {background-color: #f2f2f2;border-color:#f2f2f2;}
.fform .form-switch .form-check-input {background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%232b2b2b'/%3e%3c/svg%3e");}
.fform .form-switch .form-check-input:checked {background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ac9455'/%3e%3c/svg%3e");}

.contacts-address__list {list-style:none;padding:0;margin: 0;}
.contacts-content {margin-bottom:2rem;}
.contacts-address__item {display:flex;margin-top:1rem;}
.contacts-address__item:first-child {margin-top:0;}
.contacts-address__item-icon {margin-right:.75rem;color:#2b2b2b;font-size:1.25rem;}
.contacts-address__item-title {font-weight:bold;}
.contacts-address__item-title span {font-weight:normal;display:block;}
.contacts-address__item a {text-decoration: none;color: #ac9455;font-weight: bold;}

/* Single Locations */
.main-photo {width:100%;height:340px;position:relative;overflow:hidden;border-radius:3px;}
.main-photo img {position: fixed;z-index: -2;top: 0;bottom: 0;left: 0;overflow: hidden;}
.main-photo-capture {text-transform:uppercase;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);text-align:center;color:#fff;z-index:2;}
.main-photo-capture .main-photo-capture-small {font-size:1.5rem;font-weight:bold;}
.main-photo-capture h1.title {font-size:4rem;color:#fff;}
.main:after {content:'';width:100%;height:100%;bottom:0;left:0;position:absolute;z-index:1;background: rgb(172, 148, 85);background: -moz-linear-gradient(0deg, rgba(172, 148, 85,1) 0%, rgba(172, 148, 85,0) 100%);background: -webkit-linear-gradient(0deg, rgba(172, 148, 85,1) 0%, rgba(172, 148, 85,0) 100%);background: linear-gradient(0deg, rgba(172, 148, 85,1) 0%, rgba(172, 148, 85,0) 100%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2b2b2b",endColorstr="#2b2b2b",GradientType=1);-webkit-transition: height 0.5s ease;-o-transition: height 0.5s ease;transition: height 0.5s ease;}
.quote-content {margin-bottom: -2rem;}
/*
.single-locations .site:before {content:'';width:100%;position:absolute;height:100%;z-index:0;background: rgb(24,24,62);background: -moz-linear-gradient(180deg, rgba(24,24,62,1) 0%, rgba(24,24,62,0) 100%);background: -webkit-linear-gradient(180deg, rgba(24,24,62,1) 0%, rgba(24,24,62,0) 100%);background: linear-gradient(180deg, rgba(24,24,62,1) 0%, rgba(24,24,62,0) 100%);}
*/
header .btn-outline-secondary {color: #fff;border-color: #fff;}
header .btn-outline-secondary:hover {color: #ac9455;background-color: #fff;border-color: #fff;}
header .offcanvas {background-color: #2b2b2b;}
header .btn-close {background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center / 1em auto no-repeat;}

/* Partners */
.partners {background-color:#2b2b2b;padding-top:55px;}
.partners-gallery {display:flex;flex-wrap:nowrap;justify-content: space-between;}
.partners-gallery .partners_item {flex-basis:auto;margin-bottom: 25px;}
.partners-gallery .partners_item-image {height: 25px;object-fit: contain;max-width: 120px;}
.partners-gallery {padding-bottom:50px;}

/* Transportation Service */
.transportation-service {background-color:#fff;padding-top:35px;padding-bottom:35px;}
.service-list {align-items: stretch;height:100%;}
.service-list .col-xl-6 {display:flex;}
.service-item {width: 100%;background-color:#fff;box-shadow: 0 0 30px rgba(38, 38, 141, .1);margin-bottom:25px;display:flex;align-items: flex-start;border-radius:3px;padding: 1.25rem 2rem;align-content: center;}
.service-item .item-icon {min-width:55px;margin-right:1.25rem;}
.service-item h3 {font-weight:bold;font-size:1.25rem;margin-bottom:.75rem;}
.service-item h3 b {margin-right:1.5rem;color:#2b2b2b;position:relative;}
.service-item h3 b:after {position: absolute;right: -1rem;top: 0;font-weight: normal;content: '/';font-size: 2rem;line-height: 1.75rem;}
.service-item p {width:100%;margin-bottom:0;}
section.transportation-service .btn-outline-primary {font-size: 1rem;padding: .75rem 2.5rem;font-weight: bold;}

section .slick-prev, section .slick-next {color:#fff;}
section .slick-prev:before, section .slick-next:before {font-family: "Font Awesome 5 Free";font-weight: 900;opacity: 1;line-height: 1;font-size:1.75rem;-webkit-transition: all 0.5s ease;-o-transition: all 0.5s ease;transition: all 0.5s ease;}
section .slick-prev:before {content:"\f053";}
section .slick-next:before {content:"\f054";}
section .slick-prev:hover:before, section .slick-next:hover:before {color:#ac9455;}

/* xs iPhone */
@media (max-width: 767px) {
	.site-header .navbar-nav {width:100%;font-size:1.25rem;}
	.site-header .navbar-nav .nav-item:not(:last-child):after {content:none;}
	.header-buttons {margin-left:0;margin-top:1rem;}
	header .btn-primary.white, header .btn-primary.gold {font-size:1.25rem;}
  header .btn-primary.gold {margin-top:1rem;}
	.advantage-item {padding: 1.25rem 2rem;}
	.service p {width:100%;}
	.locations .columns {display:block;}
	.map-svg {display:none;}
	footer .col-md-2 {margin-bottom:2rem;}
  .page-template-page-event .top .top-bck, .page-template-page-trip .top .top-bck {padding: 6rem 0 2rem;}
  .fleet {padding-top: 6rem;}
	.page-template-page-trip .top h1, .page-template-page-trip .top p {max-width:100%;}
	.page-template-page-trip .top h1 span {z-index:0;}
  .page-template-page-trip .top {background-size: cover;}
  .page-template-page-event .top h1, .page-template-page-event .top p {max-width:100%;}
	.page-template-page-event .top h1 span {z-index:0;}
  .page-template-page-event .top {background-size: cover;}
	.trip-img, .trip-single-image, .event-img, .event-single-image {margin-bottom:1rem;}
	.fleet-single-advantages, .trip-single-advantages, .event-single-advantages {padding: 1rem 1.5rem;}
	.section-fleet__carousel-item, .section-fleet .owl-nav {width:100%;}
	.owl-carousel .owl-item img {padding-top:2rem;}
	.fleet-nav .fleet-nav-item span img {height: 20px;}
	.about .bg-block {padding: 2rem;}
	.about-image {right: 0rem;width: 100%;z-index: 0;}
	.main-photo-capture {width: 100%;z-index:0;}
	.main:after, .main:before {z-index:-1;}
	.main-photo img {height:100%;}
	.contacts-address {margin-bottom: 2rem;}
	.site-header .contacts {justify-content: center;-webkit-justify-content: center;}
	.btn-primary {width:100%;}
	footer .col-md-6.col-lg-3, footer .col-md-6.col-lg-2, footer .col-md-6.col-lg-4 {width:50%!important;}
	footer .col-md-2 {text-align: center;}
	.footer_widget #menu-locations li {flex-basis:100%;}
	.partners-gallery {flex-wrap:wrap;}
	.partners-gallery .partners_item {flex-basis:50%;}
	section.transportation-service .btn-outline-primary {width:100%;margin-top:1rem;}
  .fleet-nav {height: auto;flex-wrap: wrap;justify-content: space-evenly;}
  .fleet-nav .fleet-nav-item {width: 50%;padding: 0.5rem;}
  .btn-reviews {right: 0.65rem;width: 4rem;}
  .page-template-page-trip .btn-reviews, .page-template-page-event .btn-reviews, .page-template-page-cars .btn-reviews, .home .btn-reviews {right:50%;transform: translate(50%,0);}
  section .slick-prev {left: -10px;}
  section .slick-next {right: -10px;}
  .transportation-service .mb-0 {margin-bottom: 1rem!important;}
  .fleet-single-gallery-display_item {height:250px;}
  .fleet-single-gallery-item_link {height:50px;}
  .page-template-page-cars .fleet h1.title {text-align: center;}
  .locations-list li {flex-basis: calc(100% / 2);}
  .footer_widget .menu .menu-item a {font-size:1rem;line-height:1.15rem;}
}
/* md iPhone */
@media (min-width: 600px) and (max-width: 800px) {
	/*header {background-color:#eee;}*/
	.col-lg-6, footer .col-md-6 {width:50%!important;}
	.service-content {display: flex;flex-wrap: wrap;}
	.page-template-page-trip .trip-item, .page-template-page-event .event-item {width:50%;margin-bottom:1rem;padding: 2rem 1rem;}
	.about .col-xl-6.col-lg-6 {width:100%!important;}
	.about .bg-block {padding: 2rem;}
  .page-template-page-event .top, .page-template-page-trip .top {background-size: auto;background-position: center;}
  .page-template-page-cars .fleet h1.title {text-align: center;}
  .locations-list li {flex-basis: calc(100% / 4);}
}

/* sm iPad */
@media (min-width: 768px) and (max-width: 991px) {
  /*header {background-color:green!important;}*/
  .top h1 {max-width:100%}
  .col-lg-6, footer .col-md-6 {width:50%!important;}
  .site-header .navbar-nav {width:100%;font-size:1.25rem;}
	.site-header .navbar-nav .nav-item:not(:last-child):after {content:none;}
	.header-buttons {margin-left:0;margin-top:1rem;}
	header .btn-primary.white, header .btn-primary.gold {font-size:1.25rem;}
	.col-xl-4 {width:33%!important;}
	.fleet-single-advantages, .trip-single-advantages, .event-single-advantages {padding: 1rem 2rem;}
	.section-fleet__carousel-item {width:80%;}
	.section-fleet .owl-nav {width:90%;}
	.popular .col-xl-4, .fleet .col-xl-4, .page-template-page-about .advantages .col-xl-4 {width:50%!important;}
	.contacts-address {margin-bottom:2rem;}
	.main-photo img {height:100%;}
  .transportation-service .btn {width: 100%;}
  .transportation-service .text-center {width:100%;}
  section .slick-prev {left: -10px;}
  section .slick-next {right: -10px;}
  .page-template-page-event .top, .page-template-page-trip .top {background-size: auto;background-position: center top;}
  .page-template-page-cars .fleet h1.title {text-align: center;}
}
/* md iPad */
@media (min-width: 992px) and (max-width: 1199px) {
    /*header {background-color:violet!important;}*/
  section .slick-prev {left: -10px;}
  section .slick-next {right: -10px;}
  .page-template-page-event .top, .page-template-page-trip .top {background-size: auto;background-position: center top;}
  .page-template-page-cars .fleet h1.title {text-align: center;}
  .btn-primary.white, .btn-primary.gold {padding:0.5rem .5rem;}
  .header-buttons {margin-left: 1rem;}
  .logo {height:28px;}
  .navbar-expand-lg .navbar-nav .nav-link {padding-right: 0.25rem!important;padding-left: 0.25rem!important;}
}
/* lg */
@media (min-width: 1200px) {
    /*header {background-color:red;}*/
}