* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --light-white: #E8E8E8;
  --white: #FFFFFF;
  --blue: #2D6CDF;
  --grey: #333333;
  --libre-font: "Libre Baskerville", serif;
  --inter-font: "Inter", sans-serif;
}

::selection {
  background-color: var(--blue);
  color: var(--light-white);
}

 ::-webkit-scrollbar {
  width: 13px;
}

::-webkit-scrollbar {
  height: 0.5rem;
  width: 0.9rem;
  background-color: var(--black);
}

::-webkit-scrollbar-thumb {
  background-color: var(--light-white);
  border-radius: 12px;
  border: 3px solid var(--black);
} 

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/*::-webkit-scrollbar {*/
/*  display: none;*/
/*}*/

body,
html {
  overflow-x: hidden;
}

li {
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.text-blue {
  color: var(--blue);
}

.text-light-white {
  color: var(--light-white);
}

/* Header Start  */

.header {
  position: fixed;
  width: 100%;
  top: 36px;
  z-index: 999;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  backdrop-filter: blur(3.6px);
  background: #00000085;
  padding: 20px 24px;
  border-radius: 13px;
  align-items: center;
}

.hidden {
  display: none;
}

.hamburger {
  display: none;
  font-size: 30px;
  color: var(--white);
}

.logo a img {
  width: 175px;
}

.nav-links {
  display: flex;
  gap: 45px;
  margin-bottom: 0;
  padding: 0;
}

.nav-links .nav-link {
  color: var(--light-white);
  font-family: var(--inter-font);
  font-weight: 400;
  font-size: 18px;
}

.nav-links .nav-link.active {
  font-weight: 600;
}

.cart-area {
  display: flex;
  gap: 25px;
  align-items: center;
}

.primary-btn {
  font-size: 18px;
  padding: 13px 22px;
  font-family: var(--inter-font);
  font-weight: 600;
  color: var(--light-white);
  border: 1px solid var(--light-white);
  border-radius: 7px;
  text-decoration: none;
  outline: none;
  background-color: transparent;
  transition: 0.8s;
}

.primary-btn:hover {
  background-color: var(--blue);
  border-color: #2D6CDF;
  transition: 0.8s;
}

.secondary-btn {
  font-size: 18px;
  padding: 13px 22px;
  font-family: var(--inter-font);
  font-weight: 600;
  color: var(--light-white);
  border: 1px solid var(--blue);
  border-radius: 7px;
  text-decoration: none;
  outline: none;
  background-color: var(--blue);
  transition: 0.8s;
}

.secondary-btn:hover {
  background-color: transparent;
  border-color: var(--blue);
  transition: 0.8s;
  color: var(--blue);
}

.cart-area .search-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-area .search-box button,
.cart-area .search-box a {
  padding: 0;
  border: none;
  outline: none;
  color: var(--light-white);
  font-size: 22px;
  background-color: transparent;
}


/* Hero Banner Start  */

.hero-banner {
  min-height: 1000px;
  display: flex;
  height: auto;
  width: 100%;
  position: relative;
  align-items: center;
  justify-content: center;
  padding-top: 242px;
  padding-bottom: 125px;
  background: #00000080;

}

.hero-banner .video-area {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-banner .height {
  height: 100%;
}


.video-area video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.banner-hd {
  font-size: 65px;
  font-weight: bold;
  font-family: var(--libre-font);
  color: var(--light-white);
}

.review-box {
  padding: 12px;
  border-radius: 28px;
  background-color: var(--light-white);
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
  max-width: 425px;
  margin-top: 170px;
  position: relative;
  z-index: 2;
}

.review-box::before {
  content: "";
  position: absolute;
  background-image: url("../images/review-bg.webp");
  left: 50%;
  top: -26px;
  width: 383px;
  height: 100%;
  background-repeat: no-repeat;
  transform: translateX(-50%);
  z-index: -1;
}

.review-box .rev-img {
  width: 177px;
}

.rev-mini-img-wrp {
  margin-bottom: 18px;
}

.rev-mini-img-wrp img {
  height: 43px;
  width: 43px;
}

.mini-rev {
  margin-left: -12px;
}

.review-box p {
  color: #4B5262;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--inter-font);
}

.review-box p span {
  color: var(--black);
  font-weight: 600;
  font-size: 24px;
}

.hero-banner .card {
  backdrop-filter: blur(6.5px);
  background: rgba(232, 232, 232, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.2)
}

.hero-banner .form-step h2,
.hero-banner .form-step h6,
.hero-banner .form-step .field-wrapper label,
.hero-banner .form-step .field-wrapper.d-flex p,
.hero-banner .btn.back {
  color: var(--white);
}


/* About Us Section  */

.about-sec {
  background-color: var(--light-white);
  padding: 120px 0;
}

.sec-hd {
  color: var(--black);
  margin-bottom: 20px;
  font-size: 64px;
  font-weight: bold;
  font-family: var(--libre-font);
  text-transform: capitalize;
}

.sec-para {
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
  font-family: var(--inter-font);
}

.counter-wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 50px;
}

.counter-wrapper .seperator {
  width: 2px;
  height: 70px;
  background-color: #D7D7D7;
}

.counter-wrapper .counter-box p {
  color: #4B5262;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--inter-font);
  margin-bottom: 10px;
}

#counter,
#counter2 {
  padding: 0;
  margin: 0;
}

