@font-face {
  font-family: 'ProximaNova-Regular';
  src: url(../fonts/proxima-fonts/ProximaNova-Regular.ttf);
}

@font-face {
  font-family: 'ProximaNova-Semibold';
  src: url(../fonts/proxima-fonts/ProximaNova-Semibold.ttf);
}

@font-face {
  font-family: 'ProximaNova-Light';
  src: url(../fonts/proxima-fonts/ProximaNova-Light.ttf);
}

@font-face {
  font-family: 'Proxima Nova';
  src: url("../fonts/proxima-fonts/FontsFree-Net-proxima_nova_reg-webfont.ttf");
}

@font-face {
  font-family: "Proxima Nova Condenced";
  src: url("../fonts/proxima-fonts/FontsFree-Net-Proxima-Nova-ExCn-Reg.otf");
}

.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: "Proxima Nova";
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.28571428571429;
  -webkit-text-size-adjust: none;
  color: #444;
  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-weight: bold;
}

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 15px;
  min-width: 155px;
  background-color: #9e1b32;
  color: #fff;
  border: 1px solid #9e1b32 !important;
  border-radius: 0px;
  text-transform: uppercase;
  text-align: center;
  z-index: 0;
  font-size: 12px;
  font-family: "ProximaNova-Semibold";
  overflow: hidden;
  position: relative;
  padding-left: 50px;
  letter-spacing: .12rem;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.theme-btn span, .theme-btn-inverse span {
  position: relative;
  display: inline-block;
  top: 0px;
}

.theme-btn i, .theme-btn-inverse i {
  position: absolute;
  font-size: 18px;
  left: 20px;
  top: 11px;
}

.theme-btn:before, .theme-btn-inverse:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: translate3d(0, 0, 0) scale(0);
  transform: translate3d(0, 0, 0) scale(0);
  background-color: #fff;
  border-color: #fff;
  border-radius: 4;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

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

.theme-btn:hover::before, .theme-btn-inverse:hover::before {
  -webkit-transform: translate3d(0, 0, 0) scale(10);
  transform: translate3d(0, 0, 0) scale(10);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

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

.theme-btn-inverse:before {
  background-color: #9e1b32;
  border-color: #9e1b32;
}

.theme-btn-inverse:hover {
  border: 1px solid #9e1b32 !important;
  color: #fff;
}

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

.themeHeading h2, .themeHeading-inverse h2 {
  color: #000;
  font-size: 24px;
  line-height: 26px;
  position: relative;
  font-weight: 500;
  font-family: "ProximaNova-Semibold";
  letter-spacing: 0.52rem;
  margin-bottom: 25px;
}

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

.themeHeading h6, .themeHeading-inverse h6 {
  color: #9e1b32;
  margin: 10px 0 20px;
  font-weight: 200;
  font-size: 18px;
}

.themeHeading p, .themeHeading-inverse p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 15px;
}

.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: #000;
}

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

.siteHeader .site-top-bar .d-flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (min-width: 768px) and (max-width: 991px) {
  .siteHeader .site-top-bar .d-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.siteHeader .site-top-bar p {
  margin-right: 12px;
}

.siteHeader .site-top-bar p a {
  color: #fff;
  font-size: 11px;
}

.siteHeader .site-top-bar .mail-head {
  border: 0;
}

.siteHeader .site-top-bar a {
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
}

.siteHeader .site-top-bar a i {
  color: #ccc;
}

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

.siteHeader .HeaderMain.site-header-active {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: #fafafa;
  -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: 90px;
  padding: 5px 0;
}

@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: #9e1b32;
  font-weight: 300;
  padding-left: 15px;
  border-left: 1px solid #000;
  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: #9e1b32;
  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: rotate(0);
  transform: rotate(0);
}

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

