@font-face {
  font-family: "Poppins-Regular";
  src: url("../fonts/poppins/Poppins-Regular.ttf");
}
@font-face {
  font-family: "Poppins-Medium";
  src: url("../fonts/poppins/Poppins-Medium.ttf");
}
header {
  position: fixed;
  top: 0;
  z-index: 1000;
  background-color: transparent;
  width: 100%;
  z-index: 9999;
  min-height: 99px;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header img {
  height: 30px;
  /* margin-left: 1%; */
  /* margin-top: 1%; */
}

.logo-image {
  height: 48px;
}

nav ul {
  display: flex;
  align-items: center;
  list-style-type: none;
  padding: 20px;
  margin-top: 1%;
  flex-wrap: wrap;
}

nav ul li {
  margin-right: 20px;
  /* margin-bottom: 10px; */
  font-size: 16px;
}

.header.scrolled {
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #000;
}

.header.scrolled nav li a {
  color: #000;
}

.header.scrolled button.login {
  color: #000;
  border-color: #000;
}

@media (max-width: 600px) {
  nav ul {
    justify-content: center;
  }
  nav ul li {
    margin-right: 10px;
  }
}
.hero {
  display: flex;
  position: relative;
  min-height: 794px;
  padding-top: 88px;
  padding-bottom: 24px;
}

@media screen and (max-width: 1280px) {
  .hero {
    height: auto;
  }
}
@media screen and (max-width: 1280px) {
  .hero {
    padding-top: 131px;
    padding-bottom: 19px;
  }
}
@media screen and (max-width: 768px) {
  .hero {
    min-height: auto;
  }
}
.hero-title-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 736px;
  width: 100%;
  transform: translateY(-25px);
}

@media screen and (max-width: 1280px) {
  .hero-title-wrapper {
    max-width: 860px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .hero-title-wrapper {
    transform: translateY(0px);
  }
}
.hero .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-icon-down {
  display: none;
}
@media screen and (max-width: 767px) {
  .hero-icon-down {
    display: inline-block;
  }
}

.hero .stop-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.hero .stop-input {
  margin-bottom: 0px;
}

.hero .delete-stop-btn {
  background: transparent;
  width: auto;
  height: auto;
  padding: 0;
  margin-right: 0px;
  margin-left: 12px;
}

.hero .stop-input-group {
  position: relative;
  width: 100%;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.loading-gif {
  width: 10%;
  min-width: 100px;
}

.spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #ef3f5a;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.suggestions {
  border: 1px solid #ccc;
  max-height: 150px;
  overflow-y: auto;
  position: absolute;
  background-color: #fff;
  width: 100%;
  z-index: 1000;
  top: 100%;
}

.suggestion-item {
  padding: 10px;
  cursor: pointer;
}

.suggestion-item:hover {
  background-color: #f0f0f0;
}

.navbar-button {
  font-family: "Poppins-Regular";
  background-color: #d63b54; /* Adjust color as needed */
  color: white;
  border: 1px solid #d63b54;
  padding: 10px 39.5px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
  width: 100%;
  margin-top: -5px;
  height: 56px;
  text-transform: none;
}

.navbar-button.login {
  border-color: #ffffff;
  background-color: transparent;
}

.navbar-button.login:hover {
  background-color: #ffffff; /* Adjust hover color */
  color: #000; /* Adjust text color on hover */
}

.signout-button:hover {
  background-color: #d83450; /* Adjust hover color */
}

/* Modal Styles */
#subscriptionModal.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5); /* Black with opacity */
}

#subscriptionModal.modal.show {
  display: block;
}

#subscriptionModal .modal-content {
  position: absolute;
  background-color: #fefefe;
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Adjust as needed */
  max-width: 500px; /* Maximum width */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Optional shadow */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#subscriptionModal .close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  position: absolute; /* Position it in the modal */
  top: 10px;
  right: 20px;
  cursor: pointer;
}

#subscriptionModal .close:hover,
#subscriptionModal .close:focus {
  color: black;
  text-decoration: none;
}

#subscriptionModal .subscription-iframe {
  width: 100%;
  height: 70vh;
  border: none;
}

/* Responsive styles for hamburger menu and mobile nav */
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}
.hamburger::after {
  display: none;
}

#mobile-nav {
  flex-direction: row;
  align-items: flex-start;
}

#mobile-nav.show {
  display: flex;
}

.header-name-menu {
  display: none;
  opacity: 0;
}