#counter span,
#counter2 span {
  font-family: var(--inter-font);
  font-weight: 600;
  font-size: 35px;
  color: var(--black);
}

span.percent-m:after {
  content: "+";
  display: inline-block;
}

span.null:after {
  content: "";
  display: inline-block;
}

/* Surprise Sec Start */

.surprise-sec {
  background-color: var(--grey);
  padding: 75px 0;
}

.surprise-sec .sec-hd,
.surprise-sec .sec-para,
.testimonial-sec .sec-hd,
.testimonial-sec .sec-para {
  color: var(--light-white);
  text-align: center;
}

.surprise-wrapper {
  margin-top: 55px;
  display: flex;
  justify-content: space-between;
}

.surprise-wrapper .surprise-box {
  width: calc(100% / 3 - 30px);
  background-color: transparent;
  color: var(--light-white);
  padding: 37px 35px;
  border-radius: 15px;
  box-shadow: 0px 0px 14.3px 0px #0000005E;
  border: 2px solid #666666;
  text-align: center;
  position: relative;
   height: fit-content; 
  transition: 0.8s;
}

.surprise-box .sur-img {
  padding: 23px;
  border: 1px solid transparent;
  border-radius: 15px;
  margin: 0 auto;
  margin-bottom: 35px;
  width: fit-content;
  transition: 0.8s;
}

.surprise-box .sur-img img {
  width: 55px;
}

.surprise-box h3 {
  font-size: 32px;
  font-family: var(--libre-font);
  font-weight: 400;
  margin-bottom: 20px;
}

.surprise-box p {
  font-size: 18px;
  font-family: var(--inter-font);
  font-weight: 400;
}

.surprise-box .rate {
  position: absolute;
  top: 13px;
  right: 20px;
  opacity: 37%;
  transition: 0.8s;
}

.surprise-box .rate h5 {
  font-size: 40px;
  font-weight: 400;
  font-family: var(--libre-font);
}

.surprise-box .rate h6 {
  font-size: 16px;
  font-family: var(--inter-font);
  font-weight: 400;
}

.surprise-box .primary-btn {
  display: block;
  width: fit-content;
  margin-top: 23px;
  margin-left: auto;
  margin-right: auto;
  display: none;
  transition: 0.8s;
}

.surprise-wrapper .surprise-box:hover {
  background-color: var(--blue);
  transition: 0.8s;
  border-color: var(--blue);
  height: 100%;
}


.surprise-wrapper .surprise-box:hover .sur-img {
  border-color: var(--light-white);
  transition: 0.8s;
}

.surprise-wrapper .surprise-box:hover .primary-btn {
  display: block;
  transition: 0.8s;
}

.surprise-wrapper .surprise-box:hover .rate {
  opacity: 100%;
  transition: 0.8s;
}

.surprise-sec .btn-wrapper {
  display: flex;
  justify-content: center;
  gap: 17px;
  margin-top: 40px;
}

.surprise-sec .btn-wrapper a {
  display: block;
  width: fit-content;
}

/* Process Section Start */


.process-section {
  background-color: var(--light-white);
  padding: 120px 0;
}

.process-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
}

.process-box-wrapper {
  width: calc(100% / 3 - 40px);
}

.process-box-wrapper .process-box {
  margin-bottom: 60px;
}

.process-box .process-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.process-box .process-header img {
  width: 60px;
}

.process-box .process-header h4 {
  font-size: 90px;
  font-family: var(--libre-font);
  font-weight: 400;
  color: #BABABA;
}

.process-box h5 {
  font-size: 31px;
  font-family: var(--libre-font);
  font-weight: bold;
  color: var(--black);
  margin-bottom: 17px;
  text-transform: capitalize;
}

/* Testimonal Section Start */

.testimonial-sec {
  background-color: var(--grey);
  padding: 75px 0 130px;
  position: relative;
}

.testimonial-slider-wrapper {
  margin-top: 60px;
}

.testimonial-slide {
  margin: 0 15px !important;
  height: 280px;
  position: relative;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 33px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 21px;
  text-align: center;
}

.testimonial-slide-1 {
  background-image: url("../images/testimonial-img-1.webp");
}

.testimonial-slide-2 {
  background-image: url("../images/testimonial-img-2.webp");
}

.testimonial-slide-3 {
  background-image: url("../images/testimonial-img-3.webp");
}

.testimonial-slide h5 {
  color: var(--light-white);
  font-weight: bold;
  font-size: 28px;
  font-family: var(--libre-font);
  margin-bottom: 5px;
}

