:root {
    --yellow: #FFC50F;
    --red: #FF2F39;
    --dark: #181818;
    --purple: #4B57D5;
    --light: #F6F6F6;
    --green: #27AE60;
}

*{
    text-decoration: none !important;
}
a { transition: all 0.4s ease;}
body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    color: var(--dark);
}
.montserrat {
  font-family: "Montserrat", sans-serif;
}
.plus-jakarta {
  font-family: "Plus Jakarta Sans", sans-serif;
}

/*----- btn -----*/
.btn {
  border-radius: 32px;
  padding: 10px 23px;
  font-size: 15px;
}
.btn-2 {
  border-radius: 32px;
  padding: 10px 32px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  border: none;
  transition: all 0.4s ease;
}
.btn-2 .icon {
  width: 7px;
  display: block;
  line-height: 0;
}
.btn-big {
  width: 100%;
  border-radius: 8px;
  padding: 14px 10px;
  border: none;
}
.btn-md {
    border-radius: 32px;
    padding: 10px 22px 10px 13px;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.btn-md .icon { width: 12px; line-height: 10px;}
.btn-3 {
  border-radius: 5px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  font-size: 15px;
  line-height: 19px;
  text-align: center;
  color: var(--dark);
  width: fit-content;
}
.btn-3 .icon {
  width: 15px;
  display: block;
  line-height: 0;
}
.btn-circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  padding: 11px;
  display: inline-flex;
}
/*----- btn end -----*/

/*----- btn colors -----*/
.btn-red {
  background: var(--red);
  color: #fff;
}
.btn-red:hover, .btn-red:active, .btn-red:focus {
  background: var(--dark);
  color: #fff;
}
.btn-purple {
  background: var(--purple);
  color: #fff;
}
.btn-purple:hover, .btn-purple:active, .btn-purple:focus {
  background: var(--dark);
  color: #fff;
}
.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover, .btn-dark:active, .btn-dark:focus {
  background: var(--red);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--dark);
}
.btn-white:hover, .btn-white:active, .btn-white:focus {
  background: var(--red);
  color: #fff;
}
.btn-white:hover .icon, .btn-white:active .icon, .btn-white:focus .icon {
  background: var(--dark);
  color: #fff;
}
.btn-yellow {
  background: var(--yellow);
  color: var(--dark);
}
.btn-yellow:hover, .btn-yellow:active, .btn-yellow:focus {
  background: var(--dark);
  color: #fff !important;
}
.btn-white-2 {
  background: #fff;
  color: var(--dark);
}
.btn-white-2:hover, .btn-white-2:active, .btn-white-2:focus {
  background: var(--dark);
  color: #fff;
}
/*----- btn colors end -----*/

/*----- text colors -----*/
.text-red {color: var(--red);}
.text-yellow {color: var(--yellow);}
.text-purple {color: var(--purple);}
.text-dark {color: var(--dark);}
/*----- text colors end -----*/

