/*==== Clearfix start ====*/

.clearfix:before,
.clearfix:after {
  display: table;
  content: " ";
}

.clearfix:after {
  clear: both;
}

/*==== Clearfix end ====*/

/*==== Common css start ====*/
html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 15px;
  color: #1e1000;
  font-family: "Roboto", sans-serif;
}

a {
  transition: all 600ms ease;
  font-size: 16px;
}

a:hover,
a:focus {
  outline: none;
  text-decoration: none;
  transition: all 600ms ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0px;
  line-height: 1.3;
  font-family: "Roboto Condensed", sans-serif;
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

p {
  line-height: 1.5;
  font-size: 16px;
}

ul li,
ol li {
  line-height: 1.5;
  list-style: none;
}

/* buttons  */

.btn,
.btn:hover,
.btn:focus,
.btn:active {
  outline: none !important;
  text-decoration: none;
  transition: all 600ms ease;
  box-shadow: none;
}

.btn-success {
  color: #fff;
  background-color: #1f9a95;
  border: 1px solid #1f9a95;
}

.btn-outline-success {
  color: #1f9a95 !important;
  border-color: #1f9a95 !important;
}

.btn-outline-success:hover {
  color: #fff !important;
  background-color: #1f9a95 !important;
  border-color: #1f9a95 !important;
}

img {
  max-width: 100%;
  height: auto;
}

.img-pos {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-device-width: 1023px) {
  body {
    -webkit-text-size-adjust: none;
  }
}

/*==== Common css end ====*/

/*==== Navigation css start ====*/

.nav-links li {
  display: inline-block;
}

/*==== Navigation css end ====*/

.text-green {
  color: #1f9a95;
}

.bg-gray {
  background-color: #ececec;
}

.bg-green {
  background-color: #1f9a95 !important;
}

.bg-light {
  background-color: #d2ebea !important;
}

.border-success {
  border-color: #1f9a95 !important;
}

.badge-success {
  color: #fff;
  background-color: #1f9a95;
}

/* About-us-section-css-starts */

.section-title h2:after {
  position: absolute;
  content: "";
  width: 120px;
  height: 3px;
  background-color: #1f9a95;
  left: -50px;
  bottom: -10px;
}

.wave-wrap {
  width: 300px;
  height: 300px;
}

.wave-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.wave-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(to top right, #00aba4, #1f9a95);
  border-radius: 40%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  animation: rotate 10s linear infinite;
  opacity: 0.6;
}

@media (min-width: 768px) {
  .wave-wrap,
  .wave-2 {
    width: 500px;
    height: 500px;
  }
}

@keyframes move {
  0% {
    top: 80%;
    left: -10%;
  }
  50% {
    top: 85%;
    left: 0%;
  }
  100% {
    top: 80%;
    left: -10%;
  }
}

@keyframes scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

/* contact-section-css */

.contact-wrapper .section-title h2:after {
  background-color: #fff;
}

ul.contact-list li i {
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 3px;
}

ul.contact-list li a:hover {
  color: #000 !important;
}

/* services-css */

.services-wrapper.text-center i {
  font-size: 40px;
  border-radius: 50%;
  border: 1px solid #1f9a95;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px auto;
  background-color: #fff;
}

.flip-card {
  background-color: transparent;
  width: 300px;
  height: 300px;
  perspective: 1000px;
  margin: 0 auto;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 10px;
  border: 1px solid transparent;
}

.flip-card-back {
  transform: rotateY(180deg);
  border: 1px solid #1f9a95;
}

/* navigation css */

header {
  box-shadow: 2px 2px 10px #f2f2f2;
}

nav.navbar img {
  width: 70px;
}

.navbar .nav-link {
  color: #000;
  font-family: "Roboto Condensed";
  font-size: 18px;
}

.nav-link.active {
  border-bottom: 2px solid #1f9a95;
  font-weight: bold;
}

.show > .btn-outline-success.dropdown-toggle {
  color: #fff !important;
  background-color: #1f9a95;
  border-color: #1f9a95;
}

.dropdown-toggle {
  padding: 3px 10px;
}

/* footer-css */

footer {
  background: linear-gradient(to bottom right, #1f9a95, #4a4a4a);
}

.footer-section h3:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: -10px;
  left: 0;
}

.footer-social-icons a i {
  font-size: 30px;
}

/* order-section-css */

.order-wrapper input.form-control {
  height: 46px;
}

.order-wrapper .btn.btn-success {
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
}

/* pricing-section-css */

.pricing-wrapper {
  border: 2px solid #1f9a95 !important;
  border-radius: 10px;
  transition: all 0.2s cubic-bezier(0.4, 0, 1, 1);
}

.pricing-wrapper h5 {
  background-color: #fff;
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 8px;
}

ul.pricing-ul li {
  position: relative;
}

ul.pricing-ul li:before {
  content: "\f14a";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  color: #1f9a95;
  font-size: 15px;
}

.pricing-wrapper:hover {
  background: linear-gradient(to bottom right, #1f9a95, #4a4a4a);
  color: #fff;
  transform: translateX(10px);
}

.pricing-wrapper:hover h5 {
  color: #000;
}

.pricing-wrapper:hover li:before {
  color: #fff;
}

.price-wrapper .slick-slide:focus {
  outline: none !important;
}

.price-wrapper .slick-prev,
.price-wrapper .slick-next {
  position: absolute;
  color: #1f9a95;
  width: 30px;
  height: 30px;
  top: 0;
}

.price-wrapper .slick-prev {
  left: 0;
}

.price-wrapper .slick-next {
  right: 0;
}

.price-wrapper button.slick-prev:before {
  content: "\f137";
  font-family: "Font Awesome 5 Free";
  font-size: 30px;
  font-weight: 900;
}

.price-wrapper button.slick-next:before {
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  font-size: 30px;
  font-weight: 900;
}

@media (min-width: 768px) {
  .order-wrapper {
    width: 500px;
    margin: 0 auto;
  }
  .price-wrapper .slick-prev,
  .price-wrapper .slick-next {
    top: 50%;
    transform: translateY(-50%);
  }
  .price-wrapper .slick-prev {
    left: -20px;
  }
  .price-wrapper .slick-next {
    right: -20px;
  }
}

@media (min-width: 1024px) {
  .pricing-wrapper {
    min-height: 320px;
  }
  .price-wrapper .slick-prev {
    left: -30px;
  }
  .price-wrapper .slick-next {
    right: -30px;
  }
}

/* faqs-section-css */

.faqs-wrapper {
  border-left: 3px solid #1f9a95;
}

.faqs-wrapper p {
  font-size: 14px;
}

.background-stuff {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #98c5e8;
  animation: wrapperIn 2s;
}

.background-stuff .bg {
  position: absolute;
  top: 0%;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to bottom right, #1f9a95, #4a4a4a);
  -webkit-animation: bgIn 4s 0s linear infinite;
  -moz-animation: bgIn 4s 0s linear infinite;
  -ms-animation: bgIn 4s 0s linear infinite;
  -o-animation: bgIn 4s 0s linear infinite;
  animation: bgIn 4s 0s linear infinite;
  -webkit-transform: skewX(10deg);
  -moz-transform: skewX(10deg);
  -ms-transform: skewX(10deg);
  -o-transform: skewX(10deg);
  transform: skewX(10deg);
  z-index: 1;
}

.background-stuff .bg-2 {
  background: #ececec;
  -webkit-animation: bgIn 4s 1s linear infinite;
  -moz-animation: bgIn 4s 1s linear infinite;
  -ms-animation: bgIn 4s 1s linear infinite;
  -o-animation: bgIn 4s 1s linear infinite;
  animation: bgIn 4s 1s linear infinite;
}

.background-stuff .bg-3 {
  background: #d2ebea;
  -webkit-animation: bgIn 4s 2s linear infinite;
  -moz-animation: bgIn 4s 2s linear infinite;
  -ms-animation: bgIn 4s 2s linear infinite;
  -o-animation: bgIn 4s 2s linear infinite;
  animation: bgIn 4s 2s linear infinite;
}

.background-stuff .ground {
  position: absolute;
  bottom: 0;
  margin-bottom: -1.875em;
  height: 50%;
  width: 100%;
  background: #1f9a95;
  z-index: 2;
}

div.truck {
  height: 420px;
  width: 100%;
  display: table;
  overflow: hidden;
}

.truck .car-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  position: absolute;
  top: 128px;
  left: 0;
  overflow-x: hidden;
}

.car {
  width: 20em;
  height: 12.5em;
  position: relative;
  opacity: 1;
  margin-left: auto;
  margin-right: auto;
  z-index: 4;
  -webkit-animation: carMove 0.3s infinite;
  -moz-animation: carMove 0.3s infinite;
  -ms-animation: carMove 0.3s infinite;
  -o-animation: carMove 0.3s infinite;
  animation: carMove 0.3s infinite;
}

.car .body {
  position: absolute;
  top: 0;
  left: 0.875em;
  width: 14.375em;
  height: 10em;
  background: #fab92c;
}

.car .body:before {
  content: "";
  position: absolute;
  left: -0.875em;
  border-radius: 10px 10px 0 0;
  width: 15.875em;
  z-index: 2;
  height: 0.75em;
  background: #f26d34;
}

.car .body div {
  position: absolute;
  background: #fab92c;
  width: 18.125em;
  height: 3.75em;
  bottom: -0.625em;
  border-radius: 0 0 10px 10px;
}

.car .body div:before {
  content: "";
  background: #fab92c;
  position: absolute;
  top: -1.8125em;
  right: 0px;
  width: 5em;
  height: 2.5em;
  z-index: 1;
  border-radius: 0 14px 0 0;
  -webkit-transform: rotate(17deg);
  -moz-transform: rotate(17deg);
  -ms-transform: rotate(17deg);
  -o-transform: rotate(17deg);
  transform: rotate(17deg);
}

.car .body div:after {
  content: "";
  background: #fab92c;
  position: absolute;
  top: -5.125em;
  right: 1.0625em;
  width: 5.625em;
  height: 2.5em;
  z-index: 1;
  border-radius: 10px 0 0 0;
  -webkit-transform: rotate(75deg);
  -moz-transform: rotate(75deg);
  -ms-transform: rotate(75deg);
  -o-transform: rotate(75deg);
  transform: rotate(75deg);
}

.car .wheel {
  position: absolute;
  width: 3.75em;
  height: 3.75em;
  background: #3c464c;
  border-radius: 50%;
  bottom: 0;
  left: 3em;
  z-index: 14;
  -webkit-animation: carMove 0.3s 0.2s;
  -moz-animation: carMove 0.3s 0.2s;
  -ms-animation: carMove 0.3s 0.2s;
  -o-animation: carMove 0.3s 0.2s;
  animation: carMove 0.3s 0.2s;
}

.car .wheel:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #fff;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.car .wheel:nth-of-type(2) {
  left: 13.125em;
}