@media (max-width: 991px) {
  .siteHeader .HeaderMain .navbar .navbar-collapse {
    position: absolute;
    top: 64px;
    left: -100%;
    padding: 0;
    width: 100%;
    text-align: center;
    overflow-y: scroll;
    height: calc(100vh - 64px);
    -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: uppercase;
  color: #000;
  padding: 0 10px;
  font-size: 11px;
  line-height: 70px;
  font-weight: 400;
  letter-spacing: .15em;
  font-family: "ProximaNova-Semibold";
  color: #000;
}

@media (max-width: 991px) {
  .siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    text-align: center;
    font-size: 14px;
    line-height: 26px;
    color: #000;
    letter-spacing: .15em;
    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:hover, .siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:focus {
  background: #f1f1f1;
  color: #000;
}

@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;
  }
}

@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 3px #f1f1f1;
          box-shadow: 0 0 3px #f1f1f1;
}

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

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

.siteHeader .HeaderMain .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li a {
  padding: 15px;
  line-height: 1;
  font-size: 12px;
  text-transform: uppercase;
  color: #000;
  font-family: "Proxima Nova";
  font-weight: 400;
  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;
    color: #333;
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    background-color: #f9f9f9;
  }
}

/*******************************************************
Header css ends
*******************************************************/
/*******************************************************
  Footer
*******************************************************/
.site-footer {
  position: relative;
  padding-bottom: 30px;
  z-index: 1;
  background-color: #000;
}

.site-footer::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/footer-bg.svg");
  background-position: center;
  background-size: contain;
  opacity: .05;
  z-index: -1;
}

.site-footer .prefooter {
  padding: 60px 0 15px;
}

@media (max-width: 1199px) {
  .site-footer .prefooter .prefooter-inner {
    margin: 10px 0;
  }
}

.site-footer .prefooter .prefooter-inner .navbar-brand {
  display: block;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .site-footer .prefooter .prefooter-inner .navbar-brand {
    text-align: center;
  }
}

.site-footer .prefooter .prefooter-inner .navbar-brand img {
  max-width: 150px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .site-footer .prefooter .prefooter-inner .navbar-brand img {
    margin: 0 auto;
  }
}

