
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&amp;display=swap");
/*======================
   02. Basic css
========================*/
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0; }

body {
  line-height: 1.5;
  font-family: "poppins", sans-serif;
  background-color: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 400; }
  @media (max-width: 1199.98px) {
    body {
      font-size: 15px; } }
  @media (max-width: 575.98px) {
    body {
      font-size: 15px;
      line-height: 1.6; } }

ol,
ul {
  list-style: none; }

a {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s; }

a:hover {
  text-decoration: none; }

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none; }


p, span {
  font-family: "Open Sans", sans-serif;
  color: #333b55; }

.font_medium {
  font-weight: 500; }

.font_bold {
  font-weight: bold; }

.font_black {
  font-weight: 900; }

.black {
  color: #000; }

.button {
  padding: 12px 20px;
  color: #121212 !important;
  background-color: #fb7c63;
  border-radius: 3.5rem;
  font-size: 14px !important;
  border: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-transform: capitalize !important;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 1; }
  .button:before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    background-color: #333b55;
    -webkit-transition: .3s;
    transition: .3s;
    z-index: -1; }
  .button:hover:before {
    width: 100%;
    right: auto;
    left: 0; }

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1200px; } }

.section-title {
  margin-bottom: 50px;
  text-align: center; }
  .section-title-white{
    margin-bottom: 50px;
    text-align: center; }
  @media (max-width: 575.98px) {
    .section-title {
      margin-bottom: 10px; }
      .section-title-white {
        margin-bottom: 10px; } 
    }
  .section-title h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 10px;
    text-transform: none;
    color: #500C1A;
    letter-spacing: 2px; }
    .section-title-white h2 {
      font-size: 38px;
      font-weight: 700;
      line-height: 1.5;
      margin-bottom: 10px;
      text-transform: none;
      color: #ffffff;
      letter-spacing: 2px; }
    @media (max-width: 1399.98px) {
      .section-title h2 {
        font-size: 36px; }
        .section-title-white h2 {
          font-size: 36px; }
      }
    @media (max-width: 991px) {
      .section-title h2 {
        font-size: 28px; }
        .section-title-white h2 {
          font-size: 28px; }
      }
    @media (max-width: 575.98px) {
      .section-title h2 {
        font-size: 26px;
        margin-bottom: 10px; }
        .section-title-white h2 {
          font-size: 26px;
          margin-bottom: 10px; }
      }
  .section-title p {
    font-size: 16px;
    color: #333b55;
    margin: 0 auto; }
    .section-title-white p {
      font-size: 16px;
      color: #fffffff2;
      margin: 0 auto; }
    @media (max-width: 575.98px) {
      .section-title p {
        font-size: 14px; }
        .section-title-white p {
          font-size: 14px; }
      }

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 99999; }

