@font-face {
  font-family: 'Roboto';
  src: url('../fonts/roboto/Roboto-Light.woff2') format('woff2'),
      url('../fonts/roboto/Roboto-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/roboto/Roboto-Medium.woff2') format('woff2'),
      url('../fonts/roboto/Roboto-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/roboto/Roboto-Black.woff2') format('woff2'),
      url('../fonts/roboto/Roboto-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/roboto/Roboto-Bold.woff2') format('woff2'),
      url('../fonts/roboto/Roboto-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/roboto/Roboto-Regular.woff2') format('woff2'),
      url('../fonts/roboto/Roboto-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Root */
:root {
  --blue: #3044bc;
  --blueHover: #445eff;
  --green: #57f3bf;
  --greenHover: #2C7A60;
  --yellow: #fde839;
  --yellowHover: #e0ce31;
  --text-color: #545454;
  --light-gray-text: #d7d7d7;
  --border-color: #d1d1d1;
  --title-color: #0a1113;
  --white: #fff;
  --bg-white: #f9f9f9;
  --bg-white-10: #e8e8e8;
  --black: #000;
  --light-blue: rgba(49, 64, 195, 0.102);
  --light-gray-bg: rgba(173, 192, 205, 0.1);
  --primary-font: "Roboto", sans-serif;
  --gradient: linear-gradient(270deg, rgba(87, 243, 191, 1) 0%, rgba(49, 64, 195, 1) 100%);
  --gradient-2: linear-gradient(285deg, white 0%, rgba(87, 243, 191, 0.50) 30%, #57F3BF 100%);
}
/* Root */
/* default css */
html {
  /* overflow-x: hidden; */
  font-size: 10px;
  scroll-behavior: smooth;
}
body {
  background: var(--bg-white);
  font-family: var(--primary-font);
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}
a.link {
  color: var(--text-color);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 16px;
}
a.link:hover {
  color: var(--primary-color);
}
a:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
html.show-menu {
  overflow: hidden;
}
html.show-menu body {
  overflow: hidden;
  height: 100%;
}
.form-select:focus,
.form-control:focus,
.btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
}
.img-contain {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.img-cover {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.img-inherit {
  width: 100%;
  height: inherit;
}
.blue-link {
  color: var(--blue);
  text-decoration: none;
}
.blue-link:hover {
  color: #445eff;
}
.blue-link.hover-underline:hover {
  text-decoration: underline;
  color: var(--blue);
}

.def-border-grey{
  border: 1px solid var(--border-color);
}

.border-radius-16{
  border-radius: 16px;
}


.border-radius-20{
  border-radius: 20px;
}

/* Button css */
.btn {
  border: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  border-radius: 1rem;
  padding: 2.15rem 2.4rem 2.1rem;
  white-space: nowrap;
}
.btn i {
  display: inline-block;
  vertical-align: middle;
}
.btn-small {
  font-size: 14px;
  padding: 14px 12px 12px;
  border-radius: 5px;
}
.btn-small.icn {
  padding: 13px 12px 11px;
}
.btn-small i {
  font-size: 16px;
}
.btn-mid {
  font-size: 18px;
  padding: 2.65rem 2rem 2.5rem;
}
.btn-big {
  padding: 2.4rem 2rem;
  font-size: 20px;
}
.btn-yellow {
  color: var(--title-color);
  background-color: var(--yellow);
}
.btn-yellow:hover {
  background-color: var(--yellowHover);
}
.btn-green {
  color: var(--title-color);
  background-color: var(--green);
}
.btn-green:hover {
  color: var(--white);
  background-color: var(--greenHover);
}
.btn-blue {
  color: var(--white);
  background-color: var(--blue);
}
.btn-blue:hover {
  background-color: var(--blueHover);
  color: var(--white);
}

.btn-enquire{
  color: var(--black) !important;
  background-color: transparent !important;
  border: 2px solid var(--blue) !important;
}

.btn-enquire:hover{
  color: var(--black) !important;
  background-color: var(--green) !important;
  border: 2px solid var(--green) !important;
}

.btn-light-blue {
  background-color: rgba(49, 64, 195, 0.1);
  color: var(--blue);
}
.btn-light-blue:hover {
  background-color: var(--blue);
  color: var(--white);
}
.btn-light-gray {
  background-color: #f5f5f5;
  color: var(--text-color);
}
.btn-light-gray:hover {
  background-color: var(--blue);
  color: var(--white);
}
/* Button css END */

.hero-find .nav .nav-link{
  background: transparent;
  border: 0;
  position: relative;
  padding: 16px 16px;
  border-bottom: 8px transparent solid;
}

.hero-find .nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px; /* Adjust according to the border width */
  width: 100%;
  height: 8px; /* Match the border width */
  background-color: var(--white);
  border-radius: 12px 12px 0 0; /* Apply border-radius to the top corners */
  opacity: 0; /* Initially hide the pseudo-element */
  transition: opacity 0.3s ease; /* Smooth transition */
}

.hero-find.find-dark .nav .nav-link::after {
  background-color: var(--title-color);
}

.hero-find .nav .nav-link.active::after {
  opacity: 1; /* Show the pseudo-element on hover */
}

.hero-find .nav .nav-link:hover::after {
  opacity: 1; /* Show the pseudo-element on hover */
}

/* Step */
.step-card{
  position: relative;
}

.step-card img {
  width: 100%; /* Make sure the image is responsive */
  display: block; /* Remove any default margin */
}

.step-card .step-text{
  text-align: left;
}

.step-card .step-text .st-number{
  background: linear-gradient(180deg, #00CF8A 0%, #E8E8E8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 70px; /* Adjust font size as needed */
  font-weight: bold;
}

.partner-card{
  position: relative;
  background-color: #ffffff;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 24px;
}

.partner-card .step-text{
  text-align: left;
}

.partner-card .step-text .sm-number{
  color: var(--black);
  font-size: 18px; /* Adjust font size as needed */
  font-weight: bold;
  display: inline-flex; /* To make sure the content stays centered */
  justify-content: center;
  align-items: center;
  width: 50px; /* Set width and height to form a perfect circle */
  height: 50px;
  border: 1px solid #E8E8E8; /* Add the border */
  border-radius: 50%; /* Make it a circle */
  line-height: 1; /* Adjust line height */
}

.hvr-btn{
  display: none;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.step-card:hover .hvr-btn{
  display: block;
}
/* End Step */

.imgtor{
  margin-right: -300px;
}

.imgtor .big-img{
  border-radius: 64px 0px 0px 64px;
}

@media (min-width: 992px) { /* Desktop */
  .imgtor{
    margin-right: -300px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) { /* Tablet */
  .imgtor{
    margin-right: -200px;
  }
}
@media (max-width: 767.98px) { /* Mobile */
  .imgtor{
    margin-right: 0px;
  }
  .imgtor .big-img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: bottom left;
    border-radius: 64px;
  }
}

.csme-content .icon-card{
  flex-direction: column;
}

@media (min-width: 992px) { /* Desktop */
  .csme-content .icon-card{
    flex-direction: row;
  }
  .imgtor .big-img{
    object-position: bottom center;
    border-radius: 64px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) { /* Tablet */
  csme-content .icon-card{
    flex-direction: row;
  }
}
@media (max-width: 767.98px) { /* Mobile */
  .csme-content .icon-card{
    flex-direction: column;
  }
  #carselling-section .big-img{
    width: 95%;
  }

  #carselling-section .title {
    margin-top: 24px;
  }
}

.csme-content .icon-bg {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: var(--bg-white-10);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
}

.article-lp{
  background-color: var(--bg-white);
  background-image: url("../images/article.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
}

.article-lp .title h2, .article-lp .title p{
  color: var(--black) !important;
}

.article-lp .title p{
  font-size: 16px;
}

.article-lp .article-lp-cards{
  margin-right: -300px;
}

@media (min-width: 992px) { /* Desktop */
  .article-lp .article-lp-cards{
    margin-right: -300px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) { /* Tablet */
  .article-lp .article-lp-cards{
    margin-right: -200px;
  }
}
@media (max-width: 767.98px) { /* Mobile */
  .article-lp .article-lp-cards{
    margin-right: 0px;
  }
}

.article-lp .article-lp-cards .art-card .badge{
  top: 16px;
  left: 16px;
}

.article-lp .article-lp-cards .art-card .art-text img{
  width: 4px;
  height: 4px;
}

@media (min-width: 992px) { /* Desktop */
  .testimonials .article-lp-cards{
    margin-right: -300px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) { /* Tablet */
  .testimonials .article-lp-cards{
    margin-right: -200px;
  }
}
@media (max-width: 767.98px) { /* Mobile */
  .testimonials .article-lp-cards{
    margin-right: 0px;
  }
}

.frame .sale-car {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
}

.csme-content:hover .icon-bg {
  background-color: var(--green);
}

.buying-partner{
  background-color: var(--white);
}

.testimonials{
  background-color: var(--blue);
  background-image: url("../images/testimonial.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonials .title h2, .testimonials .title p{
  color: var(--white) !important;
}

.testimonials .title p{
  font-size: 16px;
}

.testimonials .testimonial-cards{
  margin-right: -300px;
}

.card.bg-info-subtle{
  background-color: #E0E2F6;
  color: var(--blue);
  border: 0px;
  border-left: 5px solid #3140C3;
  border-radius: 8px;
  padding: 16px 24px;
}

.card.bg-dark-subtle{
  background-color: #E8E8E8;
  color: #303030;
  border: 0px;
  border-left: 5px solid #303030;
  border-radius: 8px;
  padding: 16px 24px;
}

.finance-calculator .input-group .input-group-text{
  font-size: 18px;
  background-color: #ffffff;
  padding: 0px 16px;
  border: unset;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.finance-calculator form input, .finance-calculator form select{
  text-transform: none;
}

.finance-calculator form input::placeholder, .finance-calculator form select::placeholder{
  text-transform: none;
  font-size: 18px;
}

.finance-calculator .my_credit_score .btn-outline-secondary{
  border: 1px solid #d1d1d1;
}

.my_credit_score .btn-outline-secondary{
  border: 1px solid #d1d1d1;
}

/* .finance-calculator .my_credit_score .btn-outline-secondary:hover{
  border: 0px solid var(--greenHover);
  background-color: var(--green);
} */

.btn-check:checked + .btn-outline-secondary:focus {
  box-shadow: none;
}

.btn-check:checked + .btn-outline-secondary {
  background-color: var(--green); /* Bootstrap green */
  border: 0px solid var(--greenHover);
  color: #161D58; /* Change text color */
}

.finance-calculator .btn-outline-secondary:hover, .btn-check:checked + .btn-outline-secondary:hover {
  border: 0px solid var(--greenHover);
  background-color: var(--green);
  color: #161D58; /* Change text color */
}

.get-quote-section{
  padding: 0px 32px;
}

.get-quote-section .title h2, .get-quote-section .title p{
  color: var(--black) !important;
}

.get-quote-section .title p{
  font-size: 16px;
}

#carselling-section .table{
  border-radius: 24px;
}

#carselling-section .table tr th{
  padding: 16px 12px !important;
  text-align: center;
  font-weight: 600;
}

#carselling-section .table tr td{
  padding: 16px 12px !important;
  text-align: center;
}



@media (min-width: 992px) { /* Desktop */
  .testimonials .testimonial-cards{
    margin-right: -300px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) { /* Tablet */
  .testimonials .testimonial-cards{
    margin-right: -200px;
  }
}
@media (max-width: 767.98px) { /* Mobile */
  .testimonials .testimonial-cards{
    margin-right: 0px;
  }
}

.zuto-line{
  background-color: #f9f9f9;
  background-image: url("../images/zuto.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.zuto-line img, .zuto-line .title p{
  width: 100%;
}

.zuto-line .title p{
  font-size: 16px;
}

.testimonial-cards .testi-card{
  padding: 30px 40px;
  background-color: var(--bg-white);
  border-radius: 30px;
}

.testimonial-cards .testi-card img{
  width: 81px;
  height: 81px;
  object-fit: cover;
}

.testimonial-cards .h5{
  font-size: 20px;
}

.find-car .cars-slide{
  margin-right: -300px;
}

@media (min-width: 992px) { /* Desktop */
  .find-car .cars-slide{
    margin-right: -300px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) { /* Tablet */
  .find-car .cars-slide{
    margin-right: -200px;
  }
}
@media (max-width: 767.98px) { /* Mobile */
  .find-car .cars-slide{
    margin-right: 0px;
  }
}

.find-car nav{
  border-bottom: 1px var(--bg-white-10) solid;
}

.find-car .nav .nav-link{
  color: var(--black);
  padding: 15px;
  border-bottom: 2px transparent solid;
}

.find-car .nav .nav-link:hover{
  border-bottom: 2px var(--blueHover) solid;
}

.find-car .nav .nav-link.active{
  border-bottom: 2px var(--blue) solid;
}

@media only screen and (min-width: 998px) {
  .filter-btn-mobile {
    display: none;
  }
  .left-filter-area {
    display: block; /* Ensure this is needed */
  }
  .search-area-desktop{
    display: flex;
  }
  .search-area-mobile{
    display: none;
  }
}

@media only screen and (max-width: 997.98px) {
  .filter-btn-mobile {
    display: block;
  }
  .left-filter-area {
    display: none;
  }
  .search-area-desktop{
    display: none;
  }
  .search-area-mobile{
    display: flex;
  }
}

.cars-filter .input-group-text {
  padding: 12px 0px 12px 18px;
  border-top-left-radius: 1rem !important;
  border-bottom-left-radius: 1rem !important;
  font-size: 15px;
  color: #212529;
  background-color: var(--white);
  border: unset;
  border-radius: unset;
}

.cars-filter .form-control {
  font-size: 15px;
  padding: 2rem 2rem;
  text-transform: none;
  width: 100%;
}

.cars-filter .form-select {
  font-size: 15px;
  padding: 2rem 4rem 2rem 2rem;
  width: 100%;
  text-transform: none;
}

.car-list img{
  border-radius: 16px 16px 0px 0px;
}

.car-list .card-body{
  padding: 16px;
}

.car-list .card-body h5{
  font-size: 18px;
}

.car-list .card-body p{
  font-size: 14px;
}

.car-list .card-body .car-desc{
  padding: 12px 0px;
}

.car-list .card-body .price {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative; 
}

.car-list .card-body .btn{
  padding: 12px 16px;
  border: 1px #d1d1d1 solid;
  color: var(--black);
}

.car-list .card-body .btn i{
  margin-left: 4px;
}

.car-list .card-body .btn:hover{
  border: 1px var(--blue) solid;
  background-color: var(--blue);
  color: var(--white);
}

.car-list .card-body .price .text-wrapper {
  margin-top: -1px;
  font-weight: 400;
  font-size: 14px;
  text-decoration: line-through;
  position: relative;
}

.car-list .card-body .car-desc img{
  width: 18px;
  height: 18px;
  margin-bottom: 4px;
}

.pay-single .nav-link{
  border-radius: 8px; /* Apply rounded corners */
  background-color: transparent;
  border: 2px solid var(--border-color);
  color: var(--black);
  padding: 16px 24px;
}

.pay-single .nav-link.active{
  background-color: var(--blue);
  border: 2px solid var(--blue);
  color: var(--white);
}

.catalog-list{
  background-color: var(--white);
}

@media (min-width: 992px) { /* Desktop */
  .custom-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) { /* Tablet */
  .custom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}
@media (max-width: 767.98px) { /* Mobile */
  .custom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.type-item{
  padding: 20px 30px;
  border: 1px #d1d1d1 solid;
  border-radius: 16px;
  text-align: center;
}

.type-item img{
  margin-bottom: 8px;
  width: 34px;
  height: 34px;
}

.type-item p{
  margin: 0;
}

.car-manufacturer img{
  width: 48px;
  height: 48px;
  margin-right: 16px;
}

.cta{
  background-color: var(--white);
}

.cta-banner{
  background-image: url("../images/cta.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 76px;
  position: relative;
  border-radius: 36px;
}

.cta-banner .title h3, .cta-banner .title p{
  color: var(--white);
}

.cta-banner .get-quote-form{
  background-color: var(--white);
  border-radius: 16px;
  padding: 24px;
}

@media (min-width: 992px) { 
  /* Desktop */
  .cta .empty-div {
    display: block;
  }

  .cta-banner{
    padding: 76px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) { /* Tablet */
  .cta .empty-div {
    display: none;
  }

  .cta-banner{
    padding: 36px;
  }
}
@media (max-width: 767.98px) { /* Mobile */
  .cta .empty-div {
    display: none;
  }

  .cta-banner{
    padding: 36px;
  }
}

.faq .title h3{
  width: 50%;
}

.faq .title p{
  width: 50%;
}

@media (min-width: 992px) { /* Desktop */
  .faq .title h3{
    width: 50%;
  }
  
  .faq .title p{
    width: 50%;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) { /* Tablet */
  .faq .title h3{
    width: 75%;
  }
  
  .faq .title p{
    width: 75%;
  }
}
@media (max-width: 767.98px) { /* Mobile */
  .faq .title h3{
    width: 100%;
  }
  
  .faq .title p{
    width: 100%;
  }
}

.faq .tab-content{
  box-shadow: none;
  -webkit-box-shadow: none;
}

.faq .tab-content .tab-pane .accordion-item{
  background: transparent;
}

.faq .tab-content .tab-pane .collapse:not(.show) .accordion-item {
  background: var(--white);
}

.faq-tabs li {
  margin-right: 1.5rem;
}
.faq-tabs li:last-child {
  margin-right: 0;
}

.faq-tabs {
  margin-bottom: 36px;
}
.faq-tabs button.nav-link {
  background-color: rgba(84, 84, 84, 0.1);
  padding: 1.5rem 2rem;
  font-size: 16px;
  color: #545454;
  font-weight: 500;
  border-radius: 16px;
}
.faq-tabs button.nav-link:hover {
  background-color: rgba(48, 69, 188, 0.15);
}
.faq-tabs button.nav-link.active {
  background-color: var(--blue);
  color: var(--white);
}
.faq .tab-content {
  border-radius: 0 10px 10px 10px;
  overflow: hidden;
  width: 100%;
}
.faq-form .btn i {
  font-size: 2.5rem;
  margin-top: 0.3rem;
}
.normal-accordion .accordion-item {
  background-color: var(--white);
  margin-bottom: 0;
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
  border-radius: 16px;
  padding-left: 3rem;
  margin-bottom: 16px;
}
.normal-accordion .accordion-item:last-child {
  border: 0;
}
.normal-accordion .accordion-item h5 {
  font-weight: 500;
}
.normal-accordion .accordion-item p:last-child {
  margin-bottom: 0;
}

.accordion-item {
  padding: 3rem 2.5rem 3rem 9rem;
  /* background: #fff url("../images/icons/check.svg") 2.8rem 2.4rem no-repeat; */
  border: 0;
  margin-bottom: 2rem;
  border-radius: 1rem;
  background-size: 4rem 4rem;
}
.accordion-item:first-child {
  border-radius: 1rem;
}
.accordion-item:last-child {
  margin-bottom: 0;
  border-radius: 1rem;
}
.accordion-header {
  position: relative;
  padding-right: 3.5rem;
  cursor: pointer;
}
.accordion-header:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0rem;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  display: block;
  background: transparent url("../images/minus.svg") center no-repeat;
  background-size: 100% 100%;
}
.accordion-header.collapsed:after {
  background-image: url("../images/plus.svg");
  width: 16px;
}
.accordion-body {
  padding: 15px 0 0;
}
.accordion-item h5 {
  color: var(--title-color);
}

.hero-finance{
  background-color: #0575E6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.get-quote-btn{
  background-color: var(--yellow);
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 24px;
  margin: 0 auto;
  text-decoration: none;
  justify-content: center;
  text-align: center;
}

.finance-calculator .result-box{
  padding: 32px;
  border: 5px solid var(--blue);
  border-radius: 24px;
  background: none;
}

.home-hero-landing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: block;
  flex-direction: column;
  height: fit-content;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 0% 100%);
}

.home-hero-landing .home-hero-bottom{
  position: relative;
  left: 0;
  right: 0;
  bottom: 0;
}

.home-hero-landing .bottom-drawing {
  bottom: 0rem;
  max-width: 100%;
  position: relative;
  left: 0;
  bottom: auto;
  z-index: 1;
}

.home-hero-landing {
  padding-bottom: 32px;
  clip-path: polygon(0 0, 100% 0, 100% 84.5%, 0% 100%);
}

@media (max-width: 459.98px) and (min-width: 430px) { /* Desktop */
  .home-hero-landing {
    padding-bottom: 0px;
    clip-path: polygon(0 0, 100% 0, 100% 93%, 0% 100%);
   }
}

@media (max-width: 539.98px) and (min-width: 460px) { /* Desktop */
  .home-hero-landing {
    padding-bottom: 38px;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0% 100%);
   }
}

@media (max-width: 575.98px) and (min-width: 540px) { /* Desktop */
  .home-hero-landing {
    padding-bottom: 50px;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0% 100%);
   }
}

@media (max-width: 767.9px) and (min-width: 576px) { /* Desktop */
  .home-hero-landing {
    padding-bottom: 42px;
    clip-path: polygon(0 0, 100% 0, 100% 91.3%, 0% 100%);
  }
}

@media (max-width: 991.9px) and (min-width: 768px) { /* Desktop */
  .home-hero-landing {
    padding-bottom: 125px;
    clip-path: polygon(0 0, 100% 0, 100% 89.7%, 0% 100%);
   }
}

@media (min-width: 992px) { /* Desktop */
  .home-hero-landing {
        padding-bottom: 28px;
        clip-path: polygon(0 0, 100% 0, 100% 84.5%, 0% 100%);
   }
}

@media (min-width: 1200px) { /* Desktop */
 .home-hero-landing {
       padding-bottom: 52px;
       clip-path: polygon(0 0, 100% 0, 100% 84.5%, 0% 100%);
  }
}
@media (min-width: 1400px) { /* Desktop */
 .home-hero-landing {
       padding-bottom: 64px;
       clip-path: polygon(0 0, 100% 0, 100% 84.5%, 0% 100%);
  }
}

@media (min-width: 1500px) { /* Desktop */
 .home-hero-landing {
       padding-bottom: 42px;
       clip-path: polygon(0 0, 100% 0, 100% 83%, 0% 100%);
  }
}

@media (min-width: 1600px) { /* Desktop */
 .home-hero-landing {
       padding-bottom: 68px;
       clip-path: polygon(0 0, 100% 0, 100% 83%, 0% 100%);
  }
}

@media (min-width: 1700px) { /* Desktop */
 .home-hero-landing {
       padding-bottom: 115px;
       clip-path: polygon(0 0, 100% 0, 100% 83%, 0% 100%);
  }
}

@media (min-width: 1701px) { /* Desktop */
 .home-hero-landing {
       padding-bottom: 86px;
       clip-path: polygon(0 0, 100% 0, 100% 83%, 0% 100%);
  }
}

@media (min-width: 1920px) { /* Desktop */
 .home-hero-landing {
       padding-bottom: 92px;
       clip-path: polygon(0 0, 100% 0, 100% 82%, 0% 100%);
  }
}

.home-hero-bottom {
  background: unset;
  background: unset;
  background: unset;
  opacity: 1;
}

.home-hero .bottom-drawing.bottom-side-drawing {
  bottom: 0;
  left: auto;
  right: auto;
  width: 100%;
}

.hero-finance .bottom-drawing.bottom-side-drawing {
  bottom: 0;
  left: auto;
  right: auto;
  width: 100%;
}

.home-hero-landing .get-quote,
.home-hero-landing .title {
  max-width: 65rem;
  margin: 0 auto;
}

.bg-quote{
  position: relative;
}

.bg-list{
  position: relative;
}

/* Style the form */
#regForm {
  margin: 30px auto;
}

#regForm .btn-check:checked + .btn-outline-secondary {
  background-color: var(--blue); /* Bootstrap green */
  border: 0px solid var(--blueHover);
  color: var(--bg-white); /* Change text color */
}

#regForm .btn-outline-secondary:hover, .btn-check:checked + .btn-outline-secondary:hover {
  border: 0px solid var(--blueHover);
  background-color: var(--blue);
  color: var(--bg-white); /* Change text color */
}

/* Example custom styles for datepicker to fit Bootstrap theme */
#regForm .bs-datepicker {
  font-size: 1rem !important; /* Adjust font size to match Bootstrap */
}

#regForm .bs-datepicker table {
  width: 100% !important; /* Ensure it fits within Bootstrap container */
}

#regForm .bs-datepicker .datepicker-days .table-condensed {
  margin: 0 !important; /* Remove extra margin if needed */
}

#regForm .bs-datepicker .datepicker-days thead th {
  background-color: #f8f9fa !important; /* Match Bootstrap's background color */
}

#regForm .bs-datepicker .datepicker-days td.day {
  padding: .5rem !important; /* Adjust padding to fit Bootstrap */
}