.testimonial-slide p {
  color: var(--light-white);
  font-weight: 400;
  font-size: 18px;
  font-family: var(--inter-font);
}

.testimonial-slide .rating {
  position: absolute;
  top: 20px;
  left: 23px;
}

.testimonial-slide .rating img {
  width: 87px;
}

.testimonial-sec .testimonial-btn {
  background-color: transparent;
  border: 1px solid var(--light-white);
  border-radius: 6px;
  outline: none;
  padding: 6px 18px;
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  color: var(--light-white);
  font-size: 23px;
}

.testimonial-sec .testimonial-prev {
  left: 150px !important;
}

.testimonial-sec .testimonial-next {
  right: 150px !important;
}

/* Trust Section Start */

.trust-sec {
  padding: 120px 0;
  background-color: var(--light-white);
}

.trust-slider-wrapper {
  margin-top: 65px;
}

.trust-slide {
  padding: 28px 25px;
  position: relative;
  border-radius: 29px;
  margin: 0 14px;
  display: flex !important;
  flex-direction: column;
  justify-content: end;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 375px;
  transition: 0.8s;
}

.trust-slide-1 {
  background-image: url("../images/trust-card-img-1.webp");
}

.trust-slide-2 {
  background-image: url("../images/trust-card-img-2.webp");
}

.trust-slide-3 {
  background-image: url("../images/trust-card-img-3.webp");
}

.trust-slide h5 {
  color: var(--light-white);
  font-weight: bold;
  font-size: 23px;
  font-family: var(--libre-font);
  margin-bottom: 5px;
  text-transform: capitalize;
}

.trust-slide p {
  color: var(--light-white);
  font-weight: 400;
  font-size: 18px;
  font-family: var(--inter-font);
  max-height: 48px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.trust-slide .trust-btn {
  height: 47px;
  width: 47px;
  background-color: var(--blue);
  border-radius: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--light-white);
  font-size: 20px;
  top: 22px;
  right: 23px;
  text-decoration: none;
}

.trust-slide .trust-btn i {
  transform: rotate(-45deg);
  transition: 0.8s;
}

.trust-slide:hover {
  background: var(--blue);
  transition: 0.8s;
}

.trust-slide:hover p {
  max-height: 300px;
  transition: max-height 0.5s ease;
}

.trust-slide:hover .trust-btn {
  background-color: var(--light-white);
  color: var(--blue);
}

.trust-slide:hover i {
  transform: rotate(0deg);
  transition: 0.8s;
}

/* Step Form Section Start */
.step-form-sec {
  padding: 110px 0;
  background-color: var(--grey);
}

.step-form-sec .sec-hd {
  color: var(--light-white);
  font-size: 61px;
}

.step-form-sec .sec-para {
  color: var(--light-white);
}

.step-form-sec .btns {
  display: flex;
  margin-top: 40px;
  margin-bottom: 25px;
  gap: 17px;
}

.step-form-sec .list-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  gap: 12px;
}

.step-form-sec .list-wrapper li {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--inter-font);
  color: var(--light-white);
}

.step-form-sec .list-wrapper li i {
  font-size: 32px;
}

/* Pricing Section Start  */

.pricing-sec {
  padding: 120px 0;
  background-color: var(--light-white);
}

.pricing-wrapper {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}

.pricing-box {
  background-color: var(--grey);
  padding: 40px 45px;
  border-radius: 12px;
  width: calc(100% / 3 - 30px);
  box-shadow: 0px 0px 8.5px 0px #00000026;
  transition: 0.8s;
}

.pricing-box:hover {
  background-color: var(--blue);
  transition: 0.8s;
}

.pricing-box:hover .book-btn {
  background-color: var(--light-white);
  border-color: var(--light-white);
  color: var(--blue);
  transition: 0.8s;
}

.pricing-box h5 {
  font-size: 25px;
  font-weight: bold;
  font-family: var(--inter-font);
  margin-bottom: 10px;
  color: var(--light-white);
}

.pricing-box p {
  font-size: 18px;
  font-weight: 400;
  font-family: var(--inter-font);
  margin-bottom: 20px;
  color: var(--light-white);
}

.pricing-box h2 {
  font-size: 56px;
  font-weight: 600;
  font-family: var(--inter-font);
  margin-bottom: 24px;
  color: var(--light-white);
}

.pricing-box .call-btn,
.footer .call-btn {
  padding: 9px;
  background-color: transparent;
  border: 1px solid var(--light-white);
  border-radius: 7px;
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 10px;
  width: 100%;
  color: var(--light-white);
  font-size: 18px;
  font-family: var(--inter-font);
  font-weight: 600;
  align-items: center;
  text-decoration: none;
  margin-bottom: 25px;
}

.footer .call-btn:hover {
  background-color: var(--blue);
  border-color: #2D6CDF;
  transition: 0.8s;
}

.pricing-box .call-btn:hover {
  background-color: var(--light-white);
  color: var(--blue);
  transition: 0.8s;
}

