html,body {
  font-family: "Poppins", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 45px 0;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

/* .heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 45px;
}

.heading_container h2 {
  position: relative;
  margin: 0;
  padding: 10px 0;
}

.heading_container h2::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  top: 50%;
  right: -45px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  background-color: #dbc64c;
  background-repeat: no-repeat;
} */


.heading_container {
	font-size: 15px;
	font-weight: 300;
	margin-bottom: 80px;
  text-align: center;
}

.heading_container h2 {
	margin-bottom: 10px;
	position: relative;
	text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1.2em;
  color: #222;
}

.heading_container p {
	margin-top: 10px;
}

/* .heading_container .title-line {
	color: #ffd000;
	position: relative;
}

.heading_container .title-line::after {
	background-color: #333;
	content: "";
	height: 2px;
	left: -60px;
	position: absolute;
	top: 10px;
	width: 50px;
}

.heading_container .title-line::before {
	background-color: #333;
	content: "";
	height: 2px;
	position: absolute;
	right: -60px;
	top: 10px;
	width: 50px;
} */

.title-line {
  width: 80px;
  height: 16px;
  display: block;
  margin: auto;
  position: relative;
}

.title.left .title-line {
  margin-left: 0;
}

.title-line:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  width: 41px;
  height: 15px;
  background-image: url('../images/car-icon.svg');
  background-size: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: 1;
}

.title-line:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #000 50%, transparent 50%), linear-gradient(90deg, #000 50%, transparent 50%), linear-gradient(0deg, #000 50%, transparent 50%), linear-gradient(0deg, #000 50%, transparent 50%);
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  background-size: 15px 4px, 15px 4px, 4px 15px, 4px 15px;
  background-position: 0px 0px, 200px 100px, 0px 100px, 200px 0px;
  animation: border-dance 7s infinite linear;
  z-index: 0;
}

@keyframes border-dance {
  0% {
      background-position: 300px 0px, 0px 116px, 0px 0px, 216px 150px;
  }

  100% {
      background-position: 0px 0px, 300px 116px, 0px 150px, 216px 0px;
  }
}


