@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&amp;family=Playfair+Display:ital,wght@0,400..900;1,400..900&amp;display=swap');

:root {
  --theme-color: #009688;
  --theme-color2: #EE3131; 
  --second-color: #42A4FF;
  --font-family:-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
  --transition: 0.3s linear;
  --gradient-color: linear-gradient(180deg, #d2ff00 0%, #00d2ff 100%);
}

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box; 
  font-family: var(--font-family);
  letter-spacing: 0.3px;
  font-size: 14px;
  font-weight: 500;
}
.h1, .h2, .h3, .h4, .h5{
  font-weight: 600;
}
html,body{
  overflow-x: hidden;
}
p{
  color: #000;
  font-size: 15px;
  line-height: 1.7;
}
a{
  text-decoration: none;
}
/*scroll*/
::-webkit-scrollbar-track{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  background-color: #F5F5F5;
}

::-webkit-scrollbar
{
  width: 6px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
  background-color: var(--theme-color);
}
.form-control:focus{
  box-shadow: none;
  border-color: var(--theme-color);
}
/*===================================================
BUTTONS
===================================================*/
.btn-theme {
  position: relative;
  border-radius: 4px;
  background: var(--theme-color);
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 11px 30px;
}
.attachment-large1{
  width: 200px;
  
}
.btn-theme:after {
  content: " ";
  top: 0;
  width: 0%;
  height: 100%;
  background: var(--second-color);
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
  border-radius: 4px;
}

.btn-theme:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.btn-theme span {
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 1.125em;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}

.btn-theme:hover span {
  animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}


/*=======================================================
section title
=======================================================*/
.section-title{
  margin-bottom: 40px;
}
.section-title .title{
  font-size: 25px;
  font-weight: bold;
  text-transform: capitalize;
}
.section-title .progress{
  width: 10%;
  height: 6px;
}
.section-title.text-center .progress{
  margin: auto;
}
.section-title .progress-bar,.widget-title .progress-bar{
  width: 100%;
  background-color: var(--theme-color);
  background-size: var(--bs-progress-height) var(--bs-progress-height);
  /*background-image: linear-gradient(45deg, rgb(255 255 255 / 80%) 25%, transparent 25%, transparent 50%, 
    rgb(255 255 255 / 80%) 50%, 
    rgb(255 255 255 / 80%) 75%, transparent 75%, transparent);*/
  }

/*======================================================
header
======================================================*/
header{
  background-color:white;
  padding: 6px 0;
/*  border-bottom: 2px solid var(--theme-color);*/
/*  border-top: 2px solid var(--theme-color);*/
}
header .navbar-nav a{
  padding: 30px 30px;
  font-size: 16px;
  font-weight: 600;
  color: black;
  transition: 0.2s linear;
}
header .navbar-nav a:hover{
  color: var(--theme-color);
}
.header-social{
  gap: 10px;
}
.header-social a{
  width: 35px;
  height: 35px;
  border-radius: 4px;
  display: inline-block;
  background-color: var(--second-color);
  text-align: center;
  line-height: 35px;
  color: #fff;
}
/*header .navbar-brand::after {
  border-radius: 50%;
  content: "";
  height: 100px;
  left: 0;
  position: absolute;
  top: 2px;
  width: 115px;
  z-index: 10;
  background-color: var(--theme-color);
}*/
.navbar-brand{
  display: flex;
  align-items: center;
}
.navbar-brand span{
  position: relative;
  z-index: 1000;
  padding-left: 10px;
  font-size: 25px;
  font-weight: 800;
}
.navbar-brand > img {
  display: block;
  left: 0;
  position: relative;
  top: 0;
  width: 90px;
  z-index: 100;
  background-color: #fff;
  border-radius: 10px;
}
.navbar-nav .menu{
  position: relative;
  transition: var(--transition);
}
.navbar-nav .menu i{
  font-size: 16px;
}
.navbar-nav li .dropdown_menu{
  border-top: 5px solid var(--theme-color);
  border-bottom: 5px solid var(--theme-color);
  display: none;
  min-width: 300px;
  background-color: #fff;
  position: absolute;
  top: 52px;
  left: 0;
  transition: var(--transition);
  max-height: 320px;
  line-height: 25px;
  overflow-y: auto;
  z-index: 1000;
}
.navbar-nav li .dropdown_menu a{
  display: block;
  padding: 7px 25px;
  font-size: 16px;
  line-height: 19px;
  color: #000;
  font-weight: 400;
}
.navbar-nav li .dropdown_menu a:hover{
  background-color: var(--theme-color);
  color: #fff;
}
.navbar-toggler-icon{
  color: black;
}
/*=================================================
main slider
=================================================*/
.carousel-control-next, .carousel-control-prev{
  width: 5%;
}
/*#main-slider:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 42%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
  webkit-mask: url(../images/download.svg);
  mask: url(../images/download.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: -no-repeat;
  -webkit-mask-position: left top;
  mask-position: left top;
  -webkit-mask-size: cover;
  mask-size: cover;
  transform: rotate(180deg);
}*/
#main-slider .img-slider{
  width: 100%;
/*  height: 500px;*/
  object-fit: cover;
  filter: brightness(0.8);
}
.slider-caption {
  position: absolute;
    top: 48%;
    left: 23%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 1;
}
.slider-caption .caption-subtitle{
     color: var(--theme-color);
    background-color: #fff;
    border-radius: 50px 50px;
    padding: 5px 20px 10px 25px;
    font-weight: 600;
    display: inline-block;
    letter-spacing: 2px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}
.fa-thumbs-up{
  font-size: 25px;
}
.slider-caption .caption-title{
  font-size: 60px;
  font-weight: 600;
  margin: 10px 0;
   font-family: "Dancing Script", cursive;
}
.brush-img{
      position: absolute;
    top: 72%;
    left: 50%;
    width: 150px;
    z-index: -1;
}
.taxi-span{
  font-size: 100px ;
}
.slider-caption .caption-title span{
  -webkit-text-stroke-width: 1px;
  stroke-width: 1px;
  -webkit-text-stroke-color: var(--theme-color);
  stroke: var(--theme-color);
  color: #fff;
  position: relative;
  margin-left: 10px;
}

.slider-caption .caption-title span svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  transform: translate(-50%, -50%);
  overflow: visible;
  z-index: -1;
}

.slider-caption .caption-title span svg path {
  stroke: var(--theme-color2);
  stroke-width: 140px;
  stroke: var(--theme-color2);
  stroke-width: 140px;
  fill: none;
  opacity: 0;
  stroke-dasharray: 0 1500;
  transition: .3s;
  animation: headline-dash forwards;
  animation-duration: 1.2s;
  animation-iteration-count: 1;
}
@keyframes headline-dash{
  0% {
    stroke-dasharray: 0 1500;
    opacity: 1;
  }

  100% {
    stroke-dasharray: 1500 1500;
    opacity: 1;
  }
}
.slider-caption p{
  font-size: 1.3em;
  max-width: 79%;
}
.slider-caption .h2 {
  font-size: 70px;
  font-weight: 900;
}
.slider-caption .h2 span {
  color: var(--second-color);
}

