/*---------------------------- THEME COMMON STYLE START ------------------------------*/
@font-face {
  font-family: 'Mazda Type Medium';
  src: url("../fonts/Mazda-Type-Medium.woff");
}

@font-face {
  font-family: 'MazdaTypeTT-Regular';
  src: url("../fonts/MazdaTypeTT-Regular.woff2");
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'MazdaTypeTT-Regular';
  text-rendering: optimizeLegibility;
  color: #101010;
  font-size: 16px;
  font-style: normal;
  line-height: 28px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Mazda Type Medium';
  letter-spacing: .1em;
  line-height: 1.5;
  padding: 0;
  margin: 0;
}

a,
a:hover,
a:active,
a:focus {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
  outline: none;
  border: none;
}

ul, li {
  margin: 0;
  padding: 0;
}

button {
  border: none;
}

button:focus {
  outline: 1px dotted transparent;
  outline: 5px auto -webkit-focus-ring-color;
}

.py-6 {
  padding: 5rem 0 !important;
}

.form-control:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.container-mid {
  position: relative;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.list-style-none {
  padding: 0;
  list-style-type: none;
}

.shadow-box {
  -webkit-box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.1);
}

.colorPrimary {
  color: #101010;
}

.colorSecondary {
  color: #999;
}

/*-----------------theme common style ends----------------*/
.themeHeading {
  position: relative;
  margin-bottom: 65px;
}

.themeHeading h6 {
  letter-spacing: 4px;
  font-weight: 600;
  font-size: 14px;
  color: #2a2a2a;
  margin-bottom: 5px;
}

.themeHeading h2 {
  position: relative;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .themeHeading h2 {
    font-size: 22px;
  }
}

.themeHeading p {
  font-size: 15px;
  max-width: 650px;
  width: 100%;
  color: #8b8b8b;
}

/*--------------------------------- Theme Button CSS Start ------------------------------ */
.themeBtn {
  position: relative;
  border: 0;
  padding: 10px 20px;
  border-radius: 3px;
  font-size: 15px;
  color: #fff;
  letter-spacing: 1px;
  border: 1px solid #101010;
  background-color: #101010;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 2px;
  z-index: 0;
  overflow: hidden;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.themeBtn::before, .themeBtn.ctaBlock::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #999;
  z-index: -1;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.themeBtn.active {
  color: #101010;
  background-color: transparent;
}

.themeBtn.active::before, .themeBtn.active.ctaBlock::after {
  background-color: #101010;
}

.themeBtn:hover {
  color: #fff;
  border: 1px solid #999;
}

.themeBtn:hover::before, .themeBtn.ctaBlock:hover::after {
  width: 100%;
}

.themeBtn:hover.active {
  border: 1px solid #101010;
}

.themeBtn:focus {
  background-color: #999;
}

#to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  font-size: 30px;
  border-radius: 50%;
  background-color: #1f1f1f;
  border: 1px solid #101010;
  color: #fff;
  z-index: 1;
}

@media (max-width: 575px) {
  #to-top {
    bottom: 20px;
    right: 20px;
    height: 35px;
    width: 35px;
    font-size: 20px;
  }
}

/*--------------------------------- Header Section Start ------------------------------ */
.headerTop-inner {
  padding: 15px 0;
  background-color: #101010;
  color: #fff;
}

.headerTop-inner .d-flex {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 575px) {
  .headerTop-inner .d-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

.headerTop-inner .d-flex span {
  font-size: 13px;
  line-height: 1.7;
}

.headerTop-inner .d-flex span a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .headerTop-inner .d-flex span {
    display: none;
  }
}

.navbar-brand {
  margin: 0;
  padding: 0;
  padding-right: 25px;
  margin-right: 15px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}

.navbar-brand img {
  max-width: 60px;
  image-rendering: -webkit-optimize-contrast;
}

.navbar-brand h6 {
  height: 100%;
  line-height: 1;
  font-size: 18px;
  color: #fff;
}