.car .decos {
  width: 18.125em;
  height: 10.5em;
  position: absolute;
  z-index: 12;
  top: 0;
  left: 0.875em;
}

.car .line-bot {
  position: absolute;
  bottom: 0.5625em;
  height: 3px;
  width: 100%;
  background: #e1e8ef;
}

.car .door {
  position: absolute;
  left: 7.5em;
  bottom: 0;
  width: 3.75em;
  height: 8.8125em;
  border-radius: 10px 10px 0 0;
  border: 3px solid #e1e8ef;
  border-bottom: 0;
  background: #fff;
}

.car .door:after {
  content: "";
  position: absolute;
  top: 0.375em;
  left: 0.4375em;
  width: 2.875em;
  height: 2.5em;
  border-radius: 4px;
  background: #d2ebea;
}

.car .door .handle {
  position: absolute;
  right: 0.625em;
  top: 4.375em;
  width: 0.625em;
  height: 0.625em;
  background: #e1e8ef;
  border-radius: 50%;
}

.car .door .handle:after {
  content: "";
  width: 1.25em;
  height: 0.25em;
  border-radius: 10px;
  background: #e1e8ef;
  position: absolute;
  top: 50%;
  left: -0.3125em;
  margin-top: -0.125em;
}

.car .door .bottom {
  position: absolute;
  bottom: 0.375em;
  left: 0.6875em;
  width: 2.375em;
  height: 0.75em;
}