/* Mark in
put boxes that gets an error on validation: */
input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
  display: none;
}

/* Adjusted styling for form steps */
.formwzstep {
  display: block;
  width: 100%;
  height: 8px;
  background-color: #D1D1D1;
  border-radius: 4px;
  margin: 0 2px;
  transition: background-color 0.3s, transform 0.3s;
}

.formwzstep.finish {
  background-color: var(--blue); /* Green for finished steps */
}

.formwzstep.active {
  background-color: var(--blueHover); /* Teal for active step */
}

.formwzstep.clickable {
  cursor: pointer;
  background-color: var(--blue); /* Green for finished steps */
}

.formwzstep:not(.clickable) {
  cursor: default;
  opacity: 0.5;
}

#regForm .form-select,
#regForm .form-control {
  color: var(--title-color);
  font-size: 18px;
  text-transform: none;
  padding: 14px 18px;
  border-radius: 1rem;
  border: 1px solid var(--bg-white-10);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}

#regForm .form-select::placeholder,
#regForm .form-control::placeholder {
  color: var(--title-color);
  font-size: 18px;
  opacity: 0.6;
}

#regForm .form-select:disabled,
#regForm .form-control:disabled,
#regForm .form-select[readonly],
#regForm .form-control[readonly] {
  cursor: not-allowed;
  opacity: 0.6;
}