.pricing-box .book-btn {
  padding: 9px;
  background-color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 7px;
  text-align: center;
  width: 100%;
  color: var(--light-white);
  font-size: 18px;
  font-family: var(--inter-font);
  font-weight: 600;
  text-decoration: none;
  display: block;
}

.pricing-box ul {
  padding: 0;
  margin: 0;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-box ul li {
  font-size: 18px;
  font-weight: 400;
  font-family: var(--inter-font);
  display: flex;
  gap: 27px;
  color: var(--light-white);
  align-items: center;
}

/* Footer Start */

.footer {
  background-color: var(--grey);
  padding-top: 85px;
}

.footer-logo img {
  width: 100%;
  margin-bottom: 30px;
}

.footer .social-icon-wrapper {
  display: flex;
  gap: 14px;
  align-items: center;
}

.social-icon-wrapper a {
  height: 36px;
  width: 36px;
  border-radius: 100%;
  border: 1px solid var(--light-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.8s;
}

.social-icon-wrapper a:hover {
  background-color: var(--blue);
  color: var(--white);
  transition: 0.8s;
}

.social-icon-wrapper i {
  color: var(--light-white);
  font-size: 16px;
}

.footer .footer-hd {
  font-size: 24px;
  font-weight: bold;
  font-family: var(--libre-font);
  margin-bottom: 35px;
  color: var(--white);
}

.footer .footer-nav-links li {
  margin-bottom: 32px;
}

.footer .footer-nav-links li:last-child {
  margin-bottom: 0 !important;
}

.footer .footer-nav-links li a {
  color: var(--white);
  font-size: 19px;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  transition: 0.8s;
}

.footer .footer-nav-links li a:hover,
.bottom-bar p a:hover {
  color: var(--blue) !important;
  transition: 0.8s;
}

.footer .linking-wrap {
  display: flex;
  justify-content: center;
}

.w-div {
  width: fit-content;
}

.footer form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}

.footer form input {
  font-size: 16px;
  font-family: var(--inter-font);
  color: var(--grey);
  border-radius: 7px;
  background-color: var(--white);
  padding: 13px 19px;
  border: none;
  outline: none;
}

.footer .call-btn {
  margin-bottom: 0;
}

.footer .bottom-bar {
  margin-top: 75px;
  padding: 36px 0;
  border-top: 1px solid var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .bottom-bar p {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  font-family: var(--inter-font);
}

footer .animate,
.header .animate,
footer .animate a,
.header .animate a {
  position: relative;
}

footer .animate a::after,
.header .animate a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scalex(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  left: 0;
  bottom: -0.3em;
}

footer .animate a:hover::after,
.header .animate a:hover::after {
  transform: scalex(1);
  transform-origin: left;
}

/* Pricing Page Start */


.main-pricing-sec {
  background-color: var(--light-white);
  padding-top: 256px;
  padding-bottom: 120px;
}

.pricing-tag {
  position: absolute;
  padding: 8px 31px;
  border-radius: 50px;
  background-color: var(--blue);
  color: var(--light-white);
  font-size: 16px;
  font-weight: 400;
  font-family: var(--inter-font);
  border: 3px solid var(--white);
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
}

/* Work Section Start */

.work-sec {
  padding: 112px 0;
  background-color: var(--white);
}

.sec-hd-mini {
    margin-bottom: 8px !important;
    font-size: 18px;
    text-transform: uppercase;
    font-family: var(--inter-font);
    font-weight: 500;
    color: var(--black);
    text-align: center;
    border-bottom: 1px solid var(--blue);
    padding-bottom: 0px;
    width: fit-content;
    margin: 0 auto;
}

.work-box-wrapper {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}

.work-box-wrapper .work-box {
  width: calc(100% / 3 - 115px);
  text-align: center;
}

.work-box .number {
  background-color: var(--blue);
  color: var(--white);
  border-radius: 14px;
  height: 80px;
  width: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 41px;
  font-family: var(--libre-font);
  margin: 0 auto;
  margin-bottom: 25px;
}

.work-box h5 {
  color: var(--black);
  font-size: 26px;
  font-family: var(--libre-font);
  font-weight: bold;
  margin-bottom: 15px;
}

.work-box p {
  color: var(--black);
  font-size: 18px;
  font-family: var(--inter-font);
  font-weight: 400;
}

/* Premium section Start */

.premium-sec {
  background-color: var(--light-white);
  padding: 120px 0;
}

.premium-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 60px;
  margin-bottom: 120px;
}

.premium-box {
  width: calc(100% / 2 - 15px);
  margin-bottom: 30px;
  display: flex;
  gap: 33px;
  padding: 12px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 4px 4px 8px 0px #0000000D;
  align-items: center;
}

.premium-box img {
  width: 150px;
  height: 137px;
}

.premium-box h5 {
  margin-bottom: 12px;
  font-size: 26px;
  font-weight: bold;
  font-family: var(--libre-font);
  color: var(--black);
}

.premium-box p {
  color: var(--black);
  font-size: 18px;
  font-family: var(--inter-font);
  font-weight: 400;
}

.quote-box {
  background-color: var(--grey);
  padding: 56px 0;
  border-radius: 10px;
}

.quote-box .sec-hd,
.quote-box .sec-para {
  color: var(--light-white);
}

.quote-btn-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.quote-btn-wrapper .white-btn,
.quote-btn-wrapper .black-btn {
  font-size: 18px;
  padding: 13px 22px;
  font-family: var(--inter-font);
  font-weight: 600;
  color: var(--blue);
  border: 2px solid var(--light-white);
  border-radius: 7px;
  text-decoration: none;
  outline: none;
  background-color: var(--light-white);
  transition: 0.8s;
}

.quote-btn-wrapper .black-btn {
  color: var(--white);
  border-color: var(--white);
  background-color: #222222;
}

.quote-btn-wrapper .black-btn:hover {
  background-color: var(--blue);
  border-color: var(--blue);
}

.quote-btn-wrapper .white-btn:hover {
  background-color: var(--blue) !important;
  border-color: var(--blue) !important;
  color: var(--white) !important;
}

/* Faq section Start */

.faq-sec {
  padding: 105px 0;
  background-color: var(--white);
}

.faqs {
  margin-top: 60px;
}

.faq {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 2px solid var(--light-white);
}

.faq-btn {
  border: none;
  font-size: 24px;
  font-family: var(--inter-font);
  color: #101828;
  z-index: 2;
  position: relative;
  display: flex;
  justify-content: space-between;
  background-color: transparent !important;
  width: 100%;
  text-align: start;
}

.faq-body {
  display: none;
  padding: 22px 0;
  border-radius: 0px !important;
  border: none;
  border-top: 0;
  margin-top: -1rem;
  color: #667085;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--inter-font);
  width: 100%;
  max-width: 1022px;
}

.faq-btn-arrow {
  border: 2px solid var(--blue);
  color: var(--blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 32px;
  width: 32px;
  border-radius: 100%;
  font-size: 19px;
}

.faq.active .faq-btn-arrow i::before {
  content: "\f068";
}

/* Ready Section Start */

.ready-sec {
  background-color: var(--light-white);
  padding: 120px 0;
}

/* Prove Section Start */

.prove-sec {
  background-color: var(--light-white);
  padding-top: 275px;
  padding-bottom: 170px;
}

/* Diffrence Section Start */

.diffrence-sec {
  background-color: var(--white);
  padding: 120px 0;
}

.compare-table {
  margin-top: 60px;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  font-family: var(--inter-font);
  font-weight: 16px;
  font-weight: 400;
}

.compare-table th {
  text-transform: uppercase;
  color: var(--black);
  background: transparent;
  padding: 22px;
  font-weight: 400;
}

.compare-table td {
  vertical-align: middle;
  padding: 22px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #2D6CDF80;
  border-radius: 50%;
  display: inline-block;
  margin-right: 9px;
}

.compare-table .table tr,
.compare-table .table thead {
  border-bottom: 1px solid #d3d3d3;
  background-color: transparent;
}

/* Experience Section Start */

.experience-sec {
  background-color: var(--grey);
  padding: 120px 0;
}

.experience-wrapper {
  margin: 80px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.experience-wrapper::before {
  content: "";
  width: 100%;
  position: absolute;
  background-color: var(--light-white);
  height: 2px;
  left: 0;
  top: 37px;
}

.experience-box {
  position: relative;
  z-index: 2;
}

.experience-box div {
  height: 72px;
  width: 72px;
  border-radius: 11px;
  background-color: #222222;
  border: 2px solid #E8E8E866;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.experience-box div.active {
  background-color: var(--blue);
  border-color: var(--white);
}

.experience-box p {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--inter-font);
  color: var(--light-white);
  margin-top: 8px;
}

.book-box {
  padding: 55px 40px;
  background-color: #222222;
  border: 2px solid #666666;
  border-radius: 15px;
  width: 100%;
  max-width: 865px;
  margin: 0 auto;
}

.book-box h4 {
  font-family: var(--inter-font);
  font-size: 21px;
  color: var(--white);
  margin-bottom: 7px;
  font-weight: 400;
}

.book-box h3 {
  font-family: var(--libre-font);
  font-size: 46px;
  color: var(--white);
  margin-bottom: 23px;
  font-weight: bold;
}

.book-box p {
  font-family: var(--inter-font);
  font-size: 18px;
  color: var(--white);
  font-weight: 400;
}

/* Behind Section STart */

.behind-sec {
  background-color: var(--white);
  padding-top: 120px;
  padding-bottom: 55px;
}

.behind-wrapper {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.behind-box {
  width: calc(100% / 3 - 60px);
  text-align: center;
  margin-bottom: 85px;
}

.behind-box img {
  width: 85px;
  margin-bottom: 23px;
}

.behind-box h5 {
  color: var(--black);
  font-size: 24px;
  font-weight: bold;
  font-family: var(--libre-font);
  margin-bottom: 11px;
  text-transform: capitalize;
}

.behind-box p {
  font-family: var(--inter-font);
  font-size: 18px;
  color: var(--black);
  font-weight: 400;
}

/* Scroll Section Start */

.scroll-sec {
  padding: 120px 0;
  background-color: var(--light-white);
}

.scroll-box {
  background-color: #222222;
  border: 2px solid #666666;
  padding: 55px 25px;
  border-radius: 15px;
  width: 100%;
  max-width: 1095px;
  margin: 0 auto;
}

.scroll-box .sec-hd {
  font-size: 46px;
  color: var(--white);
}

/* Contact Us Page Start */

/* Contact Section Start */

.contact-sec {
  background-color: var(--white);
  padding-top: 275px;
  padding-bottom: 155px;
}

.contact-sec .black-btn {
  border-color: var(--black);
  color: var(--black);
}

.contact-sec .black-btn:hover {
  border-color: var(--blue) !important;
  color: var(--white) !important;
  background-color: var(--blue) !important;
}

/* Why Section Start */

.why-sec {
  background-color: var(--grey);
  padding: 80px 0;
}

.why-wrapper {
  margin-top: 55px;
  display: flex;
  justify-content: space-between;
}

.why-box {
  padding: 38px 27px;
  background-color: var(--light-white);
  color: var(--black);
  box-shadow: 0px 0px 14.3px 0px #00000040;
  border-radius: 15px;
  text-align: center;
  width: calc(100% / 3 - 30px);
}

.why-box img {
  width: 85px;
  margin-bottom: 23px;
}

.why-box h5 {
  font-size: 24px;
  font-weight: bold;
  font-family: var(--libre-font);
  margin-bottom: 11px;
}

.why-box p {
  font-size: 18px;
  font-weight: 400;
  font-family: var(--inter-font);
}

/* Looking Section Start */

.looking-sec {
  background-color: var(--light-white);
  padding: 120px 0;
}

.looking-wrapper {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.looking-wrapper .looking-point {
  width: calc(100% / 3 - 50px);
}

.looking-wrapper .looking-point div {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--inter-font);

}

.looking-wrapper .looking-point i {
  color: var(--blue);
}

/* Contact Section Mini Start */

.contact-sec-mini {
  background-color: var(--grey);
  padding: 75px 0;
}

/* Mechanic Section Start */

.mechanic-sec {
  background-color: var(--white);
  padding-top: 210px;
  padding-bottom: 75px;
}


/* Services Section Start */

.service-sec {
  background-color: var(--light-white);
  padding: 80px 0;
}

.service-wrapper {
  margin-top: 55px;
  display: flex;
  justify-content: space-between;
}

.service-box {
  padding: 45px 33px 55px;
  background-color: var(--grey);
  border-radius: 15px;
  box-shadow: 0px 0px 14.3px 0px #00000040;
  color: var(--light-white);
  text-align: center;
  width: calc(100% / 3 - 30px);
  transition: 0.8s;
}

.service-box:hover {
  background-color: var(--blue);
  transition: 0.8s;
}

.service-box h3 {
  font-size: 30px;
  font-weight: bold;
  font-family: var(--libre-font);
  margin-bottom: 11px;
}

.service-box p {
  font-size: 18px;
  font-weight: 400;
  font-family: var(--inter-font);
  margin-bottom: 25px;
}

.service-box ul li {
  display: flex;
  justify-content: start;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--inter-font);
  gap: 22px;
  padding: 6px 0;
  text-align: start;
}

/* Service Process Section Start */


.service-process-sec {
  background-color: var(--grey);
  padding: 80px 0 150px;
}

.service-process-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.service-process-box {
  padding: 31px 21px;
  width: calc(100% / 2 - 11px);
  border: 2px solid #666666;
  border-radius: 15px;
  box-shadow: 0px 0px 14.3px 0px #00000040;
  text-align: center;
  margin-bottom: 28px;
  color: var(--light-white);
  transition: 0.8s;
}

.service-process-box:hover {
  background-color: var(--blue);
  transition: 0.8s;
  border-color: var(--white);
}

.service-process-box:hover .process-counter {
  border-color: var(--white);
  transition: 0.8s;
}

.process-counter {
  height: 84px;
  width: 84px;
  border-radius: 6px;
  font-size: 41px;
  font-weight: bold;
  font-family: var(--libre-font);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid #666666;
  margin: 0 auto;
  margin-bottom: 20px;
  transition: 0.8s;
}

.service-process-box h2 {
  font-family: var(--libre-font);
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: bold;
}

.service-process-box p {
  font-family: var(--inter-font);
  font-size: 18px;
  font-weight: 400;
}

/* Specialist Section Start */

.specialist-sec {
  background-color: var(--light-white);
  padding: 80px 0;
}

.specialist-wrapper {
  display: flex;
  justify-content: space-between;
  margin: 55px 0 120px;
}

.specialist-box {
  padding: 31px 24px;
  background-color: var(--grey);
  color: var(--light-white);
  box-shadow: 0px 0px 10.49px 0px #00000040;
  border-radius: 11px;
  text-align: center;
  width: calc(100% / 4 - 20px);
  transition: 0.8s;
}

.specialist-box:hover {
  background-color: var(--blue);
  transition: 0.8s;
}

.specialist-box img {
  margin-bottom: 16px;
  width: 62px;
}

.specialist-box h2 {
  font-family: var(--libre-font);
  font-weight: bold;
  font-size: 25px;
  margin-bottom: 8px;
}

.specialist-box p {
  font-family: var(--inter-font);
  font-weight: 400;
  font-size: 13px;
}

.right-box {
  background-color: var(--grey);
  border-radius: 15px;
  border: 2px solid #666666;
  padding: 65px 75px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Step Form Css Start */

.step-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.circle {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--white);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 15px;
  font-family: var(--inter-font);
  transition: all 0.3s;
  color: var(--light-white);
}

.step.done .circle {
  background: var(--light-white);
  color: var(--blue);
}

.step.active .circle {
  background: var(--blue);
  border: 3px solid var(--white);
}

.step p {
  margin-top: 7px;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--inter-font);
  color: var(--white);
}


.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 18px;
  right: -25%;
  width: 50%;
  height: 3px;
  background: #4b4b4b;
  z-index: -1;
  border-radius: 2px;
  transition: background 0.3s;
}

