@charset "UTF-8";
:root {
  --primary-color: #E96D14;
  --primary-light: #D9D9D9;
  --text-color: #323232;
  --primary-text: #6F6C90;
  --section-gap: 80px;
  --white: #ffffff;
  --light-bg: #f8f7ff;
  --score-safe: #4CAF50;
  --score-caution: #FF9800;
  --score-not-match: #f44336;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--text-color);
}

p {
  color: var(--primary-text);
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

.-mt-3 {
  margin-top: -24px;
}

.section-spacing {
  padding: var(--section-gap) 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--primary-text);
  max-width: 800px;
  margin: 0 auto;
}

.btn-primary {
  background-color: var(--primary-color);
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 1rem;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--white);
}
.btn-primary:hover {
  background-color: rgb(186.0316205534, 87.0276679842, 15.9683794466);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 109, 20, 0.3);
  color: var(--white);
}
.btn-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(233, 109, 20, 0.25);
  background-color: var(--primary-color);
  color: var(--white);
}
.btn-primary:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(233, 180, 90, 0.5);
}

.section-title {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 60px;
  letter-spacing: -5%;
  text-align: center;
}

.section-subtitle {
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--primary-text);
}

.navbar {
  padding: 1.5rem 0;
  background: transparent;
  transition: all 0.3s ease;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo {
  height: 50px;
}
@media (max-width: 576px) {
  .navbar .logo {
    height: 40px;
  }
}

.hero-section {
  padding: 140px 0 80px;
  background: url(./images/banner-bg.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .hero-section {
    padding: 120px 0 60px;
  }
}
.hero-section .hero-content {
  padding-right: 2rem;
}
@media (max-width: 991px) {
  .hero-section .hero-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}
.hero-section .hero-title {
  font-size: 60px;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--primary-color);
}
@media (max-width: 991px) {
  .hero-section .hero-title {
    font-size: 2.3rem;
  }
}
@media (max-width: 576px) {
  .hero-section .hero-title {
    font-size: 1.9rem;
  }
}
.hero-section .hero-subtitle {
  font-size: 1.25rem;
  color: var(--primary-text);
  margin-bottom: 2rem;
  line-height: 1.6;
}
@media (max-width: 576px) {
  .hero-section .hero-subtitle {
    font-size: 1.125rem;
  }
}
.hero-section .btn-primary {
  margin-bottom: 1rem;
  gap: 0.5rem;
}
.hero-section .btn-primary .arrow-icon {
  transition: transform 0.3s ease;
}
.hero-section .btn-primary:hover .arrow-icon {
  transform: translateX(4px);
}
@media (max-width: 567px) {
  .hero-section .btn-primary {
    width: 100%;
    padding: 12px 13px;
  }
}
.hero-section .hero-note {
  font-size: 0.95rem;
  color: var(--primary-text);
  margin-top: 0.5rem;
}
.hero-section .hero-image-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.hero-section .hero-image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
@media (max-width: 991px) {
  .hero-section .hero-image {
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .hero-section .hero-image-wrapper {
    align-items: center;
  }
}

.why-exhausting-section {
  background-color: var(--white);
}
.why-exhausting-section .exhausting-card {
  padding: 2rem 1.5rem;
  transition: transform 0.3s ease;
}
.why-exhausting-section .exhausting-card:hover {
  transform: translateY(-5px);
}
.why-exhausting-section .exhausting-card:hover .card-icon-wrapper {
  transform: scale(1.05);
}
.why-exhausting-section .exhausting-card .card-icon-wrapper {
  margin: 0 auto 2rem;
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.why-exhausting-section .exhausting-card .card-icon {
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}
.why-exhausting-section .exhausting-card .card-title {
  font-size: 1.5rem;
  font-weight: normal;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.why-exhausting-section .exhausting-card .card-text {
  font-size: 1rem;
  color: var(--text-text);
  line-height: 1.6;
}

.built-for-section {
  background-color: var(--white);
}
.built-for-section .allergen-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
}
.built-for-section .allergen-tags .allergen-tag {
  background-color: var(--light-bg);
  color: var(--primary-color);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.built-for-section .allergen-tags .allergen-tag:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}
.built-for-section .stat-text {
  font-size: 1.125rem;
  color: var(--primary-text);
  max-width: 600px;
  margin: 2rem auto 0;
}

.why-section {
  background-color: var(--light-bg);
}
.why-section .feature-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.why-section .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.why-section .feature-card .feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}
.why-section .feature-card .feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-color);
}
.why-section .feature-card .feature-text {
  color: var(--primary-text);
  line-height: 1.7;
}