#regForm .form-select.mid,
#regForm .form-control.mid {
  padding: 2.15rem 2rem;
}

#regForm .form-select.small,
#regForm .form-control.small {
  padding: 1.65rem 2rem;
}

#regForm .form-select.bg-gray,
#regForm .form-control.bg-gray {
  background-color: #f5f5f5;
}

#regForm .form-select.bg-gray:focus,
#regForm .form-control.bg-gray:focus {
  background-color: #f5f5f5;
}

#regForm .form-select.bg-yellow:focus,
#regForm .form-control.bg-yellow:focus {
  background-color: var(--yellow);
}

#regForm .form-select.bg-yellow:disabled,
#regForm .form-select.bg-yellow[readonly],
#regForm .form-control.bg-yellow:disabled,
#regForm .form-control.bg-yellow[readonly] {
  background-color: var(--yellow);
}

#regForm .form-select.bg-gray:disabled,
#regForm .form-select.bg-gray[readonly],
#regForm .form-control.bg-gray:disabled,
#regForm .form-control.bg-gray[readonly] {
  background-color: #f5f5f5;
}

#regForm .form-select.bg-blue:disabled,
#regForm .form-select.bg-blue[readonly],
#regForm .form-control.bg-blue:disabled,
#regForm .form-control.bg-blue[readonly] {
  background-color: var(--blue);
}

#quote-result{
  margin: 100px auto;
  padding: 40px;
}

#quote-result .big-icon{
  font-size: 100px;
  color: var(--greenHover);
}

/* Forms css */
.form-select,
.form-control {
  color: var(--title-color);
  font-size: 18px;
  text-transform: uppercase;
  padding: 2rem 2rem;
  border-radius: 1rem;
  border: 0;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}