/*=================================================
enquiry-form
=================================================*/

#myModal .modal-content{
  background-color: transparent;
  border: 0;
}
#myModal .modal-content .btn-close{
    position: absolute;
    right: 25px;
    top: 60px;
    z-index: 99;
}
#myModal  .enquiry-form{
    border: 0;
    border-top: 0;
    border-bottom: 0;
    border-radius: 6px;
    background: transparent;
    background: transparent;
    background-position: right;
    width: 100%;
    margin: 1% 1%;
}
#myModal  .enquiry-form form{
    position: relative;
    z-index: 1;
    background: #fff;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 30px;
    padding-top: 0;
    border-radius: 10px;
    box-shadow: 0px 6px 30px rgba(7, 36, 95, 0.08);
}
.enquiry-form form .form-title{
  margin-bottom: 20px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}
/*.input-group-text{
  display: none;
}*/
.taxi-booking__form__title {
  position: relative;
  top: -27px;
  margin-bottom: 3px;
  border-radius: 6px;
  margin-left: 35%;
  display: inline-block;
  padding: 17.5px 20px 17.5px 20px;
  background-color: var(--theme-color);
  /*clip-path: polygon(0 0, 100% 0%, 92% 100%, 0% 100%);*/
  z-index: 1;
}
.taxi-booking__form__title2{
  position: relative;
  top: -27px;
  margin-bottom: 3px;
  border-radius: 6px;
  display: inline-block;
  padding: 17.5px 46px 17.5px 20px;
  background-color: var(--theme-color);
  clip-path: polygon(0 0, 100% 0%, 92% 100%, 0% 100%);
  z-index: 1;
}
.taxi-booking__form__heading {
  margin: 0;
  color: #fff;
  position: relative;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.03em;
  line-height: 1.25;
  text-transform: capitalize;
}
.taxi-booking__form__heading::before {
  content: "";
  width: 6px;
  height: calc(100% - 5px);
  background-color: #141414;
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
}

.enquiry-form form .input-group-text{
  /*color: var(--theme-color);*/
  background-color: #fff;
  border-left: none;
}
.enquiry-form form .input-group:focus .input-group-text{
  border-color: var(--second-color);
}
.enquiry-form form .form-control{
  padding: 12px;
  border-right: none;
}
/*
.enquiry-form form ::placeholder{
  color: black;
}
*/
.enquiry-form form .form-control:focus{
  box-shadow: none;
  border-color: var(--second-color);
}
.enquiry-form form .btn-theme{
  width: 100%;
  padding: 10px;
  text-transform: uppercase;
}
/*.enquiry-form form .btn-theme span{
  color: var(--theme-color);
}*/

/*===============================================
service section
===============================================*/
.service-box{
  background-color: var(--theme-color2);
  border-radius: 10px;
  color: #fff;
  transition: var(--transition);
}
.service-box .service-img img{
  border-radius: 10px;
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.service-box .service-body{
  padding: 20px;
}
.service-box .service-icon{
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: var(--second-color);
  border-radius: 50%;
  font-size: 30px;
  text-align: center;
  margin: auto;
  margin-bottom: 30px;
}
.service-box .service-title{
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 15px;
}
.service-box p{
  font-size: 18px;
}
.service-box:hover{
  border-color: var(--second-color);
}

/*========================================================
about
========================================================*/
.about-img{
  position: relative;
}
.about-us .about-img img:first-child{
  width: 75%;
  display: block;
  margin-left: 110px;
  box-shadow: 0 20px 100px rgba(0,0,0,.1);
  border-radius: 6px;
}
.about-us .about-img img:last-child{
  width: 60%;
  box-shadow: 0 20px 100px rgba(0,0,0,.1);
  border-radius: 6px;
  margin-left: auto;
  display: block;
  margin-top: -190px;
}
.experience{
  width: 250px;
  height: 250px;
  background-color: var(--theme-color);
  border-radius: 50%;
  text-align: center;
  padding: 40px 0;
  color: #fff;
  position: absolute;
  top: 150px;
  left: 0;
  z-index: 1;
  border: 15px solid white;
}
.experience .year{
  font-size: 40px;
  font-weight: 800;
}
.experience p{
  color: #fff;
  font-weight: 600;
  font-size: 20px;
}

.about-us .owl-nav button {
  height: 56px;
  width: 56px;
  border-radius: 50px;
  border: 1px solid #ccc!important;
}
.about-us .owl-nav button.owl-next {
  margin-left: 20px;
}
.about-slider{
  background: url(../images/bg/about.webp);
}


/*==============How it Works=========*/
.work-sec{
  padding-bottom: 60px;
}
.div-work-margin{
  border:1px solid transparent;
  border-radius: 10px;
  position: relative;
  box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.13);
  height: 350px;
  margin-top: 30px;
  padding: 20px;

}
ins{
  color: white;
}
.bht{
  color: #777777;
  font-size: 13px;
}
.div-work-margin:hover{
  border: 2.5px solid var(--theme-color);
  position: relative;
  transform: scale(1.01);
  transition: 0.5s;
}
.div-work-margin p{
  font-size: 15px;
}
.work-icon-div .fa-solid{
  font-size: 40px;
  padding: 20px;
  border: 1px solid transparent;
  border-radius: 50%;
  box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.13);
}
@media (max-width: 991px) {
  .div-work-margin{
    margin: 15px 0px;
  }
}
@media (max-width: 375px) {
  .div-work-margin{
    margin: 15px 0px;
  }
}
@media (max-width: 360px) {
  .div-work-margin{
       margin: 15px 0px;
  }
}

