:root {
  --dark-blue: #102770;
  --white-gr: #c4c3ca;
  --yellow: #ffeba7;
  --red:#fab70f;
}
body{
  overflow-x: hidden;
  position: relative;
  z-index: 999999;
}

.preloader_heading {
	font-weight: 700;
	text-align: center;
	font-size:20px;
	font-family: Hack, sans-serif;
	text-transform: uppercase;
	background: linear-gradient(90deg, #000, #007BB6, #000);
	letter-spacing: 5px;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	background-repeat: no-repeat;
	background-size: 80%;
	animation: shine 2s linear infinite;
	position: relative;
	left: 116px;
}
@keyframes shine {
    0% {
      background-position-x: -500%;
    }
    100% {
      background-position-x: 500%;
    }
  }
/*==================Cursor Animate Css======================= */
.cursor,
.cursor2,
.cursor3{
  position: fixed;
  border-radius: 50%;	
  transform: translateX(-50%) translateY(-50%);
  pointer-events: none;
  left: -100px;
  top: 50%;
  mix-blend-mode: difference;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear; 
  z-index: 999999999999;
}
.cursor{
  background-color: var(--white-gr);
  height: 0;
  width: 0;
  z-index: 9999999;
}
.cursor2,.cursor3{
  height: 36px;
  width: 36px;
  z-index:99998;
  -webkit-transition:all 0.3s ease-out;
  transition:all 0.3s ease-out
}
.cursor2.hover,
.cursor3.hover{
  -webkit-transform:scale(2) translateX(-25%) translateY(-25%);
  transform:scale(2) translateX(-25%) translateY(-25%);
  border:none
}
.cursor2{
  border: 2px solid var(--red);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}
.cursor2.hover{
  background: rgba(255,255,255,1);
  box-shadow: 0 0 0 rgba(255, 255, 255, 0.2);
}
a:hover {
  color: var(--yellow);
  text-decoration: none;
}
@keyframes slide {
  0% {
    transform: translate3d(var(--initial), 0, 0);
  }

  100% {
    transform: translate3d(var(--final), 0, 0);
  }
}
@keyframes slide-2 {
  0% {
    transform: translate3d(var(--initial-2), 0, 0);
  }

  100% {
    transform: translate3d(var(--final-2), 0, 0);
  }
}

/* ======================Media Css========================== */
@media (max-width: 991px) { 
  .section {
    --initial-2: 20%;
    --final-2: 40%;
  }
  .cursor,
  .cursor2,
  .cursor3{
    display: none;
  }
  .section ul.img-list {
    margin-left: -140px;
    margin-top: -140px;
  }
  .img-list li {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 767px) {
  .section {
    --initial-2: 10%;
    --final-2: 30%;
  }
}

@media (max-width: 575px) {
  .section {
    --initial-2: -20%;
    --final-2: 0;
  }
 
}

  /*=============animate button css end===========  */
.button_su {
	margin-top: 40px;
	overflow: hidden;
	position: relative;
	display: inline-block;
    border-radius:30px;
    z-index: 1;
}
.button_su_inner:hover .button_text_container{
	color: #000 !important;
}
  .su_button_circle{

    border-radius: 1000px;
    position: absolute;
    left:0;
    top:0;
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    pointer-events: none;
  }
  .button_su_inner {
    
    display: inline-block;
    background: linear-gradient(90deg, #fab70f 0%, #fab70f 35%, rgb(0, 0, 0) 100%);
    color: #fff !important;
    font-size: 16px;
    width: 150px;
    text-align: center;
    border-radius:30px;
    transition: 500ms;
    text-decoration: none;
    padding: 10px;
  }
  .button_text_container{
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700 !important;
     position:relative;
     z-index: 10000;
     color: #fff!important;
     transition: .5s;
  }
  
  .explode-circle {
     animation: explode 0.8s forwards;
  
  }
  
  .desplode-circle{
     animation: desplode 0.8s forwards;
  }
  
  @keyframes explode {
    0% {
      width: 0px;
      height: 0px;
      margin-left: 0px;
      margin-top: 0px;
      background-color: rgb(235, 235, 235);
    }
    100% {
      width: 400px;
      height: 400px;
      margin-left: -200px;
      margin-top: -200px;
      background-color: rgb(235, 235, 235);


    }
  }
  
  @keyframes desplode {
    0% {
      width: 400px;
      height: 400px;
      margin-left: -200px;
      margin-top: -200px;
      background-color: #fcd05c;

    }
    100% {
      width: 0px;
      height: 0px;
      margin-left: 0px;
      margin-top: 0px;
      background-color: #fcd05c;

     
    }
  }

/*==============animate button css end===========  */


/* ---------------Custom Header Css Start----------------- */
.default_mp{
  padding-top: 80px;
  padding-bottom: 60px;
}
.mobile-header-wrapper-style {
	padding-top: 66px;
  background: linear-gradient(to right, #000000 84%, #ffffff 15%, #ffd943 80%);
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li a {
	text-transform: uppercase;
	color: #fff;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.has-children.active > .menu-expand {
	background: none
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li a {
	color: #b8b8b8;
}
.header_top{
  background: linear-gradient(90deg, rgba(2,0,36,1) 0%, #fab70f 35%, rgb(120, 221, 255) 100%);
  padding: 6px 0;
}
.header_top a{
  font-size: 16px;
}
.header .main-menu li ul {
  padding: 15px 0px 15px 0 !important;
  border-bottom: 4px solid #fab70f;
}

.header {
  padding: 6px 0 !important;

}
.header .main-menu li a {
  padding: 5px 33px 5px 33px;

}
.header-logo a img{
      padding: 0px !important;
      width: 200px !important;
      animation: logoanimate 4s ease-in-out infinite;
}

.stick .header-logo a img{ 
  width: 140px !important;
}


@keyframes logoanimate{
  0%{
      transform: scale(1);
  }
  50%{
    transform: scale(.9);
}
  80%{
      transform: scale(1.1);
  }
  100%{
      transform: scale(1);
  }
}


/* ---------------Custom Header Css End----------------- */


.box-cover-image {
  height: 680px !important; 
}
.box-pagination-button {
  top: 25%;

}
.box-banner-info {
  top: 36%;
}
.box-banner-info p{
  font-size: 24px !important;
}
h2.banner_heading.color-white.wow.fadeInRight {
  margin-top: 20px;
  font-size: 70px !important;
  line-height:70px;

}
.banner-home1{
  position: relative;
}
.banner_contacts {
  position: absolute;
  right: 5%;
  top: 1%;
  background-image: linear-gradient(298deg, #ad8b05, #030510) !important;
  z-index: 999;
  width: 400px;
}
/*------------- Banner Bottom Css Start ----------------*/
.banner_bottom{
  background: #fff9f9;
  padding: 60px 0;
}
.btn-shine {
  color: #ddd !important;
  background: linear-gradient(to right, #4d4d4d 0, #fc4e1c 10%, #4d4d4d 15%);
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s infinite linear;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  font-size:32px;
  line-height:46px;
  text-transform: uppercase;
  text-decoration: none;
  }

  .btn-shine-slide {
    color: #ddd !important;
    background: linear-gradient(to right, #fc4e1c 10%,  #4d4d4d 2%);
    background-position: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s infinite linear;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
    font-size:32px;
    line-height:46px;
    text-transform: uppercase;
    text-decoration: none;
    }
  @-moz-keyframes shine {
    0% {
      background-position: 0;
    }
    60% {
      background-position: 180px;
    }
    100% {
      background-position: 180px;
    }
  }
  @-webkit-keyframes shine {
    0% {
      background-position: 0;
    }
    60% {
      background-position: 180px;
    }
    100% {
      background-position: 180px;
    }
  }
  @-o-keyframes shine {
    0% {
      background-position: 0;
    }
    60% {
      background-position: 180px;
    }
    100% {
      background-position: 180px;
    }
  }
  @keyframes shine {
    0% {
      background-position: 0;
    }
    60% {
      background-position: 400px;
    }
    100% {
      background-position: 600px;
    }
  }
.b_title p{
  font-weight: 300;
  font-size: 16px !important;
  line-height: 28px;
}
/* ---------------- Banner Bottom Css Start --------------------*/

/*--------------------- Service Item Css Start ---------------------*/
.service_section{
  padding-bottom: 60px;
  background: #fff9f9;

}
.service_item{
  padding:0 30px 30px 30px;
  box-shadow: 1px 1px 10px 1px rgba(8, 0, 42, .1) !important;
  transition: .4s ease-in-out;
  background-image: linear-gradient(298deg, #383838, #d8b020);
  color:#fff !important;
  border-radius: 4px;
  border-bottom: 2px solid #ff049f;
  position: relative;
  z-index: 11;
  margin-top: 26px;
  
}
.service_item::after{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  background-image: linear-gradient(298deg, #000000, #d8b020);
  border-radius: 4px;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: .4s ease-in-out;
  
}
.service_item:hover::after{
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
  
}

.service_item:hover{
  box-shadow: 1px 1px 10px 1px rgba(8, 0, 42, .2) !important;
  transform: translateY(-10px);
}
.service_item h5{
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}


/*------------- service page's css end---------- */

.service_head{
  position: relative;
}
.service_head h1::after{
  content: '';
  position: absolute;
  bottom: 0;
  left:15px;
  background: #fab70f;
  height: 4px;
  width:0;
  transition: .4s ease-in-out;
  margin:0 auto;
}

.service_hover:hover .service_head h1::after{
  width: 50px !important;
}
.service_sec{
  background: #f6ffff;
}
.service_items{
  padding: 30px;
  box-shadow: 1px 1px 10px 1px rgba(8, 0, 42, .1) !important;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(90deg, #111112, #ff00e6);
  border-radius: 5px;
  margin-top: 16px;
  text-align: center;

}
.service_items::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 0px;
  height:0px;
  background: #dd00c7;
  border-radius: 30px 0 30px;
  visibility: hidden;
  opacity: 0;
  transition: .4s ease-in-out;
}
.service_items:hover::after {
  visibility: visible;
  opacity: 40%;
  width: 60px;
  height: 60px;
}
.service_items h1{
  font-size:36px;
  color: white;
}
.service_items p{
  margin-bottom: 15px;
  font-size: 24px;
  color: white;

}


.cardService{
  cursor: pointer;
  transition: .4s ease-in-out;
}
.cardService:hover{
  transform: translateY(-10px);
}

.cardImage{
  overflow: hidden;
  transition: .4s ease-in-out;
}
.cardImage:hover{
  transform: scale(1.3);
}

/* ---------- Service Details Page Css Start */
.sd_img{
  box-shadow: 1px 1px 10px 1px rgba(8, 0, 42, .1) !important;

}
.sd_img img{
  margin: 10px;
  width: 100% !important;
}
.box-faqs{
  box-shadow: 1px 1px 10px 1px rgba(8, 0, 42, .1) !important;
  padding: 30px;
}
/* ---------- Service Details Page Css End */

/* ----------------------Testimonial Css Start ---------------------*/
.box-testimonials{
  background-image: linear-gradient(298deg, #161518, #080224);
  
}
/* -------------------Testimonial Css Start -------------------*/

/* ------------ Review Page Css Start -------------------- */
.review_sec{
  background-image: linear-gradient(90deg, #111112, #3a2e05);

}

.review_btn{
  width: 240px !important;

}
.client_review img{
  margin-top:8px;
  width:14px;
}
.rating_img{
  margin-left: auto;
  width:100% !important;
}
.rating_img img{
  margin-left: auto;
  width:100% !important;
}

/* ------------ Review Page Css End -------------------- */

.contact_home{
  padding: 30px;
  box-shadow: 1px 1px 10px 1px rgba(8, 0, 42, .5) !important;
  background: #222227;
  border-radius: 4px;
}
.contact_home h2{
  color: #fff !important;
}



/* -------------------BreadCumb Css -----------------*/
img:hover{
  transform: translateY(0px) !important;
}
.breadcumb_bg{
  padding: 80px 0;
  background: #1b1b1b;
}
.about_bg img{
  width: 100%;
  height:600px;
}
.about_r_car img{
  transition: .4s ease-in-out;
}

/*--------------------- About Page Css Start ------------------*/
.about_sec:hover .about_r_car img{
  transform: scale(1.3) !important;
  transition: .2s;
}
.about_content h2 strong{
  color: #020036;
  font-size: 60px;
}
.about_content h2 span{
  color: #fc4e1c;
}
/* --------------------About Page Css End ----------------*/

/*------------- Gallery page's css start---------- */
.our-gallery{
  padding: 60px 0;
}
.gallery-item{
  margin-top: 25px;
  position: relative;
  overflow: hidden;
  transition: .5s;
}
.gallery-item:hover{
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
}
.gallery-item::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 31, 0.7);
  visibility: hidden;
  opacity: 0;
  transition: .3s ease-in-out;
}
.gallery-item:hover::after{
visibility: visible;
opacity: 1;
}
.gallery-inner{
  display: inline-block;
  position: absolute;
  bottom:-50%;
  left: 10%;
  width:80%;
  height:160px;
  /* border:1px solid #ffffff; */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: .6s ease-in-out;
  overflow: hidden;
}
.gallery-item:hover .gallery-inner{
visibility: visible;
opacity: 1;
bottom:20%;
/* border: 4px solid #018cdf; */
}


/* animation hover effect infinite */
.animate-infinite{
  font-size:30px;
  padding: 20px 40px;
  text-decoration: none;
  color: #fcfcfd;
  font-weight: bold;
  text-align: center;
  line-height:40px;
  box-shadow: 0 0 20px 4px rgba(3, 2, 2, 0.5);
  overflow: hidden;
  transition: .4s;
}
.animate-infinite:hover{
  color: #018cdf;
}
.animate-infinite::before {
content: "";
position: absolute;
top: 3px;
left: 3px;
bottom: 3px;
  width: 50%;
background: rgba(255, 255, 255, 0.1);
}
.animate-infinite span:nth-child(1){
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(to right, #0c002b, #fafffa);
  animation: animation1 1s linear infinite;
  animation-delay: .1s;
}
@keyframes animation1{
  0%{
      transform: translateX(-100%);
  }
  100%{
      transform: translateX(100%);
  }
}
.animate-infinite span:nth-child(2){
  position: absolute;
  top: 0;
  right: 0;
  height: 3px;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #0c002b, #e0f000);
  animation: animation2 1s linear infinite;
  animation-delay: .1s;
}
@keyframes animation2{
  0%{
      transform: translateY(-100%);
  }
  100%{
      transform: translateY(100%);
  }
}
.animate-infinite span:nth-child(3){
  position: absolute;
  bottom: 0;
  right: 0;
  height: 3px;
  width: 100%;
  height: 3px;
  background: linear-gradient(to left, #0c002b, #157e00);
  animation: animation3 1s linear infinite;
  animation-delay: .1s;
}
@keyframes animation3{
  0%{
      transform: translateX(100%);
  }
  100%{
      transform: translateX(-100%);
  }
}
.animate-infinite span:nth-child(4){
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(to top, #0c002b, #ff0c0c);
  animation: animation4 1s linear infinite;
  animation-delay: .1s;
}
@keyframes animation4{
  0%{
      transform: translateY(100%);
  }
  100%{
      transform: translateY(-100%);
  }
}
/* animation hover effect infinite */

/*------------- Gallery page's css end---------- */

/* --------------------- Fleet Page Css Start------------------ */
.cardFleet{
  transition: .4s ease-in-out;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cardFleet:hover{
  transform: translateY(-5px);
}
.cardFleet::after {
  content: '';
  position: absolute;
  top: 17px;
  right: -26px;
  width: 100px;
  height: 15px;
  background: #212121;
  transform: rotate(45deg);
}
.cardImage{
  overflow: hidden;
}

/* ------------------ Fleet Page Css Start-------------------- */

/*--------------------- Contact Us page Css Start---------------- */
.contact_shadow{
  padding: 15px;
  box-shadow: 1px 1px 10px 1px rgba(8, 0, 42, .1) !important;
}
.google_map{
  padding: 15px;
  box-shadow: 1px 1px 10px 1px rgba(8, 0, 42, .1) !important;
}

.contact_text h1{
  font-size: 34px !important;

}
.contact_text p{
  margin-bottom:15px;
  font-size:17px;
  line-height: 30px;
}
.contact_text p b{
  font-weight: 900 !important;
}
.contact_social ul li a{
  color: #000 !important;
}
.contact_social ul li a{
  display: inline-block;
  width:32px;
  height: 32px;
  line-height: 32px;
  background: #000;
  color: #fff !important;
  font-size: 15px;
  text-align:center ;
  border-radius: 100%;
  transition: .4s ease-in-out;
}
.contact_social ul li a:hover{
  background: #fab70f;

}
/*------------------- Contact Us page Css End -----------------------*/


/*-------------------- User Review Css Start-------------------- */
.box-row-tab {
  display: block !important;
}
.box-content-detail{
  padding-right: 0 !important;
}
.review_shadaw{
  padding: 40px;
  box-shadow: 1px 1px 10px 1px rgba(8, 0, 42, .1) !important;

}
.review_s_btn{
  background-color: #fab70f;
  padding: 8px 20px;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 2px;

}
.review_head{
  margin: 30px 30px 0px 30px;
  padding: 20px;
  text-align: center;
  background: #020036;
  color: #fafffa;
  position: relative;
}
.review_head::after {
  content: '';
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 16px 12px 0 12px;
  border-color: #020036 transparent transparent transparent;
  transform: rotate(0deg);
  position: absolute;
  left: 0;
  bottom: -15px;
  right: 0;
  margin: auto;
}
.user_review_list{
  box-shadow: 1px 1px 10px 1px rgba(8, 0, 42, .1) !important;
  margin: 0 30px 30px 30px;
  padding: 30px;
}

.user_review_lists{
  margin-bottom: 20px;

}
.user_name p b{
  font-weight: 700;
}
.user_rate ul li {
  margin: 8px 0;
}
.user_rate ul li a{
  color: #d8b020;
  margin: 0 -4px;
  font-size: 10px;
}
.user_des p{
  font-weight: 300;
}
.user_devide{
  padding:20px 0;
  position: relative;
}
.user_devide::after{
  content: '';
  position: absolute;
  width: 80px;
  height:2.4px;
  background-image: linear-gradient(298deg, #fc4e1c, #ffdd02);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50px;
}

/*---------------------- User Review Css End -------------------*/

.passenger_shadow{
  margin: 40px !important;
  box-shadow: 1px 1px 10px 1px rgba(8, 0, 42, .1) !important;
  padding: 40px;
  background: #222227;
  color: #fff !important;
  border-radius: 5px;

}
.my_c_from{
  /* color: #fff; */
  color: #181A1F;
}


/* ------------------------Pricing Page Css Start--------------------- */
.card-plan {
  padding: 30px;
  border: none;
  border-radius: 0;
}
.card-plan:hover{
  border: none;
  border-radius: 0;
  background: none;
}
.card-plan-top{
  background-image: linear-gradient(298deg, #fc4e1c, #0b003c);
  padding:20px 30px;
  border-radius: 6px 6px 0 0;
}
.pricing_item{
  margin: 30px;
  display: inline-block;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: .6s ease-in-out;
}
.pricing_item:hover{
  background-image: linear-gradient(298deg, #fff6f3, #f1f1f1);
}
.for-month h3 {
  font-weight: 900;
}
.for-month h3 span{
  font-size:15px;
}

.table_head h4{
  font-size: 26px;
}
.table-wrapper{
  padding: 30px;
  margin: 30px;
  box-shadow: 1px 1px 10px 1px rgba(8, 0, 42, .1) !important;

}
.table_content table{
  border: 1px solid #ffffff;
  padding: 30px;
}
.table_content table thead{
  padding: 20px 0;
  background-image: linear-gradient(298deg, #56004d, #02002e);
  color: white;

}
.table_content thead{
  padding: 20px 0;
}
.table_content thead tr th{
  padding: 20px;
 
}
.table_content tbody tr td{
  padding: 20px;
  border: 1px solid #ffffff;
  color: #ffffff;
 
}
.table_content tbody tr:nth-child(even){
  background-image: linear-gradient(298deg, #f9cf00, #000000);
}
.table_content tbody tr:nth-child(odd){
  background-image: linear-gradient(90deg, #000000, #010051);
}
.my_table{
  width: 100%;
}

/* -------------------------Pricing Page Css Start --------------------------*/


/*--------------------- Footer Top Css Start -------------------*/
.footer_top_call{
  position: relative;
  
}
.footer_top_call::after {
  content: '';
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 26px 20px 0 20px;
  border-color: #fab70f transparent transparent transparent;
  transform: rotate(0deg);
  position: absolute;
  left: 0;
  bottom: -24px;
  right: 0;
  margin: auto;
}
.footer_top_call{
  background: #fab70f;
}
.ftc_text h1{
  font-size: 24px;
  color: #fff;
}
.ftc_text h1 a{
 font-weight: 900 !important;
}
/* Footer Top Css End */
/* ------------------Privacy Policy page Css Start ----------------------*/
.privacy_content{
  margin: 30px;
  padding: 40px;
  box-shadow: 1px 1px 10px 1px rgba(8, 0, 42, .1) !important;

}
.privacy_content h1{
  font-size: 34px;
}
.privacy_content p{
  margin: 16px 0;
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
}
.privacy_content p b{
  font-weight: 700;
  color: #fab70f;
}
/*------------------- Privacy Policy page Css End------------------- */


/* =================top to button css======================= */
.progress-wrap {
	position: fixed;
	right: 50px;
	bottom: 50px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset  0 0 0 2px rgba(0, 0, 0, 0.2);
	z-index: 999999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap::after {
	position: absolute;
	font-family: 'Font Awesome 5 Free';
	content: '\f062';
    font-weight: 600;
	text-align: center;
	line-height: 46px;
	font-size: 18px;
	color: #fab70f;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::after {
	opacity: 0;
}
.progress-wrap::before {
	position: absolute;
	font-family: 'Font Awesome 5 Free';
	content: '\f062';
    font-weight: 600;
	text-align: center;
	line-height: 46px;
	font-size:18px;
	opacity: 0;
	background-image: linear-gradient(298deg, #fc4e1c, #000000);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::before {
	opacity: 1;
}
.progress-wrap svg path { 
	fill: none; 
}
.progress-wrap svg.progress-circle path {
	stroke:rgb(0, 4, 255);
	stroke-width: 4;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap {
	box-shadow: inset  0 0 0 2px #fc4e1c;
}
.progress-wrap::after {
	color:#212529;
}
.progress-wrap svg.progress-circle path {
	stroke:#d2d1d1;
}



/* --------------- Spin Animation -----------------*/
.effect-wrap .effect{
  position: absolute;  
}
.effect-wrap .effect1 {
  top: 15%;
  left: 5%;
  font-size: 24px;
  color: #fab70f;
  animation: spinone 5s linear infinite;
}
.effect-wrap .effect12 {
  top: 16%;
  left: 6%;
  font-size: 24px;
  color: #fab70f;
  animation: spinone 5s linear infinite;
}
.effect-wrap .effect2 {
  top: 18%;
  right: 5%;
  font-size: 24px;
  color: #0dff00;
  animation: spinone 5s linear infinite;
}
.effect-wrap .effect3 {
  left: 50%;
  bottom: 30%;
  font-size: 24px;
  color: rgb(242, 4, 255);
  animation: updown 3s linear infinite;
  z-index: 999;
}

@keyframes spinone{
  0%{
      transform: rotate(0deg);
  }
  100%{
      transform: rotate(360deg);
  }
}

@keyframes updown{
  0%,100%{
      transform: translateY(-35px);
  }
  50%{
      transform: translateY(0px);
  }

}

@keyframes playanimation{
  0% ,30%{
      transform: scale(0);
      opacity:.7;
  }
  
  50%{
      transform: scale(1.3);
      opacity: .4;
  }
  100%{
      transform: scale(1.8);
      opacity:0;
  }
}


.serviceCard_img {
  height: 350px !important;
}


.reviews_alert{
  font-size: 25px;
  margin-top: 110px;
  padding: 20px 0;
}

.box-video .btn-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin-top: -20px;
	z-index: 2;
  border: 4px solid red;
  border-radius: 50%;
}











/* Rating Star Widgets Style */
.rating-stars ul {
  list-style-type:none;
  padding:0;
  
  -moz-user-select:none;
  -webkit-user-select:none;
}
.rating-stars ul > li.star {
  display:inline-block;
  
}

/* Idle State of the stars */
.rating-stars ul > li.star > i.fa {
  font-size:2.5em; /* Change the size of the stars */
  color:#ccc; /* Color on idle state */
}

/* Hover state of the stars */
.rating-stars ul > li.star.hover > i.fa {
  color:#FFCC36;
}

/* Selected state of the stars */
.rating-stars ul > li.star.selected > i.fa {
  color:#FF912C;
}