.form-select:disabled,
.form-control:disabled,
.form-select[readonly],
.form-control[readonly] {
  cursor: not-allowed;
  opacity: 0.6;
}
.form-select,
.form-control .form-select.mid,
.form-control.mid {
  padding: 2.15rem 2rem;
}
.form-select.small,
.form-control.small {
  padding: 1.65rem 2rem;
}
.form-select.bg-gray,
.form-control.bg-gray {
  background-color: #f5f5f5;
}
.form-select.bg-gray:focus,
.form-control.bg-gray:focus {
  background-color: #f5f5f5;
}
.form-select.bg-yellow:focus,
.form-control.bg-yellow:focus {
  background-color: var(--yellow);
}
.form-select.bg-yellow:disabled,
.form-select.bg-yellow[readonly],
.form-control.bg-yellow:disabled,
.form-control.bg-yellow[readonly] {
  background-color: var(--yellow);
}
.form-select.bg-gray:disabled,
.form-select.bg-gray[readonly],
.form-control.bg-gray:disabled,
.form-control.bg-gray[readonly] {
  background-color: #f5f5f5;
}
.form-select.bg-blue:disabled,
.form-select.bg-blue[readonly],
.form-control.bg-blue:disabled,
.form-control.bg-blue[readonly] {
  background-color: var(--blue);
}
.gb-icon-wrap {
  position: absolute;
  width: 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  background-color: var(--blue);
  border-radius: 1rem 0 0 1rem;
  left: -1px;
  top: 0;
}
.gb-icon-wrap.small {
  width: 6rem;
}
.gb-icon-wrap.e-small {
  width: 5rem;
}
.gb-icon-wrap img {
  width: auto;
  height: 70%;
}
.form-control.gb-icon {
  padding-left: 8.5rem;
}
.gb-icon-wrap.small + .form-control.gb-icon {
  padding-left: 7.5rem;
}
.gb-icon-wrap.e-small + .form-control.gb-icon {
  padding-left: 6rem;
}
.form-control-md {
  font-size: 16px;
  padding: 1.8rem 2rem;
}
.form-control.icn {
  padding-left: 5rem;
}
.form-icn {
  position: absolute;
  top: 50%;
  left: 1.7rem;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 2.4rem;
}
.location-input .form-control {
  padding-right: 7rem;
}
.location-input .form-icn {
  background-color: var(--white);
  right: 15px;
  left: unset;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(49, 64, 195, 0.3);
  border-radius: 5px;
}
.location-input .form-icn:hover {
  border-color: var(--blue);
}
/* Forms css END */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  font-weight: 500;
  line-height: 1.3;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  color: var(--title-color);
}
.h1,
h1 {
  font-size: 5.5rem;
}
.h2,
h2 {
  font-size: 4.5rem;
}
.h2.small,
h2.small {
  font-size: 4rem;
}
.h3,
h3 {
  font-size: 3rem;
}
.h3.big,
h3.big {
  font-size: 3.5rem;
}
.h4,
h4 {
  font-size: 24px;
}
.h5,
h5 {
  font-size: 16px;
}
.h5.small,
h5.small {
  font-size: 22px;
}
.h6,
h6 {
  font-size: 14px;
}
p {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.5 !important;
}
p.small {
  font-size: 14px;
}
.white-text {
  color: var(--white);
}
.dark-text {
  color: var(--title-color);
}
.gray-text {
  color: var(--text-color);
}
.light-gray-text {
  color: var(--light-gray-text);
}
.blue-text {
  color: var(--blue);
}
.green-text {
  color: var(--green);
}
.green2-text {
  color: #27ae60;
}
.yellow-text {
  color: var(--yellow);
}
.gradient-text {
  background: -webkit-linear-gradient(180deg, rgba(87, 243, 191, 1) 0%, rgba(49, 64, 195, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.dark-gradient-bg {
  background: -o-radial-gradient(-3.91% 17.02%, 107.4% 370.74%, #111630 0%, #0f3030 100%);
  background: radial-gradient(107.4% 370.74% at -3.91% 17.02%, #111630 0%, #0f3030 100%);
}
.pattern-bg {
  position: relative;
}
.pattern-bg:before,
.pattern-bg:after {
  content: "";
  position: absolute;
  top: 0;
  width: 30%;
  height: 100%;
}
.pattern-bg:before {
  left: 0;
  background: transparent url(../images/pattern/section-left.svg) left bottom no-repeat;
}
.pattern-bg:after {
  right: 0;
  background: transparent url(../images/pattern/section-right.svg) right top no-repeat;
}
.pattern-bg .container {
  position: relative;
  z-index: 1;
}
.tooltip {
  font-size: 14px;
}
.list {
  padding-left: 2.5rem;
}
.list li {
  color: #545454;
}
.list.text-white li p {
  color: var(--white);
}
.list.simple {
  list-style: none;
}
.fw-medium {
  font-weight: 500;
}
.bg-light-gray {
  background-color: var(--light-gray-bg);
}
.bg-light-blue {
  background-color: var(--light-blue);
}
.bg-blue {
  background-color: var(--blue);
}
.bg-green {
  background-color: var(--green);
}
.bg-yellow {
  background-color: var(--yellow);
}
.bg-gradient {
  background: rgb(87, 243, 191);
  background: var(--gradient) !important;
}
.bg-gradient-2 {
  background: rgb(87, 243, 191);
  background: var(--gradient-2) !important;
}
.space-top {
  padding-top: 7rem;
}
.space-small-top {
  padding-top: 5rem;
}
.space-bottom {
  padding-bottom: 7rem;
}
.space-small-bottom {
  padding-bottom: 5rem;
}
img {
  max-width: 100%;
}
.b-radius {
  border-radius: 1rem;
}
/*tags css*/
.category-tag {
  background-color: rgba(49, 64, 195, 0.1);
  color: var(--blue);
  border-radius: 5px;
  padding: 1rem 2rem;
  line-height: 1;
  margin-right: 1.8rem;
}
/*tags css END*/
/* Default css END*/
/* Header  */
header {
  background: rgb(87, 243, 191);
  background: var(--gradient);
  padding: 1rem 0;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
header:before,
header:after {
  content: "";
  position: absolute;
  top: 0;
  width: 30%;
  height: 100%;
}
/* header:before {
  left: 0;
  background: transparent url("../images/pattern/header-left.svg") left top no-repeat;
}
header:after {
  right: 0;
  background: transparent url("../images/pattern/header-right.svg") right top no-repeat;
} */

#finance-navbar{
  background: #0575E6;
}

header .navbar {
  position: relative;
  z-index: 1;
}
header .navbar-brand img {
  max-width: 30rem;
  height: auto;
}
header .navbar-dark .navbar-nav .nav-link {
  color: var(--white);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
header .navbar-dark .navbar-nav .nav-link:hover {
  color: var(--blue);
}
header .btn {
  margin: 0 1.5rem;
}
.user-name {
  padding: 0 1.5rem;
}
.user-name p {
  line-height: 1;
}
.user-link {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--blue);
  color: var(--white);
  border-radius: 50%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 20px;
}
.user-link:hover {
  color: var(--green);
}
.user-link.dot {
  position: relative;
}
.user-link.dot:before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #fc4545;
  position: absolute;
  top: 0;
  right: 0;
  border: 2px solid var(--white);
}
.dropdown-menu {
  border: 0;
  font-size: 18px;
  -webkit-box-shadow: -5px 8px 24px rgba(0, 0, 0, 0.05);
  box-shadow: -5px 8px 24px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}
.dropdown-menu a {
  padding: 5px 2.5rem;
  color: var(--title-color);
}
.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--blue);
}
/* Header END */
/* Get Started */
.get-started {
  position: relative;
}
.get-started:before {
  content: "";
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: -webkit-gradient(linear, left top, right top, color-stop(00%, rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0.7) 00%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 00%, rgba(0, 0, 0, 0) 100%);
  top: 0;
  left: 0;
  display: block;
  position: absolute;
}
.get-started .container {
  position: relative;
  z-index: 1;
}
.get-started-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 40%;
  object-position: 40%;
}
.get-started-inner {
  max-width: 75rem;
}
.get-started-form {
  max-width: 55rem;
}
/* Get Started END */
/* Footer CSS */
footer {
  background-color: #3140c3;
}
.footer-logo {
  margin-bottom: 1.5rem;
  display: block;
}
.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.socials a {
  color: var(--yellow);
  text-decoration: none;
  font-size: 25px;
  margin-right: 20px;
  -webkit-transition: 0.3s color;
  -o-transition: 0.3s color;
  transition: 0.3s color;
}
.socials a:hover {
  color: #e0ce31;
}
.socials a:last-child {
  margin-right: 0;
}
.footer-head {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.footer-links a {
  color: #d8d8d8;
  text-decoration: none;
  font-size: 16px;
  display: block;
  margin-bottom: 1.5rem;
}
.footer-links a:last-child {
  margin-bottom: 0;
}
.footer-links a:hover {
  color: var(--yellow);
}
.footer-text {
  color: #d8d8d8;
  margin-bottom: 15px;
}
.copy-right {
  background-color: rgba(24, 24, 24, 0.3);
  padding: 18px 0;
}
/* Footer CSS END */
/* Get your quote now! */
.get-quote {
  padding: 3rem;
  background-color: #f9faff;
  border-radius: 1rem;
  border: 2px solid #91c2f2;
}
/* Get your quote now! END */
/* breadcrumbs */
.breadcrumbs li.active {
  color: var(--text-color);
}
.breadcrumbs a {
  color: var(--text-color);
  text-decoration: none;
}
/* breadcrumbs END */
/* blog-head-card */
.blog-search .form-control {
  background-color: #f5f5f5;
}
.blog-head-card-item {
  position: relative;
  padding-bottom: calc(100% * 10 / 16) !important;
  height: auto !important;
}
.blog-head-card-title a {
  color: var(--white);
  text-decoration: none;
}
.blog-head-card-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.blog-img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 1rem;
}
.blog-head-card-detail {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  background: rgb(0, 0, 0);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(00%, rgba(0, 0, 0, 0.88)), color-stop(56%, rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.88) 00%, rgba(0, 0, 0, 0.6) 56%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88) 00%, rgba(0, 0, 0, 0.6) 56%, rgba(0, 0, 0, 0) 100%);
  border-radius: 0 0 1rem 1rem;
  padding: 10px 4rem 5rem;
  min-height: 18rem;
}
.blog-head-card-label {
  background-color: var(--blue);
  color: var(--white);
  font-weight: 700;
  margin-right: 2rem;
  border-radius: 5px;
  padding: 1.4rem 3rem;
}
.blog-head-card-date {
  margin: 0;
  color: var(--white);
}
.blog-head-card-time {
  color: #c2c2c2;
}
.blog-auth img {
  width: 53px;
  height: 53px;
  max-width: 53px;
  margin: 0 auto;
  border-radius: 50%;
}
.blog-head-card-carousel {
  position: relative;
}
.blog-head-card-carousel .owl-dots {
  position: absolute;
  bottom: 4rem;
  left: 4rem;
}
.blog-head-card-carousel .owl-dot span {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  margin-right: 5px;
  background-color: var(--white);
  opacity: 0.5;
  display: block;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
.blog-head-card-carousel .owl-dot.active span {
  width: 20px;
  opacity: 1;
  border-radius: 3px;
}
.blog-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.blog-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--blue);
  color: var(--white);
  text-decoration: none;
  margin-right: 2rem;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
.blog-social a:last-child {
  margin-right: 0;
}
.blog-social a:hover {
  background-color: var(--blueHover);
}
/* blog-head-card END */
/* BLOG DETAILS */
.date-wrap {
  color: #787878;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.date-wrap i {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.blog-detail-wrapper h2 {
  margin-bottom: 25px;
}
.blog-detail-wrapper h5 {
  margin-bottom: 15px;
}
.blog-detail-wrapper p {
  margin-bottom: 2.5rem;
}
.blog-detail-wrapper p:last-child {
  margin-bottom: 0;
}
.blog-detail-wrapper .date-wrap {
  margin-bottom: 20px;
}
.ad-banners {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}
/* BLOG CARD */
#similarBlogs .item {
  padding: 0 8px 25px;
}
.card-item {
  border-radius: 1rem;
  overflow: hidden;
  -webkit-box-shadow: 0px 4px 10px 0px rgb(0, 0, 0, 0.06);
  box-shadow: 0px 4px 10px 0px rgb(0, 0, 0, 0.06);
}
.card-item .card-image {
  width: 100%;
  height: 31rem;
}
.card-item .card-content {
  padding: 2.5rem;
}
.card-content .card-extra {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2rem;
}
.card-content p {
  margin-bottom: 0;
}
.card-content .card-title {
  margin-bottom: 1.5rem;
}
.card-content .card-title a {
  color: var(--title-color);
  text-decoration: none;
  -webkit-transition: 0.3s color;
  -o-transition: 0.3s color;
  transition: 0.3s color;
}
.card-content .card-title a:hover {
  color: var(--blue);
}
.card-writer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.card-content .card-writer {
  margin-left: auto;
}
.card-writer .writer-img {
  border-radius: 50%;
  overflow: hidden;
  width: 30px;
  height: 30px;
}
.card-title .posted-at {
  color: #787878;
  font-weight: 500;
  margin-left: 10px;
  font-size: 1.8rem;
}
#similarBlogs.owl-carousel .owl-nav button.owl-next,
#similarBlogs.owl-carousel .owl-nav button.owl-prev {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 22px;
  color: var(--title-color);
  background-color: var(--white);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -20px;
}
#similarBlogs.owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: -20px;
}
.title-bar {
  margin-bottom: 3rem;
}
.space-bw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.page-num a,
.page-prev a,
.page-next a {
  width: 4rem;
  height: 4rem;
  border-radius: 5px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 20px;
  color: var(--blue);
}
.page-prev a,
.page-next a {
  background-color: #f5f5f5;
  font-size: 25px;
}
.page-num {
  margin: 0;
  padding: 0;
}
.page-num li {
  list-style: none;
}
.page-num li a {
  color: var(--text-color);
}
.page-num li.active a {
  background-color: var(--white);
  color: var(--blue);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
}
/* BLOG CARD END */
/* BLOG DETAILS END */


/*How it works page css*/
.step-icn {
  width: 14rem;
  height: 14rem;
  min-width: 14rem;
  min-height: 14rem;
  background-color: var(--blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5rem solid #abdaf8;
  padding: 2rem;
}
.step-icn img {
  max-width: 7rem;
  max-height: 7rem;
}
.step-content p {
  margin-bottom: 0;
}
.how-it-works-steps .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 6rem 0;
  max-width: 70rem;
  height: 34rem;
}
.how-it-works-steps .step-row {
  position: relative;
}
.how-it-works-steps .step-row > div:before {
  content: "";
  width: 10rem;
  height: 10rem;
  display: block;
  position: absolute;
  top: 50%;
  right: calc(50% - 30rem);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 0.5rem solid #b0b0b0;
  border-radius: 50%;
  z-index: 1;
  background: #fff url("../images/step-1.svg") no-repeat center;
  background-size: 5rem 5rem;
}
.how-it-works-steps .step-row.step-2 > div:before {
  background-image: url("../images/step-2.svg");
}
.how-it-works-steps .step-row.step-3 > div:before {
  background-image: url("../images/step-3.svg");
}
.how-it-works-steps .step-row.step-4 > div:before {
  background-image: url("../images/step-4.svg");
}
.how-it-works-steps .step-row.step-5 > div:before {
  background-image: url("../images/step-5.svg");
}
.how-it-works-steps .step-row.step-6 > div:before {
  background-image: url("../images/step-6.svg");
}
.how-it-works-steps .step-row > div:after {
  content: "";
  background: transparent url("../images/left-curve.svg") no-repeat center;
  width: 50rem;
  height: 25rem;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-size: 100% 100%;
  bottom: -12.5rem;
}
.how-it-works-steps .step-row.step-row-even > div:after {
  background-image: url("../images/right-curve.svg");
}
.how-it-works-steps .step-row.step-last > div:after {
  content: none;
}
.how-it-works-steps .step-row.step-row-even > div:before {
  right: auto;
  left: calc(50% - 30rem);
}
.what-different {
  position: relative;
}
.what-different:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: calc(100% - 230px);
  width: 100%;
  left: 0;
  z-index: -1;
  background: rgb(87, 243, 191);
  background: var(--gradient);
}
.what-different-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3rem 1fr 3rem 1fr 3rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 3rem;
}
.what-different-col {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 3rem;
  border: 1px solid #dfdfdf;
}
.what-different-col h5 {
  margin: 2.5rem 0 15px;
}
.what-different-col p {
  margin-bottom: 0;
}
.what-different-icn {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  border: 1px solid #dfdfdf;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.what-different-icn img {
  max-width: 5rem;
  max-height: 5rem;
}
.part-exchange {
  background-color: rgba(173, 192, 205, 0.1);
}

