@charset "UTF-8";
.offer-item {
  border-radius: 10px;
  padding: 20px;
  box-shadow: 1px 1px 23px rgba(128, 128, 128, 0.4705882353);
}
.offer-item--header {
  margin-bottom: 20px;
}
.offer-item--package-name {
  margin-bottom: 20px;
}
.offer-item .offer-title {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
}
.offer-item--title {
  display: flex;
  gap: 10px;
  align-items: center;
}
.offer-item--eye-brow {
  margin: 0;
  font-size: 0.9rem;
  font-weight: normal;
  line-height: 2rem;
  margin-bottom: 10px;
  margin-top: -15px;
}
.offer-item--price {
  font-size: 1.3rem;
  font-weight: 700;
}
.offer-item--payment-option {
  font-size: 0.9rem;
  color: rgb(85, 85, 85);
}
.offer-item--read-more-btn {
  display: flex;
  gap: 10px;
  color: #f54a00;
  text-decoration: none;
  align-items: center;
  margin-top: 20px;
  font-weight: 600;
}
.offer-item--read-more-btn:hover {
  color: #f54a00;
}
.offer-item--read-more-btn::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../images/caret.svg);
  background-position: center;
  background-size: contain;
  display: block;
  background-repeat: no-repeat;
}

.offer-suggestion {
  border: 3px solid #ff5a00;
  border-radius: 26px;
  padding: 32px 32px 26px;
  background: linear-gradient(90deg, #fff9f1 0%, #fff1de 100%);
  width: 100%;
}
.offer-suggestion--package-name {
  display: inline-flex;
  margin-bottom: 22px;
  color: white !important;
  background: #f54a00 !important;
}
.offer-suggestion--title {
  margin: 0 0 8px;
  font-size: 2rem;
  line-height: 1.05;
  color: #13254b;
}
.offer-suggestion--eye-brow {
  margin-bottom: 26px;
  font-size: 1rem;
  line-height: 1.3;
  color: #304a73;
}
.offer-suggestion--price {
  margin-bottom: 28px;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  color: #ff5a00;
}
.offer-suggestion--services {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.offer-suggestion--services li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #304a73;
  font-size: 1rem;
  line-height: 1.4;
}
.offer-suggestion--services li::before {
  content: "✓";
  color: #ff5a00;
  font-weight: 700;
}
.offer-suggestion--read-more-btn {
  display: flex;
  justify-content: center;
  gap: 12px;
  color: #ff5a00;
  text-decoration: none;
  align-items: center;
  margin-top: 26px;
  font-weight: 600;
  font-size: 1rem;
}
.offer-suggestion--read-more-btn:hover {
  color: #ff5a00;
}
.offer-suggestion--read-more-btn::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../images/caret.svg);
  background-position: center;
  background-size: contain;
  display: block;
  background-repeat: no-repeat;
}

@media (max-width: 640px) {
  .offer-suggestion {
    padding: 24px 18px 20px;
    border-radius: 22px;
  }
  .offer-suggestion--package-name {
    margin-bottom: 16px;
  }
  .offer-suggestion--title {
    font-size: 1.55rem;
    line-height: 1.15;
  }
  .offer-suggestion--eye-brow {
    margin-bottom: 18px;
    font-size: 0.95rem;
  }
  .offer-suggestion--price {
    margin-bottom: 20px;
    font-size: 1.7rem;
  }
  .offer-suggestion--services {
    gap: 12px;
  }
  .offer-suggestion--services li {
    gap: 10px;
    font-size: 0.95rem;
  }
  .offer-suggestion--read-more-btn {
    justify-content: flex-start;
    margin-top: 22px;
    font-size: 0.95rem;
  }
}