/*----- bg colors -----*/
.bg-light {background: var(--light);}
.bg-dark {background: var(--dark); color: #fff;}
.bg-purple {background: var(--purple); color: #fff;}
.bg-white {background: #fff;}
/*----- bg colors end -----*/

.banner {
  margin-top: -90px;
}

.form-box .wrap {
  background: #FFFFFF;
  border: 1px solid #efefef;
  border-radius: 18px;
  overflow: hidden;
}
.form-box .wrap .contact-info {
  background: var(--purple);
  color: #fff;
  padding: 60px 82px;
}
.form-box .wrap .contact-info .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #FFFFFF;
}
.form-box .wrap .contact-info .icon {
  width: 60px;
  height: 60px;
  background: var(--yellow);
  border-radius: 5px;
}
.form-box .wrap .contact-info a {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #FFFFFF;
}
.form-box .wrap form {
  padding: 24px 28px;
  flex: 1;
}
.form-box .wrap form .title {
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  color: var(--dark);
}
.form-box .wrap .contact-info .text p {
  line-height: 20px;
}
.form-box .wrap form .form-control {
  background: var(--light);
  border-radius: 8px;
  border: none;
  height: 52px;
  padding-right: 42px;
}
.form-box .wrap form .item {
  margin-top: 15px;
  position: relative;
}
.form-box .wrap form .item .icon {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 20px;
  height: 28px;
  right: 26px;
  display: block;
}
.form-box .wrap form .item .custom-placeholder {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translate(0, -50%);
  color: #999;
  pointer-events: none;
  font-size: 15px;
  z-index: 2;
  display: none; /* Hidden by default for screens 575px and above */
  font-family: "Montserrat", sans-serif;
  transition: opacity 0.2s ease;
}
/* Hide on screens 575px and above */
@media(min-width: 576px) {
  .form-box .wrap form .item .custom-placeholder {
    display: none !important;
  }
}
.form-box .wrap form .item input[name="date"]:focus ~ .custom-placeholder {
  display: none !important;
}
.form-box {
  margin-top: -56px;
  position: relative;
  z-index: 1;
}
.hd-wrap .heading {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: var(--dark);
}
.hd-wrap .heading-md {
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  color: var(--dark);
}
.hd-wrap .sub-hd {
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 19px;
}
.custom-gap { margin: 60px 0;}
.service-section .box .content .title {
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}
.service-section .box .content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #464646;
  min-height: 135px;
}
.service-section .box {
  border: 1px solid #efefef;
  border-radius: 26px;
  padding: 0 20px 20px;
  background: #fff;
  height: 500px;
  position: relative;
}
.service-section .box figure {position: relative; margin-top: -20px;}
.service-section .box figure img {
  border-radius: 24px;
}
.about-us-service-section .box {
  height: 480px;
}
.about-us-service-section .box .content p{
  min-height: 78px;
}
.about-us-service-section .box .link-more {
  margin: 0 auto;
}

.link-more {
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  color: var(--purple);
  outline: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: all 0.4s ease;
}
.link-more:hover {color: var(--red);}
.custom-bg {padding: 50px 0;}
.pr {
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  text-align: justify;
}
.card-section .card {
  background: #FFFFFF;
  border: 0.4px solid #efefef;
  border-radius: 20px;
  padding: 18px;
  overflow: hidden;
}
.card-section .card:hover figure img { transform: scale(1.05);}
.card-section .card figure img { border-radius: 20px; transition: all 0.4s ease;}
.card-section .card .content .card-title {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  border-bottom: 1px solid #efefef;
  padding-bottom: 15px;
}
.card-section .card .content .card-title a { color: var(--dark);}
.card-section .card .info-wrap .info-item .title {
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
}
.card-section .card .content .text p {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
}
.card-section .card .content .bottom { border-top: 1px solid #efefef;}
.card-section .card figure .icon { 
  width: 46px;
  right: 15px;
  top: 14px;
}
.card-section .card .link-more { color: var(--dark)}
.card-section .card .link-more:hover { color: var(--red)}
.card-section .card .btn-2 { gap: 8px;}
.card-section .card .btn-2 .icon { width: 12px;}
.benefit-section .item .icon {
  width: 100px;
  height: 100px;
  background: var(--red);
  border-radius: 50%;
  padding: 35px;
}
.benefit-section .item .text {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: var(--dark);
}
.benefit-section .left-block .item {
  margin-right: -68px;
}
.benefit-section .right-block .item {
  margin-left: -118px;
}
.benefit-section .mid-block {
  margin-top: -50px;
}
.benefit-section .row { margin-top: 120px;}
.about-section .right-block figure { position: relative;}
.about-section .right-block figure .img-1 {
  width: 247px;
  border-radius: 28px;
  position: absolute;
  top: 65px;
  z-index: 1;
  left: -58px;
}
.about-section .right-block figure .img-2 {width: 564px; border-radius: 28px; float: right; margin-left: 67px; overflow: hidden;}
.about-section .left-block { padding-right: 123px;}
.about-section .exp {
  background: #FFFFFF;
  border-radius: 28px 28px 0px 0px;
  width: 140px;
  padding: 12px 15px;
  left: 40px;
}
.about-section .exp .icon {
  width: 21px;
}
.about-section .exp .pr{
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}
.about-section .exp .number {
  font-weight: 700;
  font-size: 34px;
  line-height: 50px;
  color: var(--dark);
}
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
}
.check-list li::before {
  content: "";
  background: url(../images/icons/check-purple.svg) no-repeat;
  width: 22px;
  height: 23px;
  position: absolute;
  left: 0;
  top: 0;
}
.divide-list {
  display: flex;
  flex-wrap: wrap;
}
.divide-list li {
  flex: 0 0 auto;
  width: 50%;
}
.icon-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.icon-list li .icon {
  width: 40px;
  height: 40px;
  background: var(--purple);
  color: #fff;
  border-radius: 50%;
  padding: 13px;
}
.icon-list li .text {
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: var(--dark);
}
.why-choose-section .left-block figure {
  border-radius: 26px;
  border: 15px solid #fff;
}
.why-choose-section .left-block figure img {
    border-radius: 26px;
}
.why-choose-section .left-block figure .contact .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  padding: 15px;
}
.why-choose-section .left-block figure .contact {
  background: var(--red);
  border-radius: 25px 0px;
  color: #fff;
  padding: 16px 43px 16px 24px;
}
.why-choose-section .left-block figure .contact a {
  font-weight: 700;
  font-size: 24px;
  line-height: 26px;
  color: #FFFFFF;
}
.why-choose-section .left-block figure .contact p { font-size: 14px;padding-left: 12px;}
.why-choose-section .right-block {
  padding-left: 50px;
}
.testimonials-section .right-block .bus-img {
  width: 550px;
  bottom: 0;
  left: -1px;
  margin-top: -296px;
}
.testimonials-section .right-block .seat-img {
  border-radius: 20px;
}
.reviewer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    margin-top: -26px;
}
.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 5px solid #FFFFFF;
    border-radius: 50%;
}
.testimonial-section .item img {
    width: 149px;
}
.testimonials-section .swiper-slide .box {
  background: var(--light);
  border-radius: 16px;
  padding: 0 35px 30px;
}
.testimonials-section .quote-text {color: var(--dark);}
.testimonials-section .custom-swiper-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 5px;
  background: #d4d4d4;
  opacity: 1;
  margin: 0 4px !important;
  transition: background-color 0.3s, width 0.3s;
}
.testimonials-section .custom-swiper-bullet-active {
  background: var(--red);
}
.testimonials-section .swiper-pagination {
  text-align: center !important;
  position: relative !important;
  bottom: 0px !important;
  padding-right: 20px;
  padding-top: 20px;
}
.testimonials-section .left-block {
  padding-right: 50px;
}
.cta-section .icon {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  padding: 12px;
  background: var(--red);
}
.cta-section .box {
  background: var(--purple);
  border-radius: 24px;
  padding: 80px 208px 80px 58px;
  overflow: hidden;
  width: 1156px;
  height: 422px;
}
.cta-section .box .title {
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
}
.cta-section .box .action button,
.cta-section .box .action a { 
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
}
.cta-section .box .action button{
  transition: all 0.4s ease;
  border: none;
  outline: none;
}
.cta-section .box .action button:hover{
  background: var(--dark);
  color: #fff;
}
.cta-section .bus-img {
  margin-top: -328px;
  z-index: 1;
  width: 470px;
  float: right;
}
.cta-section .pr {
  width: 484px;
}
.cta-section .box::before {
  content: "";
  position: absolute;
  right: 190px;
  top: 50px;
  width: 320px;
  height: 320px;
  background: url(../images/circle.svg) no-repeat;
}
.cta-section .box::after {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -210px;
  width: 320px;
  height: 320px;
  background: url(../images/circle.svg) no-repeat;
}
.cta-section {
    margin-top: 140px;
}
.cta-section .wa .icon { padding: 4px; background: none;}
.contact-wrap {
    gap: 40px;
}
.contact-wrap .item.details {
  width: 528px;
}
.contact-wrap .item .box {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
}
.form-title {
    font-size: 25px;
    font-weight: 700;
    background: var(--purple);
    color: #fff;
    width: 360px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0;
    margin-top: -38px;
    margin-bottom: 40px;
    border-radius: 0 0 16px 16px;
}
.contact-wrap .details .tt-item {
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}
.contact-wrap .details .tt-item:nth-last-child(1) { 
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.contact-wrap .details .tt-item .icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    background: var(--red);
    padding: 16px;
}
.contact-wrap .details .tt-item .content {
    width: 250px;
}
.contact-wrap .details .tt-item .content a {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: var(--dark);
}
.contact-wrap .item.form-wrap {
    width: 752px;
}
.contact-wrap .form-wrap .wrap .form-group {
    width: 50%;
}
.book-form-wrap .form-box .form-control, .contact-wrap .form-wrap .form-control {
    background: #f5f5f5;
    border-radius: 30px;
    padding: 16px 26px 16px 50px;
    border: none;
    border-radius: 14px;
}
.book-form-wrap .form-box .form-group, .contact-wrap .form-wrap .form-group {
    margin-bottom: 18px;
    position: relative;
}
.contact-wrap .form-wrap .form-group .icon {
    position: absolute;
    top: 50%;
    left: 12px;
    width: 16px;
    transform: translate(0, -50%);
}
.contact-wrap textarea { resize: none; height: 120px;}
.contact-wrap .msg {position: relative;}
.contact-wrap .msg .icon { top: 15px !important;}

