@font-face {
  font-family: "InfinitiBrand-Bold";
  src: url("../fonts/InfinitiBrand-Bold.woff");
}

@font-face {
  font-family: "InfinitiBrand-Light";
  src: url("../fonts/InfinitiBrand-Light.woff");
}

@font-face {
  font-family: "InfinitiBrand-Regular";
  src: url("../fonts/InfinitiBrand-Regular.woff");
}

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

.padding-5 {
  padding-left: 5px;
  padding-right: 5px;
}

/*---------------------------- THEME COMMON STYLE START -----------------------------------------------*/
body {
  font-family: "InfinitiBrand-Regular";
  line-height: 1.33333;
  font-size: .75em;
  letter-spacing: .05em;
  letter-spacing: 1px;
  color: #000;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0px;
  line-height: 1.2;
  letter-spacing: 1.5px;
  font-family: "InfinitiBrand-Light";
}

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

button {
  border: none;
  outline: none;
}

.theme-btn, .theme-btn-inverse {
  display: inline-block;
  padding: 13px 10px;
  min-width: 220px;
  background-color: #000;
  color: #fff;
  border: 2px solid #000;
  border-radius: 0px;
  text-transform: uppercase;
  text-align: center;
  z-index: 0;
  font-size: 13px;
  overflow: hidden;
  position: relative;
  font-family: "InfinitiBrand-Bold";
  font-weight: 400;
  letter-spacing: 1px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.theme-btn:before, .theme-btn:after, .theme-btn-inverse:before, .theme-btn-inverse:after {
  content: "";
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 0;
  left: 0;
  bottom: 0;
  background-color: #fff;
  border-radius: 5;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.theme-btn:after, .theme-btn-inverse:after {
  left: unset;
  right: 0;
}

.theme-btn:hover, .theme-btn:focus, .theme-btn-inverse:hover, .theme-btn-inverse:focus {
  border: 2px solid #000;
  color: #000;
}

.theme-btn:hover::before, .theme-btn:hover:after, .theme-btn:focus::before, .theme-btn:focus:after, .theme-btn-inverse:hover::before, .theme-btn-inverse:hover:after, .theme-btn-inverse:focus::before, .theme-btn-inverse:focus:after {
  width: 51%;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.theme-btn-inverse {
  background: #fff;
  color: #000;
  border-color: #000 !important;
}

.theme-btn-inverse:before, .theme-btn-inverse:after {
  background-color: #000;
  border-color: #000;
}

.theme-btn-inverse:hover, .theme-btn-inverse:focus {
  border: 2px solid #000;
  color: #fff;
}

.themeHeading, .themeHeading-inverse {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.themeHeading h2, .themeHeading-inverse h2 {
  color: #252525;
  font-weight: 200;
  font-size: 28px;
  line-height: 33px;
}

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

.themeHeading p, .themeHeading-inverse p {
  margin-top: 7px;
  font-size: 19px;
  margin-bottom: .25em;
  font-family: "InfinitiBrand-Bold";
  font-weight: 400;
  color: #000;
  line-height: 22px;
}

.themeHeading-inverse h2 {
  color: #fff;
}

.themeHeading-inverse p {
  color: #fff;
}

/*-------------------------theme common style ends----------------*/
/*******************************************************
  Header css starts
*******************************************************/
.siteHeader {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 4px #ccc;
          box-shadow: 0 0 4px #ccc;
  z-index: 9;
}

@media (max-width: 991px) {
  .siteHeader {
    background-color: #fff;
  }
}

.siteHeader .site-top-bar {
  padding: 10px 0;
  background: #252525;
}

@media (max-width: 767px) {
  .siteHeader .site-top-bar {
    display: none;
  }
}

.siteHeader .site-top-bar .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;
}

.siteHeader .site-top-bar p {
  border-right: 1px solid #888;
  margin-right: 15px;
}

.siteHeader .site-top-bar p a {
  color: #fff;
  font-size: 13px;
  text-transform: capitalize;
  letter-spacing: 0;
}

@media (max-width: 991px) {
  .siteHeader .site-top-bar p a {
    font-size: 11px;
  }
}

.siteHeader .container-mid {
  position: relative;
}

.siteHeader .HeaderMain.site-header-active {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: #fff;
  -webkit-box-shadow: 0 15px 20px -3px rgba(0, 0, 0, 0.07);
          box-shadow: 0 15px 20px -3px rgba(0, 0, 0, 0.07);
  -webkit-animation: smoothScroll 1s forwards;
          animation: smoothScroll 1s forwards;
}

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

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

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

@media (max-width: 991px) {
  .siteHeader .HeaderMain .navbar {
    padding: 5px 15px;
  }
}

.siteHeader .HeaderMain .navbar .navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.siteHeader .HeaderMain .navbar .navbar-brand img {
  max-width: 100px;
  padding: 10px 0;
  image-rendering: -webkit-optimize-contrast;
}

@media (max-width: 991px) {
  .siteHeader .HeaderMain .navbar .navbar-brand img {
    max-width: 75px;
  }
}

.siteHeader .HeaderMain .navbar .navbar-brand h6 {
  width: 170px;
  line-height: 1.1;
  font-size: 14px;
  text-transform: uppercase;
  color: #000;
  font-weight: 300;
  border-left: 1px solid #000;
  padding-left: 15px;
  font-family: "InfinitiBrand-Bold";
  white-space: break-spaces;
}

@media (max-width: 991px) {
  .siteHeader .HeaderMain .navbar .navbar-brand h6 {
    width: 126px;
    font-size: 12px;
  }
}

.siteHeader .HeaderMain .navbar .navbar-toggler {
  background: transparent;
  border-radius: 0;
  outline: none;
}

.siteHeader .HeaderMain .navbar .navbar-toggler .icon-bar {
  width: 22px;
  height: 2px;
  background-color: #252525;
  display: block;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin: 4px 0;
}

.siteHeader .HeaderMain .navbar .navbar-toggler .top-bar {
  -webkit-transform: translate3d(0, 0, 0) rotate(-42deg);
  transform: translate3d(0, 0, 0) rotate(-42deg);
  -webkit-transform-origin: 90% 90%;
  transform-origin: 90% 90%;
}

.siteHeader .HeaderMain .navbar .navbar-toggler .middle-bar {
  opacity: 0;
}

.siteHeader .HeaderMain .navbar .navbar-toggler .bottom-bar {
  -webkit-transform: translate3d(0, 0, 0) rotate(42deg);
  transform: translate3d(0, 0, 0) rotate(42deg);
  -webkit-transform-origin: 90% 10%;
  transform-origin: 90% 10%;
}

.siteHeader .HeaderMain .navbar .navbar-toggler.collapsed .top-bar {
  -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
  transform: translate3d(0, 0, 0) rotate(0deg);
}

.siteHeader .HeaderMain .navbar .navbar-toggler.collapsed .middle-bar {
  opacity: 1;
}

.siteHeader .HeaderMain .navbar .navbar-toggler.collapsed .bottom-bar {
  -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
  transform: translate3d(0, 0, 0) rotate(0deg);
}

.siteHeader .HeaderMain .navbar .navbar-collapse {
  position: relative;
}

@media (max-width: 991px) {
  .siteHeader .HeaderMain .navbar .navbar-collapse {
    position: absolute;
    top: 73px;
    left: -100%;
    padding: 0;
    width: 100%;
    text-align: center;
    overflow-y: scroll;
    height: calc(100vh - 73px);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: block;
  }
}

@media (max-width: 991px) {
  .siteHeader .HeaderMain .navbar .navbar-collapse.collapsing {
    height: 100vh;
    margin-right: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: block;
  }
}

@media (max-width: 991px) {
  .siteHeader .HeaderMain .navbar .navbar-collapse.show {
    left: 0;
    background: #fff;
  }
}

.siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  text-transform: capitalize;
  padding: 0 20px;
  line-height: 75px;
  color: #000;
  font-size: 16px;
  font-family: "InfinitiBrand-Bold";
  letter-spacing: 0;
}

@media (max-width: 991px) {
  .siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    text-align: center;
    line-height: 26px;
    color: #000;
    border-bottom: 1px solid #eee;
    padding: 15px 20px;
  }
}

.siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
  border: none;
  position: relative;
  top: 1px;
  margin-left: 8px;
  height: 6px;
  width: 6px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
  transform: translate3d(0, 0, 0) rotate(45deg);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item .nav-link span {
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item .nav-link span::before {
  content: '';
  height: 2px;
  width: 0;
  background-color: #767676;
  position: absolute;
  bottom: -20px;
  display: block !important;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover, .siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:focus {
  background: transparent;
  color: #767676;
}

@media (max-width: 991px) {
  .siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover, .siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:focus {
    background-color: #f1f1f1;
    color: #000;
  }
}

.siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover.dropdown-toggle::after, .siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:focus.dropdown-toggle::after {
  -webkit-transform: translate3d(0, 0, 0) rotate(-135deg);
  transform: translate3d(0, 0, 0) rotate(-135deg);
  top: 5px;
}

@media (max-width: 991px) {
  .siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover.dropdown-toggle::after, .siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:focus.dropdown-toggle::after {
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
    transform: translate3d(0, 0, 0) rotate(45deg);
    top: 1px;
  }
}

.siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover span::before, .siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:focus span::before {
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
  .siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover span::before, .siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:focus span::before {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:focus {
    border-bottom: 1px solid #ccc;
  }
}

@media (min-width: 992px) {
  .siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
}

.siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
  border: 1px solid #f1f1f1;
  border-top: none;
  border-bottom: none;
  top: 96%;
  border-radius: 0;
  padding: 0;
  min-width: 12rem;
  -webkit-box-shadow: 0 0 1px #f1f1f1;
          box-shadow: 0 0 1px #f1f1f1;
}

@media (max-width: 991px) {
  .siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
    margin: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
    left: auto;
    right: 0;
  }
}

.siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li a {
  padding: 15px;
  line-height: 1;
  font-size: 13px;
  letter-spacing: 0;
  color: #000;
  border-bottom: 1px solid #f1f1f1;
}

.siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li a:hover, .siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li a:focus {
  background-color: #f1f1f1;
  color: #000;
}

@media (max-width: 991px) {
  .siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li a {
    text-align: center;
    line-height: 26px;
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    background-color: #f9f9f9;
  }
}

/*******************************************************
Header css ends
*******************************************************/
/*******************************************************
  Footer
*******************************************************/
.siteFooter {
  background-color: #000;
}

.siteFooter .Prefooter {
  padding: 60px 0 40px;
}

.siteFooter .Prefooter .footer-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.siteFooter .Prefooter .footer-img img {
  max-width: 160px;
  padding: 5px 0;
}

@media (max-width: 991px) {
  .siteFooter .Prefooter .footer-img img {
    max-width: 110px;
  }
}

.siteFooter .Prefooter .footer-img h6 {
  width: 170px;
  line-height: 1.1;
  font-size: 17px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 300;
  border-left: 1px solid #fff;
  padding-left: 15px;
  white-space: break-spaces;
}

@media (max-width: 991px) {
  .siteFooter .Prefooter .footer-img h6 {
    width: 126px;
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .siteFooter .Prefooter .prefooter-inner {
    margin: 10px 0;
  }
}

.siteFooter .Prefooter .prefooter-inner p {
  color: #fff;
  margin-bottom: 10px;
  margin-top: 10px;
}

.siteFooter .Prefooter .prefooter-inner h4 {
  color: #fff;
  display: inline-block;
  margin: 0 0 15px;
  font-size: 12px;
  font-family: "InfinitiBrand-Bold";
  padding-bottom: 7px;
  letter-spacing: 0;
  position: relative;
}

.siteFooter .Prefooter .prefooter-inner ul {
  list-style: none;
  margin-top: 0px;
  padding-left: 0;
}

.siteFooter .Prefooter .prefooter-inner li {
  padding: 0px 0 15px;
}

.siteFooter .Prefooter .prefooter-inner a {
  color: #999;
  position: relative;
  font-size: 12px;
  letter-spacing: .3px;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.siteFooter .Prefooter .prefooter-inner a:hover {
  text-decoration: underline;
}

.siteFooter .Prefooter .prefooter-inner .dealer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 991px) {
  .siteFooter .Prefooter .prefooter-inner .dealer-social {
    padding-top: 10px;
  }
}

.siteFooter .Prefooter .prefooter-inner .dealer-social ul {
  padding-left: 0;
  margin-bottom: 0;
}

.siteFooter .Prefooter .prefooter-inner .dealer-social ul li {
  display: inline-block;
  margin-right: 5px;
}

.siteFooter .Prefooter .prefooter-inner .dealer-social ul li a {
  font-size: 12px;
  display: block;
  color: #999;
  border: 1px solid #999;
  padding: 2px;
  text-align: center;
  width: 30px;
  height: 30px;
  padding-top: 5px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.siteFooter .Prefooter .prefooter-inner .dealer-social ul li a:hover {
  color: #fff;
}

.siteFooter .Copyright {
  color: #999;
  padding: 0px 0 20px;
}

.siteFooter .Copyright .Copyright-content {
  border-top: 1px solid #999;
}

@media (max-width: 991px) {
  .siteFooter .Copyright .Copyright-content {
    text-align: center;
  }
}

.siteFooter .Copyright .Copyright-content p {
  margin-bottom: 0;
  margin-top: 20px;
}

.siteFooter .Copyright .Copyright-content p a {
  color: #999;
}

/*******************************************************
  Footer ends
*******************************************************/
/*******************************
    our blog section starts
*******************************/
.blog-section {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.blog-section .blog-grid {
  margin-bottom: 30px;
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-bottom: 4px solid #252525;
  border-radius: 10px;
  padding: 10px;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.blog-section .blog-grid .blog-img {
  position: relative;
}

.blog-section .blog-grid .blog-img .blog-img-inner {
  height: 250px;
  width: 100%;
  position: relative;
  border-radius: 10px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.blog-section .blog-grid .blog-img .blog-img-inner .blog-date {
  position: absolute;
  background-color: #fff;
  font-size: 13px;
  color: #191919;
  top: 0;
  left: 0;
  width: 50px;
  text-align: center;
  border-radius: 4px;
  overflow: hidden;
  z-index: 2;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.blog-section .blog-grid .blog-img .blog-img-inner .blog-date .blog-day {
  display: block;
  padding: 5px;
}

.blog-section .blog-grid .blog-img .blog-img-inner .blog-date .blog-month {
  background-color: #000;
  color: #fff;
  display: block;
  padding: 5px;
}

.blog-section .blog-grid .blog-content {
  position: relative;
  overflow: hidden;
  padding: 15px 15px 5px;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  font-size: 14px;
  line-height: 24px;
  color: #777;
  z-index: 1;
}

.blog-section .blog-grid .blog-content .blog-cat a {
  background-color: #f5f6fe;
  color: #252525;
  padding: 5px 10px;
  display: inline-block;
  border-radius: 30px;
  text-align: right;
  margin-bottom: 15px;
  position: relative;
  padding-right: 15px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.blog-section .blog-grid .blog-content .blog-cat a::before {
  display: block;
  height: 12px;
  content: '';
  position: relative;
  width: 12px;
  float: left;
  background-color: #252525;
  border-radius: 100%;
  margin-right: 8px;
  margin-top: 6px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.blog-section .blog-grid .blog-content h4 {
  margin-top: 0;
  margin-bottom: 0;
  min-height: 65px;
}

.blog-section .blog-grid .blog-content h4 a {
  color: #000;
  overflow: hidden;
  display: block;
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 1.5px;
  font-family: "InfinitiBrand-Regular";
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .blog-section .blog-grid .blog-content h4 a {
    font-size: 15px;
  }
}

.blog-section .blog-grid:hover {
  -webkit-transform: translate3d(0, 0, 0) translateY(-5px);
  transform: translate3d(0, 0, 0) translateY(-5px);
  -webkit-box-shadow: 0 20px 20px rgba(0, 0, 0, 0.16);
          box-shadow: 0 20px 20px rgba(0, 0, 0, 0.16);
}

.blog-section .blog-grid:hover .blog-content h4 a {
  color: #666;
}

.blog-section .blog-grid:hover .blog-cat a {
  color: #000;
}

.blog-section .blog-grid:hover .blog-cat a:before {
  background-color: #000;
}

.blog-section .theme-btn {
  min-width: 210px;
}

/*******************************
    our blog section ends
*******************************/
/* -------------------------------- Select2 Design ---------------------*/
.theme-select2-design .select2.select2-container.select2-container--default {
  width: 100% !important;
}

.theme-select2-design .select2-container .select2-selection--single {
  height: 50px;
  border: 0px;
  border-radius: 0px;
  outline: none;
}

.theme-select2-design .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 50px;
  outline: none;
  padding-left: 15px;
  padding-right: 30px;
  color: #444;
  border: 1px solid #d4d7d9;
  border-radius: 5px;
  font-size: 14px;
}

.theme-select2-design .select2-container--default .select2-selection--single .select2-selection__clear {
  font-size: 22px;
  top: -3px;
}

.theme-select2-design .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 50px;
  right: 5px;
}

.theme-select2-design .select2-results__option {
  font-size: 13px;
}

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

.select2-dropdown {
  border: 0px solid #aaa;
  border-radius: 0;
  -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
  z-index: 8;
}

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

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0 10px 10px;
  font-size: 13px !important;
}

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

.theme-find-dealer .filter-field::after {
  content: '';
  position: absolute;
  right: 0;
  display: block;
  width: 1px;
  background: #ccc;
  height: 50px;
  top: 2px;
}

/* -------------------------------- Select2 Design ---------------------*/
/*******************************************************
  main banner section starts
*******************************************************/
.homeBanner {
  padding: 180px 0 50px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

@media (max-width: 767px) {
  .homeBanner {
    padding: 140px 0 70px;
  }
}

.homeBanner .homeBanner-img {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0px;
  right: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .homeBanner .homeBanner-img {
    background-position: 66%;
    background-size: cover;
  }
}

.homeBanner .home-banner-content {
  position: relative;
  z-index: 2;
  margin-bottom: 15px;
}

.homeBanner .home-banner-content h1 {
  color: #000;
  font-size: 50px;
  margin-bottom: 20px;
  position: relative;
  font-family: "InfinitiBrand-Bold";
}

@media (max-width: 767px) {
  .homeBanner .home-banner-content h1 {
    font-size: 24px;
  }
}

.homeBanner .home-banner-content h4 {
  color: #252525;
}

@media (max-width: 767px) {
  .homeBanner .home-banner-content h4 {
    font-size: 18px;
  }
}

.homeBanner .theme-select2-design {
  padding: 18px 10px 10px;
  background: #fff;
  border-radius: 10px;
  margin-top: 30px;
  -webkit-box-shadow: 1px 2px 2px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.homeBanner .theme-select2-design .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;
}

@media (max-width: 767px) {
  .homeBanner .theme-select2-design .searchBox {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.homeBanner .theme-select2-design .searchBox .filter-field {
  width: 20%;
  margin-bottom: 8px;
  padding: 0 5px;
}

@media (min-width: 576px) and (max-width: 767px) {
  .homeBanner .theme-select2-design .searchBox .filter-field {
    width: 50%;
  }
}

@media (max-width: 575px) {
  .homeBanner .theme-select2-design .searchBox .filter-field {
    width: 100%;
  }
}

.homeBanner .theme-select2-design .searchBox .filter-field .theme-btn {
  display: block;
  min-width: unset;
  width: 100%;
  height: 51px;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .homeBanner .theme-select2-design .searchBox .filter-field .theme-btn {
    width: 100%;
  }
}

.homeBanner .main-banner-img {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) and (max-width: 991px) {
  .homeBanner .main-banner-img {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
}

.homeBanner .main-banner-img .main-banner-img-inner {
  max-width: 1110px;
  margin: 30px auto 0;
}

/*******************************************************
  main banner section ends
*******************************************************/
/*******************************************************
  car model section starts
*******************************************************/
.carModel-section {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .carModel-section .slider {
    margin-top: 25px;
  }
}

.carModel-section .slider .slick-slide {
  margin: 0 10px;
}

.carModel-section .slider .slick-slide .carModel-grid {
  border-radius: 10px;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.carModel-section .slider .slick-slide .carModel-grid .carModel-grid-img {
  display: block;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.carModel-section .slider .slick-slide .carModel-grid .carModel-grid-img img {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.carModel-section .slider .slick-slide .carModel-grid .carModel-content {
  margin-top: 20px;
  position: relative;
  padding-bottom: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.carModel-section .slider .slick-slide .carModel-grid .carModel-content::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  display: block !important;
  width: 0;
  background-color: #252525;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.carModel-section .slider .slick-slide .carModel-grid .carModel-content h3 a {
  text-transform: uppercase;
  color: #252525;
}

.carModel-section .slider .slick-slide .carModel-grid .carModel-content .carModel-btn {
  display: block;
  margin-top: 10px;
  color: #252525;
  font-family: "InfinitiBrand-Bold";
  font-size: 15px;
  font-weight: 200;
}

.carModel-section .slider .slick-slide .carModel-grid .carModel-content .carModel-btn i {
  font-size: 12px;
}

.carModel-section .slider .slick-slide .carModel-grid:hover .carModel-content::before {
  width: 100%;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.carModel-section .slider .slick-slide .carModel-grid:hover .carModel-content h3 a {
  color: #252525;
}

.carModel-section .slider .slick-slide .carModel-grid:hover .carModel-btn {
  color: #252525;
}

.carModel-section .slider .slick-slide .carModel-grid:hover .carModel-grid-img img {
  -webkit-transform: translate3d(0, 0, 0) scale(1.1);
  transform: translate3d(0, 0, 0) scale(1.1);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.carModel-section .slider .slick-prev, .carModel-section .slider .slick-next {
  height: 50px;
  width: 50px;
  padding-bottom: 2px;
  background-color: #fff;
  border-radius: 30px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  opacity: 1;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.carModel-section .slider .slick-prev::before, .carModel-section .slider .slick-next::before {
  font-family: fontawesome;
  content: "\f105";
  color: #000;
  font-size: 35px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.carModel-section .slider .slick-prev {
  left: -13px;
  padding-right: 2px;
}

.carModel-section .slider .slick-prev::before {
  content: "\f104";
}

.carModel-section .slider .slick-next {
  right: -13px;
  padding-left: 2px;
}

.carModel-section .slider .slick-next::before {
  content: "\f105";
}

.carModel-section .theme-btn-inverse {
  min-width: 240px;
}

/*******************************************************
  car model section ends
*******************************************************/
/*******************************************************
  Our services section starts
*******************************************************/
.our-services-section {
  position: relative;
  overflow: hidden;
}

.our-services-section .service-grid {
  display: block;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.our-services-section .service-grid .service-grid-bg {
  height: 300px;
  border: 2px solid #fff;
  background-size: cover;
  background-position: center center;
  position: relative;
  padding: 20px;
  background-repeat: no-repeat;
  z-index: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.our-services-section .service-grid .service-grid-bg::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(80%, #000), to(transparent));
  background: linear-gradient(to top, #000 80%, transparent);
  width: 100%;
  height: 55%;
  opacity: .5;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.our-services-section .service-grid .service-grid-info {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-align: left;
}

.our-services-section .service-grid .service-grid-info h4 {
  margin-bottom: 20px;
  font-size: 20px;
  font-family: "InfinitiBrand-Light";
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .our-services-section .service-grid .service-grid-info h4 {
    font-size: 18px;
  }
}

.our-services-section .service-grid .service-grid-info p {
  margin-bottom: 25px;
  font-size: 13px;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.our-services-section .service-grid .service-grid-info i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.our-services-section .service-grid:hover .service-grid-bg:before {
  height: 100%;
}

.our-services-section .service-grid:hover .service-grid-info p i {
  letter-spacing: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/*******************************************************
  Our services section ends
*******************************************************/
/*******************************************************
  about us section starts
*******************************************************/
.about-us-section {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.about-us-section::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 25%;
  border-top: 1px solid #eee;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(199, 199, 199, 0.19)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, rgba(199, 199, 199, 0.19) 0, rgba(255, 255, 255, 0));
}

.about-us-section:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25%;
  border-bottom: 1px solid #eee;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgba(199, 199, 199, 0.19)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, rgba(199, 199, 199, 0.19) 0, rgba(255, 255, 255, 0));
  z-index: -1;
}

.about-us-section .themeHeading p {
  font-family: "InfinitiBrand-Regular";
  font-size: 13px;
}

/*******************************************************
  about us section ends
*******************************************************/
/*******************************************************
  map view section starts
*******************************************************/
.mapView-section {
  padding: 50px 0;
}

.mapView-section .gmap_canvas {
  overflow: hidden;
  padding: 20px 0 20px 20px;
  background: none !important;
}

@media (max-width: 991px) {
  .mapView-section .gmap_canvas {
    padding-left: 0;
  }
}

.mapView-section .gmap_canvas iframe {
  height: 510px;
  width: 100%;
}

.mapView-section .contactDealer {
  padding: 40px 20px 20px 0;
}

@media (max-width: 991px) {
  .mapView-section .contactDealer {
    padding-right: 0;
  }
}

.mapView-section .contactDealer h4 {
  position: relative;
  text-transform: uppercase;
  font-size: 22px;
  padding: 0 10px;
  margin-bottom: 30px;
}

.mapView-section .contactDealer h4::before {
  position: absolute;
  content: '';
  bottom: -10px;
  left: 10px;
  height: 3px;
  width: 100px;
  background: #252525;
  border-radius: 2px;
}

.mapView-section .contactDealer form .form-control, .mapView-section .contactDealer form textarea {
  border: 0;
  border-bottom: 1px solid;
  border-radius: 0;
  background-color: #f9f9f9;
}

.mapView-section .contactDealer form .form-control:focus, .mapView-section .contactDealer form textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*******************************************************
  map view section ends
*******************************************************/
/*******************************************************
  shop infiniti starts
*******************************************************/
.shop-now-section {
  padding: 130px 0;
  background-size: cover;
  background-position: center center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .shop-now-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: block !important;
    height: 100%;
  }
}

.shop-now-section .themeHeading-inverse h2 {
  font-size: 50px;
  letter-spacing: 3.75px;
  line-height: 1;
}

@media (max-width: 767px) {
  .shop-now-section .themeHeading-inverse h2 {
    font-size: 18px;
  }
}

.shop-now-section .themeHeading-inverse p {
  font-family: "InfinitiBrand-Light";
  font-size: 18px;
  line-height: 30px;
  font-weight: 200;
}

@media (max-width: 767px) {
  .shop-now-section .themeHeading-inverse p {
    font-size: 13px;
  }
}

/*******************************************************
  ashop infiniti ends
*******************************************************/
/*# sourceMappingURL=style.css.map */