.how-it-works-section {
  background-color: var(--white);
}
.how-it-works-section .how-section {
  position: relative;
}
.how-it-works-section .how-section::before {
  content: "";
  position: absolute;
  top: 92px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: #D9DBE9;
  z-index: 0;
}
@media (max-width: 991px) {
  .how-it-works-section .how-section::before {
    display: none;
  }
}
.how-it-works-section .step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.how-it-works-section .step-card .step-number {
  width: 90px;
  height: 90px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  border: 10px solid #FFE4CC;
  position: relative;
  z-index: 2;
}
.how-it-works-section .step-card .step-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
@media (max-width: 992px) {
  .how-it-works-section .step-card .step-label {
    margin-bottom: 80px;
    position: relative;
  }
  .how-it-works-section .step-card .step-label:after {
    content: "";
    position: absolute;
    left: 50%;
    top: calc(100% + 10px);
    height: 60px;
    width: 1px;
    background: #D9DBE9;
  }
}
.how-it-works-section .step-card .step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
}
.how-it-works-section .step-card .step-text {
  color: var(--primary-text);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.how-it-works-section .step-card .step-image {
  border-radius: 15px;
  margin-bottom: 1.5rem;
}
.how-it-works-section .step-card .score-examples {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.how-it-works-section .step-card .score-examples .score-badge {
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 100px;
}
.how-it-works-section .step-card .score-examples .score-badge .score {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.how-it-works-section .step-card .score-examples .score-badge .label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
}
.how-it-works-section .step-card .score-examples .score-badge.safe .score {
  color: var(--score-safe);
}
.how-it-works-section .step-card .score-examples .score-badge.caution .score {
  color: var(--score-caution);
}
.how-it-works-section .step-card .score-examples .score-badge.not-match .score {
  color: var(--score-not-match);
}

.data-section {
  background-color: var(--light-bg);
}
.data-section .data-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}
.data-section .data-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.data-section .data-card .data-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}
.data-section .data-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}
.data-section .data-card p {
  font-size: 0.95rem;
  color: var(--primary-text);
  margin: 0;
}
.data-section .product-showcase {
  max-width: 600px;
  margin: 3rem auto 0;
  border-radius: 20px;
}

.about-section {
  background-color: var(--white);
}
.about-section .about-section-title01,
.about-section .about-section-title02 {
  font-weight: 600;
  font-size: 80px;
  line-height: 80px;
  letter-spacing: -5%;
}
@media (max-width: 768px) {
  .about-section .about-section-title01,
  .about-section .about-section-title02 {
    font-size: 1.75rem;
    line-height: inherit;
  }
}
.about-section .about-section-title01 {
  color: var(--primary-light);
}
.about-section .about-section-title02 {
  color: var(--primary-color);
  font-style: italic;
}
.about-section .founder-card {
  background: var(--light-bg);
  padding: 3rem;
  border-radius: 30px;
  margin-top: 3rem;
}
@media (max-width: 991px) {
  .about-section .founder-card {
    padding: 2rem;
  }
}
.about-section .founder-card .founder-image {
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .about-section .founder-card .founder-image {
    margin-bottom: 2rem;
  }
}
.about-section .founder-card .founder-name {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}
.about-section .founder-card .founder-title {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 2rem;
}
.about-section .founder-card .founder-section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: var(--text-color);
}
.about-section .founder-card .founder-section-title:first-of-type {
  margin-top: 0;
}
.about-section .founder-card .founder-text {
  color: var(--primary-text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.story-section {
  padding: 3rem 0;
}
.story-section .story-divider {
  width: 60px;
  height: 6px;
  border-radius: 4px;
  background-color: var(--primary-color);
  margin-bottom: 20px;
}
.story-section .story-title {
  font-size: 40px;
  font-weight: 400;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .story-section .story-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .story-section .story-title {
    font-size: 2rem;
  }
}
.story-section .story-text {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0%;
  color: var(--primary-text);
}
@media (max-width: 768px) {
  .story-section .story-text {
    font-size: 1rem;
  }
}

.faq-section {
  background-color: var(--white);
}
.faq-section .accordion {
  max-width: 900px;
  margin: 0 auto;
}
.faq-section .accordion .accordion-item {
  border: none;
  background: transparent;
  border-bottom: 1px solid #E0E0E0;
  border-radius: 0;
  margin-bottom: 0;
  overflow: visible;
  box-shadow: none;
}
.faq-section .accordion .accordion-item:last-child {
  border-bottom: none;
}
.faq-section .accordion .accordion-button {
  background: transparent;
  color: var(--primary-text);
  font-weight: 400;
  font-size: 28px;
  padding: 1.5rem 3rem 1.5rem 0;
  border: none;
  box-shadow: none;
}
@media (max-width: 768px) {
  .faq-section .accordion .accordion-button {
    font-size: 18px;
  }
}
.faq-section .accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--primary-color);
  box-shadow: none;
}
.faq-section .accordion .accordion-button:focus {
  box-shadow: none;
  border: none;
}
.faq-section .accordion .accordion-button::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("./images/plus.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.faq-section .accordion .accordion-button:not(.collapsed)::after {
  background-image: url("./images/minus.svg");
  transform: none;
}
.faq-section .accordion .accordion-body {
  padding: 0 0 1.5rem 0;
  color: var(--primary-text);
  line-height: 1.7;
  background: transparent;
  font-size: 16px;
}
.faq-section .accordion .accordion-body p {
  font-size: 16px;
}