.form-step hr {
  border: none;
  height: 1px;
  background: #959595;
  margin: 30px 0;
}

.step.done:not(:last-child)::after {
  background: var(--blue);
}

/* Form Card */
.card {
  background: var(--light-white);
  border-radius: 23px;
  padding: 37px 41px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}


.form-step {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s ease;
  position: absolute;
  width: 100%;
  pointer-events: none;
}

.form-step h2 {
  font-size: 34px;
  font-weight: bold;
  font-family: var(--libre-font);
  margin-bottom: 20px;
  text-align: center;
  color: var(--black);
}

.form-step h6 {
  font-size: 18px;
  font-weight: 400;
  font-family: var(--inter-font);
  color: var(--black);
  text-align: center;
  margin-bottom: 15px;
}

.form-step .field-wrapper {
  margin-bottom: 22px;
}

.form-step .field-wrapper label {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--inter-font);
  margin-bottom: 6px;
  color: var(--black);
  text-transform: capitalize;
}

.form-step .field-wrapper.d-flex {
  gap: 13px;
  align-items: center;
}

.form-step .field-wrapper.d-flex label,
.form-step .field-wrapper.d-flex p {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  text-transform: none;
  margin-bottom: 0;
  cursor: pointer;
}

.form-step .field-wrapper.d-flex input {
  border-radius: 6px;
  border: 2px solid grey;
  height: 19px;
  width: 19px;
  accent-color: var(--blue);
}