.social-media-box .icon {
  width: 50px;
  height: 50px;
  background: var(--purple);
  border-radius: 50%;
  padding: 16px;
}
.social-media-box .icon img {
  filter: invert(1);
}
.social-media-box li:nth-child(1) .icon { padding: 19px;}
.social-media-box .icon:hover {
  background: var(--red);
}
.process-block .title { font-size: 18px; font-weight: 600;}
.vision-section .item { margin-bottom: 16px;}
.custom-breadcrumb {
    background: #fff;
    border-radius: 40px;
    color: #000;
    padding: 10px 20px;
}
.custom-breadcrumb li a {color: var(--dark); font-weight: 500;}
.custom-breadcrumb .breadcrumb-item.active { color: var(--red); font-weight: 500;}

.vh-detail-section .price-box .icon {
  background: var(--yellow);
  border-radius: 8px;
  width: 40px;
  padding: 14px;
  height: 100%;
}
.vh-detail-section .car-img img {
  height: 100%;
  object-fit: cover;
}
.vh-detail-section .box {
  background: var(--purple);
  border-radius: 12px;
  padding: 13px 25px;
}
.vh-detail-section .price-box li {
  background: #FFFFFF;
  border-radius: 8px;
  height: 60px;
  margin-bottom: 10px;
}
.vh-detail-section .price-box li:nth-last-child(1) { margin-bottom: 0;}
.custom-bg-2 {padding: 25px;}
.vh-detail-section .price-box li .title {
  font-weight: 700;
  font-size: 15px;
  line-height: 19px;
  color: var(--dark);
  padding-bottom: 6px;
}
.vh-detail-section .price-box li .text sup { 
  width: 7px;
  display: block;
  top: 7px;
  left: 0;
  top: -3px;
}
.vh-detail-section .price-box li .text .info { line-height: 14px;padding-left: 10px;}
.vh-detail-section .action .text a {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
}
.vh-detail-section .book .btn { /* Book Now */
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
  color: var(--dark);}