.build-section .build-thoughtful {
  margin-top: -250px;
}
@media (max-width: 992px) {
  .build-section .build-thoughtful {
    margin-top: 0;
  }
}
.build-section .build-thoughtful.mobile,
.build-section .build-thoughtful.ipad {
  display: none;
}
.build-section {
  /* Mobile */
}
@media (max-width: 567px) {
  .build-section .build-thoughtful.mobile {
    display: block;
  }
  .build-section .build-thoughtful {
    display: none;
  }
}
.build-section {
  /* iPad */
}
@media (min-width: 768px) and (max-width: 1024px) {
  .build-section .build-thoughtful.ipad {
    display: block;
  }
  .build-section .build-thoughtful {
    display: none;
  }
}

.feature-section {
  background-color: #F7F7F7;
}
.feature-section .feature-label {
  font-weight: 400;
  font-size: 14px;
  line-height: 19.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 12px;
  display: block;
}
.feature-section .feature-content {
  font-weight: 400;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.8px;
  color: #323232;
}
@media (max-width: 991px) {
  .feature-section .feature-content {
    font-size: 18px;
    line-height: inherit;
  }
}

.form-section .section-title {
  font-size: 40px;
}
@media (max-width: 768px) {
  .form-section .section-title {
    font-size: 24px;
  }
}

.footer {
  background-color: #E96D14;
  color: var(--white);
  padding: 4rem 0 24px;
}
.footer .footer-logo {
  height: 40px;
  filter: brightness(0) invert(1);
}
.footer .footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
  max-width: 500px;
}
.footer .footer-links {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .footer .footer-links {
    justify-content: flex-start;
    gap: 8px;
    flex-direction: column;
  }
}
.footer .footer-links .footer-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}
.footer .footer-links .footer-link:hover {
  color: var(--white);
}
.footer .social-links {
  display: flex;
  gap: 40px;
  justify-content: flex-end;
  margin-top: 73px;
}
@media (max-width: 991px) {
  .footer .social-links {
    justify-content: flex-start;
    margin-top: 24px;
  }
}
.footer .social-links .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer .social-links .social-link:hover {
  transform: translateY(-3px);
}
.footer .social-links .social-link img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  text-align: center;
}
.footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
}

.modal .modal-dialog {
  max-width: 600px;
}
.modal .modal-content {
  border-radius: 30px;
  border: none;
  padding: 2rem;
}
@media (max-width: 576px) {
  .modal .modal-content {
    padding: 1.5rem;
  }
}
.modal .modal-header {
  padding: 0;
  margin-bottom: 1rem;
}
.modal .modal-header .btn-close:focus {
  box-shadow: none;
}
.modal .modal-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-color);
}
.modal .thank-you-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
}
.modal .thank-you-text {
  color: var(--text-color);
  text-align: left;
  font-size: 1rem;
}
.modal .what-next {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 20px;
  text-align: left;
}
.modal .what-next .what-next-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.6rem;
}
.modal .what-next .what-next-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.modal .what-next .what-next-list li {
  color: var(--text-color);
  padding-left: 18px;
  position: relative;
}
.modal .what-next .what-next-list li:before {
  content: "●";
  color: var(--primary-color);
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -3px;
}
.modal .what-next .what-next-list li:last-child {
  margin-bottom: 0;
}
.modal .no-spam-text {
  font-style: italic;
  color: var(--primary-text);
  font-size: 0.95rem;
}

