.stat_inner_div/* ====================================
    Default Theme
  -------------------------------------
    Fonts: Raleway & Open Sans
  -------------------------------------
    Colors:
      Moon Yellow:    #f4c613
      Grey:           #212226
      White Smoke:    #f4f4f4
      White:          #fff
      Black:          #000
  -------------------------------------
  
==================================== */

/* ====================================
    General CSS
==================================== */

html, body {
  height: 100%;
}

body {
  color: #212226;
  margin-top: 170px;
}

h1, h2, h3, h4, h5 ,h6 {
  font-family: "Raleway", sans-serif;
}

p {
  font-family: "Open Sans", sans-serif;
  /*font-family: "Raleway", sans-serif;*/
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

section {
  background-color: #fff;
  /* overflow: hidden; */
}

.img-responsive {
  display: block;
  max-width: 100%;
}

/* ====================================
    Buttons
==================================== */

button:focus {
  outline: none;
  box-shadow: none;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}


.btn-general {
  font-family: "Raleway", sans-serif;
  border-radius: 28px;
  font-size: 14px;
  text-transform: uppercase;
  margin: 0 6px;
  padding: 12px 46px;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.btn-home {
  color: #fff;
  border: 2px solid #146ebe;
  background-color: #146ebe;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

.btn-home:hover,
.btn-home:focus {
  color: #146ebe;
  background-color: #fff;
}

.btn-blue {
  color: #fff;
  border: 1px solid #146ebe;
  background-color: #146ebe;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
}

.btn-blue:hover,
.btn-blue:focus {
  color: #fff;
  background-color: #212226;
  border: 1px solid #212226;
}

.btn-blue:focus {
  color: #fff;
  background-color: #212226;
  border: 1px solid #212226;
}

.btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 22px;
  border-radius: 4px;
  padding: 3px 15px;
  background: #146ebe;
  color: #fff;
  display: none;
}

.btn-back-to-top:hover {
  background: #000;
  color: #fff;
}

/* ====================================
    Content Boxs
==================================== */

.content-box-lg {
  padding: 120px 0;
}

.content-box-md {
  padding: 100px 0;
}

.content-box-sm {
  padding: 80px 0;
}

/* ====================================
    Vertical/Horizontal Heading
==================================== */

.vertical-heading h5 {
  color: #146ebe;
  font-size: 13px;
  word-spacing: 9px;
  text-transform: uppercase;
  display: inline-block;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: relative;
  top: 60px;
  left: -55px;
}

.horizontal-heading {
  text-align: center;
  margin-bottom: 60px;
}

.horizontal-heading h5 {
  font-size: 16px;
  color: #146ebe;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 600;
}

.vertical-heading h2,
.horizontal-heading h2 {
  margin: 0 0 0 35px;
  font-weight: 100;
  font-size: 42px;
  line-height: 45px;
  font-weight: 300;
}

.horizontal-heading h2 {
  margin: 0;
}

/* ====================================
    Social icons
==================================== */

ul.social-list {
  padding: 0;
  margin-top: 20px
}

ul.social-list li {
  padding: 0;
  display: inline-block;
}

ul.social-list li a {
  border: 1px solid #fff;
  width: 35px;
  height: 35px;
  display: inline-block;
  line-height: 35px;
  color: #fff;
  border-radius: 50%;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

ul.social-list li:nth-child(1) a:hover {
  background: #3b5998;
  border-color: transparent;
  transform: rotate(360deg);
}

ul.social-list li:nth-child(2) a:hover {
  background: #00aced;
  border-color: transparent;
  transform: rotate(360deg);
}

ul.social-list li:nth-child(3) a:hover {
  background: #dd4b39;
  border-color: transparent;
  transform: rotate(360deg);
}

/* ====================================
    Home
==================================== */

.home-heading-1 {
  text-transform: uppercase;
  font-size: 46px;
  margin-top: 34px;
  margin-bottom: 0;
  color: #146ebe;
}

.home-heading-2 {
  color: #146ebe;
  text-transform: uppercase;
  font-weight: 600;
}

.home-para {
  text-align: justify;
  font-size: 16px;
}

.home-img {
  width: 100%;
  display: block;
  /* margin: 50px auto 0; */
}

/* ====================================
    About
==================================== */

#about-right p {
  font-size: 15px;
}

#about-02 {
  background-color: #f4f4f4;
}

.about-item {
  background-color: #fff;
  background-color: #146ebe;
  color: #fff;
  padding: 80px 30px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
  height: 370px;
  text-align: center;
  border-radius: 10px;
}

.about-item i {
  font-size: 42px;
  margin: 0;
}

.about-item h3 {
  font-size: 24px;
  margin: 10px 0;
}

.about-item hr {
  width: 45px;
  height: 3px;
  background-color: #146ebe;
  background-color: #fff;
  margin: 0 auto;
  border: 0;
}

.about-item p {
  margin-top: 20px;
}

/*About 02 Hover State*/

.about-item:hover {
  background-color: #146ebe;
}

.about-item:hover i,
.about-item:hover h3,
.about-item:hover p {
  color: #fff;
}

.about-item:hover hr {
  background-color: #fff;
}

.about-item:hover i {
  transform: translateY(-20px);
}

.about-item,
.about-item i,
.about-item hr {
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

/* ====================================
    Statement
==================================== */

#statement {
  /* background: url("../img/02.jpg") no-repeat fixed center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  text-align: center; */
  position: relative;
}

.stat_inner_div {
  position: absolute;
  top: -2px;
  background-color: rgba(0,0,0,0.1);
  width: 100%;
  height: 100%;
  padding-top: 30px;
  display: flex;
  /*justify-content: center;*/
  align-items: center;
  flex-direction: column;
}

#statement .content-box-lg {
  background: rgba(0, 0, 0, 0.3);
}