/*==============Taxi Service section=========*/
.taxi-service-section .card{
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  padding: 20px;
  border-radius: 20px;
  border: none;
}
.sheer{
  color: var(--theme-color2);
}
.taxi-service-section .card .card-img{
  overflow: hidden;
  border-radius: 20px;
}
.taxi-service-section .card img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.3s linear;
}
.taxi-service-section .card .card-body{
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.taxi-service-section .card .card-title{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.taxi-service-section .card:hover img {
  -webkit-transform: scale(1.05) rotate(2deg);
  transform: scale(1.05) rotate(2deg);
  opacity: .8;
}


/*===============group buttons===============*/
.offer-action {
  text-align: center;
  background: var(--second-color) none repeat scroll 0 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  margin: 24px auto 0;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border-radius: 4px;
}

.offer-action a {
  display: inline-block;
  text-transform: uppercase;
  padding: 15px 15px;
  font-weight: 500;
  color: #fff;
  font-size: 14px;
  width: 49%;
  line-height: 10px;
}
.offer-action a i{
  padding-right: 5px;
}

.offer-action:after {
  position: absolute;
  content: "";
  width: 66%;
  height: 100%;
  background: var(--theme-color) none repeat scroll 0 0;
  right: -36px;
  z-index: -1;
  -webkit-transform: skewX(40deg);
  transform: skewX(40deg);
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.offer-action:hover {
  background: var(--theme-color) none repeat scroll 0 0;
}

.offer-action:hover:after {
  background: var(--second-color) none repeat scroll 0 0;
}


.multi-button {
  margin-top: 15px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.multi-button a {
  width: 100%;
  display: inline-block;
  text-align: center;
}
.multi-button a i{
  padding-right: 5px;
}

/*================content-container=============*/
.content-container img{
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.content-container .content-box{
  border: 1px solid #dfdfdf;
  padding: 20px;
  border-radius: 10px;
}
.content-container .content-box p{
  text-align: justify;
}
.content-container .title{
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 15px;
  line-height: 1.2;
}
.driver-details__info {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-top: 25px;
  margin-top: 29px;
  border-top: 1px solid #dfdfdf;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.driver-details__info li {
  display: flex;
  align-items: center;
  gap: 7px;
}
.driver-details__info li .driver-details__info__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F2F2F2;
  font-size: 16px;
  color: var(--second-color);
  border-radius: 50%;
  transition: all 500ms ease;
}
.driver-details__info li a {
  color: #838383;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: all 500ms ease;
}

/*=====================cab section=================*/
.tour-listing__card {
  position: relative;
  border-radius: 10px;
  border: 1px solid #EBE6DE;
  background-color: #ffffff;
  transition: all 500ms ease;
}
.tour-listing__card:hover {
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.06);
}
.tour-listing__card-image-box {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  z-index: 1;
  margin: -1px -1px 0;
}
.tour-listing__card-image-box img{
  height: 250px;
  width: 100%;
  object-fit: cover;
}
.tour-listing__card-image {
  display: block;
  width: 100%;
  border-radius: 10px 10px 0 0;
  transition: all 500ms ease;
}
.tour-listing__card:hover .tour-listing__card-image {
  transform: scale(1.1);
}

.tour-listing__card-image-overlay {
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgb(4 40 72 / 33%);
  z-index: 1;
  border-radius: 10px 10px 0 0;
  transition: all 500ms ease;
}
.tour-listing__card:hover .tour-listing__card-image-overlay {
  top: 0;
  height: 100%;
}
.tour-listing__card-content {
  padding: 30px;
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .tour-listing__card-content {
    padding: 32px 25px 25px;
  }
}
@media (max-width: 375px) {
  .tour-listing__card-content {
    padding: 32px 20px 20px;
  }
}
@media (max-width: 360px) {
  .tour-listing__card-content {
    padding: 32px 15px 20px;
  }
}

.tour-listing__card-title {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 1px;
  font-weight: bold;
  color: #000;
}
.tour-listing__card-title:hover {
  color: var(--theme-color);
}
.tour-listing__card-title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.tour-listing__card-title a:hover {
  background-size: 100% 1px;
}
.tour-listing__card-text {
  line-height: 24px;
  margin-bottom: 18px;
}
.tour-listing__card-inner-content {
  position: relative;
  padding: 17px 20px 15px;
  margin-top: 18px;
  background-color: #FAF5EE;
  border-radius: 10px;
  transition: all 400ms ease-in-out;
  z-index: 1;
}
.tour-listing__card-inner-content::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--theme-color);
  z-index: 1;
  border-radius: 10px 10px 0 0;
  transition: all 500ms ease;
  border-radius: 10px;
  z-index: -1;
}
.tour-listing__card:hover .tour-listing__card-inner-content::after {
  top: 0;
  height: 100%;
}

.tour-listing__card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}
.tour-listing__card-bottom-left {
  display: flex;
  align-items: center;
}
.tour-listing__card-day {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.tour-listing__card-day span {
  position: relative;
  top: -1px;
  font-size: 14px;
  color: var(--theme-color);
  margin-right: 9px;
  transition: all 0.4s ease-in-out;
}
.tour-listing__card:hover .tour-listing__card-day span {
  color: #ffffff
}
.tour-listing__card-day-text {
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}
.tour-listing__card:hover .tour-listing__card-day-text {
  color: #ffffff
}

.tour-listing__card-price {
  line-height: 1;
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
  color: #000;
  font-weight: bold;
}
.tour-listing__card:hover .tour-listing__card-price {
  color: #ffffff;
}
.tour-listing__card .multi-button .btn-theme {
  padding: 10px;
}

/*======================footer===================*/
.footer {
  background-image:  linear-gradient( rgba(46, 57, 103, 0.95) , rgba(46, 57, 103, 0.95)),url("../images/footer-bg-img.jpg");
  background-size: cover;
  background
  padding-top: 40px;
  background-position: center;
  color: rgb(255 255 255 / 74%);
  border-top: 1px solid var(--second-color);
  border-bottom: 1px solid var(--second-color);
  position: relative;
}

.footer-background-overlay{
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0.2;
}
.footer-icon-img{
    position: absolute;
    left: 2px;
}
.footer-widget.top-widget{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.footer-widget-logo{
   display: flex;
    padding: 5px;
    border: 1px solid transparent;
    border-radius: 50%;
    background-color: white;
    width: 60px;
    height: 60px;
    overflow: hidden;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.footer-widget-logo .footer-logo-img{
    width: 100%;
    height: auto;
}
.footer-left-img{
  position: absolute;
    width: auto;
    top: 50px;
    z-index: 0;
    opacity: 0.5;
    left: 100px;
}
.attachment-large{
  width: 50px;
  margin-top: -30px;
}
.footer .col-lg-3{
  padding: 5px 40px 5px 35px ;
}
.footer-right-img{
  position: absolute;
    width: auto;
    bottom: 10px;
    z-index: 0;
    opacity: 0.5;
    right: 80px;
}
.footer .header-social a {
    border-radius: 50%;
    color: black !important;
    display: inline-block;
    background-color:white;
    text-align: center;
    line-height: 35px;
    margin: 0px 5px 0px 5px;

}
.footer .fas{
      margin-right: 10px;
    display: inline-block;
    color: white;
    background: transparent;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 0;
}
.footer-social{
  margin-top: -10px;
}
.rotate-img {
    animation-name: rotateme;
    animation-duration: 24s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }
@keyframes rotateme{
  0% {
    transform: rotate(0deg);
}

100% {
    transform: rotate(360deg);
}
}
.footer-arrow-img1{
    position: absolute;
    width: auto;
    top: 100px;
    z-index: 0;
    opacity: 0.5;
    left: -78px;
}
.footer-arrow-img2{
    position: absolute;
    width: auto;
    top: 0;
    z-index: 0;
    left: 75%;
}

.main-footer__pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  background-repeat: repeat-x;
  animation: cloudMove 60s linear 0s infinite;
}
@keyframes cloudMove {
  0% {
    background-position: -1920px 100%;
  }
  100% {
    background-position: 0 100%;
  }
}

.footer-title {
  color: #fff;
  text-transform: capitalize;
  padding-top: 18px;
  margin-bottom: 5px;
  font-size: 25px;
  font-weight: 700;
}
.footer_list, .contact_list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 4px;
}
.footer_list a, .contact_list a {
  color: #fff;
  display: block;
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
}
.footer_list a:before {
  content: '\f061';
  font: var(--fa-font-solid);
  padding-right: 10px;
  color: white;
  position: absolute;
  top: 8px;
  left: 0;
}
.contact_list a i {
  margin-right: 10px;
  display: inline-block;
  background: var(--second-color);
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
}
.contact_list a {
  padding-left: 40px;
}
.footer .progress-bar {
  width: 100%;
  background-color: #fff;
  background-size: var(--bs-progress-height) var(--bs-progress-height);
/*  background-image: linear-gradient(45deg, var(--theme-color) 25%, transparent 25%, transparent 50%, var(--theme-color) 50%, var(--theme-color) 75%, transparent 75%, transparent)*/
}
.footer .progress {
  width: 30%;
  height: 6px;
  margin-bottom: 20px;
}

.copyright{
  padding: 7px 0;
  border-top: 1px solid black;
  color: #fff;
  text-align: center;
}
.copyright p{
  color: #fff;
}
.copyright p a{
  color: var(--theme-color);
}

/*breadcrumbs*/
.sub-banner {
  background-image: linear-gradient( rgba(0, 0, 0, 0.5) , rgba(0, 0, 0, 0.5)),url(../images/breadcrumbs/common.webp);
  background-size: cover;
  height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
  font-family: var(--font-family);
}

.sub-banner .breadcrumb-area {
  letter-spacing: 1px;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
}

.sub-banner .breadcrumb-area .h1 {
  margin: 0 0 5px;
  font-weight: 700;
  color: #fff;
  font-size: 30px;
  text-transform: uppercase;
}

.sub-banner .breadcrumbs li {
  display: inline-block;
  list-style: none;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.sub-banner .breadcrumbs li a{
  color: #fff;
}

.sub-banner .breadcrumbs .active {
  margin-left: 3px;
  color: #fff;
}

.sub-banner .breadcrumbs .active:before {
  content: "/";
  font-family: "font awesome 6 free";
  font-size: 16px;
  margin-right: 7px;
  font-weight: 600;
}

/*=============contact section======*/
.contact-section .card{
  padding: 30px;
  border-radius: 20px;
  flex-direction:row;
  align-items: center;
  margin-bottom: 30px;
  border: none;
}

.contact-section .card .card-icon{
  width: 23%;
}
.contact-section .card .card-body{
  width: 70%;
  padding: 0;
}
.contact-section .card i{
  background-color: var(--theme-color);
  font-size: 35px;
  color: #fff;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 10px;
  text-align: center;
}
.contact-section .card-title{
  font-size: 25px;
  font-weight: 600;
}
.contact-section .card p{
  margin-bottom: 0;
  font-size: 15px;
}
.contact-section .card.bg-white{
  background-color: #fff;
  color: #000;
}

/*=============contact-form-section============*/
.contact-form-section .contact-box{
  box-shadow: rgba(100,100,111,.2)0 7px 29px;
  border-radius: 20px;
}
.contact-form-section img{
  width: 100%;
  height: 100%;
  border-radius: 20px 0 0 20px;
  object-fit: cover;
}
.contact-form-section iframe{
}
.contact-form-section form{
  padding: 30px;
  border-radius: 0 20px 20px 0;
}
.contact-form-section form .form-control{
  margin-bottom: 15px;
  padding: 15px;
}
.contact-form-section form .form-title{
  font-size: 25px;
  color: #000;
  margin-bottom: 15px;
  background-color: transparent;
}
.contact-form-section form label{
  color: #fff;
}
.contact_details{
  background-color: #f1f1f1;
  padding: 30px;
  height: 100%;
  border-radius: 0 20px 20px 0;
}
/*service page*/
.service-page .contentBox img{
  width: 100%;
  border-radius: 20px;
  margin-bottom: 20px;
}
.service-page .contentBox h3,.service-page .contentBox .h3{
  font-weight: 600;
  margin-bottom: 20px;
}
.service-page .contentBox p{
  text-align: justify;
}

/*sidebar*/
.widget_service_categories {
  padding: 20px;
  background-color: #e9f5f6;
  border-radius: 8px;
  margin-bottom: 25px;
}
.widget_service_categories ul, .widget_service_categories ol {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  padding: 0;
}
.widget_service_categories ul li:first-child, .widget_service_categories ol li:first-child {
  padding-top: 0;
}
.widget_service_categories ul li {
  border: 0;
  padding-bottom: 10px;
}
.widget_service_categories ul li.active a {
  background: var(--theme-color);
  color: #ffffff;
}
.widget_service_categories ul li a {
  background: #fff;
  border-radius: 8px;
  padding: 15px 24px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #0e3440;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  position: relative;
  text-transform: capitalize;
  transition: all 0.5s ease-out;
}

.widget_service_categories ul li a:hover {
  background: var(--theme-color);
  color: #ffffff;
}
.widget-title .title{
  color: var(--theme-color);
  margin-bottom: 5px;
  font-size: 25px;
  font-weight: bold;
  text-transform: capitalize;
}
.widget-title .progress{
  width: 30%;
  height: 6px;
  margin-bottom: 20px;
}

/*chardham page*/
.booking-form-wrap {
  border-radius: 10px;
  background: linear-gradient(125deg, rgba(99, 171, 69, 0.1) 0%, rgba(251, 176, 59, 0.1) 100%);
  border-radius: 5px;
  padding: 25px;
}
.package-details-area h4 {
  color: #000;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.75px;
  margin-bottom: 10px;
  padding-top: 10px;
}
.form-inner {
  line-height: 1;
}

.mb-20 {
  margin-bottom: 20px;
}
.form-inner label {
  color: #5d5b58;
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  line-height: 1;
  margin-bottom: 7px;
}
.form-inner label span {
  color: red;
  font-size: 16px;
}
.form-inner input {
  width: 100%;
  border-radius: 0;
  background: #fff;
  color: #000;
  font-size: 13px;
  font-weight: 400;
  padding: 10px 20px;
  height: 50px;
  border: 1px solid #eee;
}

.form-inner textarea {
  width: 100%;
  border-radius: 5px;
  background: #fff;
  color: #5e5e5e;
  border: 1px solid #eee;
  outline: none;
  font-size: 13px;
  font-weight: 400;
  padding: 20px 25px;
  min-height: 150px;
}
.service-page ol{
  padding-left: 20px;
}
.service-page ol li{
  margin: 5px 0;
}

/*=================testimonial=================*/
.testimonial-section {
    /*background: url(../images/bg/testimonial.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;*/
  }
  .testimonial-item-two {
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    background: #fff;
    padding: 60px 35px 40px;
    position: relative;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .testimonial-icon-two {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--theme-color);
    font-size: 30px;
    color: #fff;
    line-height: 1;
    position: absolute;
    left: 35px;
    top: -40px;
  }
  .testimonial-content-two p {
    margin-bottom: 25px;
  }

  .testimonial-avatar-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .testimonial-avatar-info .avatar-thumb {
    width: 40px;
    flex: 0 0 40px;
    margin-right: 8px;
  }
  .testimonial-avatar-info .avatar-thumb img {
    border-radius: 50%;
  }
  .testimonial-avatar-info .avatar-content {
    text-align: left;
  }
  .testimonial-avatar-info .avatar-content .title {
    margin-bottom: 5px;
    font-size: 20px;
  }
  .testimonial-avatar-info .avatar-content p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.2;
  }
  .text-second{
    color: var(--second-color);
  }

/*cab section*/
.banefits-two__single {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 45px 30px 38px 30px;
  border: 1px solid transparent;
  border-radius: 10px;
}
.banefits-two__single-img {
  position: relative;
  display: block;
  text-align: center;
  margin: 0 auto;
  z-index: 1;
}
.btn-theme-fleet {
  position: relative;
  border-radius: 4px;
  background: var(--theme-color);
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 8px 25px;
}
.attachment-large1{
  width: 200px;
  
}
.fleet-card{
  margin-top:10px;
}
.fleet-img{
  width: 100%;
  height: 160px;
  border: 1px solid transparent;
  border-radius: 10px;
}
.btn-theme-fleet:after {
  content: " ";
  top: 0;
  width: 0%;
  height: 100%;
  background: var(--second-color);
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
  border-radius: 4px;
}

.btn-theme-fleet:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.btn-theme-fleet span {
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 1.125em;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}




.banefits-two__single-img .inner::before {
  position: absolute;
  top: 0%;
  left: 0%;
  bottom: 0%;
  right: 0%;
  content: '';
  transform: scaleY(1.0);
  opacity: 0;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  z-index: 1;
}

.banefits-two__single:hover .banefits-two__single-img .inner::before {
  opacity: 0.70;
  transform: scaleY(1.0);
}
.star-div .fa-star{
  color: #ffd700;
  margin-top: 10px;
}

.banefits-two__single-img .inner img {
  width: 100%;
  transform: scale(1.0);
  transition: 0.3s linear;
  height: 210px;
  object-fit: cover;
}

.banefits-two__single:hover .banefits-two__single-img .inner img {
  transform: scale(1.1) rotate(1deg);
}

.banefits-two__single-content {
  position: relative;
  display: block;
}

.banefits-two__single-content .cab-title {
  margin-bottom: 4px;
  font-size: 25px;
  font-weight: 600;
}
.banefits-two__single-content .multi-button .btn-theme {
    padding: 10px;
}
.banefits-two__single-content .fa-solid, .fas{
  color: #1239ac;
}

.btn-header{
  background-color: var(--theme-color);
  color: #fff;
}
.btn-header:after{
  background-color: #000;
}

/*book now*/
.bookingform{
  box-shadow: 0px 6px 30px rgba(7, 36, 95, 0.08);
  border-radius: 10px;
}
.booking-page .form-control,.booking-page .form-select {
  padding: 10px;
}
.booking-page label{
  color: #000;
  margin-bottom: 5px;
}
.booking-page label span{
  color: #ff0000;
  padding-left: 5px;
}
.booking-page .enquiry-form{
  margin-bottom: 0!important;
}
.booking-page .enquiry-form form{
  background-color: #e7e7e7;
  box-shadow: none;
  border-radius: 10px 0 0 10px;
}
.booking-page .enquiry-form form .form-title{
  color: #000;
}
.booking-page img{
  border-radius: 0 10px 10px 0;
}
.booking-page .enquiry-form form .btn-theme{
  border: none;
  padding: 13px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-one {
  position: relative;
  background-color: #F2F2F2;
}
.about-one--about {
  background-color: #FFFFFF;
}
.about-one__bg {
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.6;
  mix-blend-mode: overlay;
}
.about-one .container {
  position: relative;
  z-index: 1;
}
.about-one__image {
  position: relative;
}
.about-one__image__one {
  position: relative;
  width: 100%;
}
.bht2{
  color: #777777;
  font-size: 15px;
}
@media (max-width: 575px) {
  .about-one__image__one {
    padding-left: 0px;
  }
}

@media (max-width: 1199px) {
  .about-one__image__one::before {
    top: 25px;
    left: -25px;
  }
}
@media (max-width: 991px) {
  .about-one__image__one::before {
    top: 25px;
    left: -25px;
  }
}
@media (max-width: 575px) {
  .about-one__image__one::before {
    width: calc(100% - 30px);
    left: -6px;
    animation: zumpBottom 2s linear infinite;
  }
}
.about-one__image__two {
  position: relative;
  margin-left: 170px;
  margin-top: -279px;
  width: 100%;
  max-width: 370px;
  z-index: 2;
  box-shadow: 0px 4px 60px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1199px) {
  .about-one__image__two {
    margin-left: 35px;
    margin-top: -160px;
  }
}
@media (max-width: 991px) {
  .about-one__image__two {
    margin-left: 170px;
    margin-top: -279px;
  }
}
@media (max-width: 767px) {
  .about-one__image__two {
    margin-left: 130px;
  }
}
@media (max-width: 575px) {
  .about-one__image__two {
    margin: 70px 0 0 0;
  }
}

.about-one__image__one__img{
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 30px;
  display: block;
  border: 1px solid transparent;
  border-radius: 15px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

@media (max-width: 575px) {
  .about-one__image__shape-one {
    display: none;
  }
}
.about-one__image__shape-two {
  position: absolute;
  left: -35px;
  bottom: -37px;
  animation: zump 2s linear infinite;
}
@media (max-width: 575px) {
  .about-one__image__shape-two {
    display: none;
  }
}
.about-one__experience {
  position: relative;
  position: absolute;
  left: 46px;
  bottom: 9.75px;
  z-index: 1;
}
@media (max-width: 375px) {
  .about-one__experience {
    left: 30px;
  }
}
.about-one__experience__inner {
  padding-bottom: 12px;
  text-align: center;
}
.about-one__experience__year {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.about-one__experience__text {
  margin: 0;
  font-size: 16px;
  color: #000000;
  line-height: 1.75;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
@media (max-width: 375px) {
  .about-one__experience__text {
    font-size: 14px;
  }
}
.about-one__experience__shape {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 0;
}
.about-one__experience__shape__one, .about-one__experience__shape__two {
  position: relative;
  width: 258px;
  height: 169px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background-color: var(--second-color);
}
@media (max-width: 375px) {
  .about-one__experience__shape__one, .about-one__experience__shape__two {
    width: 230px;
  }
}
.about-one__experience__shape__one {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
}
.about-one__experience__shape__two {
  left: -218px;
  background-color: #FFFFFF;
}
.about-one__content {
  margin-top: 29px;
}
@media (max-width: 991px) {
  .about-one__content {
    margin-top: 20px;
  }
}
@media (max-width: 575px) {
  .about-one__content {
    margin-top: 0px;
  }
}
.about-one .sec-title {
  margin-bottom: 19px;
}
.about-one__sub-title {
  margin-bottom: 22px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.about-one__text-box {
  margin-bottom: 39px;
  border-bottom: 1px solid #DFDFDF;
}
.about-one__text {
  margin-bottom: 30px;
  letter-spacing: -0.03em;
  text-transform: capitalize;
}
.about-one__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 0;
  bottom: 239px;
  animation: zumpBottom 2s linear infinite;
}
@media (max-width: 1599px) {
  .about-one__shape {
    max-width: 110px;
  }
}
@media (max-width: 1399px) {
  .about-one__shape {
    display: none;
  }
}

@keyframes zumpBottom {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}


/*float  buttons*/
.float{
  position:fixed;
  width:60px;
  height:60px;
  bottom:40px;
  right:40px;
  border: 10px solid #25d366;
  background-color:#fff;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:30px;
  z-index:100;
  line-height: 39px;
  z-index: 100000;
}

.float-call{
  border: 10px solid var(--second-color);
  left: 40px;
  font-size: 22px;
  line-height: 43px;
}

.my-float{
  margin-top:5px;
  font-size: 30px;
  color: #25d366;
}
.my-call{
  margin-top:5px;
  font-size: 25px;
  color: var(--theme-color);
}

/*testimonial-section*/
.bd-tm__item {
  background: #fff;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  padding: 46px 50px 50px 50px;
  border-radius: 6px;
  overflow: hidden;
  border-bottom: 3px solid var(--theme-color);
}
.bd-tm__item:hover .bd-tm__text p {
  color: #fff;
}
.bd-tm__item:hover .bd-tm__quote-icon i {
  color: #fff;
}
.bd-tm__item:hover .bd-tm__author {
  background: var(--theme-color);
}
.bd-tm__item:hover .bd-tm__author-name {
  color: #fff;
}
.bd-tm__item:hover .bd-tm__author-cat {
  color: #fff;
}
.bd-tm__item:hover::before {
  height: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-tm__item {
    padding: 40px 20px 40px 20px;
  }
}
.bd-tm__rating {
  margin-bottom: 15px;
}
.bd-tm__rating i {
  color: #ffd700;
}
.bd-hover-top::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  background: var(--theme-color);
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-transform: 0.5s;
  -moz-transform: 0.5s;
  -ms-transform: 0.5s;
  transform: 0.5s;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.bd-hover-top {
  z-index: 1;
  position: relative;
}
.bd-hover-top:hover::before {
  height: 100%;
}


/*.bd-tm__rating i:last-child {
  color: var(--clr-common-gray-4);
}*/
.bd-tm__text {
  margin-bottom: 32px;
}
.bd-tm__text p {
  font-size: 20px;
  color: #353739;
  letter-spacing: -0.3px;
  font-weight: 600;
  line-height: 30px;
}
.testimonial-section .bd-tm__author-img img{
  width: 45px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-tm__text p {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
.bd-tm__author {
  background: #f8f8f8;
  display: flex;
  position: relative;
  border-radius: 6px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.bd-tm__author-name {
  margin-bottom: 0;
  padding-top: 9px;
}
.bd-tm__author-img {
  margin-right: 20px;
}
.bd-tm__author-img img {
  width: 100%;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.bd-tm__quote-icon {
  position: absolute;
  right: 0;
  top: -30px;
}
.bd-tm__quote-icon i {
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  font-size: 35px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  display: block;
  color: var(--theme-color);
}

@media (max-width: 575px) {
  .bd-section__tm-title {
    margin-bottom: 20px;
  }
}


/*our services*/
.bg-light{
  background: #eef0f6!important;
}
.feature-three__single {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  padding: 30px;
  z-index: 1;
  height: 100%;
}

.feature-three__single .shape1 {
  position: absolute;
  top: 45px;
  right: 10px;
  opacity: 0.5;
  z-index: 1;
}

.feature-three__single .shape2 {
  position: absolute;
  left: 0;
  bottom: 25px;
  opacity: 0.5;
  z-index: 1;
}

.feature-three__single::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--second-color);
  border-radius: 10px;
  border-top-left-radius: 60px;
  border-bottom-right-radius: 60px;
  border:2px solid var(--theme-color);
  content: "";
  z-index: -1;
}

.feature-three__single::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: scaleX(0.7) rotateX(0deg);
  transition: all 0.4s linear;
  border-radius: 10px;
  border-top-left-radius: 60px;
  border-bottom-right-radius: 60px;
  opacity: 0;
  z-index: -1;
  content: "";
}

.feature-three__single:hover::after {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.feature-three__single-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #eef0f6;
  margin: 0 auto 37px;
}
.feature-three__single-icon img{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.feature-three__single-icon span::before {
  position: relative;
  display: inline-block;
  font-size: 50px;
}

.feature-three__single .h2 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  text-transform: capitalize;
}

.feature-three__single .h2 {
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-three__single:hover .h2{
  color: #ffffff !important;
}

.feature-three__single .border-box {
  position: relative;
  display: block;
  width: 50px;
  height: 3px;
  background: #eef0f6;
  margin: 10px auto 0px;
}

.feature-three__single .border-box::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 10px;
  height: 3px;
  content: "";
  margin: 0 auto;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-three__single:hover .border-box::before {
  background: #96a7d8;
}

.feature-three__single p {
  margin: 0;
  margin-top: 10px;
}

.feature-three__single .btn-box {
  position: relative;
  display: inline-block;
  margin-top: 24px;
}

.feature-three__single:hover p {
  color: #ffffff;
}

.feature-three__single .btn-box a {
  position: relative;
  display: block;
  padding: 0px 30px 0px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 50px;
  border-radius: 25px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-three__single .btn-box a:hover {
  color: #ffffff;
}

.feature-three__single .btn-box a span::before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  top: 2px;
}
.feature-three__single::after {
  background-color: var(--theme-color);
}
/*==============Discover Section=============*/
.discover-div-margin{
  margin-top: 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.discover-col-margin{
  margin-top:100px;
}
@media (max-width: 991px) {
  .discover-col-margin{
    margin: 0px;
  }
}
@media (max-width: 375px) {
  .discover-col-margin{
    margin: 0px;
  }
}
@media (max-width: 360px) {
  .discover-col-margin{
       margin: 0px;
  }
}

/*==============index blog=============*/
.index-blog-card{
  border-radius: 10px;
}
.index-blog-card img{
  border-radius: 10px;
}
.blog-margin-tp{
  margin-top: 40px;
}
.ibc-title{
  margin: 14px 10px;
}
.ibc-footer{
  margin: 10px 10px -13px;
}
.ibc-contact{
  padding: 35px 10px 30px ;
}
.service-mar-gin{
     border-bottom: solid 2px var(--theme-color);
    padding: 20px ;
    padding-bottom: 30px;
    background: #fff;
    margin: 20px;
    margin-top: -40px;
    margin-bottom: 0;
    position: relative;
    z-index: 100;
    border-radius: 6px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.13);
}
.ibc-contact li{
  margin-right: 3px;
}
.ibc-info i{
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F2F2F2;
  font-size: 16px;
  color:  var(--theme-color2);
  border-radius: 50%;
  transition: all 500ms ease;
}
.driver-details__info2 {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-top: 25px;
  margin-top: 29px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.driver-details__info2 li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.btn-theme-service {
  position: relative;
  border-radius: 5px;
  background: var(--theme-color);
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 8px 25px;
}
.btn-theme-service:after {
  content: " ";
  top: 0;
  width: 0%;
  height: 100%;
  background: var(--second-color);
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
  border-radius: 5px;
}

.btn-theme-service:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.btn-theme-service span {
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 1.125em;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}

.driver-details__info2 li .driver-details__info__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F2F2F2;
  font-size: 16px;
  color: var(--second-color);
  border-radius: 50%;
  transition: all 500ms ease;
}
.driver-details__info2 li a {
  color: #838383;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: all 500ms ease;
}
/*==============best cab service=============*/
.taxi-service-section{
  position: relative;
  background-image:  linear-gradient( rgba(46, 57, 103, 0.95) , rgba(46, 57, 103, 0.95)),url("../images/autozone-bg.jpg");
}
.taxi-service-section .inner-box{
  position: relative;
  display: block;
  background: #ffffff;
  border-radius: 10px;
  padding: 20px 20px 0px 20px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 500ms ease;
  text-align: center;
}

.taxi-service-section .inner-box .shape{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 139px;
  height: 139px;
  background-repeat: no-repeat;
  transition: all 500ms ease;
}

.taxi-service-section .inner-box:hover .shape{
  opacity: 0;
}

.taxi-service-section .inner-box .overlay-shape{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 139px;
  height: 139px;
  opacity: 0;
  background-repeat: no-repeat;
  transition: all 500ms ease;
}

.taxi-service-section .inner-box:hover .overlay-shape{
  opacity: 1;
}

.taxi-service-section .inner-box:hover{
  transform: translateY(-10px);
}

.btn-theme-cab {
  position: relative;
  width: 30%;
  color: white !important;
  font-size: 15px;
  border-radius: 30px;
  background: var(--theme-color);
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 10px 24px;
}
.attachment-large1{
  width: 200px;
  
}
.btn-theme-cab:after {
  content: " ";
  top: 0;
  width: 0%;
  height: 100%;
  background: var(--second-color);
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
  border-radius: 30px;
}
.abhth{
  width: 250px;
}


.btn-theme-cab {
  position: relative;
  border-radius: 4px;
  background: var(--theme-color);
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 8px 16px;
  width: auto;
}
.btn-theme-cab:after {
  content: " ";
  top: 0;
  width: 0%;
  height: 100%;
  background: ;
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
  border-radius: 4px;
}

.btn-theme-cab:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.btn-theme-cab span {
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 10;
}

.taxi-service-section .inner-box .h3{
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 8px;
}


.taxi-service-section .inner-box p{
  display: block;
  margin-bottom: 8px;
}

.taxi-service-section .inner-box .image-box{
  display: inline-block;
  width: 100%;
  border-radius: 16px;
  margin: 0 auto;
  margin-bottom: 20px !important;
  margin-top: 10px !important;
}

.taxi-service-section .inner-box .image-box img{
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  transition: all 500ms ease;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 14%);
}

.taxi-service-section .inner-box .image-box:before,
.taxi-service-section .inner-box .image-box:after{
  position: absolute;
  content: '';
  background: #fff;
  width: 5px;
  height: 100%;
  top: 0px;
  z-index: 1;
}

.taxi-service-section .inner-box .image-box:before{
  left: 0px;
}

.taxi-service-section .inner-box .image-box:after{
  right: 0px;
}

.taxi-service-section .inner-box .link-box{
  display: block;
  padding: 17px 0px 18px 0px;
}






/*============our gallery=========*/
.gallery-one__single {
  position: relative;
  display: block;
  padding-top: 75px;
  max-width: 400px;
  width: 100%;
  z-index: 1;
}

.gallery-one__single::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: #eef0f6;
  clip-path: polygon(0 0, 100% 6%, 100% 100%, 0% 100%);
  content: "";
  z-index: -1;
}

.gallery-one__single-img {
  position: relative;
  display: block;
}

.gallery-one__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 50%;
  border-top-left-radius: 0px;
  z-index: 1;
}

.gallery-one__single-img .inner img {
  width: 100%;
  transform: scale(1.01);
  transition: all 700ms ease;
  object-fit: cover;
}

.gallery-one__single:hover .gallery-one__single-img .inner img {
  transform: scale(1.2);
}

.gallery-one__single-img .inner::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .2);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 1;
}

.gallery-one__single:hover .gallery-one__single-img .inner::before {
  -webkit-animation: circle .75s;
  animation: circle .75s;
}

.gallery-one__single-img .content-box {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #ffffff;
  padding: 32px 0px 33px;
  padding-left: 20px;
  width: 280px;
  border-top-right-radius: 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 2;
}

.gallery-one__single-img .content-box::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  transform: scaleX(0.7) rotateX(20deg);
  transition: all 0.4s linear;
  z-index: -1;
  border-top-right-radius: 20px;
  opacity: 0;
  background: var(--second-color);
}

.gallery-one__single:hover .gallery-one__single-img .content-box::before {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.gallery-one__single-img .content-box .h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.gallery-one__single-img .content-box .h3 a {
  transition: all 200ms linear;
  transition-delay: 0.1s;
  color: #000;
  font-weight: 700;
}

.gallery-one__single:hover .gallery-one__single-img .content-box .h3 a {
  color: #ffffff;
}

.gallery-one__single-img .content-box p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.gallery-one__single:hover .gallery-one__single-img .content-box p {
  color: #ffffff;
}

.gallery-one__single-img .btn-box {
  position: absolute;
  left: 255px;
  bottom: 32px;
  z-index: 2;
}

.gallery-one__single-img .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  transition: all 200ms linear;
  transition-delay: 0.3s;
  background-color: var(--theme-color);
}

.gallery-one__single:hover .gallery-one__single-img .btn-box a {
  background: #ffffff;
}

.gallery-one__single-img .btn-box a span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.gallery-one__single:hover .gallery-one__single-img .btn-box a span:before{
  color: var(--theme-color);
}

.gallery-one__carousel.owl-carousel {
  display: block;
  max-width: 375px;
  width: 100%;
  margin: 0 auto;
}

.gallery-one__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
  padding: 0px 0px 0px;
}
.testim {
    width: 100%;
    position: absolute;
    top: 50%;
    -webkit-transform: translatey(-50%);
    -moz-transform: translatey(-50%);
    -ms-transform: translatey(-50%);
    -o-transform: translatey(-50%);
    transform: translatey(-50%);
}