@media (max-width: 1280px) {
  .hamburger {
    display: flex;
    /* width: 3rem; */
    background: none !important;
    align-items: center;
    gap: 10px;
    margin: 0;
    width: auto;
    color: #000;
    font-family: "Poppins-Regular";
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    padding: 0;
  }
  .hamburger img {
    margin: 0;
  }
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  nav ul {
    flex-direction: column;
    padding: 10px;
    /* background-color: #ef3f5a; */
    width: 100%;
  }
  nav ul li {
    margin: 0;
  }
  nav ul li a {
    width: 100%;
  }
  .header-name-menu {
    display: flex;
    opacity: 0;
  }
  .header-name-menu.show {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .hamburger {
    background: none !important;
  }
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  nav ul {
    flex-direction: column;
    padding: 10px;
    /* background-color: #ef3f5a; */
    width: 100%;
  }
  nav ul li {
    margin: 0;
  }
}
/* Extra styling for multi-stop area */
#stops-container {
  margin: 10px 0;
}

.stop-input {
  position: relative; /* Helps position .suggestions absolutely under input */
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px; /* space between input & button */
}

.remove-stop-btn {
  background-color: #ccc;
  border: none;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  margin-top: 0px;
}

.remove-stop-btn:hover {
  background-color: #bbb;
}

.add-stop-text {
  color: grey;
  cursor: pointer;
  font-weight: bold;
  display: inline-block;
  margin-top: 0px;
}

.button-container {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.who-we-are {
  padding: 71px 0;
}

.who-we-are-container {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  align-items: center;
  gap: 24px;
}

.who-we-are-subtitle {
  margin-bottom: 5px;
  display: inline-block;
}

.who-we-are-title {
  line-height: 60px;
  margin-bottom: 30px;
}

.who-we-are-description {
  line-height: 26px;
  color: #000000;
}

.who-we-are-description p:first-child {
  margin-bottom: 15px;
}

.who-we-are-right-side {
  position: relative;
}

.who-we-are-video {
  height: 364px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  overflow: hidden;
}

.who-we-are-video-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  margin-top: 0;
  background-color: #fff;
  border-radius: 100%;
  width: 56px;
  height: 56px;
}
.who-we-are-video-button:hover {
  background-color: #fff;
}
.who-we-are-video-button::after {
  content: "";
  display: none;
}

.who-we-are-video-button.hidden {
  display: none;
}