.site-footer .prefooter .prefooter-inner .social-links {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  margin-top: 30px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 1199px) {
  .site-footer .prefooter .prefooter-inner .social-links {
    margin-top: 20px;
    padding-bottom: 10px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .site-footer .prefooter .prefooter-inner .social-links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.site-footer .prefooter .prefooter-inner .social-links li {
  padding: 0;
}

.site-footer .prefooter .prefooter-inner .social-links li a {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  height: 35px;
  width: 35px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
  margin-right: 10px;
  padding-left: 1px;
}

.site-footer .prefooter .prefooter-inner .social-links li a.twitter {
  background-color: #00ACEE;
}

.site-footer .prefooter .prefooter-inner .social-links li a.facebook {
  background-color: #3B5998;
}

.site-footer .prefooter .prefooter-inner .social-links li a.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.site-footer .prefooter .prefooter-inner .social-links li a.pinterest {
  background-color: #E60023;
}

.site-footer .prefooter .prefooter-inner .social-links li a:before {
  display: none;
}

.site-footer .prefooter .prefooter-inner .social-links li a:hover {
  color: #fff;
}

.site-footer .prefooter .prefooter-inner h4 {
  color: #fff;
  display: inline-block;
  margin: 0 0 15px;
  font-size: 13px;
  font-weight: 700;
  position: relative;
}

.site-footer .prefooter .prefooter-inner ul {
  color: #9e1b32;
  padding-left: 0px;
  list-style: none;
}

.site-footer .prefooter .prefooter-inner ul li {
  padding: 12px 5px 0px;
}

.site-footer .prefooter .prefooter-inner ul a {
  color: #fff;
  font-size: 10px;
  font-family: "ProximaNova-Semibold";
  letter-spacing: .165rem;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.site-footer .prefooter .prefooter-inner ul a:hover {
  border-bottom: 1px solid #9e1b32;
}

@media (min-width: 768px) and (max-width: 991px) {
  .site-footer .prefooter .col-12.col-sm-12.col-md-12.col-lg-4 .prefooter-inner:first-child {
    text-align: center;
  }
}

.site-footer .copyright-footer .copyright-footer-content {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  margin-top: 30px;
}

.site-footer .copyright-footer .copyright-footer-content .copyright-footer-content-inner p {
  color: #fff;
  margin-bottom: 0;
  font-size: 11px;
  text-transform: capitalize;
  letter-spacing: .8px;
}

.site-footer .copyright-footer .copyright-footer-content .copyright-footer-content-inner p a {
  color: #9e1b32;
}

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

.blogsSection .themeHeading .theme-sep {
  margin: 15px auto;
}

.blogsSection .homeBlogWrap {
  position: relative;
  overflow: hidden;
  border: 5px solid #f9f9f9;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 30px;
  background: #f9f9f9;
}

.blogsSection .homeBlogWrap .homeBlogWrap_img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blogsSection .homeBlogWrap .homeBlogWrap_img img {
  width: 100%;
  height: 390px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  border-radius: 5px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

@media (max-width: 767px) {
  .blogsSection .homeBlogWrap .homeBlogWrap_img img {
    height: 40vh;
  }
}

.blogsSection .homeBlogWrap .homeBlogWrap_img .blog-cat {
  position: absolute;
  top: 15px;
  left: 15px;
  display: inline-block;
  padding: 0px 15px;
  text-transform: capitalize;
  font-size: 12px;
  border-radius: 30px;
  background: #9e1b32;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 2;
}

.blogsSection .homeBlogWrap .homeBlogWrap_img .blog-cat a {
  color: #fff;
  display: inline-block;
  padding: 5px 10px;
}

.blogsSection .homeBlogWrap .blog-grid-title {
  color: #000;
  position: absolute;
  bottom: 0;
  padding: 25px 10px;
  background: #f9f9f9;
  width: 100%;
  left: 0;
}

.blogsSection .homeBlogWrap .blog-grid-title .blog-date {
  margin-bottom: 5px;
  color: #9e1b32;
  font-family: "ProximaNova-Semibold";
}

.blogsSection .homeBlogWrap .blog-grid-title h4 a {
  font-size: 18px;
  line-height: 1.4;
  color: #000;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .blogsSection .homeBlogWrap .blog-grid-title h4 a {
    font-size: 16px;
  }
}

.blogsSection .homeBlogWrap:hover .blog-grid-title h4 a {
  color: #9e1b32;
}

@media (max-width: 991px) {
  .blogsSection .home-news-grid {
    margin: 0px auto 0;
  }
}

.blogsSection .home-news-grid .blog-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  overflow: hidden;
  background: #f9f9f9;
  padding: 10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blogsSection .home-news-grid .blog-grid .blog-grid-img {
  position: relative;
  width: 180px;
  height: 110px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .blogsSection .home-news-grid .blog-grid .blog-grid-img {
    width: 135px;
  }
}

.blogsSection .home-news-grid .blog-grid .blog-grid-img .blog-side-cat {
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 11px;
  border-radius: 30px;
  background-color: #9e1b32;
  color: #fff;
  padding: 7px 15px 6px;
  text-transform: capitalize;
  z-index: 2;
  line-height: 1;
}

.blogsSection .home-news-grid .blog-grid .blog-grid-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  border-radius: 5px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.blogsSection .home-news-grid .blog-grid .blog-grid-side-title {
  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;
  padding: 0 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.blogsSection .home-news-grid .blog-grid .blog-grid-side-title a h6 {
  font-size: 14px;
  color: #191a1f;
  line-height: 1.3;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .blogsSection .home-news-grid .blog-grid .blog-grid-side-title a h6 {
    font-size: 12px;
  }
}

.blogsSection .home-news-grid .blog-grid .blog-grid-side-title:hover a h6 {
  color: #9e1b32;
}

/*******************************
    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__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: 150px 0 380px;
  position: relative;
  z-index: 2;
}

.homeBanner::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: block !important;
  background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .homeBanner::after {
    background: rgba(0, 0, 0, 0.4);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .homeBanner {
    padding: 150px 0 135px;
  }
}

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

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

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

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

.homeBanner .home-banner-content h1 {
  color: #fff;
  font-size: 50px;
  margin-bottom: 15px;
  position: relative;
}

.homeBanner .home-banner-content h1::after {
  content: '';
  position: absolute;
  background: #fff;
  top: -20px;
  left: 0;
  right: 0;
  height: 3px;
  width: 150px;
  margin: 0 auto !important;
  display: block !important;
}

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

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

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

.homeBanner .banner-grids-row {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.homeBanner .banner-grids-row .banner-grids {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 4px;
  margin: 20px auto 0;
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 10px 15px;
  border-left: 2px solid #fff;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  max-width: 290px;
}

.homeBanner .banner-grids-row .banner-grids:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #9e1b32;
  display: block !important;
  z-index: -1;
  opacity: .5;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.homeBanner .banner-grids-row .banner-grids a {
  width: 100%;
}

.homeBanner .banner-grids-row .banner-grids a .banner-grid-img {
  height: 100%;
  width: 50px;
  margin-right: 10px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.homeBanner .banner-grids-row .banner-grids a .banner-grid-img img {
  height: 45px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.homeBanner .banner-grids-row .banner-grids a h5 {
  color: #fff;
  font-size: 15px;
  display: inline-block;
}

@media (max-width: 767px) {
  .homeBanner .banner-grids-row .banner-grids a h5 {
    font-size: 13px;
  }
}

.homeBanner .banner-grids-row .banner-grids:hover:before {
  width: 100%;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

/*******************************************************
  main banner section ends
*******************************************************/
/*******************************************************
  site dealer form section starts
*******************************************************/
.Site-dealerForm-Section {
  position: relative;
  top: -42px;
  z-index: 2;
}

.Site-dealerForm-Section .theme-select2-design {
  padding: 15px 20px;
  background: #fff;
  border-radius: 10px;
  -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);
}

.Site-dealerForm-Section .theme-select2-design h4 {
  color: #000;
  margin-bottom: 20px;
  position: relative;
}

@media (max-width: 767px) {
  .Site-dealerForm-Section .theme-select2-design h4 {
    font-size: 20px;
  }
}

.Site-dealerForm-Section .theme-select2-design h4::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 60px;
  left: 0;
  bottom: -10px;
  background: #9e1b32;
  display: block !important;
}

.Site-dealerForm-Section .theme-select2-design .filter-field {
  margin: 5px 0;
}

.Site-dealerForm-Section .theme-select2-design .select2-container--default .select2-selection--single .select2-selection__rendered {
  border-radius: 0px;
  background: rgba(245, 245, 245, 0.2);
  border: 1px solid whitesmoke;
  height: 50px;
}

.Site-dealerForm-Section .theme-select2-design .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 5px;
}

.Site-dealerForm-Section .theme-select2-design .theme-btn {
  display: block;
  min-width: unset;
  width: 100%;
  height: 48px;
}

.Site-dealerForm-Section .theme-select2-design .theme-btn i {
  top: 14px;
}

.Site-dealerForm-Section .theme-select2-design .theme-btn span {
  top: 2px;
}

.Site-dealerForm-Section .theme-select2-design .theme-btn:before {
  width: 3rem;
}

/*******************************************************
  site dealer form section ends
*******************************************************/
/*******************************************************
  about detail section starts
*******************************************************/
.about-detail-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}