.form-step.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  pointer-events: all;
}

.form-step.fade-out-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: 0.3s;
}

.form-step.fade-out-right {
  opacity: 0;
  transform: translateX(50px);
  transition: 0.3s;
}

.field {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0px 1px 2px 0px #1018280D;
  border: 1px solid #D0D5DD;
  background-color: var(--white);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--inter-font);
}

.field:focus {
  border-color: var(--blue);
  outline: none;
}

.btn {
  background: var(--blue);
  border: none;
  border-radius: 12px;
  padding: 13px 16px;
  cursor: pointer;
  border-radius: 7px;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--inter-font);
  color: var(--light-white);
}

.btn.back {
  background: transparent;
  color: #8B8B8B;
}

.step-form-btn-wrapper {
  /* margin-top: 60px; */
}

.btn:hover {
  background: var(--blue);
  color: var(--light-white);
}

.edit-btns-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.edit-btns-wrapper button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  outline: none;
  width: 100%;
  transition: 0.8s;
}

.edit-btns-wrapper button:hover {
  border-color: var(--blue);
  background-color: #b2cdff;
  transition: 0.8s;
}

.edit-btns-wrapper button h4,
.edit-btns-wrapper button h5 {
  font-size: 12px;
  font-weight: 400;
  font-family: var(--inter-font);
  color: var(--grey);
  margin-bottom: 5px;
}