@media screen and (max-width: 1023.98px) {
  .who-we-are-container {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767.98px) {
  .who-we-are {
    padding: 20px 0;
  }
  .who-we-are-title {
    line-height: 33px;
    margin-bottom: 32px;
  }
  .who-we-are-description {
    line-height: 19.3px;
  }
}
@media screen and (max-width: 471.98px) {
  .who-we-are-video {
    height: 178px;
  }
}
.how-it-works {
  padding: 77px 0;
}

.how-it-works-title {
  max-width: 622px;
  margin-bottom: 52px;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.how-it-works-grid-item {
  display: flex;
  align-items: center;
  padding: 24px;
  background-color: #fafafa;
  border-radius: 4px;
  gap: 23px;
}

.how-it-works-grid-item-index {
  font-family: "Poppins-Regular";
  font-weight: 500;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #d63b54;
  width: 36px;
  display: inline-block;
}

.how-it-works-grid-item-title {
  font-family: "Poppins-Regular";
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: normal;
  color: #000000;
  margin-bottom: 16px;
  text-transform: none;
}

.how-it-works-grid-item-description {
  font-family: "Poppins-Regular";
  font-weight: 400;
  font-size: 18px;
  line-height: 141%;
  letter-spacing: 0%;
}

.how-it-works-buttons-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.how-it-works-button {
  height: 56px;
  padding: 0 26px;
}

.how-it-works-button-outline {
  background-color: transparent;
  border: 1px solid #6b7c5d;
  color: #000000;
  gap: 16px;
  height: 56px;
  padding: 0 21px;
}

.how-it-works-button-outline:hover {
  background-color: transparent;
}

@media screen and (max-width: 1023.98px) {
  .how-it-works-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 767.98px) {
  .how-it-works {
    padding: 39px 0;
  }
  .how-it-works-title {
    margin-bottom: 44px;
  }
  .how-it-works-grid {
    gap: 16px;
    margin-bottom: 28px;
  }
  .how-it-works-grid-item {
    padding: 16px;
    gap: 40px;
  }
  .how-it-works-grid-item-title {
    font-family: "Poppins-Medium";
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    margin-bottom: 8px;
  }
  .how-it-works-grid-item-description {
    font-family: "Poppins-Regular";
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
  }
  .how-it-works-grid-item-index {
    font-family: "Poppins-Regular";
    font-weight: 400;
    font-size: 40px;
    line-height: 150%;
    width: 26px;
  }
  .how-it-works-buttons-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .how-it-works-buttons-wrapper button {
    height: 48px;
  }
}
.features {
  padding: 72px 0;
}

.features-title {
  line-height: 61px;
  margin-bottom: 24px;
}

.features-description {
  font-family: "Poppins-Regular";
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #000000;
  max-width: 719px;
  margin-bottom: 39px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 27px;
}

.features-grid-item {
  background: #fafafa;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.features-grid-item-image {
  display: inline-block;
  margin-bottom: 32px;
}

.features-grid-item-title {
  font-family: "Poppins-Medium";
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: normal;
  color: #000000;
  text-transform: none;
  margin-bottom: 8px;
}

.features-grid-item-description {
  font-family: "Poppins-Regular";
  font-weight: 400;
  font-size: 18px;
  line-height: 131%;
  letter-spacing: 0%;
}

@media screen and (max-width: 1023.98px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767.98px) {
  .features {
    padding: 43px 0;
  }
  .features-title {
    line-height: 37px;
  }
  .features-title br {
    display: none;
  }
  .features-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
  .features-description {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 24px;
  }
  .features-grid-item {
    min-height: 357px;
  }
  .features-grid-item-image {
    width: 48px;
    height: 48px;
    object-fit: cover;
    margin-bottom: 32px;
  }
  .features-grid-item-title {
    font-size: 18px;
  }
  .features-grid-item-description {
    font-size: 14px;
    line-height: 148%;
  }
}
.faq {
  padding: 111px 0 72px;
}

.faq-container {
  display: grid;
  grid-template-columns: minmax(200px, 357px) minmax(300px, 1fr);
  gap: 85px;
}

.faq-subtitle {
  margin-bottom: 6px;
  display: inline-block;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-accordion-question {
  min-height: 68px;
  padding: 16px;
  background: #f8f8f8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Poppins-Medium";
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  color: #000000;
  border-radius: 4px;
}

.faq-accordion-question-icon {
  width: 16px;
  height: 22px;
  transform: rotateZ(180deg);
  transition: transform 0.3s ease;
}

.faq-accordion-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms ease;
  pointer-events: none;
  touch-action: none;
  font-family: "Poppins-Regular";
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  line-height: 26px;
  color: #000000;
}

.faq-accordion-answer-content {
  overflow: hidden;
}

.faq-accordion-answer-content p {
  margin-top: 4px;
  padding: 16px;
  background-color: #f8f8f8;
  border-radius: 4px;
}

.faq-accordion-item.active {
  grid-template-rows: auto 1fr;
}

.faq-accordion-item.active .faq-accordion-answer {
  grid-template-rows: 1fr;
}

.faq-accordion-item.active .faq-accordion-question-icon {
  transform: rotateZ(0deg);
}

.faq-accordion-item.active .faq-accordion-question,
.faq-accordion-item.active .faq-accordion-answer-content p {
  background: #f2f1f6;
}

@media screen and (max-width: 1279.98px) {
  .faq-container {
    grid-template-columns: 220px minmax(300px, 1fr);
    gap: 16px;
  }
}
@media screen and (max-width: 767.98px) {
  .faq {
    padding: 38px 0;
  }
  .faq-subtitle {
    margin-bottom: 2px;
  }
  .faq-container {
    grid-template-columns: 1fr;
    gap: 29px;
  }
  .faq-accordion-question {
    font-family: "Poppins-Regular";
    font-weight: 400;
    font-size: 14px;
    line-height: 145%;
    min-height: 95px;
    padding: 16px;
  }
  .faq-accordion-answer {
    font-size: 14px;
    line-height: 21px;
  }
}
.search-modal .instruction {
  align-self: stretch;
  color: #d63b54;
  font-family: "Poppins-Regular";
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}

.search-modal .instruction a {
  text-decoration: none;
}

.inner.search-modal {
  right: 33px;
  width: 524px;
}

.form-row__title {
  color: #000;
  font-family: "Poppins-Medium";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: -2px;
}

.form-wrapper label {
  color: #000;
  font-family: "Poppins-Medium";
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.form-control {
  padding: 0 16px;
  border-radius: 4px;
  border: 1px solid #A5A5A5;
  height: 44px;
  color: #232323;
  font-size: 16px;
}
.form-control::placeholder {
  color: #A5A5A5;
  font-size: 16px;
  line-height: 100%;
}

.inner .form-row {
  margin-top: 0;
}

.inner .form-row .form-wrapper:first-child {
  margin-right: 15px;
}

.inner .form-control {
  border: 1px solid #b4b4b4;
  border-radius: 4px;
}

.inner .form-control::placeholder {
  color: #858585;
  font-family: "Poppins-Regular";
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.inner .add-stop-text {
  margin-top: 15px;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #282828;
  font-family: "Poppins-Medium";
  font-size: 16px;
  font-weight: 500;
}

.inner .form-wrapper label {
  color: #000;
  font-family: "Poppins-Medium";
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.inner .form-wrapper select::placeholder {
  color: #858585;
  font-family: "Poppins-Regular";
  font-size: 14px;
  font-weight: 400;
}

.inner .form-wrapper select {
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='20' viewBox='0 0 21 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.66644 6.45834C4.54291 6.45845 4.42218 6.49517 4.3195 6.56385C4.21682 6.63253 4.1368 6.7301 4.08954 6.84424C4.04228 6.95838 4.0299 7.08396 4.05397 7.20512C4.07804 7.32629 4.13748 7.4376 4.22478 7.52501L10.0581 13.3583C10.1753 13.4754 10.3342 13.5411 10.4998 13.5411C10.6654 13.5411 10.8243 13.4754 10.9414 13.3583L16.7748 7.52501C16.8621 7.4376 16.9215 7.32629 16.9456 7.20512C16.9697 7.08396 16.9573 6.95838 16.91 6.84424C16.8628 6.7301 16.7827 6.63253 16.6801 6.56385C16.5774 6.49517 16.4566 6.45845 16.3331 6.45834H4.66644Z' fill='%23282828'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: 193px;
  background-size: 20px;
}

.inner .checkmark {
  width: 18px;
  height: 18px;
  border: 1px solid #8c8c8c;
  background-color: #fff;
  margin-left: 3px;
}

.inner .checkbox {
  padding-left: 33px;
}

.inner .form-row.last {
  margin-bottom: 16px;
}

.inner .checkbox label {
  color: #000;
  font-family: "Poppins-Regular";
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.checkbox-container {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 8px;
}

.inner .button-container {
  margin-top: 23px;
}

.inner .button-container {
  justify-content: flex-start;
}

.button-container button {
  /* max-width: 200px; */
  width: 70%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.button-container button span {
  color: #fff;
  text-align: center;
  font-family: "Poppins-Medium";
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0;
}

.footer {
  background-color: #282828;
}

.footer .container {
  padding: 33px 33px 40px;
}

.footer__menu-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 75px;
}

.footer__list {
  display: flex;
  gap: 76px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__lower-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer__logo img {
  max-width: 100%;
}

.footer__links a {
  color: #d7d7d7;
  font-family: "Poppins-Medium";
  font-size: 18px;
  font-weight: 500;
  line-height: 135%;
}

.footer__lower-list {
  display: flex;
  gap: 73px;
  padding-left: 12px;
}

.footer__lower-list a {
  color: #a2a2a2;
  text-align: center;
  font-family: "Poppins-Regular";
  font-size: 14px;
  font-weight: 400;
  line-height: 135%;
  text-decoration-line: underline;
}

.footer__title {
  color: #ececec;
  text-align: center;
  font-family: "Poppins-Regular";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 14px;
  text-align: start;
}

.footer__buttons {
  display: flex;
  gap: 16px;
}

.footer__button {
  display: inline-block;
  line-height: 55px;
  min-width: 161px;
  text-align: center;
  color: #fff;
  text-align: center;
  font-family: "Poppins-Medium";
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.footer__button--red {
  border: 1px solid #d63b54;
  background-color: #d63b54;
}

.footer__button--red:hover {
  background-color: transparent;
}

.footer__button--transparent {
  border: 1px solid #fff;
}

footer__button--transparent:hover {
  background-color: #fff;
  color: #d63b54;
}

@media (max-width: 1320px) {
  .footer__list {
    gap: 30px;
  }
}
@media (max-width: 1150px) {
  .footer__menu-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  .footer__list {
    justify-content: space-between;
    width: 100%;
  }
}
@media (max-width: 920px) {
  .footer__list {
    flex-direction: column;
    gap: 24px;
  }
  .footer__links {
    gap: 24px;
  }
  .footer__links a {
    font-size: 20px;
  }
  .footer__logo {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    padding-bottom: 32px;
  }
  .footer__logo::after {
    content: "";
    background: rgba(255, 255, 255, 0.42);
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .footer__lower-container {
    flex-direction: column;
    align-items: center;
    gap: 56px;
  }
  .footer__lower-list {
    padding-left: 0;
    order: 1;
  }
}
@media (max-width: 768px) {
  .footer__container-buttons {
    width: 100%;
  }
  .footer__button {
    width: 100%;
  }
  .footer .container {
    padding: 40px 16px 16px;
  }
  .footer__lower-list {
    gap: 0;
    justify-content: space-between;
    width: 100%;
    padding: 0 13px 0 7px;
  }
  .footer__title {
    text-align: left;
    letter-spacing: 1px;
  }
  .footer__buttons {
    flex-direction: column;
  }
  .footer__menu-container {
    gap: 34px;
  }
  .footer__links {
    gap: 27px;
  }
  .footer__menu-container {
    margin-bottom: 32px;
  }
  .footer__lower-container {
    gap: 53px;
  }
}
#multiStepFormContainer {
  position: fixed;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  width: 100%;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  padding: 16px;
  transition: transform 0.4s ease;
  z-index: 1000;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.multiStepForm {
  padding: 0px !important;
}

.multiStepForm-swap {
  height: 5px;
  width: 54px;
  border-radius: 100px;
}

#multiStepFormContainer.active {
  transform: translateY(0%);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.step-buttons {
  margin-top: 20px;
}

button {
  padding: 8px 16px;
  margin-right: 8px;
  border: none;
  /* background-color: #007bff; */
  color: white;
  cursor: pointer;
  border-radius: 4px;
}

button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

#openFormBtn {
  /* position: fixed; */
  /* bottom: 20px; */
  /* right: 20px; */
  /* background: #28a745; */
}

.multiStepForm-closeButton {
  background-color: transparent;
  width: auto;
}

.hero-multiStepFormContainer {
  max-height: calc(100vh - 70px);
  overflow: auto;
}

.multiStepForm-swap {
  background-color: #a5a5a5;
  margin: 0 auto 25px;
}

.multiStepForm-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.multiStepForm-title {
  font-family: "Poppins-Medium";
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: #000;
}

.multiStepForm-closeButton {
  position: absolute;
  right: 0;
  padding: 0;
  margin: 0;
  justify-content: flex-end;
}
.multiStepForm-closeButton:hover {
  background-color: transparent;
}
.multiStepForm-closeButton:after {
  display: none;
}

.multiStepForm-progress-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 12px;
  gap: 8px;
  margin-bottom: 16px;
}

.multiStepForm-progress-bar-item {
  background: #f3d7d7;
  transition: background-color 0.3s ease;
}
.multiStepForm-progress-bar-item:nth-child(1) {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.multiStepForm-progress-bar-item:nth-child(3) {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.multiStepForm-progress-bar-item.active {
  background-color: #d63b54;
}

.multiStepForm-description {
  font-family: "Poppins-Regular";
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #000;
  margin-bottom: 32px;
}

.multiStepForm-description a {
  font-family: "Poppins-Medium";
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-offset: 0%;
  text-decoration-thickness: 0%;
  color: #d63b54;
}

.multiStepForm-h3 {
  font-family: "Poppins-Medium";
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: normal;
  color: #000;
  margin-bottom: 24px;
  text-transform: none;
}

.multiStepForm-formStep .form-wrapper {
  margin-bottom: 16px;
}

.multiStepForm-formStep .add-stop-text {
  display: flex;
  align-items: center;
  font-family: "Poppins-Medium";
  font-weight: 500;
  font-size: 16px;
  gap: 8px;
  margin-bottom: 32px;
}

.multiStepForm-formStep input,
.multiStepForm-formStep select {
  border-radius: 4px;
  font-family: "Poppins-Regular";
  font-weight: 400;
  font-size: 16px;
  /* padding: 16px; */
  min-height: 44px;
}

.multiStepForm-formStep .checkbox-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: "Poppins-Regular";
  font-weight: 400;
  font-size: 14px;
  color: #000;
  margin-bottom: 32px;
}

.multiStepForm-formStep .checkbox {
  display: flex;
  align-items: center;
  padding-left: 34px;
}

.multiStepForm-formStep .checkmark {
  position: absolute;
  top: 2.25px;
  left: 3.75px;
  width: 16.5px;
  height: 16.5px;
  border: 1px solid #66666d;
  border-radius: 2px;
  background-color: transparent;
  font-family: Material-Design-Iconic-Font;
  font-size: 10px;
  font-weight: bolder;
}

.multiStepForm-formStep .description {
  font-family: "Poppins-Regular";
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #000;
}

.step-buttons button {
  display: flex;
  align-items: center;
  gap: 16px;
}

.spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spinner-overlay.hidden {
  display: none !important;
}
.spinner-overlay .spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=homepage.css.map */