.offer-page--header {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  z-index: -1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.offer-page--header::before {
  content: "";
  background: rgba(0, 0, 0, 0.4235294118);
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.offer-page--header--wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-direction: column;
}
.offer-page--header--wrapper--offer-name {
  font-size: 3rem;
  color: white;
  margin: 0;
}
.offer-page--body {
  max-width: var(--max-width);
  margin: 0 auto;
}
.offer-page--body--back-btn {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin: 20px 0;
}
.offer-page--body--back-btn::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../images/arrow-left.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.offer-page--body-content-wrapper {
  display: flex;
  gap: 20px;
}
.offer-page--body-content-wrapper-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.offer-page--body .offer-page--description--header {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.offer-page--body .offer-page--description--header--eye-brow {
  display: flex;
  gap: 10px;
}
.offer-page--body .offer-page--description--header--promise {
  font-size: 1rem;
}
.offer-page--body .offer-page--description--services .services-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.offer-page--body .offer-page--description--services .services-wrapper .services--title {
  font-size: 1.2rem;
  font-weight: 600;
}
.offer-page--body .offer-page--description--services .services-wrapper .service--title::before {
  background-image: url(../images/caret-2.svg);
}
.offer-page--body .offer-page--description--how-its-works .process {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.offer-page--body .offer-page--description--how-its-works .process-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.offer-page--body .offer-page--description--how-its-works .process-wrapper .step-item {
  display: flex;
  gap: 20px;
  align-items: center;
}
.offer-page--body .offer-page--description--how-its-works .process-wrapper .step-item--number {
  background: #f84b00;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  font-weight: 600;
}
.offer-page--body .offer-page--description--how-its-works .process-wrapper .step-item--text {
  display: flex;
  flex-direction: column;
}
.offer-page--body .offer-page--description--how-its-works .process-wrapper .step-item--text-title {
  font-weight: 700;
}
.offer-page--body .offer-page--description--how-its-works .process-wrapper .step-item--text-description {
  font-size: 0.9rem;
  color: rgb(43, 42, 42);
}
.offer-page--body .offer-page--side {
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.offer-page--body .offer-page--side--price {
  align-self: flex-start;
  border: 2px solid #005cf5;
  width: 100%;
}
.offer-page--body .offer-page--side--price--header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
}
.offer-page--body .offer-page--side--price--header-from {
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  color: #333;
}
.offer-page--body .offer-page--side--price--header-price {
  font-size: 1.6rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.offer-page--body .offer-page--side--price--header-payment-options {
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  color: #333;
}
.offer-page--body .offer-page--side--price--header-cta {
  background: #005cf5;
  color: white;
  border-radius: 10px;
  padding: 6px 20px;
  font-weight: 600;
  display: flex;
  text-decoration: none;
  justify-content: center;
}
.offer-page--body .offer-page--side--price--reassurance {
  padding-top: 15px;
}
.offer-page--body .offer-page--side--question {
  background: linear-gradient(90deg, #fbefd8, #ffedd5);
  padding: 20px;
  border-radius: 20px;
}
.offer-page--body .offer-page--side--question-title {
  font-size: 1rem;
  font-weight: 600;
}
.offer-page--body .offer-page--side--question-text {
  font-size: 0.9rem;
}
.offer-page--body .offer-page--side--question-cta {
  color: #f54a00;
  display: flex;
  gap: 10px;
  text-decoration: none;
  align-items: center;
  font-weight: bold;
  font-size: 0.9rem;
}
.offer-page--body .offer-page--side--question-cta::after {
  content: "";
  width: 15px;
  height: 15px;
  display: block;
  background-image: url(../images/caret.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.offer-page--other-offers {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.offer-page--other-offers-title {
  display: flex;
  justify-content: center;
  font-size: 2rem;
  margin: 0;
}
.offer-page--other-offers-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.offer-page--examples--header {
  display: flex;
  flex-direction: column;
}
.offer-page--examples--list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.v-offer-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
}

.v-offer-box {
  padding: 20px;
  box-shadow: 1px 1px 23px rgba(128, 128, 128, 0.4705882353);
  border-radius: 20px;
}

.v-ai-mention {
  background: #e5e5ff;
  padding: 0px 7px;
  border-radius: 10px;
  align-self: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.v-package-name {
  font-size: 0.9rem;
  color: #f54a00;
  font-weight: 600;
  background: #f2f1f7;
  padding: 2px 20px;
  border-radius: 20px;
  display: inline-block;
}

.v-services {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v-services .service {
  background: #f2f1f7;
  border-radius: 10px;
  padding: 10px;
}
.v-services .service--title {
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
  display: flex;
  gap: 10px;
}
.v-services .service--title::before {
  content: "";
  width: 15px;
  height: 15px;
  background-image: url(../images/caret.svg);
  background-position: center;
  background-size: contain;
  display: block;
  margin-top: 5px;
  background-repeat: no-repeat;
}
.v-services .service ul {
  padding-left: 10px;
}
.v-services .service ul li {
  font-size: 0.9rem;
}

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