.testim .wrap {
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 40px 20px;
    margin: auto;
}

.testim .arrow {
    display: block;
    position: absolute;
    color: #eee;
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 5px;
    z-index: 22222222;
}

.testim .arrow:before {
    cursor: pointer;
}

.testim .arrow:hover {
    color: #ea830e;
}

.testim .arrow.left {
    left: 10px;
}

.testim .arrow.right {
    right: 10px;
}

.testim .dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    left: 0;
    display: block;
    z-index: 3333;
    height: 12px;
}

.testim .dots .dot {
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #eee;
    margin: 0 10px;
    cursor: pointer;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
    background: #ea830e;
    border-color: #ea830e;
}

.testim .dots .dot.active {
    -webkit-animation: testim-scale 0.5s ease-in-out forwards;
    -moz-animation: testim-scale 0.5s ease-in-out forwards;
    -ms-animation: testim-scale 0.5s ease-in-out forwards;
    -o-animation: testim-scale 0.5s ease-in-out forwards;
    animation: testim-scale 0.5s ease-in-out forwards;
}

.testim .cont {
    position: relative;
    overflow: hidden;
}

.testim .cont > div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
}

.testim .cont > div.inactive {
    opacity: 1;
}

.testim .cont > div.active {
    position: relative;
    opacity: 1;
}

