/**
*
* Colors
*
**/

/**
*
* Fonts
*
**/

/**
*
* SECTION SHADOW
*
**/

/**
*
* Reset
*
**/

button, input, select, textarea {
  box-shadow: none;
  outline: none;
}

button:focus, input:focus, select:focus, textarea:focus {
  border-color: #fcf1eb;
  box-shadow: 0 0 2px 0 rgba(255, 99, 8, 0.74) !important;
  outline: none !important;
}

html, body {
  height: 100%;
}

ul, li {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
  list-style-position: outside;
}

ul.list, ul.list > li {
  list-style: none;
  list-style-type: disc;
  margin: 10px;
  padding-left: 10px;
  list-style-position: inside;
}

a:link, a:hover, a:active, a:visited {
  color: white;
  text-decoration: none;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: #fafafa;
  height: 0px;
}

::-webkit-scrollbar {
  width: 6px;
  background-color: #fafafa;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #e2e1e1;
}

/**
*
* General
*
**/

li, p, h1, h2, h3, h4, h5, h6, div, ul {
  /* color: #272727; */
  font-family: "Montserrat";
}

input::placeholder {
  color: #d3cecc;
}

hr.thick {
  border-top: 2px solid #e26c26;
}

.icn-sm {
  font-size: 17px !important;
}