.car .door .bottom:before,
.car .door .bottom:after {
  content: "";
  display: block;
  width: 100%;
  height: 0.1875em;
  background: #e1e8ef;
  height: 0.25em;
  border-radius: 10px;
  margin-bottom: 0.25em;
}

.car .window {
  position: absolute;
  top: 1.125em;
  left: 12.5em;
  width: 2em;
  background: #ececec;
  height: 4.5em;
  border-radius: 10px 10px 0 10px;
}

.car .window:before {
  content: "";
  width: 100%;
  height: 1.25em;
  background: #ececec;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.9375em;
  border-radius: 0 10px 10px 10px;
}

.car .window:after {
  content: "";
  height: 1.25em;
  background: #ececec;
  position: absolute;
  top: 1.0625em;
  left: -0.8125em;
  width: 4.1875em;
  transform-origin: bottom;
  -webkit-transform: rotate(74deg);
  -moz-transform: rotate(74deg);
  -ms-transform: rotate(74deg);
  -o-transform: rotate(74deg);
  transform: rotate(74deg);
  border-radius: 10px 10px 10px 10px;
}

.car .light {
  position: absolute;
  width: 0.625em;
  height: 0.625em;
  background: #ff8c40;
  right: 3.75em;
  bottom: 3.125em;
  border-radius: 3px;
}