/*header section*/
.hero_area {
  min-height: 100vh;
  position: relative;
  /* background-image: url(../images/hero-bg.jpg); */
  background-size: cover;
  background: linear-gradient(to right, #62cff4 , #2c67f2);
}

.hero_area::before {
  content: "";
  position: absolute;
  height: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  top: 0;
  left: 50%;
  transform: translate(-285px);
  width: 69%;
  display: block;
  z-index: 0;

}
.hero-banner-img{
  position: relative;
  top: 0;
  left: 12%;
}
.sub_page .hero_area {
  min-height: auto;
  background-image: none;
  background-color: #e1f3fd;
}

.sub_page .service_section {
  margin: 45px auto;
  
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.header_section .nav_container {
  margin: 0 auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  margin: 10px 20px;
  padding: 0;
  color: #fff;
  text-align: center;
  position: relative;
  text-transform: uppercase;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.custom_nav-container .nav_search-btn {
  background-image: url(../images/search-icon.png);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center 5px;
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
}

.navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navbar-brand span {
  font-size: 24px;
  font-weight: 700;
  color: #0b0b0a;
  text-transform: uppercase;
}

.custom_nav-container {
  z-index: 99999;
  padding-top: 20px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.navbar-expand-lg .navbar-collapse {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler .navbar-toggler-icon {
  background-image: url(../images/menu.png);
  background-size: 45px;
}

/*end header section*/
/* slider section */
.slider_section {
  height: calc(100% - 80px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  color: #3b3a3a;
  padding: 45px 0 0px 0;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section div#carouselExampleIndicators {
  width: 130%;
  margin-left: -20%;
  position: unset;
}

.slider_section .box {
  /* padding-left: 15%; */
  /* margin-bottom: 100px; */
}

.slider_section .box .detail-box {
  /* padding-right: 10%;
  padding-left: 15%; */
}

.slider_section .box .detail-box h4 {
  font-weight: bold;
  margin-bottom: 0;
  color: #62cff4 ;
  text-align: center;
  display: none;
}

.slider_section .box .detail-box h1 {
  font-weight: bold;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 3rem;
  text-align: center;
}

.slider_section .box .img-box {
  margin: 0 7%;
}

.slider_section .box .img-box img {
  width: 100%;
}

.slider_section .box .btn-box {
  margin-top: 15px;
}

.slider_section .box .btn-box a {
  text-align: center;
  display: inline-block;
  padding: 8px 30px;
  border: 1px solid #0b0b0a;
  background-color: transparent;
  color: #0b0b0a;
}

.slider_section .box .btn-box a:hover {
  background-color: #0b0b0a;
  color: #ffffff;
}

.slider_section .slider_form {
  width: 400px;
  padding: 25px;
  background-color: #282828;
  border-radius: 10px;
  margin: auto;
}

.slider_section .slider_form h2 {
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.75rem;
}

.slider_section .slider_form form {
  margin: 15px 0;
}

.slider_section .slider_form form input {
  width: 100%;
  height: 40px;
  border: none;
  outline: none;
  margin-bottom: 15px;
  padding-left: 15px;
}

.slider_section .slider_form form .btm_input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slider_section .slider_form form .btm_input input {
  width: calc(95% - 116px);
  margin: 0;
  margin-right: 10px;
}

.slider_section .slider_form form .btm_input button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 116px;
  border: none;
  outline: none;
  background-color: #62cff4 ;
  color: #ffffff;
}

.slider_section .carousel-indicators {
  margin: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  left: 10%;
}

.slider_section .carousel-indicators li {
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #282828;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  background-color: #dbc64c;
}

.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .detail-box {
  position: relative;
  padding-right: 75px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 8px 25px;
  border: 1px solid #0b0b0a;
  background-color: transparent;
  color: #0b0b0a;
  margin-top: 25px;
}

.about_section .detail-box a:hover {
  background-color: #0b0b0a;
  color: #ffffff;
}

.about_section .detail-box::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 65%;
  top: 10%;
  right: 25px;
  z-index: 1;
  background-color: #dbc64c;
  background-repeat: no-repeat;
}

.about_section .img-box {
  padding: 75px 45px;
}

.about_section .img-box img {
  width: 100%;
  position: relative;
  z-index: 2;
}

.about_section .img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background-color: #282828;
  z-index: 1;
  border-radius: 10px;
}

.service_section {
  /* width: 95%; */
  margin: auto;
  padding-top: 0px;
  /* border: 1px solid #e5e5e5; */
}

.service_section .service_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.service_section .service_container .box .img-box {
  height: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.service_section .service_container .box .img-box img {
  max-width: 100%;
  max-height: 100%;
}

.service_section .service_container .box .detail-box {
  margin-top: 15px;
}

.service_section .service_container .box .detail-box h5 {
  font-weight: bold;
}

.service_section .service_container .box .detail-box a {
  display: inline-block;
  padding: 7px 20px;
  border: 1px solid #0b0b0a;
  background-color: transparent;
  color: #0b0b0a;
}

.service_section .service_container .box .detail-box a:hover {
  background-color: #0b0b0a;
  color: #ffffff;
}

.news_section .news_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 25px;
}

.news_section .news_container .date-box {
  background-color: #252525;
  padding: 7px 25px;
  color: #ffffff;
  margin-bottom: -15px;
  position: relative;
  z-index: 2;
}

.news_section .news_container .date-box h6 {
  margin: 0;
}

.news_section .news_container .box {
  margin: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news_section .news_container .box .img-box {
  width: 100%;
}

.news_section .news_container .box .img-box img {
  width: 100%;
}

.news_section .news_container .box .detail-box {
  background-color: #62cff4 ;
  padding: 15px;
}

.news_section .news_container .box .detail-box h6 {
  font-weight: bold;
  font-size: 18px;
}

.news_section .news_container .box .detail-box p {
  margin: 0;
}

.client_section .carousel-wrap {
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
}

.client_section .owl-nav > div {
  margin-top: -26px;
  position: absolute;
  top: 50%;
  color: #cdcbcd;
}

.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
  width: 50px;
  height: 50px;
  background-color: #000000;
  background-size: 9px;
  background-position: center;
  border-radius: 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  outline: none;
}

.client_section .owl-carousel .owl-nav .owl-prev:hover,
.client_section .owl-carousel .owl-nav .owl-next:hover {
  background-color: #62cff4 ;
}

.client_section .owl-carousel .owl-nav .owl-prev {
  background-image: url(../images/prev.png);
  left: -10%;
}

.client_section .owl-carousel .owl-nav .owl-prev:hover {
  background-image: url(../images/prev-white.png);
}

.client_section .owl-carousel .owl-nav .owl-next {
  right: -10%;
  background-image: url(../images/next.png);
}

.client_section .owl-carousel .owl-nav .owl-next:hover {
  background-image: url(../images/next-white.png);
}

.client_section .box {
  padding: 35px 45px 15px 45px;
  margin: 15px;
  -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
  position: relative;
}

.client_section .box .img-box {
  max-width: 125px;
  min-width: 125px;
}

.client_section .box .img-box img {
  width: 100%;
}

.client_section .box .detail-box {
  margin-top: 15px;
}

.client_section .box .detail-box img {
  width: 25px;
}

.client_section .box > div {
  position: relative;
  z-index: 2;
}

.client_section .box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background-color: #62cff4 ;
  z-index: 1;
}

.client_section .carousel-wrap {
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  margin-bottom: 45px;
}

.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
  width: 50px;
  height: 50px;
  background-color: #252525;
  background-size: 15px;
  background-position: center;
  border-radius: 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: initial;
  bottom: -75px;
  outline: none;
}

.client_section .owl-carousel .owl-nav .owl-prev:hover,
.client_section .owl-carousel .owl-nav .owl-next:hover {
  background-color: #62cff4 ;
}

.client_section .owl-carousel .owl-nav .owl-prev {
  background-image: url(../images/prev.png);
  left: -5%;
}

.client_section .owl-carousel .owl-nav .owl-next {
  left: calc(-5% + 55px);
  background-image: url(../images/next.png);
}

.client_section .owl-carousel .owl-dots.disabled,
.client_section .owl-carousel .owl-nav.disabled {
  display: block;
}

.contact_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact_section .contact_form {
  padding: 25px;
  background-color: #282828;
  margin: 0 45px;
}

.contact_section .contact_form h4 {
  color: #ffffff;
  margin-bottom: 20px;
}

.contact_section .contact_form form {
  margin: 15px 0;
}

.contact_section .contact_form form input {
  width: 100%;
  height: 40px;
  border: none;
  outline: none;
  margin-bottom: 15px;
  padding-left: 15px;
}

.contact_section .contact_form form input.message_input {
  height: 75px;
}

.contact_section .contact_form form button {
  padding: 8px 30px;
  border: none;
  outline: none;
  background-color: #62cff4 ;
  color: #000000;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: bold;
}

.contact_section .img-box img {
  width: 100%;
}

.app_section {
  background-color: #62cff4 ;
  color: #ffffff;
}

.app_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.app_section .detail-box h2 {
  color: #252525;
  text-transform: uppercase;
  font-weight: bold;
}

.app_section .detail-box .text-box {
  margin-top: 25px;
}

.app_section .detail-box .text-box h5 {
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: underline;
}

.app_section .detail-box .btn-box {
  margin: 25px -5px 0 -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.app_section .detail-box .btn-box a {
  margin: 5px;
}

.app_section .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.app_section .img-box img {
  max-width: 100%;
}

.why_section .why_container {
  padding-left: 10%;
}

.why_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.why_section .box .img-box {
  min-width: 90px;
  min-height: 90px;
  background-color: #62cff4 ;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 45px;
}

.why_section .box .img-box img {
  max-width: 30px;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.why_section .box .img-box .img-2 {
  display: none;
  opacity: 0;
}

.why_section .box .detail-box span {
  font-weight: bold;
  font-size: 1.25rem;
}

.why_section .box .detail-box p {
  margin: 0;
}

.why_section .box:nth-child(2),.why_section .box:nth-child(3) {
  margin: 35px 0;
}

.why_section .box:hover .img-box {
  background-color: black;
}

.why_section .box:hover .img-box i {
  color: white;
}

.why_section .box:hover .img-box .img-1 {
  display: none;
  opacity: 0;
}

.why_section .box:hover .img-box .img-2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  opacity: 1;
}

/* info section */
.info_section {
  background-color: #161616;
  color: #ffffff;
}

.info_section .box {
  width: 100%;
  max-width: 675px;
  margin: 0 auto;
}

.info_section .info_form {
  margin: 0 auto;
  margin-bottom: 45px;
}

.info_section .info_form h4 {
  text-align: center;
  margin-bottom: 35px;
}

.info_section .info_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.info_section .info_form form input {
  background-color: #ffffff;
  border: none;
  width: calc(100% - 55px);
  outline: none;
  color: #000000;
  height: 42.4px;
  padding-left: 15px;
}

.info_section .info_form form input ::-webkit-input-placeholder {
  color: #9a9999;
}

.info_section .info_form form input :-ms-input-placeholder {
  color: #9a9999;
}

.info_section .info_form form input ::-ms-input-placeholder {
  color: #9a9999;
}

.info_section .info_form form input ::placeholder {
  color: #9a9999;
}

.info_section .info_form form button {
  border: none;
  outline: none;
  background-color: #62cff4 ;
  width: 55px;
  font-size: 15px;
  text-transform: uppercase;
  background-image: url(../images/right-arrow.png);
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}

.info_section .info_links ul {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.info_section .info_links ul li {
  list-style-type: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.info_section .info_links ul li a {
  color: #ffffff;
  padding: 10px;
}

.info_section .info_links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 15px 0;
}

.info_section .info_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 45px auto 15px auto;
}

.info_section .info_social img {
  width: 35px;
  margin: 0 7px;
}

/* end info section */
/* footer section*/
.footer_section {
  background-color: #62cff4 ;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.footer_section p {
  color: #000;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
  width: 55%;
  font-weight: bold;
}

.footer_section a {
  color: #000;
}
.footer_section a:hover {
  color: #fff;
}
/*# sourceMappingURL=style.css.map */


/* our style */

.form-div{
  display: inline-flex;
}

.date-picker{
  margin-right: 15px;
}

.form-div input{
  width: 50%;
}

.btm_input{
  height: 40px;
}

.nav-item a:hover:before {
  visibility: visible;
  opacity: 1;
  transition-delay: .1s;
  left: 50%;
}

.nav-item .scrollto:before {
  zoom: 1;
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  content: "";
  position: absolute;
  width: 26px;
  left: 0%;
  margin-left: -13px;
  bottom: -4px;
  height: 4px;
  background: url("../images/hover_menu.png") no-repeat;
}

.pricingTable{
  color: #444;
  background: #fff;
  font-family: "Poppins", sans-serif;
  text-align: center;
  padding: 25px 10px 35px;
  margin: 0 15px 70px;
  border-radius: 50px;
  border: 10px solid #fff;
  box-shadow: 0 0 0 2px #62cff4  inset;
}
.pricingTable .pricingTable-header{ margin: 0 0 20px; }
.pricingTable .title{
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}
.pricingTable .price-value{
  color: #000;
  background: linear-gradient(to right, #62cff4 , #2c67f2);
  padding: 10px;
  margin: 0 -40px 25px;
  border-radius: 50px 50px;
  border: 10px solid #62cff4 ;
  box-shadow: 0 0 0 2px #fff inset;
}
.pricingTable .price-value .amount{
  font-size: 22px;
  line-height: 35px;
  font-weight: 700;
}
.pricingTable .price-value .duration{
  font-size: 25px;
  line-height: 25px;
  font-weight: 400;
  opacity: 0.7;
}
.pricingTable .pricing-content{
  text-align: left;
  padding: 0;
  margin: 0 0 37px;
  list-style: none;
  display: inline-block;
}
.pricingTable .pricing-content li{
  color: #272727;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  padding: 0 0 0 25px;
  margin: 0 0 17px;
  position: relative;
}
.pricingTable .pricing-content li:last-child{ margin-bottom: 0; }
.pricingTable .pricing-content li i{
  font-size: 15px;
  font-weight: 900;
  position: absolute;
  top: 5px;
  left: 0;
  color: #62cff4 ;
}
.green .pricing-content li i{
  color: #62cff4 ;
}
.blue .pricing-content li i{
  color: #00c4e2;
}
.pricingTable .pricingTable-signup a{
  color: #000;
  background: #62cff4 ;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 7px 24px;
  margin: 0 auto;
  border: none;
  border-radius: 50px;
  border: 6px solid #62cff4 ;
  transition: all 0.3s ease 0s;
}
.pricingTable .pricingTable-signup a:hover{ box-shadow: 0 0 0 2px #fff inset; }
.pricingTable.blue{ box-shadow: 0 0 0 2px #00c4e2 inset; }
.pricingTable.blue .price-value,
.pricingTable.blue .pricingTable-signup a{
  background: linear-gradient(to right, #62cff4 , #2c67f2);
  border-color: #00c4e2;
}
.pricingTable.blue .pricing-content li:before{ color: #00c4e2; }
.pricingTable.green{ box-shadow: 0 0 0 2px #00c4e2 inset; }
.pricingTable.green .price-value,
.pricingTable.green .pricingTable-signup a{
  background: linear-gradient(to right, #62cff4 , #2c67f2);
  border-color: #00c4e2;
}
.pricingTable.green .pricing-content li:before{ color: #6dc600; }
.pricingTable.golden{ box-shadow: 0 0 0 2px #00c4e2 inset; }
.pricingTable.golden .price-value,
.pricingTable.golden .pricingTable-signup a{
  background: linear-gradient(to right, #62cff4 , #2c67f2);
  border-color: #00c4e2;
}
.pricingTable.golden .pricing-content li:before{ color: #00c4e2; }
@media only screen and (max-width: 990px){
  .pricingTable{ margin: 0 15px 40px; }
}



.box .box-content{
  width: 100%;
  height: 100%;
  /* background-color: rgba(0,0,0,0.8); */
  padding-top: 35%;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 2;
  transition: all 0.3s ease 0s;
}
.box:hover .box-content{ opacity: 1; }
.box .box-content:before,
.box .box-content:after{
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  bottom: 15px;
  right: 15px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  opacity: 0;
  z-index: -1;
  transform: scale(1.5);
  transition: all 0.6s ease 0.2s; 
}
.box .box-content:before{
  border-top: none;
  border-bottom: none;
  left: 30px;
  right: 30px;
}
.box .box-content:after{
  border-left: none;
  border-right: none;
  top: 30px;
  bottom: 30px;
}
.box:hover .box-content:before,
.box:hover .box-content:after{
  opacity: 1;
  transform: scale(1);
}
/* .box .content-inner{
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease 0s;
}
.box:hover .content-inner{
  opacity: 1;
  transform: scale(1);
} */
/* .box .title{
  font-size: 22px;
  font-weight: 700;
  color: #00fff2;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 10px;
} */
.box .post{
  display: block;
  font-size: 15px;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 15px;
}
.box .icon{
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 2;
}
.box .icon li{ display: inline-block; }
.box .icon li a{
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #fff;
  font-size: 18px;
  color: #fff;
  margin-right: 5px;
  position: relative;
  transition: all 0.3s ease 0s;
}
.box .icon li a:hover{ color: #000; }
.box .icon li a:before{
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(0);
  transition: all 0.3s ease 0s;
}
.box .icon li a:hover:before{ transform: scale(1); }
@media only screen and (max-width:990px){
  .box{ margin-bottom: 30px; }
}



.demo{ background: #f6fcfd; }
.serviceBox{
  padding: 50px 35px;
  background: #fff;
  border: 1px solid #62cff4 ;
  /* border-bottom-color: #00c4e2; */
  text-align: center;
  position: relative;
  transition: all 0.5s ease 0s;
}
.serviceBox:hover{ border: 1px solid #62cff4 ; }
.serviceBox:before,
.serviceBox:after{
  content: "";
  width: 70%;
  height: 5px;
  background: #62cff4 ;
  opacity: 0;
  position: absolute;
  top: -3px;
  left: 35%;
  transform: translateX(-50%);
  transition: all 0.5s ease 0s;
}
.serviceBox:hover:before,
.serviceBox:hover:after{
  opacity: 1;
  left: 50%;
}
.serviceBox:after{
  top: auto;
  bottom: -3px;
}
.serviceBox .service-icon{
  width: 65px;
  height: 65px;
  line-height: 65px;
  border-radius: 50%;
  background: #62cff4 ;
  margin: 0 auto 20px;
  font-size: 36px;
  color: #fff;
}

.serviceBox img{
  display: block;
    width: 100%;
    height: auto;
}
.serviceBox .title{
  font-size: 20px;
  font-weight: bold;
  color: #252525;
  margin: 0 0 10px 0;
  transition: all 0.5s ease 0s;
}
.service_content{
  text-align: center;
  padding:0 50px;
}

.service_content h3 {
  border-bottom: 1px solid #62cff4 ;
  padding: 10px 0;
}

.service_content h4{
font-size: 18px;
padding: 10px 0;
margin-bottom: 10px;
border-bottom: 1px solid #62cff4 ;
}

.service_content h4 span{
font-weight: normal;
  font-size: 16px;
}

.service_content p{
margin-bottom: 25px;
}
/* .serviceBox:hover .title{ opacity: 0; } */
.serviceBox .description{
  font-size: 14px;
  color: #7a7a7a;
  line-height: 25px;
  margin: 0;
  transition: all 0.5s ease 0s;
}
/* .serviceBox:hover .description{
  margin-top: -20px;
  padding-bottom: 20px;
} */
@media only screen and (max-width:990px){
  .serviceBox{ margin-bottom: 30px; }
}


.why_section .image-column{
  position: relative;
  margin-top: 80px;
}

.why_section .image-column .text-layer{
    position: absolute;
    right: -110px;
    top: 50%;
    font-size: 325px;
    line-height: 1em;
    color: #ffffff;
    margin-top: -175px;
    font-weight: 500;
}

.why_section .image-column .inner-column{
  position: relative;
  /* padding-left: 80px; */
  padding-bottom: 0px;
}

.why_section .image-column .inner-column:before{
    content: '';
    position: absolute;
    width: calc(50% + 80px);
    height: calc(100% + 160px);
    top: -80px;
    left: -3px;
    background: transparent;
    z-index: 0;
    border: 44px solid #62cff4 ;
}

.why_section .image-column .image-1{
  position: relative;
}
.why_section .image-column .image-2{
  position: absolute;
  left: 0;
  bottom: 0;
}
.why_container .img-box i{
  color: white;
}
.why_section .image-column .image-2 img,
.why_section .image-column .image-1 img{
  /* box-shadow: 0 30px 50px white; */
  width: 530px;
      border-radius: 46px;
}

.why_section .image-column .video-link{
  position: absolute;
  left: 70px;
  top: 170px;
}

.why_section .image-column .video-link .link{
  position: relative;
  display: block;
  font-size: 22px;
  color: #191e34;
  font-weight: 400;
  text-align: center;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 30px 50px rgba(8,13,62,.15);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.why_container .box{
  text-align: left;
}

.why_section .img-box i{
  font-size: 35px;
}


.destination_section {
  /* width: 95%; */
  margin: auto;
  /* border: 1px solid #e5e5e5; */
}


.sub_page .destination_section {
  margin: 45px auto;
}


.popular-cars-wrap .box{
  position: relative;
  overflow: hidden;
box-shadow: 0 0 5px #808080;
margin-bottom: 30px;
min-height: 315px;
}
/* .popular-cars-wrap .box:before,
.popular-cars-wrap .box:after{
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  opacity: 0;
  z-index: 1;
  transition: all 0.5s ease 0s;
} */
/* .popular-cars-wrap .box:before{
  bottom: 5%;.box .box-content:before
  left: 5%;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
}
.popular-cars-wrap .box:after{
  top: 5%;
  right: 5%;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.popular-cars-wrap .box:hover:before,
.popular-cars-wrap .box:hover:after{
  opacity: 1;
  width: 90%;
  height: 90%;
} */
.popular-cars-wrap .box img{
  /* width: 100%;
  height: auto; */
  transform: scale(1);
transition: all 0.5s ease 0s;
/* min-height: 315px; */
}
.popular-cars-wrap .box:hover img{
  transform: scale(1.05);
}
.popular-cars-wrap .box .box-content{
  width: 100%;
  position: absolute;
  bottom: 10%;
  /* left: 10%; */
}
.popular-cars-wrap .box .title,
.popular-cars-wrap .box .post{
  display: block;
  font-size: 25px;
  color: #fff;
  line-height: 25px;
  margin: 0;
  position: absolute;
  bottom: 10%;
  left: 10%;
  opacity: 1;
  transition: all 0.5s ease 0s;
}
/* .popular-cars-wrap .box:hover .title,
.popular-cars-wrap .box .post{
  opacity: 0;
}
.popular-cars-wrap .box:hover .post{
  opacity: 1;
} */


@media only screen and (max-width: 990px){
  .popular-cars-wrap .box{ margin-bottom: 20px; }
}

.email-signature{
  font-family: "Poppins", sans-serif;
  background: #0b0b0bbf;
  padding: 20px 30px 20px 240px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-align: right;
  min-height: 250px;
  }

  .email-signature:before,
  .email-signature:after{
  content: "";
  background: linear-gradient(to right, #62cff4 , #2c67f2) !important;
  width: 140px;
  height: 120%;
  border-radius: 0 150px 200px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  }

  .email-signature:after{
  background: #3ecfff ;
  width: 160px;
  z-index: -1;
  }
  .email-signature .signature-icon{
  color: #fff;
  background-color: #62cff4 ;
  font-size: 60px;
  text-align: center;
  line-height: 104px;
  width: 110px;
  height: 110px;
  border: 5px solid #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 70px;
  top: 50%;
  }
  .email-signature .signature-details{ margin: 0 0 20px; }
  .email-signature .title{
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 3px;
  
  }
  .email-signature .post{
  color: #fff;
  background: #533c87;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 1px;
  padding: 1px 10px;
  display: inline-block;
  }
  .email-signature .signature-content{
  padding: 0;
  margin: 0;
  list-style: none;
  }
  .email-signature .signature-content li{
  
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
  }
  .email-signature .signature-content li:last-child{ margin-bottom: 0; }
  .email-signature .signature-content li i{
  color: #fff;
  background: #d32e2c;
  font-size: 11px;
  text-align: center;
  line-height: 20px;
  width: 20px;
  height: 20px;
  margin: 0 6px 0 0;
  border-radius: 50%;
  display: inline-block;
  }
  .email-signature .icon{
  padding: 0;
  margin: 0;
  list-style: none;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 10px;
  }
  .email-signature .icon li{ margin: 10px 0; }
  .email-signature .icon li a{
  color: #fff;
  background-color: #533c87;
  font-size: 13px;
  text-align: center;
  line-height: 28px;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  display: block;
  transition: all 0.3s;
  }
  
  @media screen and (max-width:576px){
  .email-signature{ padding: 190px 15px 60px; }
  .email-signature:before,
  .email-signature:after{
  height: 120px;
  width: 100%;
  border-radius: 0 0 500px 400px;
  bottom: auto;
  top: 0;
  }
  .email-signature:after{ height: 140px; }
  .email-signature .signature-icon{
  transform: translateY(0) translateX(-50%);
  left: 50%;
  top: 70px;
  }
  .email-signature .signature-details,
  .email-signature .signature-content{
  width: 100%;
  text-align: center;
  }
  .email-signature .icon{
  transform: translateY(-50%) translateX(50%);
  top: auto;
  bottom: 0;
  right: 50%
  }
  .email-signature .icon li{
  display: inline-block;
  margin: 0 3px;
  }
  }

  .car-phone{
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 200px;
    right: 18px;
    background-color: #62cff4 ;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 25px;
    z-index: 100;
    }
    
    .car-whatsapp{
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 130px;
    right: 18px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 25px;
    z-index: 100;
    }
    
    .car-phone .fa-phone ,.car-whatsapp .fa-whatsapp{
      margin-top: 12px;
      margin-left: 3px;
    }

    .message-input textarea{
      width: 100%;
    }

    .validation{
      color: red;
    }

    #homecontact .validation {
      color: red;
      display: none;
      margin: 0px 0px 10px 0px;
      font-weight: 700;
      font-size: 15px;
  }
  
  .form-div-group {
    display: flex;
  }
  .form-div-group .form_group_data{
    width: 50%;
      margin: 0px 10px 10px 0px;
  }
  .form-heading-div{
    text-align: center;
      margin-bottom: 25px;
  }
  
  .form-heading-div b{
    color:white;
  }
  .form-group_input ,.form-group_textarea {
    margin-bottom: 15px;
  }

  .form_content {
    margin-bottom: 1rem;
  }
  .form-group {
    color: #333;
  }
  .form-group_title {
    color: #62cff4 ;
    text-transform: uppercase;
    margin-bottom: 25px;
  }
  .form-group_input ,.form-group_textarea {
    width: 100%;
    border-width: 0 0 2px 0;
    border-bottom: 2px solid #ccc;
    padding: 0.5rem;
    margin-bottom: 1.5rem;
  }
  .form_background {
    border-radius: 0.2rem;
    background-color: #fff;
    padding: 1rem 2rem;
    box-shadow: 2px 2px 4px 0px #62cff4 ;
    width: 50%;
    height: auto;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 10px;
    right: 0;
    transition: all 0.3s cubic-bezier(0.04, 0.57, 0.15, 1.46);
  }
  .fieldset {
    flex: 1;
    margin: 0;
    border: 0;
    padding: 0 5rem 0 0;
  }
  .fieldset:first-child {
    padding-left: 0;
  }
  .fieldset:last-child {
    padding-left: 5rem;
    padding-right: 0;
  }
  .radio--invisible {
    opacity: 0;
    height: 0;
    width: 0;
  }
  .button {
    text-transform: uppercase;
    padding: 0.6rem 3rem;
    border: 1px solid #fff;
    border-radius: 0.3rem;
    cursor: pointer;
    transition: background 0.2s ease-in;
    display: inline-block;
    margin-top: 1rem;
  }
  .button:hover {
    background-color: rgba(0, 0, 0, .3);
  }
  .button--form {
    background: #62cff4 ;
    color: #fff;
    float: right;
    margin-top: 0;
  }
  .button--form:hover {
    background: #62cff4 ;
  }
  #noaccount:checked ~ .form_background {
    transform: translate(3rem, -50%);
  }
  #noaccount:checked ~ .form_background .form-group--account {
    display: none;
  }
  #noaccount:checked ~ .form_background .form-group--noaccount {
    display: block;
    opacity: 0;
    animation-delay: 0.2s;
    animation-duration: 0.3s;
    animation-name: slidein;
    animation-fill-mode: forwards;
  }
  #account:checked ~ .form_background {
    transform: translate(calc(100% - 3rem), -50%);
  }
  #account:checked ~ .form_background .form-group--noaccount {
    display: none;
  }
  #account:checked ~ .form_background .form-group--account {
    display: block;
    animation-delay: 0.2s;
    animation-duration: 0.3s;
    animation-name: slidein;
    animation-fill-mode: forwards;
  }
  @keyframes slidein {
    from {
      opacity: 0;
     }
    to {
      opacity: 1;
     }
  }
  
  .form-title-data{
    max-width: 205px;
    text-transform: capitalize;
    margin-top: 25px;
  }
  
  .form-title-data h2{
    font-size: 36px;
  }
  
  .form-title-data p{
    font-size: 18px;
      color: #766b6b;
      font-weight: bolder;
      margin-top: 10px;
  }
  

  .book-a-car input,
.book-a-car select {
	border-color: #62cff4 ;
	border-radius: 0;
	font-size: 14px;
	height: 45px;
	width: 100%;
}

.book-a-car input:focus,
.book-a-car select:focus {
	border-color: #62cff4 ;
}

.book-a-car input {
	border-right: 0 none;
}

.book-a-car .pick-up-date span.input-group-append {
	background-color: #fff;
	border: 1px solid #62cff4 ;
}

.book-a-car .pick-up-date span.input-group-append {
	border-left: 0 none;
}

.book-a-car .pick-up-date span.input-group-append i.fa {
	color: #62cff4 ;
	font-size: 18px;
	line-height: 33px;
}

.book-now-btn {
  background-color: #62cff4 ;
  color: #000;
	display: inline-block;
	font-size: 15px;
	font-weight: 600;
	padding: 12px 30px;
	border: none;
	cursor: pointer;
	text-transform: uppercase;
}

.book-now-btn:focus {
	color: #222;
}

#datepicker > span:hover{
	cursor: pointer;
}
#datepicker i.fa {
	color: #62cff4 ;
    font-size: 18px;
    line-height: 33px;
}
.input-group-addon{
	background-color: #fff;
	padding: .330rem .75rem;
	border: 1px solid #62cff4 ;
}

.contactForm  #sendmessage , #homecontact #sendmessage {
	color: white;
	border: 1px solid white;
	display: none;
	text-align: center;
	padding: 15px;
	font-weight: 600;
	margin-bottom: 15px;
	margin-top: 20px;
}

.contactForm  #errormessage , #homecontact #errormessage{
	color: red;
	display: none;
	border: 1px solid red;
	text-align: center;
	padding: 15px;
	font-weight: 600;
	margin-bottom: 15px;
	margin-top: 20px;
}

.contactForm .form #sendmessage.show,
.contactForm .form #errormessage.show,
.contactForm .form .show,
.form #homecontact #sendmessage.show,
.form #homecontact #errormessage.show,
.form #homecontact .show {
  display: block;
}

.contactForm .form .validation  {
    color: red;
    display: none;
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 13px;
}

.scroll-top {
  bottom: 50px;
  cursor: pointer;
  display: none;
  position: fixed;
  right: 30px;
  width: 30px;
  z-index: 9999;
}

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

.nav-item .scrollto{
  cursor: pointer;
}

.nav-item.active .scrollto:before{
  visibility: visible;
    opacity: 1;
    transition-delay: .1s;
    left: 50%;
}

.logo-div img{
  width: 35%;
}

 #sendmessage.show,
 #errormessage.show,
.form .show,
 #sendmessage.show,
 #errormessage.show,
 .form .show {
  display: block !important;
}

@media screen and (max-width:576px){
  .why_section .image-column .image-2 img, .why_section .image-column .image-1 img{
    width: 290px;
  }
  .why_section .why_container{
    padding-top: 35% !important;
  }
  .layout_padding {
    padding: 40px 0;
  }
  .email-signature.left{
    margin-bottom: 50px;
  }
  .why_section .image-column .inner-column:before{
    content: '';
    position: absolute;
    width: calc(50% + 75px);
    height: calc(100% + 150px);
    top: -80px;
    left: -3px;
    background: transparent;
    z-index: 0;
    border: 30px solid #62cff4 ;
  }
  .slider_section .box .detail-box h1{
    font-size: 2.2rem;
  }
  .pricingTable .pricing-content li{
    font-size: 16px;
  }
  .pricingTable .price-value{
    margin: 0 -32px 25px;
  }
}


.slider_section .box .detail-box h1 {
  
  /* color: #ffd9e2;
  text-shadow: 0 0 0 transparent, 0 0 10px #ff003c,
    0 0 20px rgba(255, 0, 60, 0.5), 0 0 40px #ff003c, 0 0 100px #ff003c,
    0 0 200px #ff003c, 0 0 300px #ff003c, 0 0 500px #ff003c, 0 0 1000px #ff003c;
  animation: blink 4s infinite alternate; */
  color: #000;
}



@-webkit-keyframes blink {
  40% {
    opacity: 1;
  }
  42% {
    opacity: 0.8;
  }
  43% {
    opacity: 1;
  }
  45% {
    opacity: 0.2;
  }
  46% {
    opacity: 1;
  }
}
@keyframes blink {
  40% {
    opacity: 1;
  }
  42% {
    opacity: 0.8;
  }
  43% {
    opacity: 1;
  }
  45% {
    opacity: 0.2;
  }
  46% {
    opacity: 1;
  }
}