header {
  position: fixed;
  width: 100%;
  height: 110px;
  background-color: #ffffff;
  z-index: 1024;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-image-slice: 1;
  border-top: 4px solid #440c1a;
}
  header.nav-active {
    background-color: #fff;
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.07);
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
  @media (max-width: 575.98px) {
    header {
      height: 85px; } }
  @media (max-width: 991px) {
    header .menu-wrap {
      position: fixed;
      top: 0;
      left: -100%;
      background-color: #fff;
      z-index: -1;
      height: 100%;
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding-top: 80px;
      -webkit-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; } }
  @media (max-width: 575.98px) {
    header .menu-wrap {
      padding-top: 90px; } }
  header .menu-wrap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right; }
    @media (max-width: 991px) {
      header .menu-wrap ul {
        display: block;
        width: 100%;
        overflow: auto;
      background-color:#fffae9;
      } }
    header .menu-wrap ul li {
      display: inline-block;
      margin: 0; }
      header .menu-wrap ul li .fa-search {
        margin-right: 40px;
        color: #333b55;
        cursor: pointer;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
        @media (max-width: 1199.98px) {
          header .menu-wrap ul li .fa-search {
            margin-right: 15px; } }
        @media (max-width: 991px) {
          header .menu-wrap ul li .fa-search {
            margin-left: calc((100% - 720px) / 2 + 15px); } }
        @media (max-width: 767.98px) {
          header .menu-wrap ul li .fa-search {
            margin-left: calc((100% - 540px) / 2 + 15px); } }
        @media (max-width: 575.98px) {
          header .menu-wrap ul li .fa-search {
            margin-left: 15px;
            margin-right: 15px; } }
        header .menu-wrap ul li .fa-search:hover {
          color: #fb7c63;
          -webkit-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s; }
      @media (max-width: 991px) {
        header .menu-wrap ul li.search-open {
          margin-bottom: 30px !important; } }
      @media (max-width: 991px) {
        header .menu-wrap ul li {
          display: block;
          text-align: left;
          padding: 10px 0;
          border-bottom: 1px solid #ddd; }
          }
      header .menu-wrap ul li a {
        color: #333b55;
        margin-right: 40px;
        font-size: 15px;
        font-weight: 500;
        text-transform: capitalize;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
        header .menu-wrap ul li a.nav-link {
          padding: 0; }
        @media (max-width: 991px) {
          header .menu-wrap ul li a {
            margin: 0;
            margin-left: calc((100% - 720px) / 2 + 15px); } }
        @media (max-width: 767.98px) {
          header .menu-wrap ul li a {
            margin-left: calc((100% - 540px) / 2 + 15px); } }
        @media (max-width: 575.98px) {
          header .menu-wrap ul li a {
            margin-left: 15px;
            margin-right: 15px; } }
        @media (max-width: 1199.98px) {
          header .menu-wrap ul li a {
            margin-right: 25px;
            font-size: 14px; } }
        header .menu-wrap ul li a.active {
          color: #fb7c63; }
        header .menu-wrap ul li a:hover {
          color: #fb7c63; }
      header .menu-wrap ul li.header-btn-box {
        border: none; }
        @media (max-width: 991px) {
          header .menu-wrap ul li.header-btn-box .header-btn {
            margin-left: calc((100% - 720px) / 2 + 15px); } }
        @media (max-width: 767.98px) {
          header .menu-wrap ul li.header-btn-box .header-btn {
            margin-left: calc((100% - 540px) / 2 + 15px); } }
        @media (max-width: 575.98px) {
          header .menu-wrap ul li.header-btn-box .header-btn {
            margin-left: 15px;
            margin-right: 15px; } }
  header .show-menu {
    left: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
  header .logo img {
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
    @media (max-width: 575.98px) {
      header .logo img {
        width: 210px; } }
  header .humberger-menu {
    display: none;
    cursor: pointer; }
    @media (max-width: 991px) {
      header .humberger-menu {
        display: block;
        position: absolute;
        top: -15px;
        right: 16px; } }
    header .humberger-menu span {
      background: #333b55;
      border-radius: 5px;
      width: 30px;
      height: 2px;
      display: block;
      margin: 7px 0;
      -webkit-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }
      @media (max-width: 575.98px) {
        header .humberger-menu span {
          width: 25px; } }
    header .humberger-menu .frist-line.current {
      -webkit-transform: translateY(9px) rotate(135deg);
      transform: translateY(9px) rotate(135deg); }
    header .humberger-menu .center-line.current {
      opacity: 0; }
    header .humberger-menu .last-line.current {
      -webkit-transform: translateY(-8px) rotate(-135deg);
      transform: translateY(-8px) rotate(-135deg); }

.home-area {
  padding-top: 200px;
  padding-bottom: 120px;
  background-color: #F0FAFF; }
  @media only screen and (max-width: 1400px) {
    .home-area {
      min-height: 730px; } }
  @media (max-width: 1199.98px) {
    .home-area {
      min-height: 670px; } }
  @media (max-width: 991px) {
    .home-area {
      min-height: 610px; } }
  @media (max-width: 575.98px) {
    .home-area {
      padding-top:100px;
      padding-bottom: 50px; }
.sangam-footer{
      text-align: center;
    }
    
    }
  .home-area .home-text h1 {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    text-transform: none;
  
  }
    @media (max-width: 1399.98px) {
      .home-area .home-text h1 {
        font-size: 45px; } }
    @media (max-width: 1199.98px) {
      .home-area .home-text h1 {
        font-size: 45px; } }
    @media (max-width: 991px) {
      .home-area .home-text h1 {
        font-size: 34px; } }
    @media (max-width: 575.98px) {
      .home-area .home-text h1 {
        font-size: 29px; }
      }
  .home-area .home-text p {
    font-size: 16px;
    line-height: 29px;
    color: #333b55; }
    @media (max-width: 1199.98px) {
      .home-area .home-text p br {
        display: none; } }
    @media (max-width: 991px) {
      .home-area .home-text p {
        font-size: 14px;
        line-height: 1.6; } }

.feature-area {
  padding: 100px 0;
  background: #fff;
}
  @media (max-width: 575.98px) {
    .feature-area {
      padding: 60px 0; } }
  .feature-area .feature-box {
    padding: 40px 14px;
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(51, 59, 85, 0.1);
    box-shadow: 0px 0px 15px 0px rgba(51, 59, 85, 0.1); }
    @media (max-width: 1199.98px) {
      .feature-area .feature-box {
        padding: 20px 14px; } }
    .feature-area .feature-box.active {
      background-color: #fb7c63; }
      .feature-area .feature-box.active h3 {
        color: #fff; }
      .feature-area .feature-box.active p {
        color: #fff; }
    .feature-area .feature-box h3 {
      font-size: 18px;
      font-family: "Open Sans", sans-serif;
      font-weight: 700;
      margin-top: 15px; }
    .feature-area .feature-box p {
      font-size: 16px;
      margin-top: 15px; }
      @media (max-width: 575.98px) {
        .feature-area .feature-box p {
          font-size: 14px; } }

.network-area {
  background-color:#fffae9; }
.payment-area {
    background-color:#fffae9;
    padding:60px 0px;
  }
  .network-area .net-text{
    padding: 40px 60px;
  }
  .network-area .net-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600; }
    @media (max-width: 1199.98px) {
      .network-area .net-text h2 {
        font-size: 28px; } }
    @media (max-width: 991px) {
      .network-area .net-text h2 {
        font-size: 25px; } }
  .network-area .net-text p {
    font-size: 16px; }
    @media (max-width: 575.98px) {
      .network-area .net-text p {
        max-width: 100%;
        font-size: 14px; } }
  .network-area .net-text .net-btn-box {
    display: inline-block; }
    .network-area .net-text .net-btn-box a {
      border-radius: 10px;
      -webkit-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }

.mobileapp_wrapper {
  padding-top: 100px; }
  @media (max-width: 575.98px) {
    .mobileapp_wrapper {
      padding-top: 60px; } }
  .mobileapp_wrapper .mobile-img {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden; }
  .mobileapp_wrapper .mobile_active .owl-dots {
    margin-top: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .mobileapp_wrapper .mobile_active .owl-dots button {
      background: none;
      margin-right: 10px; }
      .mobileapp_wrapper .mobile_active .owl-dots button:last-child {
        margin: 0; }
      .mobileapp_wrapper .mobile_active .owl-dots button.active span {
        width: 20px; }
      .mobileapp_wrapper .mobile_active .owl-dots button span {
        width: 10px;
        background: #fb7c63;
        height: 6px;
        border-radius: 4px;
        display: block;
        -webkit-transition: all 0.4s ease-out 0s;
        transition: all 0.4s ease-out 0s; }

.pricing-area {
  padding: 100px 0;
  background: #ffeac4; }
  @media (max-width: 575.98px) {
    .pricing-area {
      padding: 60px 0; } }
  .pricing-area .price-box {
    padding: 40px 0 50px;
    text-align: center;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(51, 59, 85, 0.1);
    box-shadow: 0px 0px 15px 0px rgba(51, 59, 85, 0.1); }
    .pricing-area .price-box h4 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 20px; }
      @media (max-width: 991px) {
        .pricing-area .price-box h4 {
          font-size: 26px; } }
    .pricing-area .price-box .price-circle-box {
      width: 150px;
      margin: 0 auto;
      position: relative; }
      .pricing-area .price-box .price-circle-box .price-big {
        height: 140px;
        width: 140px;
        line-height: 140px;
        text-align: center;
        border-radius: 50%;
        border: 3px solid #fb7c63;
        z-index: 1;
        background-color: #fff;
        position: relative; }
        .pricing-area .price-box .price-circle-box .price-big P {
          font-size: 36px;
          font-weight: 700;
          font-family: "poppins", sans-serif;
          z-index: 20;
          position: relative; }
          .pricing-area .price-box .price-circle-box .price-big P span {
            font-size: 17px !important; }
        .pricing-area .price-box .price-circle-box .price-big::before {
          position: absolute;
          content: '';
          top: 16px;
          left: 100px;
          height: 53px;
          width: 53px;
          background-color: #fff;
          border-radius: 50%; }
      .pricing-area .price-box .price-circle-box .price-small {
        height: 60px;
        width: 60px;
        line-height: 57px;
        position: absolute;
        right: -15px;
        top: 12px;
        text-align: center;
        border-radius: 50%;
        border: 3px solid #fb7c63;
        font-size: 22px;
        font-weight: 700;
        color: #333b55;
        background-color: #fff; }
        .pricing-area .price-box .price-circle-box .price-small span {
          z-index: 20;
          position: relative; }
    .pricing-area .price-box .price-feature p {
      margin-top: 20px;
      font-size: 16px; }
    .pricing-area .price-box .price-btn {
      padding: 10px 40px;
      background-color: #333b55; }
      .pricing-area .price-box .price-btn:before {
        background-color: #fb7c63; }
    .pricing-area .price-box.box-2 {
      background-color: #fb7c63; }
      .pricing-area .price-box.box-2 h4 {
        color: #fff; }
      .pricing-area .price-box.box-2 .price-small, .pricing-area .price-box.box-2 .price-big {
        border-color: #fff; }
      .pricing-area .price-box.box-2 .price-feature p {
        color: #fff; }
      .pricing-area .price-box.box-2 .price-btn {
        background-color: #fff;
        color: #333b55 !important; }
        .pricing-area .price-box.box-2 .price-btn:before {
          background-color: #333b55; }
        .pricing-area .price-box.box-2 .price-btn:hover {
          color: #fff !important; }

.counter-area {
 width: 100%;
 height: 250px;
  position: relative;
  z-index: 1;
  background-image:url(../img/shillong-2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
  @media (max-width: 575.98px) {
    .counter-area {
      padding: 30px 0 60px; } }
  .counter-area .counter-box {
    padding: 20px;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; 
    border-bottom: 4px solid #cf9e34;
  }
    .counter-area .counter-box .media {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .counter-area .counter-box .media i {
        font-size: 20px;
        color: #333b55; }
      .counter-area .counter-box .media .media-body h3 {
        font-size: 30px;
        font-weight: 600;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
        .counter-area .counter-box .media .media-body h3 span {
          font-family: "poppins", sans-serif; }
      .counter-area .counter-box .media .media-body p {
        font-size: 14px;
        font-weight: 600;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
      .counter-area .counter-box .media .media-body span {
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }

      .counter-area .counter-box:hover .media i {
        color: #fb7c63;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
      .counter-area .counter-box:hover .media-body h3, .counter-area .counter-box:hover .media-body p, .counter-area .counter-box:hover .media-body span {
        color: #fff;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }

.testimonial-area {
  padding-top: 100px; 
  background: #ffffff;
}
  @media (max-width: 575.98px) {
    .testimonial-area {
      padding-top: 60px; } }
  @media (max-width: 575.98px) {
    .testimonial-area .section-title {
      margin-bottom: 40px; } }
  .testimonial-area .owl-carousel .testi-box {
    padding: 50px 20px 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
    position: relative;
    text-align: center; }
    .testimonial-area .owl-carousel .testi-box .img-area {
      position: absolute;
      top: -52px;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%); }
      .testimonial-area .owl-carousel .testi-box .img-area img {
        width: 100px;
        height: 100px;
        -o-object-fit: cover;
           object-fit: cover;
        border: 5px solid #fff;
        border-radius: 50%; }
    .testimonial-area .owl-carousel .testi-box .icon-area i {
      color: #fb7c63; }
    .testimonial-area .owl-carousel .testi-box .name-area h4 {
      font-size: 20px;
      margin-bottom: 5px; }
    .testimonial-area .owl-carousel .testi-box .name-area span {
      color: #fb7c63;
      margin-top: 10px;
      font-size: 16px; }
  .testimonial-area .owl-carousel .owl-stage {
    padding: 52px 0 20px; }
    .testimonial-area .owl-carousel .owl-stage .owl-item {
      border-radius: 10px; }
      .testimonial-area .owl-carousel .owl-stage .owl-item.center {
        -webkit-box-shadow: 0px 3px 22.8px 1.2px rgba(88, 91, 255, 0.1);
        box-shadow: 0px 3px 22.8px 1.2px rgba(88, 91, 255, 0.1);
        border: none;
        background-color: #fb7c63; }
        .testimonial-area .owl-carousel .owl-stage .owl-item.center h4, .testimonial-area .owl-carousel .owl-stage .owl-item.center p, .testimonial-area .owl-carousel .owl-stage .owl-item.center span {
          color: #fff; }
        .testimonial-area .owl-carousel .owl-stage .owl-item.center .icon-area i {
          color: #fff; }

.blog-area {
  padding-top: 60px;
    padding-bottom: 100px;
    overflow: hidden;
  background: #ffffff;
}
.privacy-area {
  padding-top: 200px;
    padding-bottom: 100px;
    overflow: hidden;
  background: #ffffff url(../img/sangam-shaadibg.png);
}
  @media (max-width: 575.98px) {
    .blog-area {
      padding-top: 60px; }
      .privacy-area{
        padding-top: 100px;
      }
    }
  .blog-area .news-box {
    -webkit-box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
   background-color: #ffffff;
  }
    .blog-area .news-box .img-area {
      overflow: hidden; }
      .blog-area .news-box .img-area img {
        width: 100%;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
        .blog-area .news-box .img-area img.main {
          width: 100%; }
    .blog-area .news-box .text-box {
      padding: 12px; }
      .blog-area .news-box .text-box h4 {
        font-size: 16px;
        line-height: 28px;
        color: #121212;
        text-align: center; 
      }
      .blog-area .news-box .text-box.b-1 {
        position: relative; }
        .blog-area .news-box .text-box.b-1 p {
          margin-top: 8px;
    text-align: center;
    color: #cf0e00;
    font-size: 14px;
    font-weight: 700;
        }
        .blog-area .news-box .text-box.b-1::after {
          position: absolute;
          content: "";
          height: 1px;
          width: 100%;
          background-color: #dddddd;
          bottom: 0;
          left: 0; }
      .blog-area .news-box .text-box.b-2 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        .blog-area .news-box .text-box.b-2 .media {
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center; }
          .blog-area .news-box .text-box.b-2 .media .media-body p {
            font-weight: 600;
            font-size: 16px;
            color: #121212;
          }
            .blog-area .news-box .text-box.b-2 .media .media-body p span {
              font-weight: 500; }
            @media (max-width: 1199.98px) {
              .blog-area .news-box .text-box.b-2 .media .media-body p {
                font-size: 12px; } }
        .blog-area .news-box .text-box.b-2 .message-num img {
          height: 15px;
          width: 15px;
          -o-object-fit: cover;
             object-fit: cover; }
    .blog-area .news-box .date {
      position: absolute;
      top: 21px;
      right: 20px;
      padding: 10px 16px;
      background-color: #fb7c63;
      border-top-right-radius: 35px;
      border-bottom-right-radius: 35px;
      -webkit-transform: rotate(90deg);
              transform: rotate(90deg); }
      .blog-area .news-box .date span {
        color: #fff; }
    .blog-area .news-box:hover .img-area img {
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
      -webkit-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }

.faq-area {
  padding-top: 100px; }
  @media (max-width: 575.98px) {
    .faq-area {
      padding-top: 60px; } }
  .faq-area .faq-collapse-area .accordion .question {
    margin-bottom: 30px;
    border: none; }
    .faq-area .faq-collapse-area .accordion .question button {
      border: 1px solid #ddd;
      padding: 10px 35px 10px 20px;
      border-radius: 35px;
      font-size: 18px;
      color: #333b55;
      text-decoration: none;
      position: relative; }
      @media (max-width: 575.98px) {
        .faq-area .faq-collapse-area .accordion .question button {
          padding: 9px 20px;
          font-size: 16px; } }
      .faq-area .faq-collapse-area .accordion .question button.btn:focus {
        -webkit-box-shadow: none;
                box-shadow: none; }
      .faq-area .faq-collapse-area .accordion .question button::before {
        position: absolute;
        content: "\f107";
        right: 20px;
        font-family: "Font Awesome 5 Pro"; }
      .faq-area .faq-collapse-area .accordion .question button[aria-expanded="true"]::before {
        content: "\f106";
        font-family: "Font Awesome 5 Pro"; }
      .faq-area .faq-collapse-area .accordion .question button[aria-expanded="true"] {
        background-color: #fb7c63;
        color: #fff;
        border-color: #fb7c63; }
  .faq-area .popup-area {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 400px;
    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; }
    @media (max-width: 575.98px) {
      .faq-area .popup-area {
        height: 270px; } }

.contact-area {
  padding: 100px 0; }
  @media (max-width: 575.98px) {
    .contact-area {
      padding: 60px 0; } }
  .contact-area .contact-wrap {
    position: relative; }
    @media only screen and (min-width: 1200px) {
      .contact-area .contact-wrap .row {
        padding-right: calc((100% - 1200px) / 2 + 15px); } }
    @media (max-width: 1199.98px) {
      .contact-area .contact-wrap .row {
        padding-right: calc((100% - 960px) / 2 + 15px); } }
    @media (max-width: 991px) {
      .contact-area .contact-wrap .row {
        padding-right: calc((100% - 720px) / 2 + 15px); } }
    @media (max-width: 767.98px) {
      .contact-area .contact-wrap .row {
        padding-right: calc((100% - 540px) / 2 + 15px);
        padding-left: calc((100% - 540px) / 2 + 15px); } }
    @media (max-width: 575.98px) {
      .contact-area .contact-wrap .row {
        padding-right: 15px;
        padding-left: 15px; } }
    .contact-area .contact-wrap .row .iframe-wrap iframe {
      width: 100%;
      border: 0;
      height: 438px; }
      @media (max-width: 767.98px) {
        .contact-area .contact-wrap .row .iframe-wrap iframe {
          height: 300px; } }
    .contact-area .contact-wrap .row form .input_group input, .contact-area .contact-wrap .row form .input_group textarea {
      width: 100%;
      height: 50px;
      padding: 0 20px;
      outline: none;
      color: #333b55;
      border: 1px solid #ddd; }
      .contact-area .contact-wrap .row form .input_group textarea{
          padding-top: 10px;
      }
      .contact-area .contact-wrap .row form .input_group input::-webkit-input-placeholder, .contact-area .contact-wrap .row form .input_group textarea::-webkit-input-placeholder {
        color: #333b55; }
      .contact-area .contact-wrap .row form .input_group input:-ms-input-placeholder, .contact-area .contact-wrap .row form .input_group textarea:-ms-input-placeholder {
        color: #333b55; }
      .contact-area .contact-wrap .row form .input_group input::-ms-input-placeholder, .contact-area .contact-wrap .row form .input_group textarea::-ms-input-placeholder {
        color: #333b55; }
      .contact-area .contact-wrap .row form .input_group input::placeholder, .contact-area .contact-wrap .row form .input_group textarea::placeholder {
        color: #333b55; }
    .contact-area .contact-wrap .row form .input_group textarea {
      height: 150px;
      resize: none;
      outline: none; }
  .contact-area .success {
    color: #468847; }
  .contact-area .error {
    color: #b94a48; }

.search-modal-wrapper .modal {
  z-index: 99999; }
  .search-modal-wrapper .modal.show::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7); }
  .search-modal-wrapper .modal .modal-dialog {
    padding: 0 20px;
    max-width: 800px; }
    @media (max-width: 575.98px) {
      .search-modal-wrapper .modal .modal-dialog {
        max-width: 100%; } }
    .search-modal-wrapper .modal .modal-dialog .modal-content {
      padding: 30px 30px 80px 30px;
      overflow: hidden; }
      @media (max-width: 575.98px) {
        .search-modal-wrapper .modal .modal-dialog .modal-content {
          padding: 30px 0px 80px 0; } }
      .search-modal-wrapper .modal .modal-dialog .modal-content::before {
        position: absolute;
        content: "";
        top: -82px;
        left: -14px;
        height: 150px;
        width: 150px;
        background-color: #fb7c63;
        border-radius: 50%; }
        @media (max-width: 575.98px) {
          .search-modal-wrapper .modal .modal-dialog .modal-content::before {
            top: -107px;
            left: -26px; } }
      .search-modal-wrapper .modal .modal-dialog .modal-content::after {
        position: absolute;
        content: "";
        bottom: -82px;
        right: -14px;
        height: 150px;
        width: 150px;
        background-color: #fb7c63;
        border-radius: 50%; }
        @media (max-width: 575.98px) {
          .search-modal-wrapper .modal .modal-dialog .modal-content::after {
            bottom: -107px;
            right: -26px; } }
      .search-modal-wrapper .modal .modal-dialog .modal-content .modal-dismiss {
        position: absolute;
        right: 30px;
        opacity: 1; }
        .search-modal-wrapper .modal .modal-dialog .modal-content .modal-dismiss i {
          font-size: 30px;
          color: #fb7c63;
          cursor: pointer; }
          .search-modal-wrapper .modal .modal-dialog .modal-content .modal-dismiss i:hover {
            opacity: .7; }
      .search-modal-wrapper .modal .modal-dialog .modal-content .modal-body {
        margin-top: 30px; }
        .search-modal-wrapper .modal .modal-dialog .modal-content .modal-body h2 {
          font-size: 32px; }
          @media (max-width: 575.98px) {
            .search-modal-wrapper .modal .modal-dialog .modal-content .modal-body h2 {
              font-size: 20px; } }
        .search-modal-wrapper .modal .modal-dialog .modal-content .modal-body form input {
          height: 50px;
          line-height: 50px;
          width: 100%;
          padding: 0 20px;
          border: 2px solid #fb7c63;
          color: #333b55; }
          .search-modal-wrapper .modal .modal-dialog .modal-content .modal-body form input:placeholder {
            color: #333b55; }
        .search-modal-wrapper .modal .modal-dialog .modal-content .modal-body form button {
          height: 50px;
          line-height: 50px;
          width: 70px;
          color: #fff;
          border: none;
          position: relative;
          background-color: #fb7c63; }

footer {
  background-color:#500c1a;
}
  @media (max-width: 575.98px) {
    footer {
      padding-top: 30px; } }

    @media (max-width: 575.98px) {
      footer .footer-top .footer-box {
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%; }
            .network-area .net-text{
              padding: 40px 0px;
            }
          }
  
      @media (max-width: 575.98px) {
        footer .footer-top .footer-box p {
          margin-top: 15px; 
          text-align: center;
        } }
    footer .footer-top .footer-box a {
      display: block; }
    footer .footer-top .footer-box h4 {
      font-size: 20px;
      font-weight: 600;
      line-height: 1;
      text-transform: uppercase; }
      @media (max-width: 1199.98px) {
        footer .footer-top .footer-box h4 {
          font-size: 18px; } }
    footer .footer-top .footer-box .contact-deatils-box .item {
      display: block; }
      footer .footer-top .footer-box .contact-deatils-box .item .contact-img-area {
        height: 35px;
        width: 35px;
        line-height: 35px;
        text-align: center;
        border-radius: 50%;
        background-color: #333b55;
        display: inline-block;
        margin-right: 15px;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
        footer .footer-top .footer-box .contact-deatils-box .item .contact-img-area:hover {
          background-color: #fb7c63;
          -webkit-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s; }
        footer .footer-top .footer-box .contact-deatils-box .item .contact-img-area i {
          color: #fff; }
    @media (max-width: 575.98px) {
      footer .footer-top .footer-box .links {
        margin-top: 15px; } }
    footer .footer-top .footer-box .links a {
      font-family: "Open Sans", sans-serif;
      font-size: 16px;
      color: #333b55; }
      @media (max-width: 575.98px) {
        footer .footer-top .footer-box .links a {
          margin-top: 8px; } }
      footer .footer-top .footer-box .links a:hover {
        color: #fb7c63;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
    footer .footer-top .footer-box form input {
      height: 42px;
      width: 100%;
      border: 1px solid #fb7c63;
      padding: 0 20px;
      background: none;
      font-family: "Open Sans", sans-serif;
      color: #333b55; }
      footer .footer-top .footer-box form input::-webkit-input-placeholder {
        color: #333b55; }
      footer .footer-top .footer-box form input:-ms-input-placeholder {
        color: #333b55; }
      footer .footer-top .footer-box form input::-ms-input-placeholder {
        color: #333b55; }
      footer .footer-top .footer-box form input::placeholder {
        color: #333b55; }
    footer .footer-top .footer-box form button {
      height: 42px;
      width: 70px;
      color: #fff;
      text-align: center;
      background-color: #fb7c63;
      border: none;
      position: relative; }
    footer .footer-top .footer-box .footer-icon-area a {
      display: inline-block;
      margin-right: 25px;
      color: #fff;
      height: 35px;
      width: 35px;
      line-height: 35px;
      text-align: center;
      background-color: #333b55;
      border-radius: 50%; }
      footer .footer-top .footer-box .footer-icon-area a:hover {
        background-color: #fb7c63; }
      footer .footer-top .footer-box .footer-icon-area a.last {
        margin-right: 0; }
  footer .footer-bottom {
    border-top: 1px solid #dddddd;
    padding: 20px 0 20px; }
    footer .footer-bottom .copyright {
      font-size: 16px; }
      @media (max-width: 767.98px) {
        footer .footer-bottom .copyright {
          text-align: center; } }
    @media (max-width: 767.98px) {
      footer .footer-bottom ul {
        text-align: center !important;
        margin-top: 10px; } }
    footer .footer-bottom ul li {
      display: inline-block; }
      footer .footer-bottom ul li a {
        margin-right: 25px;
        font-family: "Open Sans", sans-serif;
        color: #333b55;
        font-size: 16px; }
        footer .footer-bottom ul li a:hover {
          color: #fb7c63; }
      footer .footer-bottom ul li:last-child a {
        margin-right: 0; }

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 100px;
  height: 45px;
  width: 45px;
  font-size: 20px;
  line-height: 45px;
  text-align: center;
  background-color: #fb7c63;
  color: #fff;
  border-radius: 50%;
  opacity: 0;
  z-index: 1024;
  visibility: hidden;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s; }
  .back-to-top:hover {
    background-color: #333b55;
    color: #fff; }
  .back-to-top.top-btn-active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s; }

.dark {
  background-color: #121212; }
  .dark .button {
    background-color: #ffc107; }
    .dark .button:before {
      background-color: #ffdf81; }
  .dark #preloader {
    background-color: #121212; }
  .dark header.nav-active {
    background-color: #fffae9; }
  @media (max-width: 991px) {
    .dark header .menu-wrap {
      background-color: #ffffff; } }
  .dark header .menu-wrap ul li {
    border-color: rgba(255, 255, 255, 0.1); }
    .dark header .menu-wrap ul li a {
      color: rgba(0, 0, 0, 0.95); }
      .dark header .menu-wrap ul li a:hover {
        color: #ffc107; }
      .dark header .menu-wrap ul li a.active {
        color: #ffc107; }
    .dark header .menu-wrap ul li .fa-search {
      color: rgba(255, 255, 255, 0.95); }
      .dark header .menu-wrap ul li .fa-search:hover {
        color: #ffc107;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
  .dark header .humberger-menu span {
    background-color: #121212; }
  .dark .home-area {
    background-color: #212121; 
    overflow: visible;
    position: relative;
    background-image: linear-gradient(rgb(0 0 0 / 20%), rgb(0 0 0 / 60%)), url(../img/hero.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
    .dark .home-area .home-text h2, .dark .home-area .home-text p {
      color: rgba(255, 255, 255, 0.95); }
  .dark .feature-area .feature-box {
    background-color: #ffdc72; }
    .dark .feature-area .feature-box.active {
      background-color: #ffdc72; }
    .dark .feature-area .feature-box h3, .dark .feature-area .feature-box p {
      color: rgba(22, 22, 22, 0.95); }
    .dark .network-area .net-text h2, .dark .network-area .net-text p {
      color:  rgba(22, 22, 22, 0.95); }
  .dark .mobileapp_wrapper .mobile_active .owl-dots button span {
    background-color: #ffc107; }
  .dark .pricing-area .price-box {
    background-color: #ffffff; }
    .dark .pricing-area .price-box.box-2 {
      background-color: #ffc107; }
      .dark .pricing-area .price-box.box-2 .price-big, .dark .pricing-area .price-box.box-2 .price-small {
        background-color: #fff;
        border-color: #fff; }
        .dark .pricing-area .price-box.box-2 .price-big p, .dark .pricing-area .price-box.box-2 .price-big span, .dark .pricing-area .price-box.box-2 .price-small p, .dark .pricing-area .price-box.box-2 .price-small span {
          color: #212121; }
          .dark .pricing-area .price-box.box-2 .price-big p span, .dark .pricing-area .price-box.box-2 .price-big span span, .dark .pricing-area .price-box.box-2 .price-small p span, .dark .pricing-area .price-box.box-2 .price-small span span {
            color: #212121; }
      .dark .pricing-area .price-box.box-2 .price-big:before {
        background-color: #fff; }
      .dark .pricing-area .price-box.box-2 .price-btn {
        background-color: rgba(255, 255, 255, 0.95);
        color: #ffc107 !important; }
        .dark .pricing-area .price-box.box-2 .price-btn:before {
          background-color: #121212; }
        .dark .pricing-area .price-box.box-2 .price-btn:hover {
          color: rgba(255, 255, 255, 0.95) !important; }
    .dark .pricing-area .price-box h4 {
      color: #121212; }
    .dark .pricing-area .price-box .price-big, .dark .pricing-area .price-box .price-small {
      background-color: #121212;
      border-color: rgba(255, 255, 255, 0.95); }
      .dark .pricing-area .price-box .price-big p, .dark .pricing-area .price-box .price-small p {
        color: rgba(255, 255, 255, 0.95); }
        .dark .pricing-area .price-box .price-big p span, .dark .pricing-area .price-box .price-small p span {
          color: rgba(255, 255, 255, 0.95); }
    .dark .pricing-area .price-box .price-big::before {
      background-color: #121212; }
    .dark .pricing-area .price-box .price-small span {
      color: rgba(255, 255, 255, 0.95); }
    .dark .pricing-area .price-box .price-feature p {
      color: rgba(22, 22, 22, 0.95); }
    .dark .pricing-area .price-box .price-btn {
      background-color: #121212;
      color: #fff !important; }
      .dark .pricing-area .price-box .price-btn:before {
        background-color: #ffc107; }
  .dark .counter-area .counter-box .media i {
    color: #121212; }
  .dark .counter-area .counter-box .media .media-body h3, .dark .counter-area .counter-box .media .media-body p, .dark .counter-area .counter-box .media .media-body span {
    color: #121212; }
  
  .dark .testimonial-area .owl-carousel .testi-box {
    border-color: rgb(0 0 0 / 10%);
    background-color:#fffae9; }
    .dark .testimonial-area .owl-carousel .testi-box .img-area img {
      border-color: #121212; }
    .dark .testimonial-area .owl-carousel .testi-box .icon-area i {
      color: #FFC107; }
    .dark .testimonial-area .owl-carousel .testi-box p {
      color:#1e1e1ef2; }
    .dark .testimonial-area .owl-carousel .testi-box .name-area h4 {
      color: #500c1a; }
    .dark .testimonial-area .owl-carousel .testi-box .name-area span {
      color: #ffc107; }
  .dark .testimonial-area .owl-carousel .owl-stage .owl-item.center .testi-box {
    background-color: #ffdc72; }
    .dark .testimonial-area .owl-carousel .owl-stage .owl-item.center .testi-box p, .dark .testimonial-area .owl-carousel .owl-stage .owl-item.center .testi-box h4 {
      color: #121212; }
    .dark .testimonial-area .owl-carousel .owl-stage .owl-item.center .testi-box .icon-area i {
      color: rgba(255, 255, 255, 0.95); }
    .dark .testimonial-area .owl-carousel .owl-stage .owl-item.center .testi-box .name-area span {
      color: rgba(255, 255, 255, 0.95); }
    .dark .blog-area .news-box .date {
      background-color: #ffc107; }
    .dark .blog-area .news-box .text-box.b-1::after {
      background-color: #4e4e4e; }
  .dark .faq-area .faq-collapse-area .accordion .question button {
    color: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.1); }
    .dark .faq-area .faq-collapse-area .accordion .question button[aria-expanded="true"] {
      background-color: #ffc107;
      color: #fff; }
  .dark .faq-area .faq-collapse-area .accordion .question .card-body p {
    color: rgba(255, 255, 255, 0.95); }
  .dark .contact-area form .input_group input, .dark .contact-area form .input_group textarea {
    background-color: #212121;
    border: none !important;
    color: rgba(255, 255, 255, 0.95) !important; }
    .dark .contact-area form .input_group input::-webkit-input-placeholder, .dark .contact-area form .input_group textarea::-webkit-input-placeholder {
      color: rgba(255, 255, 255, 0.95) !important; }
    .dark .contact-area form .input_group input:-ms-input-placeholder, .dark .contact-area form .input_group textarea:-ms-input-placeholder {
      color: rgba(255, 255, 255, 0.95) !important; }
    .dark .contact-area form .input_group input::-ms-input-placeholder, .dark .contact-area form .input_group textarea::-ms-input-placeholder {
      color: rgba(255, 255, 255, 0.95) !important; }
    .dark .contact-area form .input_group input::placeholder, .dark .contact-area form .input_group textarea::placeholder {
      color: rgba(255, 255, 255, 0.95) !important; }
  .dark .contact-area form .btn-contact:before {
    background-color: #212121; }
  .dark footer {
    background-color: #500c1a; }
    .dark footer .footer-box p, .dark footer .footer-box h4, .dark footer .footer-box span {
      color: rgba(255, 255, 255, 0.95); }
    .dark footer .footer-box .links a {
      color: rgba(255, 255, 255, 0.95); }
      .dark footer .footer-box .links a:hover {
        color: #ffc107; }
    .dark footer .footer-box .contact-deatils-box .item .contact-img-area {
      background-color: #121212; }
      .dark footer .footer-box .contact-deatils-box .item .contact-img-area:hover {
        background-color: #ffc107; }
    .dark footer .footer-box form input {
      border-color: #ffc107;
      color: rgba(255, 255, 255, 0.95); }
      .dark footer .footer-box form input::-webkit-input-placeholder {
        color: rgba(255, 255, 255, 0.95); }
      .dark footer .footer-box form input:-ms-input-placeholder {
        color: rgba(255, 255, 255, 0.95); }
      .dark footer .footer-box form input::-ms-input-placeholder {
        color: rgba(255, 255, 255, 0.95); }
      .dark footer .footer-box form input::placeholder {
        color: rgba(255, 255, 255, 0.95); }
    .dark footer .footer-box form button {
      background-color: #ffc107; }
    .dark footer .footer-box .footer-icon-area a {
      background-color: #121212; }
      .dark footer .footer-box .footer-icon-area a:hover {
        background-color: #ffc107; }
    .dark footer .footer-bottom {
      border-color: rgba(255, 255, 255, 0.1); }
      .dark footer .footer-bottom p, .dark footer .footer-bottom a {
        color: rgba(255, 255, 255, 0.95); }
      .dark footer .footer-bottom a:hover {
        color: #ffc107; }
  .dark .search-modal-wrapper .modal .modal-dialog .modal-content {
    background-color: #212121; }
    .dark .search-modal-wrapper .modal .modal-dialog .modal-content .modal-dismiss {
      text-shadow: none; }
      .dark .search-modal-wrapper .modal .modal-dialog .modal-content .modal-dismiss i {
        color: #ffc107; }
    .dark .search-modal-wrapper .modal .modal-dialog .modal-content .modal-body h2, .dark .search-modal-wrapper .modal .modal-dialog .modal-content .modal-body p {
      color: rgba(255, 255, 255, 0.95); }
    .dark .search-modal-wrapper .modal .modal-dialog .modal-content .modal-body form input {
      border-color: #ffc107; }
    .dark .search-modal-wrapper .modal .modal-dialog .modal-content .modal-body form button {
      background-color: #ffc107; }
    .dark .search-modal-wrapper .modal .modal-dialog .modal-content:before, .dark .search-modal-wrapper .modal .modal-dialog .modal-content:after {
      background-color: #ffc107; }
  .dark .back-to-top {
    background-color: #ffc107; }
    .dark .back-to-top:hover {
      border-color: rgba(255, 255, 255, 0.1);
      background: none; }


/*# sourceMappingURL=style.css.map */


.popup-contact-form {
  background-color: #ffffff;
  text-align: center;
  padding: 24px;
  border-radius: 12px;
  -webkit-box-shadow: 0 3px 6px rgba(233, 120, 74, 0.16);
  box-shadow: 0 3px 6px rgba(233, 120, 74, 0.16);
}
.popup-contact-form .form-group {
  position: relative;
  text-align: left;
  margin-bottom: 30px;
}
.popup-contact-form .form-group label {
  background-color: #ffffff;
  font-size: 13px;
  text-transform: capitalize;
  margin-bottom: 8px;
  z-index: 1;
  color: #000000;
  font-weight: 600;
}
.popup-contact-form .form-group .form-control {
  border: 1px solid #6b6b6b;
  border-radius: 12px;
  line-height: 50px;
  height: 40px;
  margin-bottom: 0;
  padding-left: 12px;
  padding-right: 12px;
  overflow: hidden;
}
.btn--secondary {
  background: #ffc107;
  color: #191919;
  border: 1px solid #191919;
}
.mt-100 {
  margin-top: 100px !important;
}
.vehicle-section-divider {
  border-bottom: 1px solid #121212;
  padding: 8px 0;
  overflow: hidden;
}
.night-rider {
  background-color: #121212;
}
.vehicle-section-divider .section-divider-content {
  position: relative;
}
.vehicle-section-divider .section-divider-content:before {
  border-top: dashed #ececec;
  width: 100%;
  content: "";
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 15px;
  z-index: 0;
}
.vehicle-section-divider .section-divider-content .vehicle-border {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-animation: s3-rotate 7s infinite linear;
  animation: s3-rotate 7s infinite linear;
  display: block;
}
@-webkit-keyframes s3-rotate {
  from {
    -webkit-transform: translateX(105%);
  }
  to {
    -webkit-transform: translateX(-5%);
  }
}
.instagram {
  position: fixed;
    z-index: 999;
    right: 18px;
    bottom: 140px;
}
.map-div iframe {
  width: 100%;
  height: 200px;
  border: 0;
}
.contact-box {
  box-shadow: 0 8px 16px rgba(102, 102, 102, 0.07);
  padding: 60px;
  background: #fff;
  position: relative;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin: 0 0 18px;
  text-align: center;
}
.contact-icon {
  font-size: 100px;
  line-height: 1;
  position: relative;
  display: inline-flex;
  margin: 0 0 25px;
}
.contact-content .title {
  font-size: 28px;
  margin: 0 0 15px;
}
.contact-content .contact-desc {
  margin-bottom: 0;
}
.payment-note{
    font-size:13px;
    text-align:center;
}