.car .light-front {
  position: absolute;
  width: 0.5em;
  height: 0.5em;
  background: #ff8c40;
  right: -0.1875em;
  bottom: 3.5625em;
  border-radius: 3px;
}

.car .light-front:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #ff8c40;
  top: 100%;
  height: 0.9375em;
  border-radius: 3px;
  margin-top: 2px;
}

.car .antenna {
  position: absolute;
  width: 1.625em;
  height: 0.625em;
  background: #fff;
  bottom: 100%;
  left: 1.0625em;
  border-radius: 4px 4px 0 0;
}

.car .antenna:before {
  content: "";
  position: absolute;
  width: 2.375em;
  height: 0.25em;
  background: #fff;
  bottom: 0;
  left: -1.375em;
  -webkit-transform: rotate(55deg);
  -moz-transform: rotate(55deg);
  -ms-transform: rotate(55deg);
  -o-transform: rotate(55deg);
  transform: rotate(55deg);
  -webkit-transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  -o-transform-origin: right;
  transform-origin: right;
  border-radius: 4px;
}

.wind {
  position: absolute;
  z-index: -1;
  right: 100%;
  height: 100%;
  margin-right: -1.25em;
}

.wind .p {
  position: absolute;
  background: #fff;
  border-radius: 0.625em;
  height: 0.625em;
}

.wind .p1 {
  width: 4.375em;
  position: absolute;
  right: 0;
  top: 1.5625em;
  animation: wind 1s -1s linear infinite;
}

.wind .p2 {
  width: 6.25em;
  right: 2.5em;
  top: 3.75em;
  animation: wind 1s -2s linear infinite;
}

.wind .p3 {
  width: 3.125em;
  right: 0;
  top: 6.5625em;
  animation: wind 1s -1s linear infinite;
}

.wind .p4 {
  width: 3.75em;
  right: 6.25em;
  top: 8.4375em;
  animation: wind 1s 1s linear infinite;
}

.wind .p5 {
  width: 4.375em;
  right: 1.875em;
  top: 9.0625em;
  animation: wind 1s -1.5s linear infinite;
}

.car-wrapper_inner {
  position: relative;
  z-index: 4;
}

.car-track {
  z-index: 9;
}

@keyframes carMove {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-1px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes wind {
  0% {
    transform: translateX(100%);
    opacity: 1;
  }
  100% {
    transform: translateX(-400%);
    opacity: 0;
  }
}

.car_outter {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  position: relative;
  animation: carDrive 5s 1s cubic-bezier(0.88, 0.08, 0.16, 1.1) infinite;
}

@keyframes carDrive {
  0% {
    transform: translateX(-100%);
  }
  25% {
    transform: translateX(0%);
  }
  70% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes bgIn {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

@keyframes wrapperIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* vendor-section-css */

/* counter-css */

.stat-number {
  font-size: 80px;
  font-weight: bold;
  color: #1f9a95;
}

.stat-number:after {
  content: "";
  background-image: url(../../img/add.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
}