.about-detail-section::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 60%;
  display: block !important;
  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));
}

@media (max-width: 767px) {
  .about-detail-section .about-detail-content {
    margin-top: 30px;
  }
}

.about-detail-section .about-detail-content .themeHeading {
  padding-left: 100px;
}

@media (max-width: 767px) {
  .about-detail-section .about-detail-content .themeHeading {
    padding-left: 0;
  }
}

.about-detail-section .about-detail-content .themeHeading h2 {
  margin-bottom: 10px;
}

.about-detail-section .about-detail-content .themeHeading .theme-sep {
  height: 2px;
  width: 200px;
  position: relative;
  background: #ccc;
  margin: 15px 0;
}

.about-detail-section .about-detail-content .themeHeading .theme-sep:after {
  position: absolute;
  top: -8px;
  left: -2px;
  display: block;
  width: 16px;
  height: 16px;
  content: '';
  border: 2px solid #ccc;
  border-radius: 50%;
  background-clip: padding-box;
  background: #fff;
}

/*******************************************************
  about detail section ends
*******************************************************/
/*******************************************************
  most searched car section starts
*******************************************************/
.most-searched-car-section {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.most-searched-car-section .themeHeading .theme-sep {
  margin: 15px auto;
}

.most-searched-car-section .most-searched-car-models .nav-tabs {
  border-radius: 0;
  display: inline-block;
  border: 0;
  margin-top: 20px;
  margin-bottom: 15px;
}

.most-searched-car-section .most-searched-car-models .nav-tabs .nav-item {
  display: inline-block;
  margin-bottom: 10px;
  border-radius: 30px;
  margin-left: 5px;
  margin-right: 5px;
}

.most-searched-car-section .most-searched-car-models .nav-tabs .nav-item .nav-link {
  padding: 6px 15px;
  text-transform: capitalize;
  background: #fff;
  border: 1px solid transparent;
  width: 100%;
  text-align: center;
  color: #000;
  font-size: 14px;
  position: relative;
  z-index: 1;
  border-radius: 30px;
  letter-spacing: 1px;
}

@media (max-width: 767px) {
  .most-searched-car-section .most-searched-car-models .nav-tabs .nav-item .nav-link {
    font-size: 13px;
  }
}

.most-searched-car-section .most-searched-car-models .nav-tabs .nav-item .nav-link.active {
  background: #9e1b32;
  position: relative;
  border: 1px solid #9e1b32;
  color: #fff;
}

.most-searched-car-section .most-searched-car-models .tab-content .vehicleGrid {
  text-align: center;
  margin-top: 20px;
}

.most-searched-car-section .most-searched-car-models .tab-content .vehicleGrid .vehicleGrid-Img {
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.most-searched-car-section .most-searched-car-models .tab-content .vehicleGrid .vehicleGrid-Img img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translate3d(0, 0, 0) scale(0.9);
  transform: translate3d(0, 0, 0) scale(0.9);
}

.most-searched-car-section .most-searched-car-models .tab-content .vehicleGrid .vehicleGrid-content {
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.most-searched-car-section .most-searched-car-models .tab-content .vehicleGrid .vehicleGrid-content h4 {
  color: #000;
  font-size: 20px;
  margin-top: 15px;
}

@media (max-width: 767px) {
  .most-searched-car-section .most-searched-car-models .tab-content .vehicleGrid .vehicleGrid-content h4 {
    font-size: 15px;
  }
}

.most-searched-car-section .most-searched-car-models .tab-content .vehicleGrid .vehicleGrid-content a {
  display: inline-block;
  color: #9e1b32;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .most-searched-car-section .most-searched-car-models .tab-content .vehicleGrid .vehicleGrid-content a {
    font-size: 12px;
  }
}

.most-searched-car-section .most-searched-car-models .tab-content .vehicleGrid:hover .vehicleGrid-Img img {
  -webkit-transform: translate3d(0, 0, 0) scale(1.1);
  transform: translate3d(0, 0, 0) scale(1.1);
}

.most-searched-car-section .most-searched-car-models .tab-content .vehicleGrid:hover h4 {
  color: #9e1b32;
}

.most-searched-car-section .most-searched-car-models .tab-content .vehicleGrid:hover a {
  color: #000;
  letter-spacing: 2px;
}

/*******************************************************
  most searched car section ends
*******************************************************/
/*******************************************************
    Home Services section starts 
*******************************************************/
.home-service-section {
  padding: 70px 0;
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
}

.home-service-section::before {
  content: '';
  background: #f9f9f9;
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .4;
}

.home-service-section .service-grid {
  position: relative;
  -webkit-box-shadow: 0 5px 17px 0 rgba(1, 51, 32, 0.1);
          box-shadow: 0 5px 17px 0 rgba(1, 51, 32, 0.1);
  padding: 40px 30px;
  border-radius: 10px;
  background-color: #fff;
  margin-top: 20px;
  border-bottom: 2px solid #9e1b32;
  background-image: url(../images/shape-7.svg);
  background-size: 180px;
  background-position: top right;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.home-service-section .service-grid .service-grid-img {
  max-width: 75px;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.home-service-section .service-grid h4 {
  font-size: 14px;
  margin-top: 25px;
  line-height: 18px;
  position: relative;
  color: #9e1b32;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

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

.home-service-section .service-grid p {
  min-height: 60px;
  margin-top: 20px;
}

.home-service-section .service-grid .service-grid-btn {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .1em;
  font-size: 12px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.home-service-section .service-grid .service-grid-btn i {
  color: #9e1b32;
  font-size: 18px;
  position: relative;
  top: 2px;
}

.home-service-section .service-grid .service-grid-btn span {
  display: inline-block;
  position: relative;
  color: #000;
  padding: 5px 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.home-service-section .service-grid .service-grid-btn span:before {
  position: absolute;
  content: '';
  display: block !important;
  background-color: #9e1b32;
  height: 1px;
  bottom: 0px;
  width: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.home-service-section .service-grid:hover .service-grid-img {
  -webkit-transform: translate3d(0, 0, 0) scale(1.1);
  transform: translate3d(0, 0, 0) scale(1.1);
}

.home-service-section .service-grid:hover h4 {
  color: #000;
}

.home-service-section .service-grid:hover .service-grid-btn span {
  color: #9e1b32;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.home-service-section .service-grid:hover .service-grid-btn span::before {
  width: 100%;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

/*******************************************************
    Home Services section ends 
*******************************************************/
/*******************************************************
    map  section starts 
*******************************************************/
.mapSection .mapSectionInner {
  height: 400px;
  position: relative;
}

.mapSection .mapSectionInner iframe {
  width: 100%;
  height: 100%;
}

/*******************************************************
    map  section ends 
*******************************************************/
/*******************************************************
    offer cars model section starts   
*******************************************************/
.offer-cars-model-section {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  background-color: #fdfdfd;
}

.about-dealer-grid {
  position: relative;
}

.about-dealer-grid .about-dealer-img {
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.about-dealer-grid .about-dealer-img a {
  display: block;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.about-dealer-grid .about-dealer-img a:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block !important;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.about-dealer-grid .about-dealer-img:hover a:after {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.about-dealer-grid .about-dealer-grid-content {
  position: relative;
  color: #000;
}

.about-dealer-grid .about-dealer-grid-content p {
  font-size: 12px;
  letter-spacing: 1px;
}

.about-dealer-grid .about-dealer-grid-content h6 {
  color: #000;
  font-size: 15px;
}

.about-dealer-grid .about-dealer-grid-content .dealer-view-btn {
  display: inline-block;
  color: #000;
  margin-top: 10px;
  font-weight: 600;
  font-size: 12px;
  padding-bottom: 3px;
  letter-spacing: .1em;
}

.about-dealer-grid .about-dealer-grid-content .dealer-view-btn span {
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.about-dealer-grid .about-dealer-grid-content .dealer-view-btn i {
  color: #9e1b32;
  font-size: 20px;
  position: relative;
  top: 3px;
}

.about-dealer-grid .about-dealer-grid-content .dealer-view-btn:hover span {
  color: #9e1b32;
  border-bottom: 1px solid #9e1b32;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

/*******************************************************
    offer cars model section ends   
*******************************************************/
/*# sourceMappingURL=style.css.map */