/*How it works page css END*/
/* finance page css */
.inner-hero {
  height: calc(100vh - 30rem);
  background: transparent url("../images/pattern/inner-hero.svg") left bottom no-repeat;
  background-size: contain;
  min-height: 550px;
}
.inner-hero-content {
  max-width: 570px;
}
.inner-hero .container {
  position: relative;
  z-index: 1;
  height: 100%;
}
.inner-hero-form {
  position: relative;
  z-index: 1;
}
.finance-hero {
  position: relative;
}
.finance-hero:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  display: block;
  top: 0;
  left: 0;
  background: rgb(87, 243, 191);
  background: var(--gradient);
  opacity: 0.1;
}
.inner-hero-img {
  position: absolute;
  right: -13.5%;
  bottom: -8%;
  max-width: 117rem;
  max-height: 58rem;
}
.benefits-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10rem;
}
.benefits-col {
  position: relative;
}
.benefits-num {
  position: absolute;
  color: var(--blue);
  font-size: 6rem;
  font-weight: 900;
  bottom: -4.5rem;
  left: -1.5rem;
}
.benefit-img {
  border: 2px solid rgba(28, 122, 217, 0.2);
  width: 16rem;
  height: 16rem;
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 3rem;
  position: relative;
}
.benefit-img img {
  width: 8rem;
  height: 8rem;
}
.benefits-row p {
  margin-bottom: 0;
}
.benefits-row h4 {
  color: var(--title-color);
}
.finance-estimate .quote {
  padding: 4.5rem;
  border-radius: 1rem;
  height: 100%;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.finance-estimate {
  /* margin-top: -8rem; */
}
.finance-estimate .estimate {
  padding: 4.5rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.credit-profile-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3rem 1fr 3rem 1fr 3rem 1fr 3rem 1fr;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 3rem;
}
.credit-profile-col input {
  display: none;
}
.credit-profile-col label {
  background-color: #f5f5f5;
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 1rem;
  font-size: 20px;
  cursor: pointer;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
.credit-profile-col label:hover {
  background-color: rgba(253, 233, 57, 0.2);
}
.credit-profile-col label i {
  margin-right: 1rem;
  font-size: 25px;
}
.credit-profile-col input:checked + label {
  background-color: var(--yellow);
  color: var(--title-color);
}

.popular-brands-carousel {
  padding: 0 3rem;
}
.popular-brands-carousel .owl-item .popular-brand-img {
  max-width: 20rem;
  max-height: 9rem;
  display: inline-block;
  -o-object-fit: contain;
  object-fit: contain;
}
.popular-brands-link {
  padding: 3rem;
  min-height: 30rem;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 1rem;
  border: 2px solid transparent;
  background-color: var(--light-gray-bg);
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  text-decoration: none;
}
.popular-brands-link:hover {
  background-color: #f9faff;
  border-color: rgba(28, 122, 217, 0.2);
}
.popular-brands-link h5 {
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 3rem;
  margin-bottom: 16px;
}
.popular-brands-link h6 {
  font-weight: 400;
  color: var(--text-color);
}
.popular-brands-carousel {
  position: relative;
}
.popular-brands-carousel .owl-nav button {
  width: 5rem;
  height: 5rem;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  background: #fff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M10.828 12l4.95 4.95-1.414 1.414L8 12l6.364-6.364 1.414 1.414z' fill='rgba(52,80,194,1)'/%3E%3C/svg%3E")
    center center no-repeat !important;
  background-size: 30px 30px !important;
}
.popular-brands-carousel .owl-nav button.owl-next {
  left: auto;
  right: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M13.172 12l-4.95-4.95 1.414-1.414L16 12l-6.364 6.364-1.414-1.414z' fill='rgba(52,80,194,1)'/%3E%3C/svg%3E") !important;
}
.popular-brands-carousel .owl-nav button span {
  display: none;
}
.exchange-deal-content {
  padding: 8rem 6rem;
  border-radius: 1rem 0 0 1rem;
}
.exchange-deal-form {
  padding: 4.5rem;
  padding-bottom: 30rem;
  position: relative;
}
.exchange-deal-img {
  position: absolute;
  width: 100%;
  right: -7rem;
  bottom: -7rem;
}
/* finance page css END */
/* Car Brand Page css */
.car-brand-hero {
  position: relative;
  max-height: calc(100vh - 17.5rem);
  height: 100vh;
}
.car-brand-hero-img {
  max-width: 90%;
  height: auto;
  position: absolute;
  left: 50%;
  bottom: -14rem;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.car-brand-hero:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  display: block;
  top: 0;
  left: 0;
  background: rgb(87, 243, 191);
  background: var(--gradient);
  opacity: 0.1;
}
.car-card {
  border-radius: 1rem;
  -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  display: block;
}
.car-content {
  padding: 2rem;
}
.car-img {
  position: relative;
}
.car-img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.car-brand-img {
  position: relative;
  padding-bottom: calc(100% * 10 / 14) !important;
  height: auto !important;
}
.car-brand-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.car-brand-nav .slide-btn {
  padding: 0 0.5rem;
}
.car-brand-nav .slide-btn img {
  cursor: pointer;
  border-radius: 0;
  height: 50px;
  width: 100%;
  border: 1px solid #f2f2f2;
  border-radius: 5px;
  transition: 0.3s all;
  object-fit: cover;
}
.car-brand-nav .slide-btn.slick-current img {
  border-color: var(--blue);
}
.car-brand-slider.multi-slider .slick-prev {
  left: -10px;
}
.car-brand-slider.multi-slider .slick-next {
  right: -10px;
}
.car-brand-slider.multi-slider .slick-arrow {
  width: 30px;
  height: 30px;
  font-size: 2rem;
  box-shadow: 0 8px 24px rgb(0 0 0 / 33%);
}
.car-card .category-tag {
  background-color: rgba(196, 196, 196, 0.25);
  color: var(--text-color);
  font-weight: 500;
  border-radius: 1rem;
}
.car-card h6 {
  color: var(--text-color);
}
.car-img .category-tag {
  position: absolute;
  z-index: 1;
  top: 2rem;
  left: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--white);
  border-radius: 5px;
}
.car-img img {
  border-radius: 10px 10px 0 0;
}
.brand-commercial-car-item {
  text-decoration: none;
  position: relative;
  display: block;
  border-radius: 1rem;
}
.brand-commercial-car-item img {
  height: 44rem;
  border-radius: 1rem;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.brand-commercial-car-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2rem 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 0 0 10px 10px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  width: 100%;
}
.brand-commercial-car-content h5 {
  margin-bottom: 1.5rem;
}
.brand-commercial-car-content h6 {
  color: #d4d4d4;
  margin-bottom: 0;
}
.card-arrow {
  width: 5rem;
  height: 5rem;
  background-color: var(--blue);
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-transition: 0.3s background-color;
  -o-transition: 0.3s background-color;
  transition: 0.3s background-color;
  font-size: 25px;
}
.brand-commercial-car-item:hover .card-arrow {
  background-color: var(--blueHover);
}
.custom-owl-nav {
  color: var(--title-color);
  font-size: 3rem;
  text-decoration: none;
  width: 5rem;
  height: 5rem;
  border-radius: 1.5rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
.custom-owl-nav:hover {
  color: var(--title-color);
  background-color: rgba(0, 0, 0, 0.1);
}
.custom-owl-nav.prev {
  margin-right: 10px;
}
.car-models {
  background: -o-radial-gradient(-3.91% 17.02%, 107.4% 370.74%, #111630 0%, #0f3030 100%);
  background: radial-gradient(107.4% 370.74% at -3.91% 17.02%, #111630 0%, #0f3030 100%);
}
.car-models-tab button.nav-link {
  color: #fff;
  font-size: 20px;
  margin: 0 5px;
  background-color: #ffffff1a;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
}
.car-models-tab button.nav-link.active {
  background-color: var(--blue);
}
.car-models-tab {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.car-model {
  max-width: 80rem;
  max-height: 50rem;
  -webkit-box-shadow: 3rem 3rem 0 rgba(84, 84, 84, 0.1);
  box-shadow: 3rem 3rem 0 rgba(84, 84, 84, 0.1);
}
/* Car Brand Page css END */
/* FAQ page css */
.faq-page {
  position: relative;
}
.faq-page .breadcrumbs {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
/* FAQ page css END*/
/* Car Model Page css */
.we-buy-car-hero {
  height: auto;
  position: relative;
  background-color: #3544c7;
  background-image: none;
  min-height: unset;
}
.we-buy-car-hero-img {
  position: absolute;
  bottom: -3rem;
  right: -30%;
  max-width: 126rem;
  max-height: 41.5rem;
}
.we-buy-car-hero:before,
.we-buy-car-hero:after {
  content: "";
  position: absolute;
  /* background: transparent url("../images/pattern/we-buy-car-hero.svg"); */
  width: 50%;
  height: 100%;
  right: 0;
  top: 0;
  /* opacity: 0.4; */
  background: transparent url("../images/pattern/blue-angle-right-pattern.svg") no-repeat right;
  background-size: contain;
}
.we-buy-car-hero:before {
  background-image: url("../images/pattern/blue-angle-left-pattern.svg");
  background-position: left;
  right: auto;
  left: 0;
}
.we-buy-car-hero-inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
  -webkit-transform: translateY(7rem);
  -ms-transform: translateY(7rem);
  transform: translateY(7rem);
}
.we-buy-car-hero .get-quote {
  -webkit-box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.07);
  max-width: 65rem;
  margin: 0 auto;
}
.car-model-hero-img {
  position: absolute;
  bottom: -7rem;
  right: -7%;
  max-width: 200rem;
  max-height: 69rem;
}
.get-best-price-img {
  -webkit-box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.051);
  box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.051);
  max-width: 100%;
  max-height: 50rem;
  display: block;
  margin: 0 auto;
}
.why-sell-your-car-card {
  background-color: var(--white);
  border-radius: 10px;
  -webkit-box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.051);
  box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.051);
  height: 100%;
}
.why-sell-your-car-card img {
  border-radius: 10px 10px 0 0;
  max-height: 20rem;
  width: 100%;
  object-fit: cover;
}
.how-it-work-card-content {
  background-color: var(--white);
  color: var(--white);
  padding: 3rem 4rem;
  border-radius: 1rem;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
.how-it-work-card:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
  top: -5.5rem;
  background-color: rgba(84, 84, 84, 0.1);
}
.how-it-work-card.process-1:before {
  width: 50%;
  left: auto;
  right: 0;
}
.how-it-work-card.process-3:before {
  width: 50%;
}
.how-it-work-card {
  position: relative;
}
.how-it-work-card .process-num {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -8rem;
  width: 5.5rem;
  height: 5.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 3px solid #f7f9fa;
  background-color: var(--white);
  border-radius: 50%;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  margin-bottom: 0;
}
.how-it-work-card-content h5 {
  color: #838a95;
  font-weight: 500;
  -webkit-transition: 0.3s color;
  -o-transition: 0.3s color;
  transition: 0.3s color;
  margin-bottom: 1.5rem;
}
.how-it-work-card-content p {
  color: #838a95;
  -webkit-transition: 0.3s color;
  -o-transition: 0.3s color;
  transition: 0.3s color;
  margin-bottom: 0;
}
.how-it-work-card:hover .process-num {
  color: var(--white);
  background-color: var(--blue);
  border-color: var(--blue);
}
.how-it-work-card:hover .how-it-work-card-content {
  background-color: var(--blue);
}
.how-it-work-card:hover .how-it-work-card-content h5 {
  color: var(--white);
}
.how-it-work-card:hover .how-it-work-card-content p {
  color: #d2d2d2;
}
/* Car Model Page css END */
/* Home page css */