.navbar-brand p {
  margin: 0;
  line-height: 1;
}

.navbar-brand p a {
  color: #f1f1f1;
  font-size: 13px;
}

.navbar-brand p a:hover {
  text-decoration: underline;
}

.site-header {
  background: #101010;
  position: relative;
  -webkit-box-shadow: 0 15px 20px -3px rgba(0, 0, 0, 0.03);
          box-shadow: 0 15px 20px -3px rgba(0, 0, 0, 0.03);
  z-index: 11;
  -webkit-transition: .5s;
  transition: .5s;
}

@media (max-width: 991px) {
  .site-header {
    background: #fff;
    padding: 5px 0;
  }
}

.site-header.active {
  position: fixed;
  width: 100%;
  top: 0;
  -webkit-animation: smoothScroll 1s forwards;
          animation: smoothScroll 1s forwards;
}

.site-header.active .navbar .navbar-expand-lg li a::after {
  display: none;
}

.site-header .navbar {
  margin-bottom: 0;
  border-radius: 0;
  border: 0;
  padding: 0;
}

@media (max-width: 991px) {
  .site-header .navbar {
    padding: 0px 15px;
  }
}

.site-header .navbar.navbar-expand-lg .navbar-nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 991px) {
  .site-header .navbar.navbar-expand-lg .navbar-nav {
    margin: 0px;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
  }
}

.site-header .navbar.navbar-expand-lg li {
  display: inline-block;
}

.site-header .navbar.navbar-expand-lg li.dropdown:last-child .dropdown-menu {
  left: auto;
  right: 0;
}