#statement h3 {
  font-size: 28px;
  line-height: 45px;
  text-align: center;
}

#statement p {
  font-size: 14px;
  color: #146ebe;
  font-family: "Raleway", sans-serif;
  margin-top: 8px;
  font-weight: 600;
}

/* ====================================
    Services 01
==================================== */

.service_card {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  display: block;
  color: #000;
}

.service_card:hover {
  color: #000;
  text-decoration: none;
}

.service_card:hover .ser_more {
  display: block;
}

.service_card .ser_more,
.service_card:hover .ser_name {
  display: none;
}

.service_card img {
  width: 100%;
  border-radius: 20px 10px 0 0;
  height: 200px;
}

.service_card h5 {
  font-size: 20px;
  padding: 10px;
  text-align: center;
  font-weight: 700;
}



/* ====================================
    Pricing
==================================== */

.pricing-table {
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
  border-radius: 6px;
  /* padding: 32px 14px; */
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.pricing-table:hover {
  background-color: #146ebe;
}

.pricing-table .type h4 {
  background-color: #146ebe;
  font-size: 24px;
  padding: 23px 0;
  text-align: center;
  color: #fff;
  margin: 0;
  border-radius: 7px 7px 0 0;
}

.pricing-table .price_inner_div {
  padding: 0 16px 32px
}

.pricing-table .price {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 12px 0;
}

.pricing-table .price h4 {
  font-family: "Open Sans", sans-serif;
  margin: 0 0 0 0;
  color: #969696;
  text-decoration: line-through;
  position: relative;
}

.pricing-table .price h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 38px;
  font-weight: 400;
  margin: 0 0 0 0;
  position: relative;
}

.pricing-table .price h2 span {
  font-family: "Raleway", sans-serif;
}

.pricing-table .price h2 span.dollar {
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  left: -18px;
  top: 5px;
}

.pricing-table .price .hst {
    font-size: 12px;
    color: #146ebe;
    font-weight: 600;
}

.pricing-table ul.package {
  list-style: none;
  padding: 8px 0;
  margin: 0;
}

.pricing-table ul.package li {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  padding: 8px 0;
}

.pricing-table ul.package li i {
  width: 24px;
}

.pricing-table ul.package li i.fa-xmark {
  color: red;
}

.pricing-table ul.package li i.fa-check {
  color: #4CB748;
}

.pricing-table .btn-blue {
  width: 100%;
}

.pricing-table:hover h4,
.pricing-table:hover h2,
.pricing-table:hover div.hst,
.pricing-table:hover p,
.pricing-table:hover ul.package,
.pricing-table:hover ul.package li i {
  color: #fff;
}

.pricing-table:hover .btn-blue {
  color: #212226;
  background: #fff;
  border: 1px solid #fff;
}

.pricing-table .btn-blue:hover {
  color: #fff;
  background: #212226;
  border: 1px solid #212226;
}

/* Individual */
.individual {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  /* padding: 20px; */
  margin-bottom: 20px;
}

.individual h3 {
  padding: 20px 30px;
  background-color: #146ebe;
  border-radius: 7px 7px 0 0;
  color: #fff;
  text-align: center;
}