.testim .cont div .img img {
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
}

.testim .cont div h2 {
    color: #ea830e;
    font-size: 1em;
    margin: 15px 0;
}

.testim .cont div p {
    font-size: 1.15em;
    color: #eee;
    width: 80%;
    margin: auto;
}

.testim .cont div.active .img img {
    -webkit-animation: testim-show 0.5s ease-in-out forwards;
    -moz-animation: testim-show 0.5s ease-in-out forwards;
    -ms-animation: testim-show 0.5s ease-in-out forwards;
    -o-animation: testim-show 0.5s ease-in-out forwards;
    animation: testim-show 0.5s ease-in-out forwards;
}

.testim .cont div.active h2 {
    -webkit-animation: testim-content-in 0.4s ease-in-out forwards;
    -moz-animation: testim-content-in 0.4s ease-in-out forwards;
    -ms-animation: testim-content-in 0.4s ease-in-out forwards;
    -o-animation: testim-content-in 0.4s ease-in-out forwards;
    animation: testim-content-in 0.4s ease-in-out forwards;
}

.testim .cont div.active p {
    -webkit-animation: testim-content-in 0.5s ease-in-out forwards;
    -moz-animation: testim-content-in 0.5s ease-in-out forwards;
    -ms-animation: testim-content-in 0.5s ease-in-out forwards;
    -o-animation: testim-content-in 0.5s ease-in-out forwards;
    animation: testim-content-in 0.5s ease-in-out forwards;
}