.site-header .navbar.navbar-expand-lg li.dropdown.show a::after {
  top: 6px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

@media (max-width: 991px) {
  .site-header .navbar.navbar-expand-lg li {
    padding: 0;
  }
}

.site-header .navbar.navbar-expand-lg li a {
  position: relative;
  font-family: 'Mazda Type Medium';
  text-transform: uppercase;
  padding: 15px;
  font-size: 13px;
  line-height: 40px;
  color: #cccccc;
  display: block;
  text-align: center;
  letter-spacing: .2em;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  cursor: pointer;
}

.site-header .navbar.navbar-expand-lg li a.wishlist-icon {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 991px) {
  .site-header .navbar.navbar-expand-lg li a.wishlist-icon {
    background-color: #101010;
  }
}

@media (max-width: 1200px) {
  .site-header .navbar.navbar-expand-lg li a {
    font-size: 12px;
  }
}

.site-header .navbar.navbar-expand-lg li a:hover {
  color: #fff;
}

@media (max-width: 991px) {
  .site-header .navbar.navbar-expand-lg li a:hover {
    outline: 0;
    background-color: #f1f1f1;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

@media (max-width: 991px) {
  .site-header .navbar.navbar-expand-lg li a {
    color: #1f1f1f;
    padding: 10px;
    font-size: 15px;
    line-height: 30px;
    border-bottom: 1px solid #f1f1f1;
  }
  .site-header .navbar.navbar-expand-lg li a:hover {
    color: #1f1f1f;
  }
}

.site-header .navbar.navbar-expand-lg li a.dropdown-toggle::after {
  border: none;
  position: relative;
  top: 1px;
  margin-left: 8px;
  height: 8px;
  width: 8px;
  border-right: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

@media (max-width: 991px) {
  .site-header .navbar.navbar-expand-lg li a.dropdown-toggle::after {
    border-right: 1px solid #1f1f1f;
    border-bottom: 1px solid #1f1f1f;
  }
}

@media (min-width: 992px) {
  .site-header .navbar.navbar-expand-lg li.dropdown:hover .dropdown-toggle::after {
    top: 6px;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
}

.site-header .navbar.navbar-expand-lg li .dropdown-menu {
  border: 1px solid #101010;
  border-top: none;
  border-bottom: none;
  top: 97%;
  border-radius: 0;
  padding: 0;
  min-width: 15rem;
  z-index: 1;
}

@media (max-width: 991px) {
  .site-header .navbar.navbar-expand-lg li .dropdown-menu {
    border: none;
  }
}

.site-header .navbar.navbar-expand-lg li .dropdown-menu li {
  display: block;
}

.site-header .navbar.navbar-expand-lg li .dropdown-menu li a {
  background-color: #999;
  color: #fff;
  text-align: left;
  line-height: 1;
  font-size: 13px;
  padding: 15px 10px;
  letter-spacing: 1.5px;
  border-bottom: 1px solid #101010;
}

.site-header .navbar.navbar-expand-lg li .dropdown-menu li a:focus, .site-header .navbar.navbar-expand-lg li .dropdown-menu li a:hover, .site-header .navbar.navbar-expand-lg li .dropdown-menu li a:active {
  background-color: #101010;
  color: #fff;
}

@media (max-width: 991px) {
  .site-header .navbar.navbar-expand-lg li .dropdown-menu li a {
    border: none;
    text-align: center;
  }
}

.site-header .navbar-toggler {
  background: transparent;
  border-radius: 0;
  margin: 14px 0;
  padding: 0 5px;
  outline: none;
}

.site-header .navbar-toggler .icon-bar {
  width: 22px;
  height: 2px;
  background-color: #101010;
  display: block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  margin: 4px 0;
}

.site-header .navbar-toggler .top-bar {
  -webkit-transform: rotate(-42deg);
          transform: rotate(-42deg);
  -webkit-transform-origin: 90% 90%;
          transform-origin: 90% 90%;
}

.site-header .navbar-toggler .middle-bar {
  opacity: 0;
}

.site-header .navbar-toggler .bottom-bar {
  -webkit-transform: rotate(42deg);
  transform: rotate(42deg);
  -webkit-transform-origin: 90% 10%;
  transform-origin: 90% 10%;
}

.site-header .navbar-toggler.collapsed .top-bar {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.site-header .navbar-toggler.collapsed .middle-bar {
  opacity: 1;
}

.site-header .navbar-toggler.collapsed .bottom-bar {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

@-webkit-keyframes smoothScroll {
  0% {
    -webkit-transform: translateY(-35px);
            transform: translateY(-35px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes smoothScroll {
  0% {
    -webkit-transform: translateY(-35px);
            transform: translateY(-35px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@media (max-width: 767px) {
  .site-header .navbar-nav li {
    display: block;
  }
}

/*--------------------------------- Header Section End ------------------------------ */
@media (max-width: 991px) {
  .site-header .navbar-collapse {
    position: absolute;
    top: 60px;
    left: -100%;
    padding: 0;
    width: 100%;
    text-align: center;
    height: calc(100vh - 60px);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow-y: scroll;
  }
  .site-header .navbar-collapse.collapsing {
    height: 100vh;
    margin-right: 50%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .site-header .navbar-collapse.show {
    left: 0;
    background: #fff;
    border-top: 1px solid #f1f1f1;
  }
}

/*--------------------------------- Footer Section Start ------------------------------ */
.siteFooter {
  position: relative;
  background-color: #1f1f1f;
}

.siteFooter h6 {
  color: #fff;
}

.siteFooter .book-testdrive {
  font-size: 13px;
  border-bottom: 1px solid #6c6c6c;
}

.siteFooter .book-testdrive a {
  color: #f1f1f1;
}

.siteFooter .book-testdrive a i {
  position: relative;
  top: 2px;
  font-size: 17px;
}

.footer_list-item li a {
  color: #999;
  font-size: 13px;
  text-transform: uppercase;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.footer_list-item li a:hover {
  color: #f1f1f1;
}

.footer_secondary {
  font-size: 13px;
  color: #f1f1f1;
  border-top: 1px solid #6c6c6c;
}

.footer_secondary .footer_list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer_secondary .footer_list-item li a {
  color: #f1f1f1;
}

.footer_secondary .footer_list-item li a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 575px) {
  .footer_secondary {
    font-size: 12px;
    line-height: 1;
  }
  .footer_secondary .footer-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.social-links li a {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 22px;
  height: 30px;
  width: 30px;
  line-height: 30px;
  border-radius: 50%;
  margin-right: 8px;
  padding-left: 1px;
  color: #f1f1f1;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.social-links li a.facebook:hover {
  color: #4267B2;
}

.social-links li a.twitter:hover {
  color: #1DA1F2;
}

.social-links li a.youtube:hover {
  color: #ff0000;
}

.social-links li a.linkedin:hover {
  color: #0077b5;
}

.heroSection {
  position: relative;
  background-position: center;
  background-size: cover;
  color: #fff;
  z-index: 0;
}

@media (max-width: 575px) {
  .heroSection {
    background-position: center bottom;
    background-size: contain;
    background-repeat: no-repeat;
  }
}

.heroSection::before, .heroSection.ctaBlock::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#1f1f1f), to(transparent));
  background: linear-gradient(to bottom, #1f1f1f, transparent);
  opacity: .25;
  z-index: -1;
}

.heroSection-content {
  padding: 50px 0 300px;
}

@media (max-width: 991px) {
  .heroSection-content {
    padding-bottom: 200px;
  }
}

@media (max-width: 767px) {
  .heroSection-content {
    padding-bottom: 150px;
  }
}

@media (max-width: 575px) {
  .heroSection-content {
    padding-bottom: 100px;
  }
}

.heroSection-content .hero-title {
  color: #101010;
  font-size: 40px;
  display: inline-block;
  border-top: 4px solid #101010;
  border-bottom: 4px solid #101010;
}

@media (max-width: 1200px) {
  .heroSection-content .hero-title {
    font-size: 35px;
  }
}

@media (max-width: 991px) {
  .heroSection-content .hero-title {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .heroSection-content .hero-title {
    font-size: 27px;
    border-width: 2px;
  }
}

@media (max-width: 575px) {
  .heroSection-content .hero-title {
    font-size: 24px;
  }
}

.searchBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 8px 8px;
  margin: 10px auto 0;
  background-color: #fff;
  border-radius: 3px;
  -webkit-box-shadow: 0 10px 20px rgba(31, 31, 31, 0.15);
          box-shadow: 0 10px 20px rgba(31, 31, 31, 0.15);
}

@media (max-width: 767px) {
  .searchBox {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 15px 10px 5px;
    -webkit-box-shadow: 0 10px 20px rgba(31, 31, 31, 0.05);
            box-shadow: 0 10px 20px rgba(31, 31, 31, 0.05);
  }
}

.searchBox .form-input {
  width: 20%;
  margin-bottom: 8px;
  padding: 0 5px;
}

@media (max-width: 767px) {
  .searchBox .form-input {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
  }
}

@media (max-width: 575px) {
  .searchBox .form-input {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

.searchBox .themeBtn {
  padding: 7px 40px;
  height: 45px;
  border-radius: 0;
  font-size: 17px;
}

.searchBox .themeBtn::before, .searchBox .themeBtn.ctaBlock::after {
  background-color: #fff;
}

.searchBox .themeBtn:hover {
  color: #101010;
}

.hero-cta {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.hero-cta .hero-cta-block {
  border: 1px solid rgba(241, 241, 241, 0.55);
  border-radius: 5px;
  margin: 5px;
  background-color: rgba(31, 31, 31, 0.77);
  padding: 15px;
  min-width: 180px;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

@media (max-width: 575px) {
  .hero-cta .hero-cta-block {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 150px;
  }
}

.hero-cta .hero-cta-block:hover {
  background-color: #101010;
}

.hero-cta .hero-cta-block img {
  max-width: 45px;
  image-rendering: -webkit-optimize-contrast;
}

@media (max-width: 575px) {
  .hero-cta .hero-cta-block img {
    max-width: 45px;
  }
}

.hero-cta .hero-cta-block h4 {
  font-size: 15px;
  color: #fff;
  line-height: 1.4;
}

@media (max-width: 575px) {
  .hero-cta .hero-cta-block h4 {
    font-size: 15px;
  }
}

.form-input .select2.select2-container.select2-container--default {
  width: 100% !important;
}

.form-input .select2-container .select2-selection--single {
  height: 45px;
  border-radius: 0px;
  border: 0px;
  outline: none;
}

.form-input .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 43px;
  outline: none;
  border: none;
  border-radius: 3px;
  padding: 0 12px;
  font-size: 15px;
  border: 1px solid #ccc;
}

.form-input .select2-container--default .select2-selection--single .select2-selection__clear {
  margin-right: 10px;
}

.form-input .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 42px;
  right: 3px;
}

.form-input .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: rgba(31, 31, 31, 0.66);
}

.form-input .select2-search--dropdown {
  padding: 12px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #101010 !important;
}

.select2-dropdown {
  border: 1px solid #ccc;
  border-radius: 5px;
}

.select2-search--dropdown {
  padding: 0;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0 10px 10px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  margin: 0 10px;
  margin-top: 10px;
  width: 92%;
  margin-bottom: 10px;
}

.slick-arrow {
  top: 38%;
  height: 40px;
  width: 40px;
  background-color: transparent;
  color: #101010;
  border-top: 2px solid #101010;
  border-left: 2px solid #101010;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  z-index: 2;
}

@media (max-width: 991px) {
  .slick-arrow {
    height: 20px;
    width: 20px;
  }
}

.slick-arrow::before, .slick-arrow.ctaBlock::after {
  content: '';
}

.slick-arrow.slick-prev {
  left: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media (min-width: 1300px) {
  .slick-arrow.slick-prev {
    left: -25px;
  }
}

.slick-arrow.slick-next {
  right: 0;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

@media (min-width: 1300px) {
  .slick-arrow.slick-next {
    right: -25px;
  }
}

.vehicle-box {
  position: relative;
  display: block;
  outline: none;
  margin-bottom: 30px;
  border-radius: 4px;
  text-align: center;
  padding: 30px;
  background-color: rgba(241, 241, 241, 0.6);
  border: 1px solid white;
  text-transform: uppercase;
  overflow: hidden;
  z-index: 0;
}

@media (max-width: 767px) {
  .vehicle-box {
    padding: 20px 10px;
  }
}

.vehicle-box::before, .vehicle-box.ctaBlock::after {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  height: 450px;
  width: 450px;
  background-color: #e6e6e6;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  z-index: -1;
  -webkit-transition: .6s ease-in-out;
  transition: .6s ease-in-out;
}

.vehicle-box::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #999;
}

.vehicle-box:hover {
  border: 1px solid white;
}

.vehicle-box:hover::before, .vehicle-box.ctaBlock:hover::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.vehicle-box:hover span {
  color: #101010;
  letter-spacing: 2px;
}

.vehicle-box h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #101010;
  letter-spacing: .1em;
}

@media (max-width: 767px) {
  .vehicle-box h3 {
    font-size: 1rem;
  }
}

.vehicle-box h2 {
  font-size: .9rem;
  margin-top: 5px;
  letter-spacing: 1px;
}

@media (max-width: 767px) {
  .vehicle-box h2 {
    font-size: .9rem;
  }
}

.vehicle-box h2 span {
  font-size: 1.5rem;
  font-weight: 900;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

@media (max-width: 767px) {
  .vehicle-box h2 span {
    font-size: 1rem;
  }
}

.vehicle-box .themeBtn {
  margin-top: 10px;
  padding: 8px 30px;
}

@media (max-width: 767px) {
  .vehicle-box .themeBtn {
    padding: 5px 30px;
    font-size: 14px;
  }
}

.vehicle-img img {
  max-width: 70%;
  margin: 50px 0;
}

/************************************************************
  Finance Seo Menu
************************************************************/
.finance-seoMenu {
  background-color: #f5f5f5;
  padding: 0 15px;
  overflow: hidden;
}

.finance-seoMenu-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  max-width: 1218px;
  height: 100vh;
  position: relative;
}

@media (max-width: 1100px) {
  .finance-seoMenu-container {
    height: auto;
    padding: 60px 0;
    text-align: center;
  }
}

.finance-seoMenu-content {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 35%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.finance-seoMenu-content img {
  max-width: 90px;
  image-rendering: -webkit-optimize-contrast;
}

@media (max-width: 1100px) {
  .finance-seoMenu-content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}

.finance-seoMenu-content span {
  font-size: 13px;
  color: #a9a9a9;
}

.finance-seoMenu-img {
  position: relative;
  width: 50%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  right: auto;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media (max-width: 1100px) {
  .finance-seoMenu-img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
}

.finance-seoMenu-img img {
  width: auto;
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  z-index: 2;
}

@media (max-width: 1100px) {
  .finance-seoMenu-img img {
    width: 100%;
    max-width: 100%;
    margin-top: 50px;
  }
}

.ctaBlock {
  position: relative;
  color: #fff;
  border-radius: 5px;
  height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-position: center;
  background-size: cover;
  -webkit-box-shadow: 0 5px 20px -10px #999;
          box-shadow: 0 5px 20px -10px #999;
  overflow: hidden;
  z-index: 0;
}

.ctaBlock::before, .ctaBlock::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#1f1f1f), to(transparent));
  background: linear-gradient(to bottom, #1f1f1f, transparent);
  opacity: 1;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  z-index: -1;
}

.ctaBlock::after {
  background: #1f1f1f;
  opacity: 0;
}

.ctaBlock:hover {
  color: #fff;
}

.ctaBlock:hover::after {
  opacity: .45;
}

.ctaBlock:hover p {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.ctaBlock:hover .themeBtn {
  background-color: #fff;
  color: #1f1f1f;
}

.ctaBlock h2 {
  position: relative;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
}

.ctaBlock h2::before, .ctaBlock h2.ctaBlock::after {
  position: absolute;
  content: '';
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #fff;
  border-radius: 5px;
}

.ctaBlock p {
  max-width: 400px;
  width: 100%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

@media (min-width: 768px) {
  .ctaBlock p {
    opacity: 0;
  }
}

.ctaBlock .themeBtn {
  background-color: rgba(16, 16, 16, 0.3);
  color: #fff;
  padding: 10px 30px;
  border: 1px solid #fff;
}

.ctaBlock .themeBtn::before, .ctaBlock .themeBtn.ctaBlock::after {
  display: none;
}

.ctaBlock .themeBtn:hover {
  background-color: #fff;
  color: #1f1f1f;
}

.ctaBlock img {
  position: absolute;
  bottom: 20px;
  right: 20px;
  max-width: 90px;
  -webkit-filter: drop-shadow(0 0 10px #1f1f1f);
          filter: drop-shadow(0 0 10px #1f1f1f);
}

@media (max-width: 767px) {
  .ctaBlock img {
    max-width: 30px;
  }
}

.serviceCta {
  padding: 100px 0;
}

@media (max-width: 767px) {
  .serviceCta {
    padding: 50px 0;
  }
}

.serviceCta .themeHeading h2 {
  font-size: 45px;
}

@media (max-width: 767px) {
  .serviceCta .themeHeading h2 {
    font-size: 28px;
  }
}

.service-inner {
  text-align: center;
  margin-bottom: 30px;
}

.service-inner i {
  font-size: 50px;
}

@media (max-width: 767px) {
  .service-inner i {
    font-size: 40px;
  }
}

.service-inner h5 {
  text-transform: capitalize;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .service-inner h5 {
    font-size: 18px;
  }
}

/************************************************
  Contact Info
************************************************/
.contactInfo {
  padding: 50px 0 100px;
}

.contactBlock {
  border-radius: 30px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 20px rgba(31, 31, 31, 0.1);
          box-shadow: 0 5px 20px rgba(31, 31, 31, 0.1);
}

@media (max-width: 767px) {
  .contactBlock {
    border-radius: 10px;
  }
}

.contact-form {
  padding: 3vw;
}

@media (max-width: 767px) {
  .contact-form {
    padding: 15px;
  }
}

.contact-form h4 {
  font-weight: unset;
  font-size: 30px;
  margin-bottom: 10px;
}

@media (max-width: 575px) {
  .contact-form h4 {
    text-align: center;
    font-size: 20px;
  }
}

.contact-form textarea.form-control, .contact-form input.form-control {
  border: none;
  border-bottom: 1px solid #d8d8d8;
  border-radius: 0;
  height: 45px;
  margin-bottom: 10px;
  font-size: 14px;
  padding: 5px;
}

.contact-form textarea.form-control::-webkit-input-placeholder, .contact-form input.form-control::-webkit-input-placeholder {
  color: rgba(31, 31, 31, 0.66);
  letter-spacing: 1px;
}

.contact-form textarea.form-control:-ms-input-placeholder, .contact-form input.form-control:-ms-input-placeholder {
  color: rgba(31, 31, 31, 0.66);
  letter-spacing: 1px;
}

.contact-form textarea.form-control::-ms-input-placeholder, .contact-form input.form-control::-ms-input-placeholder {
  color: rgba(31, 31, 31, 0.66);
  letter-spacing: 1px;
}

.contact-form textarea.form-control::placeholder, .contact-form input.form-control::placeholder {
  color: rgba(31, 31, 31, 0.66);
  letter-spacing: 1px;
}

.contact-form textarea.form-control:focus, .contact-form input.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #000;
}

.contact-form textarea.form-control .themeBtn, .contact-form input.form-control .themeBtn {
  width: 170px;
}

.contact-form textarea.form-control {
  height: auto;
}

.contact-details {
  padding: 3vw 2vw;
  background-color: #999;
  color: #fff;
  height: 100%;
}

@media (max-width: 767px) {
  .contact-details {
    padding: 15px;
  }
}

.contact-details h4 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 10px;
}

@media (max-width: 575px) {
  .contact-details h4 {
    font-size: 20px;
  }
}

.contact-details .contact-us {
  position: relative;
  padding-left: 40px;
  margin: 15px 0;
  line-height: 1.7;
  min-height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-details .contact-us p {
  margin: 0;
}

@media (max-width: 575px) {
  .contact-details .contact-us p {
    font-size: 13px;
  }
}

.contact-details .contact-us img {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.social-profile {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  padding-top: 20px;
}

.social-profile ul li {
  display: inline-block;
  padding: 10px 5px;
}

.social-profile ul li a {
  display: inline-block;
  height: 40px;
  width: 40px;
  border-radius: 3px;
  text-align: center;
  color: #fff;
  line-height: 40px;
  font-size: 17px;
  background-color: #101010;
}

.social-profile ul li a:hover {
  background-color: #101010;
}

.blog-grid {
  background: #fff;
  border-radius: 5px;
  border: 1px solid #f1f1f1;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.blog-grid:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px #f1f1f1;
          box-shadow: 0 10px 20px #f1f1f1;
}

.blog-grid:hover .blog-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.blog-grid .blog-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.blog-grid .blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.blog-grid .blog-content {
  position: relative;
  padding: 25px 20px 20px;
  border-top: 1px solid #f1f1f1;
}

.blog-grid .blog-content h4 {
  font-size: 18px;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.blog-grid .blog-content a {
  padding: 8px 20px;
  letter-spacing: 1px;
}

.blog-grid .blog-content a i {
  font-weight: 900;
  font-size: 18px;
}
/*# sourceMappingURL=main.css.map */