.individual .indi_inner_div {
  padding: 30px;
  padding-top: 0;
}

.individual ul {
  padding: 0;
  list-style: none;
}

.individual ul li i {
  color: #146ebe;
}

.individual ul li span {
  color: #3b5998;
  color: #146ebe;
}

/* ====================================
    Contact
==================================== */

ul.office-details {
  list-style: none;
  padding: 0;
}

ul.office-details li {
  font-family: "Open Sans", sans-serif;
  margin-top: 12px;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

ul.office-details li i {
  font-size: 18px;
  width: 30px;
}

#contact-left ul.social-list li a {
  color: #212226;
  border: 1px solid #212226;
  text-align: center;
}

#contact-left ul.social-list li a:hover {
  color: #fff;
  border-color: transparent;
}

/*Contact Right*/

#contact-right {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
  border-radius: 8px;
}

#contact-right h4 {
  font-size: 24px;
}

#contact-right form .form-control {
  font-family: "Open Sans", sans-serif;
  padding: 10px 15px;
  line-height: 24px;
}

#contact-right form textarea.form-control {
  min-height: 164px;
}

/* ====================================
    Footer
==================================== */

footer {
  background: #212226;
  padding: 30px;
  color: #fff;
}

footer .footer-logo {
  width: 150px;
  display: block;
}

footer ul {
  padding: 0;
  list-style: none;
}

footer ul li {
  padding: 6px 0;
}

footer ul li a {
  text-decoration: none;
  color: #fff;
}

footer ul li a:hover {
  text-decoration: none;
  color: #146ebe;
  transition: all 0.3s;
}

footer .copy {
  text-align: center;
}

footer .copy span a {
  color: #146ebe;
}

/* Subscribe Button */

.sub-btn input {
  border-radius: 50px 0 0 50px;
  border: 1px solid #fff;
}

.sub-btn input:focus {
  border-color: #fff;
  box-shadow: none;
}

.sub-btn div span {
  border-radius: 0 50px 50px 0;
  border: 1px solid #fff;
  background-color: #fff;
}

.sub-btn div span a {
  color: #146ebe;
}

.sub-btn div span a:hover {
  color: #146ebe;
}

/* ====================================
    Navigation
==================================== */

.upper-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.upper-nav .car-logo {
  width: 220px;
}

.upper-nav .logo {
  width: 180px;
  height: 80px;
}

.btn-book_now {
  width: 140px;
  height: 50px;
  color: #fff;
  background-color: #146ebe;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border: #146ebe 2px solid;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-book_now:hover{
  background-color: #fff;
  color: #146ebe;
  text-decoration: none;
}

.navbar {
  background-color: #146ebe;
}