.testim .cont div.inactive .img img {
    -webkit-animation: testim-hide 0.5s ease-in-out forwards;
    -moz-animation: testim-hide 0.5s ease-in-out forwards;
    -ms-animation: testim-hide 0.5s ease-in-out forwards;
    -o-animation: testim-hide 0.5s ease-in-out forwards;
    animation: testim-hide 0.5s ease-in-out forwards;
}

.testim .cont div.inactive h2 {
    -webkit-animation: testim-content-out 0.4s ease-in-out forwards;
    -moz-animation: testim-content-out 0.4s ease-in-out forwards;
    -ms-animation: testim-content-out 0.4s ease-in-out forwards;
    -o-animation: testim-content-out 0.4s ease-in-out forwards;
    animation: testim-content-out 0.4s ease-in-out forwards;
}

.testim .cont div.inactive p {
    -webkit-animation: testim-content-out 0.5s ease-in-out forwards;
    -moz-animation: testim-content-out 0.5s ease-in-out forwards;
    -ms-animation: testim-content-out 0.5s ease-in-out forwards;
    -o-animation: testim-content-out 0.5s ease-in-out forwards;
    animation: testim-content-out 0.5s ease-in-out forwards;
}

@-webkit-keyframes testim-scale {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -webkit-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -webkit-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-moz-keyframes testim-scale {
    0% {
        -moz-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -moz-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -moz-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -moz-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-ms-keyframes testim-scale {
    0% {
        -ms-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -ms-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -ms-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -ms-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-o-keyframes testim-scale {
    0% {
        -o-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -o-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -o-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -o-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-webkit-keyframes testim-content-in {
    from {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes testim-content-in {
    from {
        opacity: 0;
        -moz-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes testim-content-in {
    from {
        opacity: 0;
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@-o-keyframes testim-content-in {
    from {
        opacity: 0;
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes testim-content-out {
    from {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-moz-keyframes testim-content-out {
    from {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-ms-keyframes testim-content-out {
    from {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-o-keyframes testim-content-out {
    from {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

@-webkit-keyframes testim-show {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes testim-show {
    from {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

@-ms-keyframes testim-show {
    from {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

@-o-keyframes testim-show {
    from {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes testim-hide {
    from {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-moz-keyframes testim-hide {
    from {
        opacity: 1;
        -moz-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
}

@-ms-keyframes testim-hide {
    from {
        opacity: 1;
        -ms-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
}

@-o-keyframes testim-hide {
    from {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0);
    }
}

@media all and (max-width: 300px) {
    body {
        font-size: 14px;
    }
}

@media all and (max-width: 500px) {
    .testim .arrow {
        font-size: 1.5em;
    }

    .testim .cont div p {
        line-height: 25px;
    }
}
.spinning{
        pointer-events: none;
}
.twoToneButton,
.twoToneButton2,
.twoToneButton3 ,
.twoToneButton4 {
    position: relative;
    height: 45px;
    background-color: var(--theme-color);
    color:#fff;
}
.twoToneButton:hover,
.twoToneButton2:hover,
.twoToneButton3:hover,
.twoToneButton4:hover {
/*  box-shadow: 0 0 10px #080808 inset, 0px 1px 0 #3b3b3b;*/
  color: #f3f3f3;
}
.twoToneButton:active,
.twoToneButton2:active,
.twoToneButton3:active,
.twoToneButton4:active {
/*  box-shadow: 0 0 10px #080808 inset, 0px 1px 0 #3b3b3b;*/
  color: #ffffff;
  background: #080808;
  background: linear-gradient(to bottom, #3b3b3b 0%, #2e2e2e 50%, #141414 51%, #080808 100%);
}
.twoToneButton.spinning,
.twoToneButton2.spinning ,
.twoToneButton3.spinning,
.twoToneButton4.spinning {
  background-color: #000;
  padding-right: 40px;
}
.twoToneButton.spinning:before,
.twoToneButton2.spinning:before,
.twoToneButton3.spinning:before ,
.twoToneButton4.spinning:before {
    content: "";
    width: 0px;
    height: 0px;
    border-radius: 50%;
    position: absolute;
    border: 2px solid #ffffff;
    border-right: 3px solid #27ae60;
    -webkit-animation: rotate360 0.5s infinite linear, exist 0.1s forwards ease;
    animation: rotate360 0.5s infinite linear, exist 0.1s forwards ease;
    top: 50%;
    left: 50%;
}
@-webkit-keyframes rotate360 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate360 {
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes exist {
  100% {
    width: 15px;
    height: 15px;
    margin: -8px 5px 0 0;
  }
}
@keyframes exist {
  100% {
    width: 15px;
    height: 15px;
    margin: -8px 5px 0 0;
  }
}