.btn {
  border: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.btn-success, .form-btn {
  background-color: #33be1d;
  color: white;
}

.btn-success:hover, .form-btn:hover {
  background: #2cad15;
}


section h2 {
  color: #272727;
  font-family: "Roboto";
  font-size: 26px;
  font-weight: 200;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.carousel-controls li {
  background: #f1efee;
  border-radius: 50%;
  cursor: pointer;
  height: 8px;
  margin: 0 5px;
  width: 8px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.carousel-controls li.selected {
  background: #e26c26;
}

.container-fluid {
  max-width: 1200px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
}

.breadcrumbs li {
  flex: 1 0 auto;
  margin-bottom: 5px;
}

@media screen and (min-width: 576px) {
  .breadcrumbs li {
    flex-grow: 0;
  }
}

.breadcrumbs li a {
  background: #f1efee;
  color: #747474;
  font-size: 13px;
  display: inline-block;
  margin: 0;
  padding: 3px 10px;
  width: 100%;
}

.breadcrumbs li:not(:last-of-type) a {
  border-right: 1px solid #d3cecc;
}

.breadcrumbs li:last-of-type a {
  background: #e26c26;
  color: white;
  padding-right: 3px;
  position: relative;
}

.breadcrumbs li:last-of-type a:before {
  border-top: 12.5px solid transparent;
  border-bottom: 12.5px solid transparent;
  border-left: 12px solid #e26c26;
  content: "";
  height: 0;
  left: 100%;
  position: absolute;
  top: 0;
  width: 0;
}

.underline, .form-expandable.expanded {
  position: relative;
}

.underline:after, .form-expandable.expanded:after {
  background: #f1efee;
  content: "";
  height: 1px;
  position: absolute;
  width: calc(100% - 40px);
  top: 100%;
  left: 20px;
}

/**
*
* PRODUCT FORM
*
**/

.product-form button i {
  font-size: 19px;
}

.fade-end, .fade-start {
  position: relative;
}

.fade-end:after, .fade-start:after {
  content: "";
  height: 40px;
  pointer-events: none;
  position: absolute;
  width: 100%;
}

.fade-end:after {
  background: linear-gradient(0deg, white, rgba(255, 255, 255, 0));
  bottom: 0;
}

.fade-start:after {
  background: linear-gradient(0deg, white, rgba(255, 255, 255, 0));
  top: 0;
}

.share {
  align-items: center;
  display: flex;
  padding: 5px 10px !important;
}

.share h5 {
  align-items: center;
  color: #272727;
  display: flex;
  font-family: "Montserrat";
  font-size: 13px;
  font-weight: 600;
  margin: 0 10px 0 0;
}

.share h5 i {
  color: #e26c26;
  font-size: 22px;
  margin-right: 7px;
}

.share a {
  font-size: 24px;
  margin: 0 2px;
  transition: .3s all ease;
  -webkit-transition: .3s all ease;
  -moz-transition: .3s all ease;
  -ms-transition: .3s all ease;
  -o-transition: .3s all ease;
}

.share a .fa-facebook {
  color: #4267B2;
}

.share a .fa-twitter {
  color: #1DA1F2;
}

.share a .fa-google-plus {
  color: #CD4539;
}

.share a:hover {
  transform: scale(1.3);
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0;
  padding: 10px;
  width: 100%;
}

.pagination li {
  margin: 2px;
}

.pagination li a {
  background: #fafafa;
  border: 1px solid #f1efee;
  border-radius: 4px;
  color: #b6b0ad;
  display: inline-block;
  font-family: "Roboto";
  font-size: 15px;
  padding: 7px;
  text-align: center;
  width: 40px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.pagination li.active a {
  background: #e26c26;
  color: white;
}

form.standard {
  margin-top: 40px;
}

form.standard .form-group label {
  color: #b6b0ad;
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
}

form.standard .form-group label:after {
  color: #e26c26;
  content: "\f127";
  display: inline-block;
  font: normal normal normal 11px/1 FontAwesome;
  margin-left: 5px;
}

form.standard .form-group label.optional:after {
  content: "";
}

form.standard .form-control {
  border: 1px solid #f1efee;
  border-radius: 0;
  box-shadow: none !important;
  font-size: 13px;
  outline: none !important;
  transition: .3s all ease;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  -webkit-transition: .3s all ease;
  -moz-transition: .3s all ease;
  -ms-transition: .3s all ease;
  -o-transition: .3s all ease;
}

@media screen and (min-width: 768px) {
  form.standard .form-control {
    font-size: 15px;
  }
}

form.standard .form-control:focus {
  border-color: #f3c23d;
}

form.standard span {
  color: #f3c23d;
  display: block;
  font-size: 11px;
  margin-top: -5px;
}

/*
/~ Static pages CSS
*/

.static-section {
  margin: 100px auto;
}

.static-section h3 {
  font-size: 19px;
  font-weight: 700;
  padding-bottom: 10px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .static-section h3 {
    font-size: 24px;
  }
}

.static-section h3:before {
  background: #e26c26;
  border-radius: 4px;
  content: "";
  height: 4px;
  position: absolute;
  top: 100%;
  width: 60px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.static-section p, .static-section li, .static-section div {
  font-size: 15px;
}

@media screen and (min-width: 768px) {
  .static-section p, .static-section li, .static-section div {
    font-size: 17px;
  }
}

.sitemap li {
  background: #fcf1eb;
  font-size: 13px;
  font-weight: 700;
  margin: 10px 0 0;
  padding: 5px 10px;
  position: relative;
}

.sitemap li.nested {
  background: none;
  margin: 0;
  padding: 0;
}

.sitemap li a {
  color: #e26c26;
}

.sitemap li ul li {
  background: #f1efee;
  margin: 10px 0 0 30px;
  position: relative;
}

.sitemap li ul li a {
  color: #272727;
}

.sitemap li ul li:before, .sitemap li ul li:after {
  background: #e26c26;
  content: "";
  height: 3px;
  left: -25px;
  position: absolute;
  top: 50%;
  width: 20px;
}

.sitemap li ul li:after {
  transform: rotate(90deg);
  width: 10px;
  top: 11px;
  left: -30px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

.faq h3 {
  margin-bottom: 20px;
}

.faq .qa {
  margin-bottom: 10px;
}

.faq .qa h4 {
  background: #fcf1eb;
  border-radius: 4px;
  color: #e26c26;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
  margin-left: 40px;
  padding: 8px 10px;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

@media screen and (min-width: 768px) {
  .faq .qa h4 {
    font-size: 15px;
  }
}

.faq .qa h4:before {
  content: "\f1a2";
  font: normal normal normal 28px/1 FontAwesome;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.faq .qa p {
  background: white;
  border-radius: 4px;
  box-shadow: 0 0 8px 0 rgba(140, 140, 140, 0.2);
  font-size: 13px;
  margin: 8px 5px;
  padding: 8px;
  position: relative;
  z-index: 100;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

@media screen and (min-width: 576px) {
  .faq .qa p {
    font-size: 15px;
    padding: 10px;
  }
}

@media screen and (min-width: 768px) {
  .faq .qa p {
    font-size: 17px;
    padding: 20px;
  }
}

.faq .qa p strong {
  color: #e26c26;
  font-weight: 600;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

.faq .qa p:before, .faq .qa p:after {
  content: "";
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  bottom: 100%;
  height: 0;
  left: calc(50% - 10px);
  position: absolute;
  width: 0;
}

.faq .qa p:before {
  border-bottom: 12px solid white;
  bottom: calc(100% - 3px);
  z-index: 100;
}

.faq .qa p:after {
  border-bottom: 12px solid rgba(0, 0, 0, 0.07);
  filter: blur(2px);
  z-index: 0;
  -webkit-filter: blur(2px);
}

.faq .qa .a {
  max-height: 0;
  overflow: hidden;
  transition: all .2s ease;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
}

.faq .qa.active .a {
  animation: expand .5s ease forwards;
  -webkit-animation: expand .5s ease forwards;
}

@keyframes expand {
  100% {
    max-height: 800px;
  }
}

.modular-form {
  background-color: #fafafa;
  border-radius: 8px;
  box-shadow: 0 0 8px 0 rgba(140, 140, 140, 0.2);
  padding: 10px;
  -webkit-border-radius: 8px;
}

.modular-form h3 {
  border-bottom: 2px solid #e26c26;
  color: #e26c26;
  font-family: "Roboto";
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.modular-form .form-group input, .modular-form .form-group select, .modular-form .form-group textarea {
  background: white;
  border: 1px solid #f1efee;
  border-radius: 2px;
  box-shadow: 0;
  color: #747474;
  flex: 1 0 auto;
  font-size: 13px;
  height: auto;
  outline: none;
  padding: 3px;
  width: 100%;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

@media screen and (min-width: 768px) {
  .modular-form .form-group input, .modular-form .form-group select, .modular-form .form-group textarea {
    font-size: 15px;
  }
}

.modular-form .form-group select {
  height: 31px;
}

.modular-form .form-group label {
  align-items: center;
  color: #e26c26;
  display: flex;
  font-size: 13px;
  margin-bottom: 3px;
  margin-right: 10px;
}

@media screen and (min-width: 576px) {
  .modular-form .form-group label {
    font-size: 13px;
  }
}

.modular-form .form-group label i {
  color: #b6b0ad;
  font-size: 22px;
  margin-right: 3px;
}

.form-section {
  background-color: #fafafa;
  border-radius: 8px;
  box-shadow: 0 0 8px 0 rgba(140, 140, 140, 0.2);
  padding: 10px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.form-section h3 {
  border-bottom: 2px solid #e26c26;
  color: #e26c26;
  font-family: "Roboto";
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.form-section .icon {
  border-radius: 50%;
  background: #f1efee;
  color: #747474;
  margin: 0 5px;
  padding: 5px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.form-section .icon i {
  font-size: 24px;
}

@media screen and (min-width: 768px) {
  .form-section .icon i {
    font-size: 42px;
  }
}

.form-content {
  color: #747474;
  font-size: 13px;
}

.form-content .inline-input {
  margin: 0 10px;
  text-align: center;
  width: 50px;
}

.form-result {
  border-top: 1px solid #f1efee;
  color: #747474;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 10px;
}

@media screen and (min-width: 768px) {
  .form-result {
    flex-direction: row;
  }
}

.form-result>div {
  align-items: center;
  color: inherit;
  display: flex;
  font-size: 13px;
  justify-content: flex-end;
}

@media screen and (min-width: 768px) {
  .form-result>div {
    justify-content: flex-start;
  }
}

.form-result i {
  font-size: 22px;
  margin-right: 2px;
}

.form-result span {
  color: #e26c26;
  font-size: 15px;
  font-weight: 600;
  margin-left: 5px;
}

.form-btn {
  align-items: center;
  display: flex;
  justify-content: center;
}

.form-btn i {
  font-size: 24px;
}

.form-segment:not(:last-of-type) .expanded {
  margin-bottom: 30px;
}

.form-expandable {
  max-height: 0;
  overflow: hidden;
  transition: all .6s ease;
  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  -ms-transition: all .6s ease;
  -o-transition: all .6s ease;
}

.form-expandable.expanded {
  max-height: 300px;
  padding: 10px 0;
}

.form-expand {
  align-items: center;
  background: #fcf1eb;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  margin-bottom: 15px;
  padding: 5px 10px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.form-expand label {
  background: white;
  cursor: pointer;
  flex: 0 0 auto;
  font-size: 13px;
  height: 17px;
  margin: 0 15px 0 0;
  position: relative;
  width: 17px;
}

@media screen and (min-width: 576px) {
  .form-expand label {
    font-size: 15px;
  }
}

.form-expand input {
  display: none;
}

.form-expand input:checked+label::before {
  color: #e26c26;
  content: "\f17f";
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 21px;
  left: -2px;
  position: absolute;
  top: -2px;
}

.form-expand p {
  color: #e65804;
  font-size: 13px;
  margin: 0;
}

@media screen and (min-width: 576px) {
  .form-expand p {
    font-size: 15px;
  }
}

.flatpickr-day:hover {
  background: #fcf1eb;
}

.flatpickr-day.selected, .flatpickr-day.today {
  border-color: #e26c26;
}

.flatpickr-day.selected {
  background: #e26c26;
}

.startRange, .endRange {
  background: #e26c26 !important;
  border-color: #e26c26;
}

.startRange:hover, .endRange:hover {
  background: #e26c26 !important;
  border-color: #e26c26;
}

.form-list {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 4px;
  list-style: disc;
  margin: 0 0 20px;
  padding: 10px 10px 10px 30px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.form-list li {
  color: #e26c26;
  font-size: 13px;
  list-style: disc;
}

.form-group.has-error input, .form-group.has-error select, .form-group.has-error textarea {
  border-color: #df3c3c;
}

.form-group.has-error .error-feedback {
  color: #df3c3c;
  font-size: 11px;
  font-weight: 600;
}

.hero-carousel .flickity-viewport {
  height: 100% !important;
}

.flickity-page-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.flickity-page-dots li.dot {
  background: #f1efee;
  border-radius: 50%;
  cursor: pointer;
  height: 8px;
  margin: 0 5px;
  width: 8px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.flickity-page-dots li.dot.is-selected {
  background: #e26c26;
}

.flickity-button {
  color: #e26c26;
  display: flex;
}

.flickity-button-icon {
  fill: #e26c26;
}

.flickity-prev-next-button .flickity-button-icon {
  height: 21px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 21px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.flickity-viewport {
  width: 100%;
}

.hero .flickity-page-dots li.dot, .sales-pitch .flickity-page-dots li.dot, .testimonials .flickity-page-dots li.dot, .vehicles .flickity-page-dots li.dot {
  background: #b6b0ad;
}

.hero .flickity-page-dots li.dot.is-selected, .sales-pitch .flickity-page-dots li.dot.is-selected, .testimonials .flickity-page-dots li.dot.is-selected, .vehicles .flickity-page-dots li.dot.is-selected {
  background: #e26c26;
}

.testimonials .flickity-page-dots {
  margin-bottom: 30px;
}

header .contact-info, header .social-media {
  padding: 2px 0;
}

@media screen and (min-width: 768px) {
  header .contact-info {
    margin-right: 30px;
  }
}

header .contact-info li {
  color: #272727;
  font-size: 13px;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  header .contact-info li {
    font-size: 13px;
  }
}

header .contact-info li:not(:last-child) {
  margin-right: 20px;
}

header .contact-info li i {
  color: #e26c26;
  font-size: 18px;
}

header .social-media a {
  color: #e26c26;
  font-size: 24px;
}

header .social-media a:hover {
  color: #272727;
}

header nav {
  border-bottom: 1px solid #f1efee;
  border-top: 1px solid #f1efee;
}

header nav .navbar-collapse {
  order: 3;
}

@media screen and (min-width: 1200px) {
  header nav .navbar-collapse {
    order: 2;
  }
}

header nav .navbar-brand {
  flex: 1 0 100%;
  text-align: center;
  margin-bottom: -50px;
}

@media screen and (min-width: 1200px) {
  header nav .navbar-brand {
    flex: 0;
    margin-bottom: 0;
  }
}

header nav .navbar-brand img {
  height: 60px;
}

header nav .navbar-nav .nav-item {
  color: #272727;
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 700;
  margin: 0 10px;
}

header .navbar-toggler {
  border: none;
  font-size: 22px;
}

header .cart {
  z-index: 100;
}

@media screen and (min-width: 1200px) {
  header .cart {
    order: 3;
  }
}

header .cart .btn-cart {
  color: #747474;
  font-family: "Roboto";
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  position: relative;
}

header .cart .btn-cart:hover {
  color: inherit;
  background: inherit;
}

@media screen and (min-width: 1200px) {
  header .cart .btn-cart {
    background-color: #33be1d;
    color: white;
  }
  header .cart .btn-cart:hover {
    color: white;
    background-color: #33be1d;
  }
}

header .cart .btn-cart i {
  font-size: 40px;
  margin-right: 3px;
  margin-top: -3px;
}

@media screen and (min-width: 1200px) {
  header .cart .btn-cart i {
    font-size: 18px;
  }
}

header .cart .btn-cart .text {
  display: none;
}

@media screen and (min-width: 1200px) {
  header .cart .btn-cart .text {
    display: inline;
  }
}

header .cart .btn-cart .item-count {
  color: white;
  background: #33be1d;
  border-radius: 50%;
  top: 5px;
  display: inline-block;
  font-weight: 300;
  margin-left: 4px;
  height: 17px;
  left: 30px;
  line-height: 17px;
  position: absolute;
  width: 17px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

@media screen and (min-width: 1200px) {
  header .cart .btn-cart .item-count {
    height: auto;
    width: auto;
    padding: 0;
    position: static;
  }
}

header .cart .cart-container {
  display: none;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

header .cart .cart-container.show {
  display: block;
}

header .cart .cart-container .cart-body {
  background: white;
  border-radius: 4px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  padding: 5px;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 260px;
}

header .cart .cart-container .cart-body .btn-cart {
  background: #33be1d;
  color: white;
}

header .cart .cart-container img {
  width: 30px;
}

header .cart .cart-container li {
  background: #fcf1eb;
  border-radius: 4px;
  display: flex;
  font-size: 12px;
  margin-bottom: 5px;
  padding: 5px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

header .cart .cart-container li a {
  color: #e26c26;
  font-family: "Roboto";
  font-weight: 600;
}

footer h3 {
  font-size: 17px;
  font-weight: 200;
  padding-bottom: 10px;
  border-bottom: 2px solid #e65804;
}

footer .main {
  background: #f1efee;
  padding: 30px 10px;
}

@media screen and (min-width: 768px) {
  footer .main {
    padding: 30px;
  }
}

footer .main li, footer .main p {
  color: #272727;
  font-family: "Roboto";
  font-size: 13px;
  font-weight: 200;
}

@media screen and (min-width: 768px) {
  footer .main li, footer .main p {
    font-size: 15px;
  }
}

footer .main li a, footer .main p a {
  color: inherit;
  font: inherit;
}

footer .main li {
  margin-bottom: 7px;
}

footer .copy {
  font-size: 10px;
  margin-top: 5px;
}

@media screen and (min-width: 768px) {
  footer .copy {
    font-size: 13px;
  }
}

/**
*
* HERO
*
**/

.hero-carousel {
  margin-bottom: 100px;
  padding-top: 45%;
  position: relative;
  width: 100%;
}

.hero-carousel .inner-carousel {
  border: 2px solid #f1efee;
  border-radius: 8px;
  height: 100%;
  left: 0;
  position: absolute !important;
  top: 0;
  width: 100%;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.hero-carousel .item {
  height: inherit;
}

.hero-carousel .carousel-controls {
  position: absolute;
  top: calc(100% + 10px);
  width: 100%;
}

/**
*
* EXCURSIONS/CIRCUITS COMMON
*
**/

.excursions, .circuits {
  position: relative;
}

.excursions .carousel-items, .circuits .carousel-items {
  padding: 5px 0;
  overflow-x: auto;
}

.excursions h2, .circuits h2 {
  font-size: 19px;
  margin-bottom: 10px;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .excursions h2, .circuits h2 {
    font-size: 26px;
    margin-top: 0;
  }
}

.blocks-carousel {
  padding: 10px 0;
}

.blocks-carousel .carousel-items {
  display: flex;
  margin: 0 -10px;
  -webkit-overflow-scrolling: touch;
}

.blocks-carousel .carousel-controls {
  position: relative;
  right: 0px;
  top: -5px;
}

.blocks-carousel .carousel-controls li {
  background: #33be1d;
  border-radius: 0;
  color: white;
  cursor: pointer;
  font-size: 17px;
  height: auto;
  margin: 2px;
  padding: 0px 6px;
  transition: all .3s ease;
  width: auto;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.blocks-carousel .carousel-controls li i {
  pointer-events: none;
}

.blocks-carousel .carousel-controls li:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.excursion, .circuit {
  box-shadow: 0 0 10px 0 rgba(27, 27, 27, 0.1);
  cursor: pointer;
  flex: 1 0 auto;
  font-size: 40px;
  margin: 5px;
  padding: 6px;
}

.excursion:hover .img img, .circuit:hover .img img {
  transform: translate(-50%, -50%) scale(1.1);
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -moz-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  -o-transform: translate(-50%, -50%) scale(1.1);
}

.excursion:hover .img:before, .circuit:hover .img:before {
  height: 100%;
  opacity: 1;
  width: 100%;
}

.excursion .details, .circuit .details {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.excursion .img, .circuit .img {
  margin-bottom: 10px;
  overflow: hidden;
  padding-top: 56%;
  position: relative;
  transition: .3s all ease;
  width: 100%;
  -webkit-transition: .3s all ease;
  -moz-transition: .3s all ease;
  -ms-transition: .3s all ease;
  -o-transition: .3s all ease;
}

.excursion .img:before, .circuit .img:before {
  align-items: center;
  background: rgba(226, 118, 59, 0.5);
  color: #fcf1eb;
  content: '\f2ed';
  display: flex;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  height: 0;
  justify-content: center;
  left: 50%;
  opacity: 0;
  position: absolute;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all .3s ease;
  width: 0;
  z-index: 10;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.excursion .img img, .circuit .img img {
  left: 50%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  transition: .3s all ease;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: .3s all ease;
  -moz-transition: .3s all ease;
  -ms-transition: .3s all ease;
  -o-transition: .3s all ease;
}

.excursion .title h4, .circuit .title h4 {
  color: #e26c26;
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.excursion .title .time, .circuit .title .time {
  align-items: center;
  display: flex;
  font-size: 11px;
  margin-top: 3px;
}

.excursion .title .time img, .circuit .title .time img {
  margin-right: 3px;
}

.excursion .price, .circuit .price {
  color: #d3cecc;
  font-size: 11px;
  font-weight: 400;
  text-align: right;
}

.excursion .price span, .circuit .price span {
  display: block;
  font-weight: 200;
}

.excursion .price span strong, .circuit .price span strong {
  color: #9cd795;
  font-size: 13px;
  font-weight: 700;
}

/**
*
* EXCURSIONS
*
**/

.excursions .carousel-items {
  -webkit-scroll-snap-points-x: repeat(270px);
  -ms-scroll-snap-points-x: repeat(270px);
  scroll-snap-points-x: repeat(270px);
  -webkit-scroll-snap-type: mandatory;
  -ms-scroll-snap-type: mandatory;
  scroll-snap-type: mandatory;
}

.excursion {
  width: 289px;
}

/**
*
* CIRCUITS
*
**/

.circuits .carousel-items {
  -webkit-scroll-snap-points-x: repeat(370px);
  -ms-scroll-snap-points-x: repeat(370px);
  scroll-snap-points-x: repeat(370px);
  -webkit-scroll-snap-type: mandatory;
  -ms-scroll-snap-type: mandatory;
  scroll-snap-type: mandatory;
}

.circuit {
  width: 388px;
}

/**
*
* SALES PITCH
*
**/

.sales-pitch-carousel {
  background-color: #f1efee;
  padding: 25px 25px;
}

.sales-pitch-carousel .pitch {
  width: 100%;
}

.sales-pitch-carousel .pitch h3 {
  color: #272727;
  font-family: "Montserrat";
  font-size: 17px;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .sales-pitch-carousel .pitch h3 {
    font-size: 20px;
  }
}

.sales-pitch-carousel .pitch p {
  font-family: "Roboto";
  font-size: 15px;
  font-weight: 300;
}

@media screen and (min-width: 768px) {
  .sales-pitch-carousel .pitch p {
    font-size: 17px;
  }
}

.sales-pitch-carousel .carousel-controls li:not(.selected) {
  background: #d3cecc;
}

@media screen and (min-width: 768px) {
  .trip-advisor>div {
    margin-top: -20px;
  }
}

/**
*
* TESTIMONIALS
*
**/

.various-info .info-item {
  background: #fafafa;
  position: relative;
}

.various-info .info-item h4 {
  background: #f1efee;
  font-family: "Roboto";
  font-size: 17px;
  font-weight: 700;
  margin: 0 -15px;
  padding: 15px;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .various-info .info-item:not(:last-child):before {
    border-right: 1px solid #f1efee;
    background: #f1efee;
    bottom: 20px;
    content: "";
    height: calc(100% - 90px);
    filter: blur(5px);
    left: 100%;
    position: absolute;
    width: 30px;
    -webkit-filter: blur(5px);
  }
}

.testimonials {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 20px;
  width: 100%;
}

.testimonial {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 10px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .testimonial {
    flex-direction: row;
  }
}

.testimonial .img {
  border: 3px solid #f1efee;
  border-radius: 50%;
  flex: 0 0 auto;
  height: 150px;
  margin-right: 20px;
  overflow: hidden;
  position: relative;
  width: 150px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.testimonial .img img {
  left: 50%;
  position: absolute;
  min-height: 100%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.testimonial .text p {
  font-family: "Roboto";
  font-weight: 300;
  max-height: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial .text a {
  color: #e26c26;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
}

.testimonial .signature h5 {
  color: #b6b0ad;
  font-family: "Montserrat";
  font-size: 15px;
  font-weight: 700;
  margin: 0;
}

.testimonial .signature span {
  display: block;
  font-family: "Roboto";
  font-size: 13px;
  font-weight: 300;
  line-height: 17px;
  margin-left: -7px;
}

.testimonial .signature span i {
  color: #e26c26;
  font-size: 17px;
  margin-bottom: -3px;
}

.testimonial .signature span em {
  margin-left: -4px;
}

/**
*
* CUSTOMER SUPPORT
*
**/

.customer-support {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.customer-support .profile-img {
  border: 2px solid #d3cecc;
  border-radius: 50%;
  height: 150px;
  overflow: hidden;
  position: relative;
  width: 150px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.customer-support .profile-img img {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.customer-support h3 {
  color: #e26c26;
  font-family: "Montserrat";
  font-size: 17px;
  font-weight: 700;
  margin: 20px 0 0;
  text-align: center;
  text-transform: uppercase;
}

.customer-support li {
  align-items: center;
  display: flex;
  font-family: "Roboto";
  justify-content: center;
  font-size: 14px;
  text-align: center;
  width: 100%;
}

.customer-support li i {
  color: #b6b0ad;
  font-size: 32px;
}

/**
*
* VEHICLES
*
**/

.vehicles {
  margin-bottom: 40px;
}

.vehicle {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 30px 10px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .vehicle {
    align-items: stretch;
    flex-direction: row;
    padding: 30px;
  }
}

.vehicle img {
  margin-right: 20px;
  width: 200px;
}

.vehicle h5 {
  color: #e26c26;
  font-family: "Montserrat";
  font-size: 17px;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .vehicle h5 {
    font-size: 20px;
  }
}

.vehicle p {
  font-size: 15px;
}

@media screen and (min-width: 768px) {
  .vehicle p {
    font-size: 17px;
  }
}

.vehicle li {
  align-items: flex-end;
  color: #747474;
  display: flex;
  font-family: "Roboto";
  font-size: 15px;
  font-weight: 200;
}

.vehicle li i {
  color: #d3cecc;
  font-size: 30px;
}

.vehicle li span {
  color: #e26c26;
  font-weight: 700;
  margin-right: 5px;
}

/**
*
* WEATHER
*
**/

.weather {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.weather h3 {
  color: #e26c26;
  font-family: "Montserrat";
  font-size: 17px;
  font-weight: 700;
  margin: 20px 0 0;
}

.weather h4 {
  background: none !important;
  color: #747474;
  margin-bottom: 20px;
  padding: 5px !important;
}

.weather img {
  overflow: hidden;
}

.owf {
  color: #e26c26;
}

/**
* Index pages
**/

.items-index {
  display: flex;
  flex-wrap: wrap;
}

.items-index .item-listing {
  align-items: stretch;
  background: white;
  border-radius: 5px;
  box-shadow: 0 0 8px 0 rgba(140, 140, 140, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 20px;
  padding: 10px 10px 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.items-index .item-listing hr {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .items-index .item-listing {
    margin-bottom: 2%;
    width: 48%;
  }
  .items-index .item-listing:not(:nth-child(2n)) {
    margin-right: 2%;
  }
}

@media screen and (min-width: 992px) {
  .items-index .item-listing {
    margin-bottom: 1.5%;
    width: 32%;
  }
  .items-index .item-listing:not(:nth-child(2n)) {
    margin-right: 0;
  }
  .items-index .item-listing:not(:nth-child(3n)) {
    margin-right: 1.5%;
  }
}

.items-index .item-listing .img {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  display: block;
  flex: 0 0 auto;
  margin-bottom: 10px;
  overflow: hidden;
  padding-top: 56%;
  position: relative;
  width: 100%;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.items-index .item-listing .img:before {
  align-items: center;
  background: rgba(221, 145, 101, 0.5);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.7);
  content: "\f1d4";
  display: flex;
  font-family: FontAwesome;
  font-size: 60px;
  height: 100%;
  justify-content: center;
  left: 50%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: .3s all ease;
  width: 100%;
  z-index: 100;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -moz-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  -o-transform: translate(-50%, -50%) scale(0);
  -webkit-transition: .3s all ease;
  -moz-transition: .3s all ease;
  -ms-transition: .3s all ease;
  -o-transition: .3s all ease;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.items-index .item-listing .img:hover:before {
  transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
}

.items-index .item-listing .img img {
  left: 50%;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.items-index .item-listing h4 {
  color: #e26c26;
  font-size: 15px;
  font-family: "Montserrat";
  font-weight: 400;
  margin: 10px 0;
}

.items-index .item-listing h4 a{
  color: #e26c26;
}

@media screen and (min-width: 768px) {
  .items-index .item-listing h4 {
    font-size: 17px;
  }
}

.items-index .item-listing ul li {
  align-items: center;
  display: flex;
  font-size: 13px;
  margin: 5px 0;
  padding: 5px;
}

.items-index .item-listing ul li i {
  font-size: 22px;
  margin-right: 7px;
}

.items-index .item-listing ul li:first-child {
  background: #fcf1eb;
  color: #e26c26;
}

.items-index .item-listing ul li:nth-child(2) {
  background: #fafafa;
  color: #b6b0ad;
}

.items-index .item-listing p {
  font-size: 15px;
  font-weight: 400;
  margin: 0 0 20px;
}

.items-index .item-listing .btn {
  margin-top: auto;
}

.product-details {
  background: #fafafa;
  border-radius: 8px;
  box-shadow: 0 0 8px 0 rgba(140, 140, 140, 0.2);
  position: relative;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.product-details main {
  display: flex;
  justify-content: space-between;
  padding: 20px 20px 0;
}

.product-details main .img {
  border-radius: 4px;
  overflow: hidden;
  padding-top: 75%;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.product-details main .img img {
  height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.product-details main .text h3 {
  color: #272727;
  font-size: 20px;
  font-family: "Montserrat";
  font-weight: bold;
  margin-bottom: 15px;
}

.product-details main .text p {
  color: #747474;
  font-size: 15px;
  font-family: "Roboto";
  font-weight: 300;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .product-details main .text p {
    font-size: 17px;
  }
}

.product-details main .text ul {
  background: rgba(0, 0, 0, 0.01);
  border-radius: 8px;
  padding: 10px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.product-details main .text li {
  align-items: flex-start;
  display: flex;
  font-family: "Roboto";
}

@media screen and (min-width: 768px) {
  .product-details main .text li {
    width: 50%;
  }
}

.product-details main .text li img {
  margin-right: 5px;
}

.product-details main .text li p {
  color: #747474;
  font-size: 15px;
  margin: 0;
}

.product-details main .text li p span {
  color: #835e48;
  font-weight: 700;
}

.vehicle-cost {
  align-items: stretch;
  display: flex;
  height: 42px;
  position: absolute;
  top: 10px;
  right: -10px;
}

.vehicle-cost:before {
  background: #d3cecc;
  content: "";
  height: 100%;
  filter: blur(2px);
  left: 8px;
  position: absolute;
  transform: skewX(20deg);
  width: 90%;
  z-index: 0;
  -webkit-transform: skewX(20deg);
  -moz-transform: skewX(20deg);
  -ms-transform: skewX(20deg);
  -o-transform: skewX(20deg);
  -webkit-filter: blur(2px);
}

.vehicle-cost:after {
  border-top: 15px solid red;
  border-right: 10px solid transparent;
  content: "";
  filter: brightness(0);
  height: 0;
  position: absolute;
  right: 0;
  top: 100%;
  width: 0;
  -webkit-filter: brightness(0);
}

.vehicle-cost .img {
  align-items: center;
  box-shadow: 0 0 10px 0 black;
  background: white;
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 20% 100%);
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 20% 100%);
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 0 10px 0 30px;
}

.vehicle-cost .price {
  align-items: flex-start;
  background: #574c45;
  color: white;
  display: flex;
  flex-direction: column;
  font-size: 11px;
  font-family: "Roboto";
  justify-content: center;
  padding: 0 20px;
  z-index: 10;
}

.vehicle-cost .price h4 {
  color: inherit;
  font-family: "Roboto";
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.visited-spots {
  background: white;
  color: #b6b0ad;
  font-size: 15px;
  font-weight: 300;
  margin-top: 20px;
  padding: 10px 20px;
}

.visited-spots span {
  color: #e26c26;
  font-weight: 600;
}

.visited-spots img {
  height: auto;
  margin-right: 10px;
  width: 25px;
}

.services-offered {
  background: #fcf1eb;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

@media screen and (min-width: 768px) {
  .services-offered {
    flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .services-offered>div {
    flex: 50%;
    width: 50%;
  }
}

.services-offered h5 {
  border-bottom: 2px solid #e26c26;
  color: #e26c26;
  font-size: 15px;
  font-family: "Montserrat";
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 5px;
}

@media screen and (min-width: 768px) {
  .services-offered h5 {
    display: inline-block;
  }
}

.services-offered li {
  align-items: center;
  color: #747474;
  display: flex;
  font-weight: 500;
  font-size: 13px;
  font-family: "Roboto";
  letter-spacing: .7px;
  margin-bottom: 5px;
}

.services-offered li img {
  margin-right: 5px;
}

.services-offered li i {
  color: #e26c26;
  font-size: 26px;
}

/**
*
* PRODUCT SECTION
*
**/

.map {
  margin-bottom: 50px;
  padding-top: 56%;
  position: relative;
  width: 100%;
}

.map .map-container {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.product-section .heading {
  align-items: stretch;
  box-shadow: 0 0 8px 0 rgba(140, 140, 140, 0.2);
  display: flex;
  margin-bottom: 20px;
}

.product-section .heading>div {
  align-items: center;
  display: flex;
}

.product-section .heading .img {
  background: white;
  text-align: center;
  padding: 5px;
  width: 50px;
}

.product-section .heading .img img {
  margin: auto;
}

.product-section .heading h4 {
  align-items: center;
  background: #e26c26;
  color: #fafafa;
  display: flex;
  flex: auto;
  font-weight: 600;
  font-family: "Montserrat";
  font-size: 15px;
  margin: 0;
  padding-left: 10px;
}

.path {
  background-color: #fafafa;
  border-radius: 8px;
  overflow: hidden;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.path .expand {
  background: #b6b0ad;
  color: white;
  display: block;
  padding: 10px;
  text-align: center;
}

.path-steps {
  padding: 20px;
  position: relative;
}

.path-steps:before {
  border-left: 5px dashed #f1efee;
  content: "";
  height: 88%;
  left: 35px;
  position: absolute;
  top: 1.5%;
  width: 5px;
}

@media screen and (min-width: 768px) {
  .path-steps:before {
    left: 40px;
    height: 90%;
    top: 4%;
  }
}

.path-steps .step {
  align-items: center;
  margin-bottom: 60px;
}

.path-steps .step.night .text {
  display: flex;
  align-items: center;
}

.path-steps .step.night .text h4 {
  color: #938bc1;
  margin: 0;
}

.path-steps .step.night .text img {
  height: 36px;
  margin-right: 14px;
  width: 36px;
}

@media screen and (min-width: 768px) {
  .path-steps .step.night .text img {
    height: 44px;
    margin-right: 26px;
    width: 44px;
  }
}

.path-steps .step .marker {
  background: url("img/marker.png");
  background-size: cover;
  color: #e26c26;
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 700;
  height: 42px;
  line-height: 33px;
  margin-right: 10px;
  margin-top: -8px;
  text-align: center;
  vertical-align: middle;
  width: 33px;
}

@media screen and (min-width: 768px) {
  .path-steps .step .marker {
    font-size: 18px;
    height: 56px;
    line-height: 44px;
    width: 44px;
    margin-right: 20px;
    margin-top: 0;
  }
}

.path-steps .step .details {
  display: flex;
}

@media screen and (min-width: 768px) {
  .path-steps .step .details {
    align-items: center;
  }
}

.path-steps .step .text h4 {
  color: #e26c26;
  font-family: "Montserrat";
  font-size: 15px;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .path-steps .step .text h4 {
    font-size: 17px;
  }
}

.path-steps .step .text h4 span {
  font-weight: 200;
}

.path-steps .step .text p {
  color: #747474;
  font-family: "Roboto";
  font-size: 13px;
  font-weight: 300;
  line-height: 1.3;
}

@media screen and (min-width: 576px) {
  .path-steps .step .text p {
    font-size: 15px;
  }
}

@media screen and (min-width: 768px) {
  .path-steps .step .text p {
    font-size: 17px;
  }
}

.path-steps .step .preview {
  display: flex;
  flex-wrap: wrap;
  padding-left: 55px;
}

@media screen and (min-width: 768px) {
  .path-steps .step .preview {
    justify-content: flex-start;
  }
}

.path-steps .step .preview li {
  border: 4px solid #f1efee;
  height: 80px;
  margin: 3px;
  overflow: hidden;
  position: relative;
  width: 80px;
}

.path-steps .step .preview li img {
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.notice {
  background: #fcf1eb;
  padding: 20px;
}

@media screen and (min-width: 768px) {
  .notice {
    padding: 20px 80px;
  }
}

.notice h4 {
  color: #e26c26;
  font-family: "Montserrat";
  font-size: 15px;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .notice h4 {
    font-size: 17px;
  }
}

.notice h4 span {
  font-weight: 200;
}

.notice h4 img {
  height: 36px;
}

@media screen and (min-width: 768px) {
  .notice h4 img {
    height: 48px;
  }
}

.notice p {
  color: #747474;
  font-family: "Roboto";
  font-size: 15px;
  font-weight: 300;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .notice p {
    font-size: 17px;
  }
}

/**
*
* TESTIMONIALS
*
**/

.product-testimonial {
  border-radius: 8px;
  box-shadow: 0 0 8px 0 rgba(140, 140, 140, 0.2);
  font-family: "Roboto";
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  padding: 20px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.product-testimonial .testimonial {
  align-items: flex-start;
  flex-direction: row;
}

.product-testimonial .testimonial .img {
  border-radius: 0;
  height: 100px;
  width: 100px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

@media screen and (min-width: 768px) {
  .product-testimonial .testimonial .img {
    height: 150px;
    width: 150px;
  }
}

.product-testimonial .testimonial .text {
  max-height: 160px;
  overflow-y: scroll;
  padding-right: 5px;
  position: relative;
}

.product-testimonial .testimonial .text p {
  font-size: 13px;
}

@media screen and (min-width: 576px) {
  .product-testimonial .testimonial .text p {
    font-size: 15px;
  }
}

@media screen and (min-width: 768px) {
  .product-testimonial .testimonial .text p {
    font-size: 17px;
  }
}

.product-testimonial .signature {
  margin-top: 30px;
  text-align: right;
}

.product-testimonial .signature h5 {
  color: #e26c26;
  font-size: 15px;
  font-family: "Roboto";
  font-weight: 600;
  margin: 0;
}

.listing {
  display: flex;
  border-radius: 8px;
  box-shadow: 0 0 8px 0 rgba(140, 140, 140, 0.2);
  flex-direction: column;
  margin-bottom: 20px;
  padding: 10px;
  position: relative;
  transition: all .3s ease;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}

@media screen and (min-width: 768px) {
  .listing {
    flex-direction: row;
    padding: 15px 10px;
  }
}

.listing:hover {
  transform: scale(1.02);
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
}

.listing:hover .img:before {
  transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
}

.listing.listing-activity {
  min-height: 180px;
}

.listing .img {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  flex: 0 0 auto;
  margin-bottom: 20px;
  overflow: hidden;
  padding-top: 56%;
  position: relative;
  width: 100%;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

@media screen and (min-width: 768px) {
  .listing .img {
    margin-bottom: 0;
    margin-right: 10px;
    padding-top: 90px;
    width: 200px;
  }
}

.listing .img:before {
  align-items: center;
  background: rgba(221, 145, 101, 0.5);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.7);
  content: "\f1d4";
  display: flex;
  font-family: FontAwesome;
  font-size: 60px;
  height: 100%;
  justify-content: center;
  left: 50%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: .3s all ease;
  width: 100%;
  z-index: 100;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -moz-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  -o-transform: translate(-50%, -50%) scale(0);
  -webkit-transition: .3s all ease;
  -moz-transition: .3s all ease;
  -ms-transition: .3s all ease;
  -o-transition: .3s all ease;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.listing .img img {
  left: 50%;
  height: 100%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.listing .listing-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.listing .listing-details h4 {
  color: #e26c26;
  font-size: 15px;
  font-family: "Montserrat";
  font-weight: 400;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .listing .listing-details h4 {
    font-size: 17px;
  }
}

.listing .listing-details p {
  color: #747474;
  font-size: 13px;
}

.listing .price {
  align-items: center;
  background: #fafafa;
  display: flex;
  font-size: 13px;
  font-weight: 200;
}

.listing .price span {
  font-weight: 600;
  margin-left: 7px;
}

.listing .price i {
  background: #e26c26;
  color: white;
  font-size: 27px;
  margin-right: 10px;
  padding: 5px 5px;
}

.listing .view-item {
  align-items: center;
  background: #e26c26;
  bottom: 10px;
  color: white;
  display: flex;
  font-size: 12px;
  font-weight: 400;
  padding: 5px 15px;
  position: absolute;
  right: 0;
}

.listing .view-item i {
  color: white;
  font-size: 22px;
  margin-left: 10px;
}

.activity-details {
  border-radius: 8px;
  box-shadow: 0 0 8px 0 rgba(140, 140, 140, 0.2);
  overflow: hidden;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.activity-details main>div {
  padding: 10px;
}

@media screen and (min-width: 768px) {
  .activity-details main>div {
    padding: 20px;
  }
}

.activity-details main .heading {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  position: relative;
}

@media screen and (min-width: 768px) {
  .activity-details main .heading {
    flex-direction: row;
  }
}

.activity-details main .img {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  overflow: hidden;
  padding-top: 56%;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

@media screen and (min-width: 768px) {
  .activity-details main .img {
    margin-right: 10px;
    padding-top: 90px;
    width: 150px;
  }
}

.activity-details main .img img {
  height: 100%;
  left: 50%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.activity-details main .title-section {
  align-items: stretch;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .activity-details main .title-section {
    align-items: center;
    flex-direction: row;
  }
}

.activity-details main .title-section .title {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100px;
  margin: 20px 0;
}

@media screen and (min-width: 768px) {
  .activity-details main .title-section .title {
    align-items: flex-start;
    margin: 0;
  }
}

.activity-details main .title-section .title p {
  background: #fafafa;
  border-radius: 4px;
  font-family: "Montserrat";
  font-size: 15px;
  font-weight: 200;
  display: inline-block;
  margin: 0;
  padding: 5px 15px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

@media screen and (min-width: 768px) {
  .activity-details main .title-section .title p {
    font-size: 17px;
  }
}

.activity-details main .title-section .title p em {
  color: #747474;
  font-size: 11px;
}

@media screen and (min-width: 768px) {
  .activity-details main .title-section .title p em {
    font-size: 13px;
  }
}

.activity-details main .title-section .title p span {
  color: #33be1d;
  font-weight: 600;
  margin: 2px;
}

.activity-details main .title-section h3 {
  color: #272727;
  font-size: 17px;
  font-family: "Montserrat";
  font-weight: bold;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .activity-details main .title-section h3 {
    font-size: 20px;
  }
}

.activity-details main .title-section h4 {
  color: #e26c26;
  font-size: 15px;
  font-family: "Montserrat";
  font-weight: 200;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .activity-details main .title-section h4 {
    font-size: 17px;
  }
}

.activity-details main .book {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: right;
}

.activity-details main .book .scroll-to-cart {
  align-items: center;
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .activity-details main .book .scroll-to-cart {
    border-radius: 50%;
    height: 70px;
    width: 70px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
}

@media screen and (min-width: 768px) {
  .activity-details main .book .scroll-to-cart span {
    display: none;
  }
}

.activity-details main .book .scroll-to-cart i {
  font-size: 30px;
}

@media screen and (min-width: 768px) {
  .activity-details main .book .scroll-to-cart i {
    font-size: 40px;
  }
}

.activity-details main .book .scroll-to-cart:hover {
  background: #33be1d;
}

.activity-details main .book .scroll-to-cart:hover i {
  color: white;
}

.activity-details main .book p {
  color: #b6b0ad;
  font-size: 13px;
  margin-bottom: 2px;
  text-align: center;
}

.activity-details main .book p span {
  color: #272727;
  font-weight: 600;
}

.activity-details main .book a {
  align-items: center;
  border: 3px solid #33be1d;
  color: #33be1d;
  display: flex;
  font-size: 9px;
  font-weight: bold;
  letter-spacing: 1.2px;
  padding: 3px 7px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}

@media screen and (min-width: 768px) {
  .activity-details main .book a {
    font-size: 11px;
  }
}

.activity-details main .book a:hover {
  background-color: #33be1d;
  color: white;
}

.activity-details main .book a i {
  font-size: 25px;
}

.activity-details main .activity-info {
  background: #fcf1eb;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .activity-details main .activity-info {
    flex-direction: row;
  }
}

.activity-details main .activity-info h5 {
  border-bottom: 2px solid #e26c26;
  color: #e26c26;
  font-size: 15px;
  font-family: "Montserrat";
  font-weight: 600;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

@media screen and (min-width: 768px) {
  .activity-details main .activity-info h5 {
    display: inline-block;
  }
}

.activity-details main .activity-info .detail-column {
  flex-basis: 0;
  flex-grow: 1;
  padding: 10px;
}

.activity-details main .activity-info .detail-column ul.timeline {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  margin: 10px 0;
  width: 100%;
}

@media screen and (min-width: 576px) {
  .activity-details main .activity-info .detail-column ul.timeline {
    flex-direction: row;
  }
}

.activity-details main .activity-info .detail-column ul.timeline li {
  background: white;
  flex: 1 0 auto;
  font-size: 13px;
  font-weight: 600;
  color: #e26c26;
  margin: 0 0px 5px;
  padding: 5px;
  text-align: center;
}

@media screen and (min-width: 576px) {
  .activity-details main .activity-info .detail-column ul.timeline li {
    -webkit-clip-path: polygon(75% 0%, 100% 50%, 95% 100%, 0% 100%, 5% 50%, 0% 0%);
    clip-path: polygon(95% 0%, 100% 50%, 95% 100%, 0% 100%, 5% 50%, 0% 0%);
  }
}

.activity-details .description {
  margin: 10px 0;
  font-size: 13px;
}

@media screen and (min-width: 576px) {
  .activity-details .description {
    font-size: 15px;
  }
}

@media screen and (min-width: 768px) {
  .activity-details .description {
    font-size: 17px;
  }
}

.activity-details .description .segment h4 {
  background: #fcf1eb;
  border-radius: 4px;
  color: #e26c26;
  font-size: 17px;
  margin: 10px 0;
  padding: 8px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.activity-details .description .segment p {
  font-size: 17px;
}

.activity-details .notice {
  align-items: center;
  background: white;
  border: 2px solid #fcf1eb;
  border-radius: 8px;
  color: #747474;
  font-size: 15px;
  margin-top: 20px;
  padding: 10px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.activity-details .notice ul, .activity-details .notice li {
  color: inherit;
  font: inherit;
  list-style: disc;
  margin-left: 10px;
}

.activity-details .notice li {
  margin: 10px;
}

.activity-details .notice h5 {
  border-bottom: 2px solid #fcf1eb;
  color: #272727;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .activity-details .notice h5 {
    font-size: 15px;
  }
}

.activity-details .notice h5 i {
  color: #e26c26;
  font-size: 24px;
}

.activity-gallery {
  border-radius: 8px;
  box-shadow: 0 0 8px 0 rgba(140, 140, 140, 0.2);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.activity-slider {
  width: 100%;
  height: 400px;
}

.activity-slider .gallery-item {
  background: #fafafa;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.activity-slider .gallery-item img {
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.activity-nav {
  background: #fcf1eb;
}

.activity-nav .gallery-item.is-nav-selected {
  border: 3px solid #e26c26;
}

.activity-nav .gallery-item {
  border: 3px solid transparent;
  height: 150px;
  overflow: hidden;
  position: relative;
  width: 150px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.activity-nav .gallery-item img {
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.activity-form {
  margin-bottom: 100px;
}

.activity-program {
  margin: 20px 0;
}

.activity-program li {
  align-items: center;
  background: #e0783c;
  border-radius: 4px;
  box-shadow: 0 0 4px 0 rgba(133, 63, 17, 0.2);
  color: white;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  margin: 10px auto;
  overflow: hidden;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

@media screen and (min-width: 768px) {
  .activity-program li {
    flex-direction: row;
    font-size: 15px;
  }
}

.activity-program li p {
  color: inherit;
  font: inherit;
  margin: 0;
  padding: 5px;
}

.activity-program li span {
  align-items: center;
  align-self: stretch;
  background: white;
  color: #e26c26;
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: center;
  padding: 5px;
}

@media screen and (min-width: 768px) {
  .activity-program li span {
    justify-content: flex-start;
    margin-right: 10px;
    width: 200px;
  }
}

.activity-program li i {
  font-size: 20px;
  margin: 0 3px;
}

.price-table {
  font-family: "Montserrat";
  font-size: 13px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .price-table {
    font-size: 15px;
  }
}

.price-table tr {
  width: 100%;
}

.price-table tr th, .price-table tr td {
  background: #fafafa;
  padding: 5px 10px;
  border: 1px solid #f1efee;
}

.price-table tr:first-child th {
  color: #e26c26;
  text-align: center;
}

.vehicles-list {
  margin: 50px auto;
}

.vehicles-list .vehicle li {
  margin-left: -4px;
}

.vehicles-list .vehicle {
  border-radius: 4px;
  box-shadow: 0 0 8px 0 rgba(140, 140, 140, 0.2);
  margin: 0 0 20px;
  padding: 15px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.vehicles-list .vehicle .img {
  padding: 10px 20px;
  position: relative;
  width: 260px;
}

@media screen and (min-width: 768px) {
  .vehicles-list .vehicle .img img {
    top: 50%;
    transform: translateY(-50%);
  }
}

.vehicles-list .vehicle .img img {
  position: relative;
  z-index: 100;
}

@media screen and (min-width: 768px) {
  .vehicles-list .vehicle>.img:before {
    background: #fcf1eb;
  }
  .vehicles-list .vehicle .img:before {
    border-radius: 4px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 65%;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
  }
}

.vehicles-list .vehicle a.btn-view {
  align-items: center;
  background: #e26c26;
  color: white;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 15px 5px 10px;
}

.vehicles-list .vehicle a.btn-view i {
  font-size: 18px;
  margin-right: 7px;
}

.vehicle-description {
  flex: 1;
  background: #fcf1eb;
  border-radius: 4px;
  margin-top: 10px;
  padding: 20px;
  text-align: center;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

@media screen and (min-width: 768px) {
  .vehicle-description {
    background: none;
    padding: 0;
    text-align: left;
  }
}

.vehicle-description h3 {
  color: #e26c26;
  font-size: 20px;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .vehicle-description h3 {
    font-size: 24px;
  }
}

.vehicle-description p {
  font-size: 13px;
}

@media screen and (min-width: 768px) {
  .vehicle-description p {
    font-size: 15px;
  }
}

.vehicle-overview .vehicle {
  margin-bottom: 50px;
  padding-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .vehicle-overview .vehicle {
    border-bottom: 2px solid #e26c26;
  }
}

.vehicle-nav {
  align-items: stretch;
  display: flex;
  justify-content: space-between;
  margin: 0 0 50px;
}

.vehicle-nav .prev, .vehicle-nav .next, .vehicle-nav .back {
  background: #fafafa;
  box-shadow: 0 0 8px 0 rgba(140, 140, 140, 0.2);
  display: flex;
}

.vehicle-nav .prev:hover .vehicle-thumb img, .vehicle-nav .next:hover .vehicle-thumb img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.vehicle-nav .back {
  align-items: center;
  color: #e26c26;
  flex-direction: column;
  flex: 1 0 auto;
  justify-content: center;
  margin: 0 10px;
  padding: 10px;
}

.vehicle-nav .back:hover i {
  font-size: 40px;
}

.vehicle-nav .back i {
  font-size: 28px;
  transition: .3s all ease;
  -webkit-transition: .3s all ease;
  -moz-transition: .3s all ease;
  -ms-transition: .3s all ease;
  -o-transition: .3s all ease;
}

.vehicle-nav .back h5 {
  color: #e26c26;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.vehicle-nav .icon {
  align-items: center;
  background: #fcf1eb;
  display: inline-flex;
  height: 100%;
  justify-content: center;
  min-height: 100px;
  padding: 10px 20px;
  width: 40px;
}

.vehicle-nav .icon i {
  color: #e26c26;
  font-size: 32px;
  transition: .3s all ease;
  -webkit-transition: .3s all ease;
  -moz-transition: .3s all ease;
  -ms-transition: .3s all ease;
  -o-transition: .3s all ease;
}

.vehicle-nav .vehicle-thumb {
  align-items: center;
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 10px 20px;
}

@media screen and (min-width: 576px) {
  .vehicle-nav .vehicle-thumb {
    display: flex;
  }
}

.vehicle-nav .vehicle-thumb img {
  height: 70px;
  transition: .3s all ease;
  -webkit-transition: .3s all ease;
  -moz-transition: .3s all ease;
  -ms-transition: .3s all ease;
  -o-transition: .3s all ease;
}

.vehicle-nav .vehicle-thumb h5 {
  color: #e26c26;
  display: none;
  font-size: 15px;
  margin: 10px 0 0;
  max-width: 150px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .vehicle-nav .vehicle-thumb h5 {
    display: block;
  }
}

.transfert-intro h2 {
  color: #e26c26;
  font-size: 20px;
}

@media screen and (min-width: 768px) {
  .transfert-intro h2 {
    font-size: 28px;
  }
}

.transfert-intro p {
  font-size: 15px;
}

@media screen and (min-width: 768px) {
  .transfert-intro p {
    font-size: 17px;
  }
}

.transfert-form {
  margin: 50px auto;
}

.transfert-selects {
  display: flex;
  justify-content: space-between;
  margin: 20px auto 0;
}

.transfert-selects .select-group {
  flex: 1;
}

.transfert-selects .select-group label {
  color: #e26c26;
  font-size: 13px;
  font-family: "Roboto";
  font-weight: 600;
  text-transform: uppercase;
}

.select {
  position: relative;
}

.select li {
  align-items: center;
  border: 1px solid #f1efee;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-weight: 200;
  padding: 20px;
  width: 100%;
}

.select li h3 {
  font-size: 15px;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .select li h3 {
    font-size: 17px;
  }
}

.select .selected li {
  background: #fcf1eb;
}

.select .selected li h3 {
  color: #e26c26;
}

.select .selected li h3 span {
  background: none;
}

.select>i {
  color: #e26c26;
  font-size: 20px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 32%;
  transition: .3s all ease;
  z-index: 100;
  -webkit-transition: .3s all ease;
  -moz-transition: .3s all ease;
  -ms-transition: .3s all ease;
  -o-transition: .3s all ease;
}

@media screen and (min-width: 768px) {
  .select>i {
    padding: 5px 10px;
    right: 20px;
  }
}

.select li {
  background: white;
}

.select li h3 {
  color: #747474;
  font-size: 13px;
}

@media screen and (min-width: 768px) {
  .select li h3 {
    font-size: 15px;
  }
}

.select li h3 span {
  background: #fafafa;
  background-blend-mode: multiply;
  border-radius: 4px;
  display: inline-block;
  font-weight: 600;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

@media screen and (min-width: 576px) {
  .select li h3 span {
    padding: 5px 10px;
  }
}

@media screen and (min-width: 768px) {
  .select li h3 span {
    margin: 0 5px;
  }
}

.select .options {
  left: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 10;
}

.select .options:not(.d-none)+i {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.transfert-info {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
}

@media screen and (min-width: 576px) {
  .transfert-info {
    flex-direction: row;
  }
}

.transfert-info li {
  align-items: center;
  background: #fafafa;
  border-radius: 4px;
  box-shadow: 0 0 8px 0 rgba(140, 140, 140, 0.2);
  color: #747474;
  display: flex;
  flex: 1;
  font-size: 13px;
  padding: 4px 40px 4px 10px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

@media screen and (min-width: 768px) {
  .transfert-info li {
    padding: 4px 10px;
  }
}

.transfert-info li i {
  font-size: 24px;
  margin-right: 10px;
  margin-top: -2px;
}

.transfert-info li strong {
  margin-left: 5px;
}

.transfert-info li:first-child {
  margin-bottom: 10px;
}

@media screen and (min-width: 576px) {
  .transfert-info li:first-child {
    margin-bottom: 0;
    margin-right: 10px;
  }
}

.cart-section {
  margin-bottom: 100px;
}

.cart-section .modular-form input, .cart-section .modular-form select, .cart-section .modular-form label, .cart-section .modular-form p {
  font-size: 12px;
}

.cart-section .form-group {
  margin-bottom: .5rem;
}

.cart-section.cart-confirmation h4 {
  font-size: 13px;
}

@media screen and (min-width: 768px) {
  .cart-section.cart-confirmation h4 {
    font-size: 15px;
  }
}

.cart-section.cart-confirmation .form-expand {
  cursor: auto;
}

.cart-section.cart-confirmation .form-expand p {
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .cart-section.cart-confirmation .form-expand p {
    font-size: 14px;
  }
}

.cart-section.cart-confirmation .item-info {
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .cart-section.cart-confirmation .item-info {
    font-size: 14px;
  }
}

.cart-section.cart-confirmation .confirmed-data {
  color: #272727;
  font-size: 12px;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .cart-section.cart-confirmation .confirmed-data {
    font-size: 14px;
  }
}

.cart-section.cart-confirmation .confirmed-data span {
  color: #e26c26;
  font-weight: 300;
  margin-right: 5px;
}

.cart-section.cart-confirmation .confirmed-data span i {
  color: #b6b0ad;
  font-size: 22px;
}

.cart-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.cart-item:not(:last-child) {
  border-bottom: 1px solid #d3cecc;
}

.cart-item h4 {
  align-items: center;
  background: #f1efee;
  color: #272727;
  display: flex;
  flex: 10 100%;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  padding: 5px;
}

.cart-item h4 a {
  background: white;
  border-radius: 50%;
  display: inline-block;
  height: 20px;
  font-size: 15px;
  line-height: 20px;
  padding: 0;
  text-align: center;
  vertical-align: middle;
  width: 20px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.cart-item h4 a i {
  color: #b6b0ad;
}

.cart-item .img {
  background: #f1efee;
  border-radius: 4px;
  flex: 1 0 100%;
  margin-bottom: 10px;
  margin-right: 10px;
  overflow: hidden;
  padding-top: 56%;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

@media screen and (min-width: 768px) {
  .cart-item .img {
    height: 100px;
    flex: 0 0 auto;
    margin-bottom: 0;
    padding-top: 0;
    width: 100px;
  }
}

.cart-item .img img {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) {
  .cart-item .img img {
    height: 100%;
    width: auto;
  }
}

.cart-item .item-details {
  flex: 0 0 100%;
}

@media screen and (min-width: 768px) {
  .cart-item .item-details {
    flex: 1 0 auto;
  }
}

.cart-item .item-info {
  align-items: center;
  background: #fcf1eb;
  color: #e26c26;
  display: flex;
  font-size: 13px;
  padding: 3px 5px;
}

.cart-item .item-info i {
  font-size: 17px;
  margin-right: 10px;
}

.thank-you {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 40vh;
  text-align: center;
}

.thank-you>i {
  color: #33be1d;
  font-size: 80px;
}

@media screen and (min-width: 768px) {
  .thank-you>i {
    font-size: 150px;
  }
}

.thank-you h3 {
  font-size: 22px;
}

@media screen and (min-width: 768px) {
  .thank-you h3 {
    font-size: 28px;
  }
}

.thank-you p {
  color: #b6b0ad;
  font-size: 15px;
}

@media screen and (min-width: 768px) {
  .thank-you p {
    font-size: 17px;
  }
}

.thank-you .btn-print {
  align-items: center;
  background: #f1efee;
  color: #272727;
  display: inline-flex;
  font-size: 13px;
}

@media screen and (min-width: 768px) {
  .thank-you .btn-print {
    font-size: 15px;
  }
}

.thank-you .btn-print i {
  color: #b6b0ad;
  font-size: 30px;
  margin-right: 5px;
}

.cart-item-price {
  background: linear-gradient(90deg, rgba(253, 248, 225, 0.5), rgba(253, 248, 225, 0.2));
  border: 1px solid #f1efee;
  border-radius: 4px;
  color: #272727;
  display: flex;
  flex: 1 0 100%;
  font-size: 13px;
  font-weight: 600;
  justify-content: flex-end;
  margin-top: 10px;
  padding: 5px 10px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.cart-item-price span {
  align-items: center;
  display: inline-flex;
  text-transform: capitalize;
}

.cart-item-price span i {
  color: #b6b0ad;
  font-size: 22px;
  margin-right: 4px;
}

.guestbook.show-form .overlay {
  display: block;
  opacity: 1;
}

.guestbook-intro {
  align-items: center;
  background: #fff9ea;
  display: flex;
  margin-bottom: 50px;
  padding: 30px;
}

@media screen and (min-width: 768px) {
  .guestbook-intro {
    background: linear-gradient(90deg, #fff9ea 85%, transparent 85%);
  }
}

.guestbook-intro .text {
  margin-right: 40px;
}

.guestbook-intro .text h2 {
  color: #f3c23d;
  font-size: 20px;
}

@media screen and (min-width: 768px) {
  .guestbook-intro .text h2 {
    font-size: 28px;
  }
}

.guestbook-intro .text p {
  font-size: 15px;
}

@media screen and (min-width: 768px) {
  .guestbook-intro .text p {
    font-size: 17px;
  }
}

.guestbook-intro .text button {
  background: #f3c23d;
  color: white;
  font-size: 15px;
  font-weight: 400;
  padding: 10px 20px;
}

.guestbook-intro .text button i {
  font-size: 20px;
  margin-bottom: -5px;
}

.guestbook-intro .book-img {
  align-items: flex-end;
  display: none;
  flex-direction: column;
  justify-content: center;
  flex: 1 0 30%;
  position: relative;
  width: 30%;
}

@media screen and (min-width: 768px) {
  .guestbook-intro .book-img {
    display: flex;
  }
}

.guestbook-intro .book-img img {
  max-width: 250px;
  width: 100%;
}

.review-count {
  background: #e26c26;
  border-radius: 4px;
  color: white;
  font-size: 13px;
  margin-bottom: 40px;
  margin-left: 10px;
  padding: 10px 30px 10px 55px;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

@media screen and (min-width: 768px) {
  .review-count {
    background: linear-gradient(90deg, #e26c26, transparent 90%);
  }
}

.review-count span {
  font-size: 17px;
  font-weight: 600;
}

.review-count .icon {
  align-items: center;
  background: white;
  border: 4px solid #e26c26;
  border-radius: 50%;
  color: #e26c26;
  display: flex;
  font-size: 40px;
  justify-content: center;
  height: 60px;
  left: -20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.gb-testimony {
  background: white;
  box-shadow: 0 0 8px 0 rgba(140, 140, 140, 0.2);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  margin-bottom: 50px;
  padding: 20px 30px;
  position: relative;
  z-index: 5;
}

@media screen and (min-width: 768px) {
  .gb-testimony {
    font-size: 15px;
  }
}

.gb-testimony .content {
  margin: 0 10px 20px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .gb-testimony .content {
    text-align: left;
  }
}

.gb-testimony .content p {
  /* color: #272727; */
  font-weight: 300;
  position: relative;
}

.gb-testimony .content p:before, .gb-testimony .content p:after {
  color: #f1efee;
  display: none;
  position: absolute;
  font: normal normal normal 30px/1 FontAwesome;
  text-rendering: optimizeLegibility;
}

@media screen and (min-width: 576px) {
  .gb-testimony .content p:before, .gb-testimony .content p:after {
    display: block;
  }
}

.gb-testimony .date {
  align-items: center;
  background: linear-gradient(90deg, transparent, #fcf1eb, transparent);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  flex: 1 0 100%;
  font-size: 11px;
  padding: 5px;
  text-align: center;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.gb-testimony .date i {
  color: #e26c26;
  font-size: 20px;
  margin: 0 4px;
}

.gb-testimony .guest {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  margin-bottom: 20px;
}

.gb-testimony .guest .img {
  display: flex;
  height: auto;
  justify-content: center;
  overflow: hidden;
  margin-right: 20px;
  position: relative;
  width: 330px;
}

.gb-testimony .info h4 {
  color: #e26c26;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 0;
}

.gb-testimony .info h5 {
  align-items: center;
  display: flex;
  justify-content: center;
  font-size: 13px;
  margin-left: -3px;
}

@media screen and (min-width: 768px) {
  .gb-testimony .info h5 {
    justify-content: flex-start;
  }
}

.gb-testimony .info h5 i {
  color: #d3cecc;
  font-size: 20px;
}

.overlay {
  background: rgba(0, 0, 0, 0.2);
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  transition: .3s all ease;
  width: 100vw;
  z-index: 1000;
  -webkit-transition: .3s all ease;
  -moz-transition: .3s all ease;
  -ms-transition: .3s all ease;
  -o-transition: .3s all ease;
}

.guestbook-form {
  background: white;
  border-radius: 4px;
  left: 50%;
  max-height: 80%;
  max-width: 800px;
  overflow-y: scroll;
  padding: 30px 50px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  z-index: 3000;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.guestbook-form .thanks {
  background: #fff9ea;
  margin-bottom: 40px;
  padding: 20px;
}

.guestbook-form .thanks p {
  font-size: 13px;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .guestbook-form .thanks p {
    font-size: 15px;
  }
}

.guestbook-form h3 {
  color: #f3c23d;
  font-size: 17px;
}

@media screen and (min-width: 768px) {
  .guestbook-form h3 {
    font-size: 20px;
  }
}

.guestbook-form input[type=file] {
  border: none;
  padding: 0;
}

.guestbook-form button {
  background: #f3c23d;
  color: white;
  font-weight: 400;
}

.guestbook-form .close-form {
  align-items: center;
  background: #f3c23d;
  color: white;
  cursor: pointer;
  display: flex;
  font-size: 24px;
  height: 30px;
  justify-content: center;
  right: 0;
  position: absolute;
  top: 0;
  width: 30px;
}

.contact {
  box-shadow: 0 0 8px 0 rgba(140, 140, 140, 0.2);
  display: flex;
  flex-direction: column;
  margin: 0 auto 10px;
}

@media screen and (min-width: 768px) {
  .contact {
    flex-direction: row;
  }
}

.contact h3 {
  color: #e26c26;
  font-size: 20px;
  margin-bottom: 30px;
}

.contact .contact-side-column, .contact .contact-main-column {
  padding: 40px 20px;
}

.contact .contact-side-column {
  background: #fcf1eb;
}

.contact .contact-side-column h4 {
  background: linear-gradient(90deg, #e26c26, transparent);
  color: white;
  font-size: 15px;
  padding: 5px;
}

.contact .contact-side-column p, .contact .contact-side-column li {
  color: #747474;
  font-size: 13px;
  font-weight: 300;
}

.contact .contact-side-column p span, .contact .contact-side-column li span {
  color: #272727;
  font-weight: 600;
}

.contact .contact-group {
  margin-bottom: 30px;
}

.contact .contact-group li {
  margin: 5px 0;
}

.contact .social-media {
  display: flex;
}

.contact .social-media li {
  align-items: center;
  background: white;
  border-radius: 50%;
  color: #e26c26;
  cursor: pointer;
  display: flex;
  justify-content: center;
  font-size: 24px;
  height: 30px;
  margin-right: 10px;
  transition: .3s all ease;
  width: 30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: .3s all ease;
  -moz-transition: .3s all ease;
  -ms-transition: .3s all ease;
  -o-transition: .3s all ease;
}

.contact .social-media li a {
  color: #e26c26;
}

.contact .social-media li:hover {
  box-shadow: 0 0 5px 0 #e26c26;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.contact-map {
  height: 450px;
  margin-bottom: 100px;
}

.about-your-partner {
  align-items: stretch;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .about-your-partner {
    flex-direction: row;
  }
}

.about-your-partner .visual {
  background-image: linear-gradient(90deg, #e65804, #e0783c), url("img/islamic_pattern.jpg");
  background-blend-mode: multiply;
  border-radius: 10px;
  box-shadow: 0 0 8px 0 rgba(140, 140, 140, 0.2);
  display: flex;
  flex: 1 0 auto;
  justify-content: space-between;
  margin-bottom: 20px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

@media screen and (min-width: 768px) {
  .about-your-partner .visual {
    flex-direction: column;
    margin-bottom: 0;
    margin-right: 70px;
    max-width: 300px;
    width: 40%;
  }
}

.about-your-partner .visual h3 {
  color: white;
  padding: 20px;
}

.about-your-partner .visual h3:before {
  background: #33be1d;
  left: 20px;
  top: calc(100% - 10px);
}

.about-your-partner .visual img {
  margin-right: -20px;
  position: relative;
  transform: translateX(10px);
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
}

@media screen and (min-width: 768px) {
  .about-your-partner .visual img {
    margin-right: 0px;
    width: 120%;
  }
}

.business-name {
  border-radius: 8px;
  box-shadow: 0 0 8px 0 rgba(140, 140, 140, 0.2);
  padding: 20px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.business-name>div {
  align-items: center;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .business-name>div {
    flex-direction: row;
  }
}

.business-name>div img {
  max-width: 40%;
}

@media screen and (min-width: 768px) {
  .business-name>div img {
    margin-bottom: 0;
    margin-right: 20px;
  }
}

.business-name>div ul {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .business-name>div ul {
    margin-top: 0;
  }
}

.business-name h3 {
  margin-bottom: 50px;
  padding-bottom: 10px;
}

.business-name h3:before {
  background: #e26c26;
  left: 0;
  top: 100%;
}

.business-name span {
  color: #e65804;
  font-weight: 600;
}

.business-name a {
  color: #33be1d;
  font-weight: 700;
}

.business-name a i {
  font-size: 22px;
}

.touristic-company {
  border-radius: 8px;
  box-shadow: 0 0 8px 0 rgba(140, 140, 140, 0.2);
  padding: 40px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.touristic-company h3 {
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.touristic-company h3:before {
  background: #e26c26;
  top: 100%;
}

.touristic-company>div {
  align-items: center;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .touristic-company>div {
    flex-direction: row;
  }
}

.touristic-company>div .mosaic {
  border-radius: 8px;
  box-shadow: 0 0 8px 0 rgba(140, 140, 140, 0.2);
  display: flex;
  flex-wrap: wrap;
  flex: 1 0 auto;
  margin-bottom: 20px;
  overflow: hidden;
  width: 100%;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

@media screen and (min-width: 768px) {
  .touristic-company>div .mosaic {
    max-width: 350px;
    margin-bottom: 0;
    margin-right: 20px;
  }
}

.touristic-company>div .mosaic .m-item {
  background-size: cover;
  background-position: center;
  border: 1px solid white;
  flex: 1 0 auto;
  padding-top: 100px;
  width: 33.3333%;
}

@media screen and (min-width: 576px) {
  .touristic-company>div .mosaic .m-item {
    width: 25%;
  }
}

@media screen and (min-width: 768px) {
  .touristic-company>div .mosaic .m-item {
    width: 50%;
  }
}

@media screen and (min-width: 992px) {
  .touristic-company>div .mosaic .m-item {
    width: 33.3333%;
  }
}

.touristic-company>div p {
  margin: 0;
}

.m-item:nth-child(1) {
  background-image: url("../images/circuits/1/1.jpg");
}

.m-item:nth-child(2) {
  background-image: url("../images/circuits/1/2.jpg");
}

.m-item:nth-child(3) {
  background-image: url("../images/circuits/1/3.jpg");
}

.m-item:nth-child(4) {
  background-image: url("../images/circuits/1/4.jpg");
}

.m-item:nth-child(5) {
  background-image: url("../images/circuits/1/5.jpg");
}

.m-item:nth-child(6) {
  background-image: url("../images/circuits/1/6.jpg");
}

.m-item:nth-child(7) {
  background-image: url("../images/circuits/1/7.jpg");
}

.m-item:nth-child(8) {
  background-image: url("../images/circuits/1/8.jpg");
}

.m-item:nth-child(9) {
  background-image: url("../images/circuits/1/9.jpg");
}

.m-item:nth-child(10) {
  background-image: url("../images/circuits/1/10.jpg");
}

.m-item:nth-child(11) {
  background-image: url("../images/circuits/1/11.jpg");
}

.m-item:nth-child(12) {
  background-image: url("../images/circuits/1/12.jpg");
}

.our-team h3 {
  margin-bottom: 50px;
  padding-bottom: 10px;
}

.our-team h3:before {
  background-color: #e26c26;
  top: 100%;
}

.our-team .members {
  display: flex;
  flex-wrap: wrap;
}

.our-team .member {
  border-radius: 8px;
  box-shadow: 0 0 8px 0 rgba(140, 140, 140, 0.2);
  display: flex;
  flex-direction: column;
  margin: 5px 0;
  padding: 20px;
  width: 100%;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

@media screen and (min-width: 576px) {
  .our-team .member {
    flex-direction: row;
  }
}

.our-team .member>div {
  flex: 1 1 auto;
}

.our-team .member .img {
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 100px;
  height: 100px;
  margin: 0 auto 20px;
  position: relative;
  width: 100px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

@media screen and (min-width: 576px) {
  .our-team .member .img {
    margin: 0 10px 0 0;
  }
}

.our-team .member .img img {
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.our-team .member h4 {
  margin-bottom: 5px;
  font-size: 17px;
  font-weight: 600;
  text-align: center;
}

@media screen and (min-width: 576px) {
  .our-team .member h4 {
    text-align: left;
  }
}

.our-team .member h6 {
  color: #e26c26;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (min-width: 576px) {
  .our-team .member h6 {
    text-align: left;
  }
}

.our-team .member p {
  font-size: 13px;
}

@media screen and (min-width: 768px) {
  .our-team .member p {
    font-size: 15px;
  }
}

.our-team .member p span {
  color: #33be1d;
}

.our-team .member .info {
  background: #fafafa;
  padding: 10px;
}

.our-team .member .info i {
  color: #e26c26;
  font-size: 20px;
}

.our-team .member .info li {
  font-size: 13px;
}

@media screen and (min-width: 768px) {
  .our-team .member .info li {
    font-size: 15px;
  }
}

.our-team .member .info li span {
  color: #e26c26;
  font-weight: 600;
}

.our-team .member .info a {
  align-items: center;
  color: #4267B2;
  display: flex;
  font-weight: 600;
  margin-top: 5px;
}

.our-team .member .info a i {
  color: inherit;
}

.about-copyright {
  background-color: #EAEAEA;
  border-radius: 4px;
  font-size: 15px;
  padding: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.about-copyright h4 {
  color: #e26c26;
  font-weight: 600;
}

.about-copyright img {
  width: 100%;
}

@media screen and (min-width: 576px) {
  .about-copyright img {
    float: right;
    width: 350px;
  }
}

/*# sourceMappingURL=app.css.map */

#notfound {
  position: relative;
  height: 100vh;
}

#notfound .notfound {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.notfound {
  max-width: 767px;
  width: 100%;
  line-height: 1.4;
  padding: 0px 15px;
}

.notfound .notfound-404 {
  position: relative;
  height: 150px;
  line-height: 150px;
  margin-bottom: 25px;
}

.notfound .notfound-404 h1 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 186px;
  font-weight: 900;
  margin: 0px;
  text-transform: uppercase;
  background: url('../images/text_bg.png');
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: cover;
  background-position: center;
}

.notfound h2 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin: 0;
}

.notfound p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0px;
  text-transform: uppercase;
}

.notfound a {
  font-family: 'Titillium Web', sans-serif;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border: none;
  background: #5c91fe;
  padding: 10px 40px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 1px;
  margin-top: 15px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.notfound a:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 767px) {
  .notfound .notfound-404 {
    height: 110px;
    line-height: 110px;
  }
  .notfound .notfound-404 h1 {
    font-size: 120px;
  }
}

h1 {
  padding: 0 0 20px 0;
  font-size: 30px;
}

h2 {
  padding: 10px 0;
  font-size: 22px;
}

h3 {
  padding: 10px 0;
  font-size: 20px;
}

a.black:link, a.black:hover, a.black:active, a.black:visited {
  color: black;
  text-decoration: none;
}

/**
* Modifications page d'accueil/slider
*/

.slider img {
  width: 100%;
}

.hero-flyer {
  background: linear-gradient(rgba(240, 240, 240, 1), rgba(240, 240, 240, 0));
}

.hero-flyer img {
  display: block;
  margin: auto;
  max-width: 300px;
  width: 80%;
}

.hero-flyer h5 {
  color: #777;
  font-size: 18px;
  font-weight: 600;
  line-height: 40px;
  margin-top: 20px;
  text-align: center;
  text-transform: uppercase;
}

.text-block {
  position: absolute;
  bottom: 40px;
  right: 20px;
  background-color: black;
  color: white;
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16pt;
}

.annonce {
  color:#e26c26;
}