.vh-detail-section .or { width: 100px; margin: 0 auto; margin-bottom: 7px; margin-top: 7px;}
.vh-detail-section .hd-wrap .heading-md { font-size: 20px;}
/*-------- faq ---------*/
.faq-section .item {
    border: 1px solid #C4C4C4;
    border-radius: 15px;
    margin-bottom: 15px;
    border-bottom: 0;
}
.faq-section .item .title {
    padding: 10px 16px;
    cursor: pointer;
    border-radius: 15px;
    border-bottom: 1px solid #C4C4C4;
}
.faq-section .item .title p {
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
}
.faq-section .item .content-body {
    display: none;
    padding: 22px 22px 22px;
    border-bottom: 1px solid #C4C4C4;
    border-radius: 15px;
}
.faq-section .item .title .icon { 
  background: var(--purple);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transform: rotate(0deg); transition: all 0.4s ease;
  flex: none;
}
.faq-section .item .title.active .icon { transform: rotate(-180deg);}
/*-------- faq end ---------*/
/*-------- city-block ---------*/
.city-block .item .title {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  width: 115px;
}
.city-block .item .img {width: 100px; height: 90px;}
.city-block .item .img img {object-fit: cover; height: 100%;}
.city-block { 
    border: 1px solid #efefef;
    padding: 15px;
    border-radius: 15px;
}
.city-block .item { margin-bottom: 16px; border-bottom: 1px solid #efefef; padding-bottom: 15px;}
.city-block .item:nth-last-child(1) { margin-bottom: 0; border-bottom: 0; padding-bottom: 0;}
/*-------- city-block end ---------*/
.detail-section .card-section .card { padding: 13px;}
.breadcrumb-wrap { border-bottom: 1px solid #efefef;}
.tempo-card .info-wrap .info-item {
  width: 47%;
}

/*------ feature -----*/
.feature-section .box .icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--purple);
  margin: 0 auto;
  margin-top: -33px;
  margin-bottom: 18px;
  padding: 28px;
}
.feature-section .box .text {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  margin: 0 auto;
}
.feature-section .box {
  background: #fff;
  border-radius: 20px;
  padding: 15px 15px 36px;
  border: 1px solid #efefef;
}
/*------ feature end-----*/
/*------ cta setion -----*/
.cta-section-2 .box { background: var(--purple); border-radius: 30px; padding: 80px 78px 80px 58px; height: 450px; position: relative;}
.cta-section-2 .box::before {
  content: "";
  background: var(--yellow);
  position: absolute;
  width: 426px;
  height: 100%;
  border-radius: 100px 26px 26px 100px;
  right: 0;
  top: 0;
}
.cta-section-2 .action .wts { width: 42px; display: block;}
.cta-section-2 .heading {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 28px;
}
.cta-section-2 .box .content {
  width: 520px;
}
.cta-section-2 .heading span {
  font-size: 26px;
  font-weight: 300;
  display: block;
}
.cta-section-2 .box .content p { font-weight: 600; font-size: 20px; margin-bottom: 33px;}
.cta-section-2 .image {
  width: 780px;
  position: relative;
  z-index: 1;
}
.cta-section-2 .btn-md .icon {
  width: 16px;
}
.cta-section-2 .btn-white:hover .icon { background: none;}
.cta-section-2 .btn-white:hover .icon img, .cta-section-2 .btn-white:focus .icon img { filter: invert(1) brightness(1);}
.cta-section-2 .btn-md { padding: 10px 16px;}
.cta-section-2 button.btn-md{outline: none; border: none;}
/*------ cta section end -----*/