.home-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.home-hero .side-drawing {
  position: absolute;
  bottom: 7rem;
  max-width: 109rem;
  max-height: 35.5rem;
  z-index: 1;
}
.home-hero .side-drawing.left-side-drawing {
  left: 0;
}
.home-hero .side-drawing.right-side-drawing {
  right: 0;
}

.hero-finance .side-drawing {
  position: absolute;
  bottom: 0;
  height: 100%;
  max-width: unset;
  max-height: unset;
  z-index: 1;
}
.hero-finance .side-drawing.left-side-drawing {
  left: 0;
}
.hero-finance .side-drawing.right-side-drawing {
  right: 0;
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
/* .home-hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 26rem;
  z-index: 1;
  background: #00000066;
  background: -o-linear-gradient(179.54deg, #05895d -4.24%, #0a1684 103.18%);
  background: linear-gradient(270.46deg, #05895d -4.24%, #0a1684 103.18%);
  opacity: 0.5;
} */
.home-hero .get-quote,
.home-hero .title {
  max-width: 65rem;
  margin: 0 auto;
}
.how-it-work-content {
  max-width: 300px;
  margin: 0 auto;
  position: relative;
}
.how-it-work-content .work-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15.6rem;
  height: 15.6rem;
  border-radius: 50%;
  margin: 0 auto 5rem;
  position: relative;
}
.how-it-work-content.step-1 .work-icon {
  background: #f9faff;
  border: 2.5px solid rgba(28, 122, 217, 0.2);
}
.how-it-work-content.step-1 .work-icon:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border-radius: 50%;
  background: transparent
    url("data:image/svg+xml,%3Csvg width='178' height='179' viewBox='0 0 178 179' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='89' cy='89.1791' r='87.5' stroke='%233140C3' stroke-opacity='0.5' stroke-width='3' stroke-dasharray='20 30'/%3E%3C/svg%3E%0A")
    center no-repeat;
  background-size: contain;
}
.how-it-work-content.step-3 .work-icon {
  background-color: var(--white);
  -webkit-box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, 0.102);
  box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, 0.102);
}
.how-it-work-content .work-icon img {
  max-width: 7rem;
  max-height: 7rem;
}
.how-it-work-content-wrap {
  position: relative;
}
.how-it-work-content-wrap.step-1:before,
.how-it-work-content-wrap.step-2:before {
  content: "";
  position: absolute;
  width: calc(100% - 10rem);
  height: 73px;
  background-repeat: no-repeat;
  left: calc(50% + 8rem);
  background-size: contain;
}
.how-it-work-content-wrap.step-1:before {
  top: 7.8rem;
  background-image: url("data:image/svg+xml,%3Csvg width='418' height='72' viewBox='0 0 418 72' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 2C67.7773 37.5512 244.465 97.9883 417 55.3268' stroke='%233140C3' stroke-opacity='0.5' stroke-width='3' stroke-dasharray='20 30'/%3E%3C/svg%3E%0A");
}
.how-it-work-content-wrap.step-2:before {
  top: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='423' height='40' viewBox='0 0 423 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 38C63.9191 -5.54662 259.434 -14.2562 422 37.9998' stroke='%230889FF' stroke-opacity='0.5' stroke-width='3' stroke-dasharray='20 30'/%3E%3C/svg%3E%0A");
}
.sell-buy-part-exchange {
  position: relative;
}
.sell-buy-part-action .btn-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.sell-buy-part-action .btn-arrow i {
  font-size: 2.5rem;
}
.sell-buy-part-exchange-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  z-index: -1;
}
.sell-buy-part-block {
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid #dfdfdf;
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  background-color: var(--white);
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
.sell-buy-part-block:hover {
  background-color: #f9faff;
  border: 2px solid rgba(28, 122, 217, 0.2);
}
.sell-buy-part-block-icon {
  width: 8rem;
  height: 8rem;
  border: 1px solid #e1e1e1;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.sell-buy-part-block-icon img {
  max-width: 5rem;
  max-height: 5rem;
}
.sell-buy-part-block li {
  margin-bottom: 2rem;
}
.home-about-us {
  background: #3044bc url("../images/pattern/blue-angle-left-pattern.svg") left center no-repeat;
}
.home-about-us-img {
  position: absolute;
  left: 0;
  bottom: -30rem;
  max-width: 74rem;
  max-height: 54rem;
}
/* Home page css END */
/* Compare Quote css page */
.selling-car-logo img {
  max-width: 10rem;
  max-height: 8.6rem;
}
.filter-col {
  max-width: 45rem;
}
.quote-block {
  border-radius: 1rem;
  padding: 4rem;
  background: #3044bc url("../images/aero-plane.svg") no-repeat 20rem bottom;
  background-size: 18rem 18rem;
}
.quote-block.instant-cash {
  background: #f9faff url("../images/paper-plane.svg") no-repeat 20rem calc(100% + 3rem);
  border: 2px solid rgba(28, 122, 217, 0.2);
  background-size: 21rem 21rem;
}
.quote-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  border-radius: 1rem;
  margin-bottom: 3rem;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.quote-card:last-child {
  margin-bottom: 0;
}
.quote-card-img {
  position: relative;
  max-width: 39rem;
}
.quote-card-img .quote-label {
  position: absolute;
  top: 2rem;
  left: 0px;
  background-color: var(--yellow);
  border: 1px solid #fff;
  border-radius: 0 5px 5px 0;
  color: var(--title-color);
  text-transform: capitalize;
  font-weight: 500;
  padding: 1rem 1.5rem;
  line-height: 1;
  z-index: 1;
}
.quote-card-img img {
  height: 100%;
  border-radius: 10px 0 0 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.quote-card-content {
  color: #999fa4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
}
.quote-card-content p {
  color: #999fa4;
}
.quote-card-content .overview-list {
  grid-template-columns: repeat(2, auto);
  /* -ms-grid-columns: (auto) [2]; */
  max-width: 40rem;
}
.quote-card-content .overview-list .overview-icon {
  width: 40px;
  height: 40px;
  background-color: var(--light-blue);
  color: #7f8bf0;
}
.quote-card-desc {
  max-width: 500px;
  margin-bottom: 2rem;
}
.quote-card-cost {
  border-right: 2px solid rgba(0, 0, 0, 0.102);
  width: 25%;
}
.quote-card-cost:last-child {
  border: 0;
}
/* Compare Quote page css END */
/*Terms -condition*/
.term-list.text-dark li {
  color: var(--title-color);
}
.term-list {
  padding-left: 3rem;
}
.term-list li {
  position: relative;
  margin-bottom: 1rem;
}
.term-list li:last-child {
  margin-bottom: 0;
}
.term-list li:before {
  content: "\ea6e";
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  color: var(--title-color);
  position: absolute;
  left: -2.75rem;
  font-size: 2.5rem;
  top: 0;
  line-height: 1.05;
}
.term-condition-head img {
  max-width: 30rem;
  max-height: 30rem;
}
/*Terms -condition END*/
.contact-info {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.contact-info:before {
  content: "";
  background: #57f3bfcc;
  position: absolute;
  display: block;
  width: 12.5rem;
  height: 12.5rem;
  border-radius: 50%;
  bottom: 6rem;
  right: 8rem;
  z-index: 1;
}
.contact-info:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 34rem;
  height: 34rem;
  background-color: var(--yellow);
  border-radius: 50%;
  transform: translate(14rem, 19rem);
}
.contact-info a {
  color: var(--white);
  text-decoration: none;
  opacity: 1;
  transition: 0.3s all;
}
.contact-info a:hover {
  opacity: 0.7;
}
.contact-form {
  box-shadow: 0px 8px 24px 0px #0000000d;
  height: 100%;
}
/* browse-cars */
.collapseCarForm span {
  display: none;
}
.collapseCarForm.collapsed span.more {
  display: inline-flex;
}
.collapseCarForm:not(.collapsed) span.less {
  display: inline-flex;
}
/* browse-cars END */
/* Brij css start */
/* / (profile page) */
.user-profile-section {
  background-color: #f4f5fc;
  width: 100%;
  height: auto;
  padding: 2.5rem 0 0;
}
.acc-manager {
  background-color: var(--white);
  /* border-radius: 10px; */
  overflow: hidden;
  display: inline-flex;
  margin-left: auto;
}
.get-best-price .acc-manager {
  display: inline-flex;
  box-shadow: 0px 3px 3px rgb(0 0 0 / 15%);
}
.user-acc-name {
  background-color: #4451c3;
  padding: 2rem;
}
.profile-pic {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  overflow: hidden;
}
.profile-pic img {
  width: inherit;
  height: inherit;
  -o-object-fit: cover;
  object-fit: cover;
}
.user-profile-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1.2rem;
}
.profile-title {
  padding: 0 0 0 1.2rem;
  text-align: left;
}
.profile-title p {
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0;
}
.profile-title a {
  font-size: 15px;
  color: #d9d9d9;
  text-decoration: none;
}
.chat-call-box {
  min-height: auto;
  height: auto;
  padding: 1.5rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  flex-direction: column;
}
.chat-call-box button {
  text-transform: capitalize;
  font-size: 18px;
}
.chat-call-box i {
  font-size: 18px;
  position: relative;
  top: -1px;
  margin-right: 3px;
}
.d-align-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.profile-details-nav-pills .nav {
  flex-wrap: nowrap;
  overflow: auto;
}
.profile-details-nav-pills .nav-link {
  color: var(--title-color);
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 0.5rem 0;
  border-radius: 0;
  white-space: nowrap;
}
.profile-details-nav-pills .nav-item {
  margin-right: 5rem;
}
.profile-details-nav-pills .nav-item:last-child {
  margin-right: 0;
}
.profile-details-nav-pills .nav-pills .nav-link.active,
.profile-details-nav-pills .nav-pills .show > .nav-link {
  color: #3044bc;
  background-color: transparent;
  border-bottom: 3px solid #3044bc;
}
.profile-details-tab-containt {
  padding-top: 4rem;
}
.profile-sub-title {
  font-size: 2.5rem;
  color: var(--title-color);
  font-weight: bold;
  margin-bottom: 0;
}
.profile-space-top {
  padding-top: 4rem;
}
.preference-txt {
  font-size: 20px;
  color: var(--title-color);
}
.preference-p-txt {
  color: #999fa4;
  font-weight: normal;
}
.preference-p-txt b {
  color: var(--title-color);
}
/* / custom-chkbox */
.custom-chkbox {
  display: block;
  position: relative;
  padding-left: 5rem;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: var(--text-color);
}
.custom-chkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom-chkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 30px;
  background-color: #eee;
  border-radius: 5px;
}
.custom-chkbox:hover input ~ .checkmark {
  background-color: #ccc;
}
.custom-chkbox input:checked ~ .checkmark {
  background-color: var(--blue);
}
.custom-chkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.custom-chkbox input:checked ~ .checkmark:after {
  display: block;
}
.custom-chkbox .checkmark:after {
  left: 11px;
  top: 5px;
  width: 8px;
  height: 16px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.preferences-mt {
  margin-top: 2.5rem;
}
/* // custom-chkbox */
/* //common css start */
.custom-label {
  font-size: 2rem;
  padding: 10px 25px;
  color: var(--title-color);
  font-weight: 500;
  text-transform: uppercase;
}
ul {
  margin: 0;
  padding: 0;
}
.btn-medium {
  padding: 1.6rem 2.4rem;
}
.cursor-pointer {
  cursor: pointer;
}
/* //common css end */
.quotes-box {
  background-color: transparent;
  border: 1px solid #e6e6e6;
  padding: 2.5rem;
  height: 100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.quotes-box:hover {
  background-color: #f9faff;
  border: 1px solid #c3defa;
}
.quotes-box .close-icn {
  font-size: 25px;
  color: var(--text-color);
  cursor: pointer;
}
.quotes-box h6 {
  font-weight: 500;
  color: var(--title-color);
  margin-top: 3rem;
}
.miles-until-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2rem;
}
.miles-until-list li:last-child {
  margin-bottom: 0;
}
.miles-until-list li .miles-ico {
  width: 40px;
  height: 40px;
  background-color: #eeeffe;
  border-radius: 100%;
  font-size: 20px;
  color: #7f8bf0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.miles-until-txt {
  width: calc(100% - 5rem);
  padding-left: 1rem;
}
.miles-until-list li h6 {
  color: #3140c3;
  font-weight: 400;
  margin: 0 0 1rem;
}
.miles-until-list li p {
  margin-bottom: 0;
}
.miles-until-list {
  margin: 2.5rem 0;
}
.genreate-quote-ico {
  width: 6rem;
  height: 6rem;
  background-color: var(--blue);
  border-radius: 100%;
  color: var(--white);
  font-size: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}
.genreate-quote-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.quotes-box .genreate-quote-txt {
  font-weight: 400;
  color: var(--text-color);
  margin: 10px 0 0;
}
.valuation-expired-btn i {
  display: none;
}
.expired-box .valuation-expired-btn button {
  background-color: #989898;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.expired-box .valuation-expired-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.expired-box .valuation-expired-btn i {
  font-size: 2.8rem;
  color: var(--blue);
  margin-left: 1.5rem;
}
.expired-box .valuation-expired-btn button:hover {
  background-color: #989898;
  opacity: 0.7;
}
.expired-box .valuation-expired-btn a {
  width: 100%;
}
.expired-box .valuation-expired-btn i {
  display: block;
}
.expired-box .miles-until-list li h6 {
  color: var(--text-color);
}
.gb-label {
  padding: 0 25px 0 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.gb-label-box {
  background-color: var(--blue);
  color: #fff;
  min-width: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 1rem;
  padding: 5px 0;
}
.gb-label-box img {
  width: 2.5rem;
}
.show-map-quotes-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.show-map-quotes-btn p {
  color: var(--blue);
  font-weight: 500;
  text-decoration: underline;
  margin-bottom: 0;
}
.user-appointment-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.appointment-box h6 {
  width: calc(100% - 100px);
}
.user-appointment-label h4 {
  width: calc(100% - 10rem);
  white-space: normal;
}
.pending-label {
  border-radius: 20px;
  font-size: 16px;
  padding: 6px 2rem;
  background-color: rgba(49, 64, 195, 0.1);
  color: var(--blue);
}
.quotes-box.saved-car-box {
  padding: 0;
  overflow: hidden;
}
.saved-car-box .card-image {
  width: 100%;
  position: relative;
  padding-bottom: calc(100% * 10 / 17) !important;
  height: auto !important;
}
.saved-car-box .card-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.saved-car-box .qu-txt {
  background-color: var(--yellow);
  color: #000b69;
  padding: 5px;
  font-size: 13px;
  font-weight: bold;
  border: 2px solid var(--white);
  border-radius: 0 5px 5px 0;
  text-transform: uppercase;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 140px;
  height: 40px;
  position: absolute;
  top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-width: 2px 2px 2px 0;
}
.saved-car-box .car-like {
  background-color: var(--blue);
  width: 40px;
  height: 40px;
  border-radius: 0.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  position: absolute;
  right: 2.5rem;
  top: 2rem;
}
.saved-car-box .card-content {
  padding: 2.5rem;
}
.saved-car-option {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.saved-car-option li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* flex-wrap: wrap; */
  /* width: calc(100% / 3); */
}
.saved-car-option .miles-date-box {
  width: 40px;
  height: 40px;
  background-color: #eeeffe;
  border-radius: 100%;
  font-size: 24px;
  color: #7f8bf0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex: 1 0 auto;
}
.saved-car-option .miles-date-txt {
  width: calc(100% - 4rem);
  padding-left: 1rem;
}
.saved-car-option .miles-date-txt p {
  color: var(--text-color);
  font-weight: 400;
  margin-bottom: 0;
}
.saved-date-show {
  background-color: #f6f6f6;
  padding: 10px 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.saved-date-show h5 {
  color: var(--text-color);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}
.saved-date-show i {
  font-size: 2.5rem;
  color: var(--text-color);
}
.saved-car-box:hover .saved-date-show {
  background-color: #e6e9f9;
}
.saved-car-box:hover .saved-date-show h6,
.saved-car-box:hover .saved-date-show i {
  color: var(--blue);
}
/* custom-modal css start  */
.custom-modal .modal-header {
  padding: 1.6rem 3rem 0;
  border-bottom: none;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.custom-modal .modal-body {
  padding: 16px 3rem;
}
.custom-modal .modal-content {
  padding: 1.8rem 0;
}
.custom-modal .btn-close {
  width: 1rem;
  height: 1rem;
  opacity: 0.6;
  transition: 0.3s all;
}
.custom-modal .btn-close:hover {
  opacity: 1;
}
.custom-modal .modal-header .btn-close {
  margin: 0;
}
.saved-car-img {
  width: 100%;
  height: 35rem;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0;
}
.custom-modal .modal-title {
  font-weight: bold;
  margin-bottom: 0;
  color: var(--title-color);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.overview-list {
  margin-top: 2.5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
}
.overview-icon {
  width: 45px;
  height: 45px;
  background-color: #48d2bd;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
}
.overview-list li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.overview-list li p {
  font-weight: 400;
  margin-bottom: 0;
  padding-left: 1rem;
  color: var(--title-color);
}
textarea {
  text-transform: inherit !important;
}
.que-ask-txtarea {
  margin-top: 20px;
  height: 120px;
}
.selling-buying-cars {
  border: 1px solid #f0f0f0;
  padding: 3rem;
  border-radius: 10px;
  margin-top: 3rem;
  height: auto;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.car-details .selling-buying-cars {
  -webkit-box-shadow: 0 8px 24px rgb(0 0 0 / 10%);
  box-shadow: 0 8px 24px rgb(0 0 0 / 10%);
}
.selling-buying-cars-seeless {
  height: 115px;
}
.selling-buying-cars:first-child {
  margin-top: 0;
}
.selling-buying-list {
  margin-top: 20px;
}
.selling-buying-list > li,
.selling-buying-list > div > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 2px solid #f6f6f6;
  padding: 1.5rem 0;
}
.selling-buying-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.selling-buying-list li h4 {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-color);
  margin-bottom: 0;
}
/* .credit-profile-total{
  flex-direction: column;
}
.credit-profile-total .total-price{
  display: flex;
  align-items: center;
} */
.selling-buy-rating .credit-profile-col label {
  padding: 7px 15px;
  font-size: 16px;
}
.selling-buy-rating .credit-profile-row {
  grid-gap: 2rem;
}
.selling-buying-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
@media (min-width: 1099px) {
  .custom-modal .modal-dialog {
    max-width: 120rem;
  }
}
@media (min-width: 768px) {
  .small-modal .modal-dialog {
    max-width: 60rem;
  }
}
@media (min-width: 1200px) {
  .medium-modal .modal-dialog {
    max-width: 90rem;
  }
}
/* custom-modal css end  */
/* // (profile page) */
/* / (authontication form) */
.authentication-form-inner {
  background-color: #f9faff;
  padding: 4rem;
  height: auto;
  max-width: 535px;
  border-radius: 1rem;
  margin: 7rem auto;
  position: relative;
  overflow: hidden;
}
.authentication-form input.form-control {
  margin: 3rem 0;
  padding-right: 4.5rem;
}
.email-field input {
  padding: 1.65rem 4rem 1.65rem 2rem;
  -webkit-box-shadow: 0px 8px 20px 0px #00000005;
  box-shadow: 0px 8px 20px 0px #00000005;
}
.email-field input::-webkit-input-placeholder {
  text-transform: none;
}
.email-field input::-moz-placeholder {
  text-transform: none;
}
.email-field input:-ms-input-placeholder {
  text-transform: none;
}
.email-field input::-ms-input-placeholder {
  text-transform: none;
}
.email-field input::placeholder {
  text-transform: none;
}
.email-field i {
  position: absolute;
  right: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--blue);
}
.or-txt {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #f9faff;
  padding: 0 10px;
  color: #999fa4;
}
.login-width-fg-btn {
  background-color: var(--white);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 2rem 0 3rem;
  border-radius: 1rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
}
.login-width-fg-btn:hover {
  background-color: #f2f2f2;
}
.login-width-fg-btn:last-child {
  margin-right: 0;
}
.login-width-fg-btn a {
  font-size: 16px;
  font-weight: 400;
  padding: 2rem;
  text-decoration: none;
  color: var(--text-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0px 8px 20px 0px #00000005;
  box-shadow: 0px 8px 20px 0px #00000005;
}
.enter-otp-section {
  background-color: #f9faff;
  padding: 4rem;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.enter-otp-section .back-arrow-ico {
  font-size: 32px;
  color: var(--black);
  position: absolute;
  top: 40px;
  left: 40px;
  cursor: pointer;
}
.enter-otp-section-show {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
/* // (authontication form) */
/* / (car page) */
.back-page-ico {
  color: var(--black);
  font-size: 22px;
}
.car-overview-slider {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}
.car-overview-slider .multi-slider img {
  vertical-align: middle;
  width: 100%;
  height: inherit;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 50rem;
}
.car-overview-slider .multi-slider {
  position: relative;
}
.share-ico {
  width: 50px;
  height: 50px;
  border-radius: 1rem;
  background-color: var(--blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.5rem;
  position: absolute;
  top: 3rem;
  left: 3rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.car-title {
  font-weight: bold;
  margin-bottom: 0;
  color: var(--title-color);
}
/* #section {
  width: 500px;
  height: 400px;
  word-wrap: break-word;
} */
.read-more-txt {
  margin-top: 2rem;
}
.read-more-txt .moretext {
  display: none;
}
.exchange-value-txt {
  color: var(--blue);
  font-weight: 500;
  margin-top: 2rem;
  display: block;
}
.car-details .car-head {
  font-weight: bold;
  margin-bottom: 0;
  color: var(--title-color);
}
.mileage-btn {
  width: 6rem;
  height: 100%;
  background-color: var(--yellow);
  color: var(--black);
  font-size: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 0 1rem 1rem 0;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.mileage-btn:hover {
  background-color: var(--blue);
  color: var(--white);
}
.see-less-text {
  margin-left: auto;
  cursor: pointer;
  color: #a5a5a5;
}
.euro-text-field .form-control {
  padding-left: 4rem;
  width: 130px;
  height: 45px;
}
.euro-text-field h4 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 2rem;
}
/* .car-details .selling-buying-cars .total-price-txt {
  font-size: 25px;
} */
.car-details .selling-buying-cars .small-txt {
  font-size: 14px;
  line-height: 2.2 !important;
  font-weight: 500;
}
.finance-quote-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.request-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
.request-question button {
  text-transform: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  padding: 2rem 1.5rem;
}
.request-question button:hover {
  background-color: var(--yellow);
  color: var(--black);
}
.monthly-payments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 3rem;
}
.terms-border {
  border-top: 4px solid #ebedf9;
  margin-bottom: 20px;
  position: relative;
  left: 15px;
  cursor: pointer;
}
.terms-border::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #ebedf9;
  display: block;
  position: absolute;
  top: -12px;
}
.select-term-list {
  display: flex;
  margin: 0 -1.5rem;
}
.select-term-btn {
  width: 20%;
  text-transform: lowercase;
  font-weight: normal;
  padding: 4rem 0.5rem 2rem;
  position: relative;
  color: var(--light-gray-text);
}
.select-term-btn:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: #ebedf9;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  transition: 0.3s all;
}
.select-term-btn span {
  display: block;
  width: 100%;
  height: 5px;
  background-color: rgba(48, 69, 188, 0.1);
  position: absolute;
  left: 50%;
  top: 8px;
}
.select-term-btn span:before {
  content: "";
  position: absolute;
  width: 0;
  height: 5px;
  background-color: var(--blue);
  left: 0;
  transition: 0.3s all;
}
.select-term-btn span.active:before {
  width: 100%;
}
.select-term-btn:last-child span {
  display: none;
}
/* .select-term-btn:first-child:before, */
.select-term-btn.active:before {
  background-color: var(--blue);
}
/* .select-term-btn:first-child, */
.select-term-btn.selected {
  color: var(--blue);
}
.active-term .terms-border {
  border-color: var(--blue);
}
.active-term .terms-border::before {
  background-color: var(--blue);
}
.active-term-round::before {
  background-color: var(--blue);
}
.active-term {
  color: var(--blue);
}
.collapsed-data {
  overflow: hidden;
  height: 0;
}
.show-see-less-full .see-less-quote {
  display: none;
}
.see-full-quote {
  display: none;
}
.show-see-less-full .see-full-quote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.multi-slider .prod-slide {
  width: 100%;
  /* height: 500px; */
  border-radius: 1rem;
  overflow: hidden;
}
.multi-slider .prod-img-wrapper {
  position: relative;
  padding-bottom: calc(100% * 10 / 17) !important;
  height: auto !important;
}
.multi-slider .prod-img-wrapper img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
.multi-slider .cSlider__item {
  border-radius: 5px;
  overflow: hidden;
  padding: 0 0.8rem;
}
.multi-slider .slick-slider {
  margin-bottom: 3rem;
}
.multi-slider .slick-arrow {
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  color: #000;
  font-weight: bold;
  font-size: 2.5rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--white);
  border: 1px solid #fff;
  border-radius: 100%;
  -webkit-box-shadow: 0 8px 24px rgb(0 0 0 / 10%);
  box-shadow: 0 8px 24px rgb(0 0 0 / 10%);
  z-index: 2;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.multi-slider .slick-prev {
  left: -20px;
}
.multi-slider .slick-next {
  right: -20px;
}
.multi-slider .slick-arrow:hover {
  background-color: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.multi-slider .cSlider__item img {
  border-radius: 5px;
  border: 2px solid #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.multi-slider .cSlider__item.slick-current img,
.multi-slider .cSlider__item:hover img {
  border: 2px solid #f65353;
}
.confirm-number-input {
  padding: 2rem 0 4rem;
}
.submit-form-record textarea {
  height: 15rem;
}
.question-submitted-modal .modal-header {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.question-submitted-modal .modal-content {
  text-align: center;
}
.question-submitted-modal .modal-body {
  padding: 16px 5rem 3rem;
}
.question-submitted-modal h5 {
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.8;
  padding: 35px 0 3rem;
}
.share-social-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 2rem 0 3rem;
}
.share-social-icon li {
  margin-right: 1.5rem;
  width: 6rem;
  height: 6rem;
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 2px solid;
  font-size: 3rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.share-social-icon .like-ico {
  border-color: #ffd4d8ad;
  color: #e74e5f;
}
.share-social-icon .fb-ico {
  border-color: #c7d2e8;
  color: #4267b2;
}
.share-social-icon .tw-ico {
  border-color: #bce3fb;
  color: #1da1f2;
}
.share-social-icon .ws-ico {
  border-color: #bef2d1;
  color: #25d366;
}
.share-social-icon .mail-ico {
  border-color: #f9c7c3;
  color: #ea4335;
}
.share-social-icon .active-social-ico,
.share-social-icon li:hover {
  background-color: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.share-modal h6 {
  color: var(--title-color);
  font-weight: 400;
  margin-bottom: 0;
}
.copy-link-field {
  margin-top: 2rem;
}
.copy-link-field .form-control {
  padding-right: 11rem;
}
.copy-url-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  border-radius: 0 1rem 1rem 0;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.copy-url-btn h6 {
  color: var(--white);
  margin-bottom: 0;
}
.copy-url-btn:hover,
.share-ico:hover {
  background-color: var(--blueHover);
  color: var(--white);
}
.play-ico {
  background-color: #44505a;
  width: 7rem;
  height: 7rem;
  font-size: 4rem;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.play-ico:hover {
  background-color: var(--blue);
}
/* // (car page) */
.modal-content {
  border-radius: 1rem;
}
.hover-text:hover {
  color: var(--blue);
}
.hover-text:hover b {
  color: var(--blue);
}
.text-transform-none {
  text-transform: none !important;
}
.submit-form-record {
  margin-top: 2rem;
}
.modal-backdrop.show {
  opacity: unset;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.modal-backdrop {
  background-color: transparent;
  -webkit-transition: 0.2s all;
  -o-transition: 0.2s all;
  transition: 0.2s all;
}
.modal-backdrop.show {
  background-color: #000000ab;
}
/* index page popup */
.enter-reg-field {
  margin: 4rem 0;
}
.enter-reg-field .mileage-btn {
  width: 7rem;
  height: 100%;
}
.enter-reg-field .gb-label-box {
  width: 7rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px 0 0 10px;
}
.enter-reg-field .form-control {
  padding: 2.15rem 9rem;
}
.car-details-form {
  margin-top: 3rem;
}
.car-details-form label {
  font-size: 18px;
  font-weight: 400;
  color: var(--title-color);
  margin-bottom: 15px;
}
.car-details-modal h6 {
  color: var(--text-color);
  font-weight: 400;
}
.before-you-go-popup .modal-content {
  text-align: center;
}
.before-you-go-popup .enter-reg-field {
  margin: 4rem auto;
}
.before-you-go-popup button {
  margin-bottom: 3rem;
}
.before-you-go-popup .enter-reg-field .form-control {
  padding-right: 2rem;
}
.before-you-go-popup .modal-title {
  width: 100%;
  text-align: center;
}
.before-you-go-popup .reg-title {
  color: var(--title-color);
  font-weight: 400;
}
.before-you-go-popup h6 {
  color: var(--text-color);
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.8;
}
/* Brij css end */
.popups-btns .btn {
  white-space: inherit;
  line-height: 1.5;
}
.modal-accordion {
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.modal-table.table > :not(caption) > * > * {
  padding: 1rem;
}
.modal-list-group .list-group-item {
  padding: 1rem;
}
/*datepicker*/
.ui-widget-content {
  width: 100%;
  border: 1px solid #57f3bf;
  background: #ffffff;
  padding: 0;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  border: 0px;
  background: #ffffff;
  font-size: 17px;
  font-weight: 500;
  color: #222e99;
  padding: 6px 8px;
}
.ui-datepicker td span,
.ui-datepicker td a {
  text-align: center;
}
.ui-datepicker th {
  padding: 1.5rem;
  background-color: var(--light-gray-bg);
  font-size: 15px;
  font-weight: 600;
  color: #222e99;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  border-top: 1px solid var(--blue);
}
a.ui-state-default.ui-state-active {
  background: var(--blue);
  border-radius: 4px;
  color: #fff;
}
.ui-datepicker .ui-datepicker-title {
  font-size: 17px;
  color: #222e99;
  font-weight: 600;
}
.ui-widget-header {
  border: 0;
  background: no-repeat;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  background: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
  border: 0px;
  background: none;
  cursor: pointer;
}
.ui-datepicker .ui-datepicker-prev:before,
.ui-datepicker .ui-datepicker-next:before {
  font-family: remixicon !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  content: "\ea6e";
  color: #222e99;
  margin: auto;
  font-size: 22px;
}
.ui-datepicker .ui-datepicker-prev:before {
  content: "\ea64";
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  top: 2px;
  text-decoration: none;
}
.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}
.ui-datepicker .ui-datepicker-next {
  right: 2px;
}
.select-time-row {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.5rem;
}
.select-time-col input {
  display: none;
}
.select-time-col label {
  background-color: #f5f5f5;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 1rem;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
.select-time-col label:hover {
  background-color: var(--light-blue);
}
.select-time-col label i {
  margin-right: 1rem;
  font-size: 25px;
}
.select-time-col input:checked + label {
  background-color: var(--blue);
  color: #fff;
}