.edit-btns-wrapper button h3 {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--inter-font);
  color: var(--black);
}

.total-box-wrapper {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.total-box {
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  width: 100%;
}

.total-box-1 {
  background-color: var(--grey);
}

.total-box-1 h4 {
  color: var(--white);
  font-size: 12px;
  font-family: var(--inter-font);
}

.total-box-1 h3 {
  color: var(--blue);
  font-size: 36px;
  font-family: var(--libre-font);
  font-weight: bold;
}

.total-box-1 h5 {
  color: var(--white);
  font-size: 12px;
  font-family: var(--inter-font);
  margin-top: 5px;
}

.total-box-2 {
  background-color: #b2cdff;
  text-align: start;
}

.total-box-2 h4 {
  color: var(--grey);
  font-size: 14px;
  font-family: var(--inter-font);
  margin-bottom: 7px;
}

.total-box-2 h5 {
  color: var(--black);
  font-size: 15px;
  font-family: var(--inter-font);
}

/* Search Modal Css  */

.modal-body,
.modal-header {
  padding: 15px 40px !important;
}

.modal-title {
  font-family: var(--libre-font);
}

.confirmationField {
  margin-top: 30px;
}

.modal-content label {
  color: var(--black);
  font-size: 16px;
  margin-bottom: 8px;
  font-family: var(--inter-font);
}

.modal-content input {
  font-size: 15px;
  padding: 14px 20px;
  margin-bottom: 45px;
}

/* PreLoader Css Start */

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  opacity: 1;
  z-index: 99999;
  width: 100%;
  height: 100%;
  background-color: var(--grey);
}