/*------ cta section 3 -----*/
.cta-section-3 { background: url(../images/call-to-action-bg.webp) no-repeat; width: 100%; height: 436px; border-radius: 20px; padding: 85px 65px; overflow: hidden;}
.cta-section-3::before {
  content: "";
  background: url(../images/road.webp) no-repeat center;
  position: absolute;
  bottom: -85px;
  left: 0;
  width: 100%;
  height: 204px;
}
.cta-section-3 .image { z-index: 1;}
.cta-section-3 .hd-wrap {
    width: 240px;
}
.full-cta-section-3 .hd-wrap {width: 490px;}
.full-cta-section-3::before {background-size: 100%; bottom: -10px;}
.full-cta-section-3 .hd-wrap .heading { font-size: 23px; line-height: 35px;}
.full-cta-section-3 .content .action { position: absolute; bottom: 15%;}
.full-cta-section-3 .content { margin-top: 33px;}
/*------ cta section 3 end -----*/

.image-block-section .content {
  width: 50%;
}
.image-block-section .image {
  width: 50%;
}
.image-block-section .image img { border-radius: 13px;}
.image-block-section .item { margin-bottom: 40px;}
.image-block-section .item .hd-wrap .heading-md { line-height: normal;}
.priceTable .rupees-icon {
  vertical-align: text-bottom;
}
.priceTable tr th { background: var(--purple); color: #fff; padding: 18px 13px; border-bottom: 5px solid; width: 20%;text-align: center;}
.priceTable tr th:nth-child(1) { border-bottom-color: var(--yellow) !important;}
.priceTable tr th:nth-child(2) { border-bottom-color: var(--red) !important;}
.priceTable tr th:nth-child(3) { border-bottom-color: var(--green) !important;}
.priceTable tr th:nth-child(4) { border-bottom-color: var(--yellow) !important;}
.priceTable .table {
  border-radius: 15px;
  border: 1px solid #f3f3f5;
  overflow: hidden;
}
.priceTable tr td { padding: 10px 14px; font-weight: 500; text-align: center; vertical-align: middle;}
.priceTable .rupees-icon img {
  width: 8px;
  height: 9px;
}
.priceTable .rupees-icon {
  vertical-align: text-bottom;
  display: inline-block;
  width: 5px;
}
.detail-section .feature-section .box .text { font-size: 14px;}
.detail-section .feature-section .box .icon { width: 80px; height: 80px; padding: 24px;}
.link-wrap .link-box {
  background: #FFFFFF;
  border: 1px solid var(--red);
  border-radius: 37px;
  padding: 10px 25px;
  color: var(--dark);
  display: block;
  font-weight: 500;
}
.link-wrap .link-box:hover, .link-wrap .link-box:focus { background: var(--red); color: #fff;}

/*----- side bar form ----*/
.side-form {
  background: var(--light);
  border-radius: 12px;
  padding: 0 0 20px;
}
.side-form .top-head { background: var(--purple); border-radius: 12px 12px 0px 0px; padding: 32px 20px;height: 148px;}
.side-form .top-head .title {  font-weight: 700; font-size: 24px; line-height: 30px; color: #FFFFFF;}
.side-form .form-wrap { 
  background: #fff;
  border-radius: 15px;
  padding: 20px 15px 25px;
  width: 90%;
  margin: 0 auto;
  margin-top: -50px;
}
.side-form .form-wrap .item .icon { top: 50%; left: 15px; transform: translate(0, -50%); width: 16px;}
.side-form .form-wrap .item .custom-placeholder {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translate(0, -50%);
  color: #999;
  pointer-events: none;
  font-size: 15px;
  z-index: 2;
  display: none; /* Hidden by default for screens 575px and above */
  font-family: "Montserrat", sans-serif;
  transition: opacity 0.2s ease;
}
/* Hide on screens 575px and above */
@media(min-width: 576px) {
  .side-form .form-wrap .item .custom-placeholder {
    display: none !important;
  }
}
.side-form .form-wrap form .form-control {
  background: var(--light);
  border-radius: 8px;
  height: 45px;
  border: none;
  padding-left: 40px;
}
.side-form .form-wrap form .btn { width: fit-content;}
.side-form .form-wrap form .btn-2 { 
  padding: 8px 50px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.enquiry-modal-form .form-wrap form .btn-2 {
  max-width: 180px; margin: 0 auto; display: flex; justify-content: center; align-items: center;
}
.enquiry-modal-form .form-wrap form textarea.form-control {
  resize: none;
  height: 100px;
}
.enquiry-modal-form .form-wrap form .item .message-icon {
  top: 20px;
}
/*----- side bar form end ----*/
/*----- choose-card ----*/
.choose-card .card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 0 0 18px;
} 
.choose-card figure { border-radius: 20px; overflow: hidden; margin-bottom: 15px;}
.choose-card .title {font-weight: 600; padding: 0 15px; font-size: 14px;}
.choose-card .item:nth-child(1) .title {
    padding: 0 48px;
}
.custom-choose-card .card { padding: 0 14px 18px;}
.custom-choose-card .card figure {margin-top: -18px;}
.custom-choose-card .item:nth-child(1) .title { padding: 0 16px;}
.custom-choose-card .card .title {font-weight: 700; font-size: 15px;}
/*----- choose-card end ----*/
/*----- overlay-card ----*/
.overlay-card .card figure .title {
  position: absolute;
  width: 100%;
  height: 101px;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 1%, #000000 100%);
  border-radius: 0px 0px 20px 20px;
  bottom: 0;
  z-index: 1;
  font-weight: 800;
  font-size: 20px;
  line-height: 25px;
  padding: 44px 7px 10px;
} 
.overlay-card .card figure { overflow: hidden; border-radius: 20px;}
/*----- overlay-card end ----*/

.custom-route .left-block figure .contact {border-radius: 0 25px 0 25px;}

/*----- strip card ----*/
.strip-card .card figure .caption {
  position: absolute;
  width: 80%;
  height: 55px;
  background: var(--purple);
  border-radius: 20px 20px 0px 0px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
}
.strip-card .card figure img { border-radius: 20px; height: 260px; object-fit: cover;}
.custom-strip-card .card .caption {
  background: var(--purple);
  border-radius: 0 0 15px 15px;
  padding: 15px 10px;
  font-weight: 500;
}
.custom-strip-card .card figure img {border-radius: 15px 15px 0 0;}
/*----- strip card end ----*/

/*----- icon-card ----*/
.icon-card .card {
  border: 1px solid #ddd;
  border-radius: 22px;
  width: 19%;
  height: 274px;
  padding: 32px 46px;
}
.icon-card .card::before {
  content: "";
  background: var(--yellow);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 113px;
  border-radius: 21px 21px 50px 50px;
}
.icon-card .card .icon {
  background: var(--purple);
  width: 95px;
  height: 95px;
  border-radius: 50%;
  margin: 0 auto;
  padding: 34px;
  z-index: 1;
  margin-bottom: 35px;
}
.icon-card .card .content {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
}
/*----- icon-card end ----*/
.table-cost .priceTable tr th { font-size: 14px;}

.side-form .top-head .btn-close {
  opacity: 1;
  filter: invert(1);
  position: absolute;
  right: 40px;
  top: 38px;
}
#fromModal .modal-body {
  padding: 0;
}
#fromModal .modal-content {
  border: 0 !important;
  background-color: none !important;
  border: 0 !important;
  border-radius: 14px;
}
.cta-section .action {
  z-index: 1;
  position: relative;
}
.form-box .item input[type="date"]::-webkit-calendar-picker-indicator {
  display: none !important;
}
.team-section .left-block {
  width: 50%;
  height: 463px;
  border-radius: 20px;
  overflow: hidden;
}
.team-section .left-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}