nav.navbar {
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

ul.navbar-nav > li > a {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff !important;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

ul.navbar-nav > li.nav-item > a.nav-link:hover,
ul.navbar-nav > li.nav-item > a.nav-link:focus {
  background: none;
  color: #000 !important;
}

/*Scroll Spy active state*/
ul.navbar-nav > li.nav-item > a.nav-link.active {
  color: #000 !important;
  font-weight: 500;
}

.mbl-book {
  display: flex;
  align-items: center;
}

.sm-book-now {
  display: none;
  padding-left: 25px;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}

.sm-book-now:hover {
  color: #000;
  text-decoration: none;
}

.nav-phone a,
.nav-map a {
  color: #fff;
  text-decoration: none;
}

.nav-phone a:hover,
.nav-map a:hover {
  color: #000 !important;
  text-decoration: none
}

/* Toggle Button */
.toggle {
  padding: 18px;
  display: none;
  cursor: pointer;
}

.toggle span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 1.5px;
  background-color: #fff;
  position: relative;
  transition: all 0.2s;
}

.toggle span:after,
.toggle span:before {
  content: "";
  width: 25px;
  height: 1.5px;
  background-color: #fff;
  position: absolute;
  transition: all 0.2s;
}

.toggle span:after {
  top: 8px;
}

.toggle span:before {
  top: -8px;
}

.toggle span.active {
  background-color: transparent;
}

.toggle span.active::before {
  top: 0;
  transform: rotateZ(45deg);
}

.toggle span.active::after {
  top: 0;
  transform: rotateZ(-45deg);
}


/* ====================================
    Forms
==================================== */

.form-heading {
  text-align: center;
  font-size: 24px;
  background-color: #146ebe;
  color: #fff;
  padding: 6px;
  margin: 20px 20px 40px 20px;
  border-radius: 10px;
}

.mainRD {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /*border: 1px solid #000;*/
  border-radius: 4px;
  padding: 12px;
  box-shadow: 0 0 4px 0 rgb(0 0 0 / 40%);
  margin: 0 10px;
  cursor: pointer;
}

.course_details_para {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

.course_details_para span {
  color: red;
}

.selectHeadingCourse,
.selectHeadingPkg {
  display: flex;
  justify-content: space-between;
  padding: 6px 10px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  cursor: pointer;
}

.selectHeadingListCourse,
.selectHeadingListPkg {
  padding: 0;
  list-style: none;
  box-shadow: 0px 3px 5px 0px grey;
  border-radius: 0 0 5px 5px;
  overflow: hidden;
  position: absolute;
  right: 0;
  left: 0;
  z-index: 9999;
  background-color: #fff;
}

.selectHeadingListCourse li,
.selectHeadingListPkg li {
  padding: 6px 10px;
  transition: all 0.2s;
  cursor: pointer;
}

.selectHeadingListCourse li:hover,
.selectHeadingListPkg li:hover {
  background-color: #146ebe;
  color: #fff;
}

.animation_video {
  width: 100%;
  height: auto;
}

.animation_mbl {
  display: none;
  height: 164px;
  width: 100%;
  margin-top: 30px;
}

.animation_div {
  overflow: hidden;
  position: relative;
}

.bg-animation {
  background-image: url(../../assets/img/animation_bg.png);
  height: 500px;
  width: 500%;
  background-size: cover;
  animation-name: bg_animation;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes bg_animation {
  100% {
    transform: translateX(-1800px);
  }
}

.car-animation {
  width: 40%;
  position: absolute;
  bottom: 50px;
  left: 30%;
}

.wheel {
  position: absolute;
  left: 34.2%;
  bottom: 53px;
}

.fornt_wheel {
  width: 10%;
  margin-right: 242px;
  animation: wheel_animation .7s linear infinite;
}

.back_wheel {
  width: 10%;
  animation: wheel_animation .7s linear infinite;
}

@keyframes wheel_animation {
  100% {
    transform: rotate(360deg);
  }
}


/* ====================================
    Responsive
==================================== */

@media only screen and (max-width: 1024px) {
  
  .home-img {
    margin: 54px auto 0;
  }

  .home-heading-1 {
    font-size: 34px;
  }

  
  .service_card img {
    height: 160px;
  }

  .pricing-table .price h2 {
    font-size: 30px;
  }

  .pricing-table .price p {
    line-height: 20px;
    font-size: 13px;
  }


}

@media only screen and (max-width: 768px) {

  .toggle {
    display: flex;
  }
 
  .home-img {
    width: 80%;
  }

  .home-heading {
    text-align: center;
  }

  .about-item {
    height: auto;
    width: 500px;
    margin: 20px auto;
    padding: 40px 30px;
  }

  .service_card {
    width: 500px;
    margin: 20px auto;
  }

  .service_card img {
    height: 230px;
  }

  .pricing-table {
    width: 500px;
    margin: 20px auto;
  }

  .footer-div {
    border: none !important;
  }

}



@media only screen and (max-width: 426px) {

  .upper-nav {
    justify-content: center;
  }

  .upper-nav .logo {
    width: 140px;
    height: 65px;
  }

  .btn-book_now {
    display: none !important;
  }

  .nav-phone a,
  .nav-map a {
    font-size: 20px;
  }

  .nav-phone a span,
  .nav-map a span {
    display: none;
  }

  .sm-book-now {
    display: block;
  }

  .home-img {
    margin: 0 auto;
  }

  .vertical-heading h5 {
    left: -44px;
  }

  .about-item,
  .service_card,
  .pricing-table {
    width: auto;
  }

  ul.social-list {
    margin-top: 6px;
    margin-bottom: 30px;
  }

  .bg-animation {
    /* width: 100%; */
    height: 250px;
  }
  
  .stat_inner_div {
      padding-top: 14px;
  }

  #statement h3 {
    font-size: 12px;
    line-height: 12px;
    font-weight: 600;
    margin: 0;
  }
  
  #statement p {
      margin: 0;
      font-size: 12px;
  }

}

@media only screen and (max-width: 320px) {

  .home-heading-1 {
    font-size: 28px;
  }

  .service_card img {
    height: 140px;
  }

  .individual h3 {
    font-size: 22px;
  }

  .animation_video {
    display: none;
  }

  .animation_mbl {
    display: block;
  }

}