.preloader .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -29px;
  margin-top: -23px;
}

.preloader .loader .line-scale-pulse-out>div {
  background-image: -webkit-linear-gradient(-45deg, var(--primary-theme) 10%, var(--secondry-theme) 100%);
  background-image: linear-gradient(-45deg, var(--primary-theme) 10%, var(--secondry-theme) 100%);
}

@-webkit-keyframes line-scale-pulse-out {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }

  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }

  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}

@keyframes line-scale-pulse-out {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }

  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }

  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}

.line-scale-pulse-out>div {
  background-color: #fff;
  width: 4px;
  height: 45px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
  animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
}

.line-scale-pulse-out>div:nth-child(2),
.line-scale-pulse-out>div:nth-child(4) {
  -webkit-animation-delay: -0.4s !important;
  animation-delay: -0.4s !important;
}

.line-scale-pulse-out>div:nth-child(1),
.line-scale-pulse-out>div:nth-child(5) {
  -webkit-animation-delay: -0.2s !important;
  animation-delay: -0.2s !important;
}

/* Cursor Animation CSS */


.cursor-outer {
  width: 40px;
  height: 40px;
  border: 3px solid #35B4EB;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.3s ease;
  z-index: 9999;
}

.cursor-inner {
  width: 8px;
  height: 8px;
  background: #35B4EB;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.3s ease;
  z-index: 10000;
}

.cursor-outer.shrink {
  transform: translate(-50%, -50%) scale(0.6);
}

.cursor-inner.shrink {
  transform: translate(-50%, -50%) scale(0.5);
}

/* Success Section Start */

.success-sec {
  background-image: url("../images/success.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 70px 65px;
}

.success-wrapper {
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
}

.round {
  height: 65px;
  width: 65px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--blue);
  color: var(--white);
  font-size: 32px;
}

.success-wrapper h2 {
  margin-top: 30px;
  margin-bottom: 25px;
  font-size: 48px;
  font-weight: 600;
  color: var(--black);
  font-family: var(--inter-font);
}

.success-wrapper h6 {
  margin-bottom: 39px;
  font-size: 18px;
  font-weight: 400;
  color: var(--grey);
  font-family: var(--inter-font);
}

.success-wrapper h3 {
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 500;
  color: var(--black);
  font-family: var(--inter-font);
}

.success-wrapper ul {
  max-width: 450px;
  padding: 0 24px 24px;
  margin: 0 auto;
  margin-bottom: 32px;
}
.success-wrapper ul li {
  display: flex;
  gap: 12px;
  align-items: start;
  margin-bottom: 30px;
}

.success-wrapper ul li i {
  color: var(--blue);
  font-size: 20px;
  display: block;
}

.success-wrapper ul li h4 {
  color: #2b5197;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: var(--libre-font);
}

.success-wrapper ul li p {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  font-family: var(--inter-font);
}

.success-wrapper .primary-btn:hover {
  color: var(--white) !important;
}

.success-wrapper .mail-para {
  font-size: 15px;
  text-align: center;
  font-weight: 300;
  font-family: var(--inter-font);
}



/*Privacy Policy Page Start*/

.privacy-wrapper {
    margin-bottom: 50px;
}

.privacy-heading {
    color: var(--black);
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: bold;
    font-family: var(--libre-font);
    text-transform: capitalize;
}

.privacy-heading-mini {
    color: var(--black);
    font-size: 28px;
    font-weight: bold;
    font-family: var(--libre-font);
    text-transform: capitalize;
    margin-top: 40px;
}

.privacy-para {
    color: var(--black);
    font-size: 17px;
    font-weight: 400;
    font-family: var(--inter-font);
    margin-bottom: 15px;
}

.privacy-wrapper ul {
    margin: 26px 0;
}

.privacy-wrapper ul li {
    color: var(--black); 
    font-size: 16px;
    font-weight: 400;
    font-family: var(--inter-font);
    margin-bottom: 15px;
    list-style-type: disc; 
}