.form-label {
  font-weight: 400;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  border-radius: 40px;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e0e0e0;
  font-size: 1rem;
  box-shadow: 0px 2px 12px 0px rgba(20, 20, 43, 0.0784313725);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(126, 87, 254, 0.15);
}

.form-disclaimer {
  font-size: 0.875rem;
  color: var(--primary-text);
  line-height: 1.6;
}
.form-disclaimer a {
  color: var(--text-color) !important;
}
.form-disclaimer a:hover {
  text-decoration: underline;
}

.success-icon svg {
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.checkmark-animate {
  animation: scaleIn 0.6s ease-out;
}

.modal-lg {
  max-width: 800px !important;
}

html {
  scroll-behavior: smooth;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-15 {
  font-size: 15px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-17 {
  font-size: 17px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-19 {
  font-size: 19px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-21 {
  font-size: 21px !important;
}

.fs-22 {
  font-size: 22px !important;
}

.fs-23 {
  font-size: 23px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-25 {
  font-size: 25px !important;
}

.fs-26 {
  font-size: 26px !important;
}

.fs-27 {
  font-size: 27px !important;
}

.fs-28 {
  font-size: 28px !important;
}

.fs-29 {
  font-size: 29px !important;
}

.fs-30 {
  font-size: 30px !important;
}

.fs-31 {
  font-size: 31px !important;
}

.fs-32 {
  font-size: 32px !important;
}

.fs-33 {
  font-size: 33px !important;
}

.fs-34 {
  font-size: 34px !important;
}

.fs-35 {
  font-size: 35px !important;
}

.fs-36 {
  font-size: 36px !important;
}

.fs-37 {
  font-size: 37px !important;
}

.fs-38 {
  font-size: 38px !important;
}

.fs-39 {
  font-size: 39px !important;
}

.fs-40 {
  font-size: 40px !important;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-submit-button {
  position: relative;
  width: -moz-max-content;
  width: max-content;
}

.wpcf7-submit-button:after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../../../../themes/blankslate-child/assets/supplier/images/ArrowRight.svg");
  top: 14px;
  left: 365px;
  z-index: 9;
  background-size: contain;
}

@media (max-width: 768px) {
  :root {
    --section-gap: 12px;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }
  .btn-mobile-hide {
    display: none !important;
  }
  .wpcf7-submit-button:after {
    left: auto;
    right: 10px;
  }
}
@media (max-width: 767px) {
  .mobo-top-space {
    margin-top: 50px;
  }
  .mob-heading-top-space {
    padding-top: 15px;
  }
  .mb-hide-mobile {
    margin-bottom: 0 !important;
  }
  .how-it-works-section .step-card {
    margin-bottom: 35px;
  }
  .why-exhausting-section .exhausting-card {
    padding: 0;
  }
  .why-exhausting-section .exhausting-card .card-icon-wrapper {
    margin: 0;
  }
  .wpcf7-submit-button {
    margin: 0 auto;
  }
  .wpcf7-submit-button .btn-primary {
    font-size: 14px;
  }
  .mb-4.from-bottom-space {
    margin-bottom: 10px !important;
  }
  .hero-section {
    background: none;
  }
  .hide-mobile {
    display: none;
  }
}
.btn-close {
  background: none;
  opacity: 1;
  transition: all ease-in-out 0.3s;
}
.btn-close img {
  width: 16px;
}
.btn-close:hover img {
  opacity: 0.6;
  transition: all ease-in-out 0.3s;
}

@media (max-width: 767px) {
  p br {
    display: none;
  }
}
.choices__inner {
  background: #fff;
  border-radius: 40px;
  padding: 0.69rem 1.25rem;
  border: 2px solid #e0e0e0;
  font-size: 1rem;
  box-shadow: 0px 2px 12px 0px rgba(20, 20, 43, 0.0784313725);
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
}

.is-open .choices__inner {
  border-radius: 40px !important;
}

.is-focused .choices__inner {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(126, 87, 254, 0.15);
}

.choices__input,
.choices__input.is-focus.is-open {
  line-height: 1;
}

.choices__input {
  font-size: 1rem;
  font-weight: 400;
  opacity: 1;
  margin-bottom: 0;
  background: transparent;
}

.choices__list--multiple .choices__item {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.choices__list--multiple .choices__item .choices__button {
  border-left-color: var(--white);
}

.choices__list--dropdown, .choices__list[aria-expanded] {
  border-radius: 20px !important;
}