:root {
  --primary-color: #121744 !important;
  /* A navy color */
  --secondary-color: #f77148 !important;
  /* A orange color */
  --white: #ffffff !important;
  /* A white color */
  --purple: #3d1a91 !important;
  /* A purple color */
  --dark-neutral: #303030 !important;
  /* A dark gray color */
  --gray: #f5f5f5 /* A gray color */;
  --light-purple: #987cdc !important;
}

@font-face {
  font-family: "Proxima Nova Rg";
  src: url("../fonts/ProximaNova-Bold.woff2") format("woff2"),
    url("../fonts/ProximaNova-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Proxima Nova Rg";
  src: url("../fonts/ProximaNova-Regular.woff2") format("woff2"),
    url("../fonts/ProximaNova-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "walrusbold";
  src: url("../fonts/walrus-bold-webfont.woff2") format("woff2"),
    url("../fonts/walrus-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-Black.woff2") format("woff2"),
    url("../fonts/Jost-Black.woff") format("woff");
  font-weight: black;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-Bold.woff2") format("woff2"),
    url("../fonts/Jost-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-Medium.woff2") format("woff2"),
    url("../fonts/Jost-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-Regular.woff2") format("woff2"),
    url("../fonts/Jost-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-SemiBold.woff2") format("woff2"),
    url("../fonts/Jost-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-Light.woff2") format("woff2"),
    url("../fonts/Jost-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "bootstrap-icons";
  src: url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/fonts/bootstrap-icons.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* ✅ ensures text is visible immediately */
}
.fs-16 {
  font-size: 1rem !important;
}

.password-input {
  font-size: 2rem !important;
  height: auto !important;
  padding: 0.5rem 3rem 0.5rem 1.5rem !important;
  line-height: unset;
}

.bg-primary {
  background: var(--primary-color) !important;
}

.bg-purple {
  background: var(--purple) !important;
}

.bg-secondary {
  background: var(--secondary-color) !important;
}

.bg-light-purple {
  background-color: var(--light-purple) !important;
}

.text-purple {
  color: var(--purple);
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-gray {
  color: var(--gray) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.z-index-1 {
  z-index: 1;
}

.fw-600 {
  font-weight: 600 !important;
}

.border-secondary {
  border-color: var(--secondary-color) !important;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  /* Firefox */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "walrusbold";
}
html {
  overflow-x: hidden;
}
body {
  font-family: "Jost";
  background: #eae8fd;
  font-size: 26px;
  line-height: 35px;
  scroll-behavior: smooth;
}

section {
  padding: 140px 0;
  position: relative;
}

.custom-dropdown {
  border-radius: 16px;
  padding: 10px;
  width: 250px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  margin: 0 auto;
}

.custom-dropdown .dropdown-item {
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 500;
  color: #2c2c2c;
  transition: background-color 0.2s;
}

.custom-dropdown .dropdown-item:hover {
  background-color: #eef5ff;
  color: #1d63c1;
}

.custom-dropdown .icon {
  width: 32px;
  height: 32px;
  background-color: #e6f0ff;
  color: #1d63c1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 12px;
  font-size: 16px;
}

.sec-title {
  font-size: 19px;
  letter-spacing: 1px;
  font-weight: 600;
}

.main-tile {
  font-size: 47px;
  line-height: 54px;
  color: var(--purple);
}

.sub-title {
  font-size: 32px;
  line-height: 30px;
  color: var(--purple);
}

.btn-outline-secondary {
  color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  border-width: 2px;
  font-size: 21px;
  font-weight: 600;
  line-height: 22px;
  padding: 0.8rem 2rem;
  box-shadow: none !important;
  outline: 0;
  cursor: pointer;
  transition: all 0.5s;
}

.btn-outline-secondary:hover {
  background: var(--secondary-color) !important;
  color: #ffffff !important;
}

.dark-devider {
  width: 100%;
  height: 1px;
  background: var(--primary-color);
}

/*----- Navbar ------*/

.navbar-main .nav-link {
  color: var(--white);
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
}

.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
  color: var(--secondary-color);
}

.navbar-main .navbar-nav .nav-item:last-child .nav-link {
  background: var(--secondary-color);
  border-radius: 50rem;
}

.navbar-main .navbar-nav .nav-item:last-child .nav-link:hover {
  color: var(--white);
}

h1 {
  font-size: 69px;
  line-height: 78px;
}

h1 span {
  color: var(--secondary-color);
}

header,
.hero-sec {
  background-color: var(--primary-color);
}

.navbar-toggler {
  background-color: var(--secondary-color);
}

.navbar-toggler-icon {
  background-image: url(../img/toggle-icon.svg);
}

/*----- Hero Section ------*/
.hero-sec {
  background-color: var(--primary-color);
}

.hero-sec p {
  font-weight: 500;
}

.hero-img-bg {
  right: -86px;
  top: -120px;
}

/*----- About Section ------*/
.about-bg {
  top: 130px;
  left: -70px;
}

.about-img {
  max-width: 130%;
  left: -25%;
}

/*----- What We Do Section ------*/
.ca-before {
  right: -100px;
  top: 0;
  transform: rotateY(180deg);
  height: 25%;
}

.ca-after {
  bottom: 3%;
  height: 25%;
  z-index: -1;
  left: -132px;
}

.create-access .card {
  border-radius: 35px;
  background: rgb(255, 255, 255, 100);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0.8) 60%,
    rgba(255, 255, 255, 0.2) 100%
  );
  -webkit-box-shadow: 0px 1px 10px 4px rgba(61, 26, 145, 0.04);
  -moz-box-shadow: 0px 1px 10px 4px rgba(61, 26, 145, 0.04);
  box-shadow: 0px 1px 10px 4px rgba(61, 26, 145, 0.04);
  border: none;
  display: flex;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.card-content {
  padding: 4rem;
}

.card-heading {
  min-height: 11.3rem;
}

.card-heading h2,
.card-heading h3 {
  font-family: "Jost";
  font-weight: 900;
  font-size: 35px;
}

.card-heading h3 {
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
}

.card-heading p {
  color: var(--dark-neutral);
  font-size: 22px;
  font-weight: 600;
  line-height: 29px;
}

.card-content ul {
  min-height: 14.3rem;
}

.card-content ul li {
  display: flex;
  color: #666666;
  font-size: 20px;
  line-height: 26px;
  align-items: flex-start;
}

.card-content ul li img {
  flex-basis: 0;
}

.card-content ul li svg {
  flex-shrink: 0;
}

.card-content button,
.card-content a {
  border-radius: 20rem;
  min-width: 270px;
  font-size: 19px;
  font-weight: 600;
  border: none;
  padding: 0.55rem;
}

.blurb-img {
  right: -10px;
  top: -2rem;
  z-index: 1;
}

/*----- Where Squeez ------*/
.section-heading {
  margin-bottom: 7rem;
}

.where-squeez {
  background: #121744 url("../img/where-logo.svg") no-repeat center bottom 200px;
}

.where-bg {
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 10%);
  z-index: -1;
}

.where-item {
  margin-bottom: 7rem;
  position: relative;
}

.item-img {
  position: absolute;
  right: -7%;
}

.item-content {
  padding: 10px 99px 10px 30px;
  background: rgb(242, 242, 242);
  background: linear-gradient(
    90deg,
    rgba(242, 242, 242, 0.4) 0%,
    rgba(234, 232, 253, 0.79) 38%,
    rgba(237, 236, 248, 1) 77%
  );
  border-radius: 30px 4rem 4rem 30px;
  width: 100%;
}

.where-item h3 {
  font-weight: bold;
}

.where-item h3,
.where-item p {
  font-size: 21px;
  line-height: 24px;
  font-family: "Jost";
  color: var(--purple);
}

.where-items-right .item-content {
  padding: 10px 30px 10px 110px !important;
  border-radius: 4rem 30px 30px 4rem;
}

.where-items-right .item-img {
  left: -7%;
}

/*----- How It Works ------*/
.how-work .row::after {
  position: absolute;
  height: 3px;
  width: 70%;
  left: 30px;
  top: 60px;
  background: var(--secondary-color);
  content: "";
  z-index: -1;
}

.step h2 {
  font-family: "Jost";
  font-size: 26px;
  line-height: 35px;
  font-weight: bold;
  color: var(--purple);
}

.how-work .border-bottom {
  border-color: #b5b4c1 !important;
}

.border-bottom.pb-5 {
  padding-bottom: 100px !important;
  margin-bottom: 80px;
}

/*----- Featured By ------*/
.featured-sec {
  padding-bottom: 80px;
}

.image-container img {
  transition: transform 0.5s ease;
}

.image-container img:hover {
  transform: scale(1.1);
}

/*----- Testimonials ------*/
.swiper-custom-button {
  margin-top: 13rem;
}

.testimonials-sec {
  min-height: 41.2rem;
}

.testimonials-outer {
  right: -30%;
  left: 10%;
  top: 0;
}

.swiper-button-next,
.swiper-button-prev {
  position: relative;
  background: #ffffff;
  height: 60px;
  width: 60px;
  border-radius: 20rem;
  color: var(--purple);
}

.swiper-button-next {
  left: 10%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.5rem;
  font-weight: 600;
}

.testimonials .swiper-slide {
  min-height: 100%;
  background: rgb(234, 232, 253);
  background: linear-gradient(
    180deg,
    rgba(234, 232, 253, 0.8) 48%,
    rgba(255, 255, 255, 0.2) 100%
  );
  height: auto;
  border-radius: 35px;
  padding: 3rem;
}

.testimonials-sec .testimonial-card p {
  font-size: 31px;
  font-weight: 500;
  line-height: 40px;
  color: #303030;
}

/*----- Contact ------*/
.contact-sec::before {
  position: absolute;
  background: url(../img/form-after.svg) no-repeat;
  height: 345px;
  width: 1100px;
  top: 13%;
  right: -25%;
  content: "";
}

.contact-sec::after {
  position: absolute;
  background: url(../img/form-before.svg) no-repeat;
  height: 236px;
  width: 755px;
  bottom: 15%;
  left: -12%;
  content: "";
}

.contact-from {
  background: rgb(234, 232, 253);
  background: linear-gradient(
    180deg,
    rgba(234, 232, 253, 0.4) 48%,
    rgba(255, 255, 255, 0.2) 100%
  );
  border-radius: 50px;
  border: 1px solid rgb(242, 242, 242)
    linear-gradient(
      180deg,
      rgba(242, 242, 242, 1) 0%,
      rgba(234, 232, 253, 1) 100%
    );
  overflow: hidden;
  padding: 60px 100px;
  position: relative;
  z-index: 1;
}

.contact-from .form-control {
  border-radius: 20px;
  padding: 1rem 1.5rem;
  font-size: 20px;
  font-weight: 500;
  line-height: 36px;
}

.usa-code {
  font-size: 20px;
  font-weight: 500;
  line-height: 48px;
  height: 48px;
  width: 38px;
  text-align: right;
}

.contact-from.border {
  border-width: 0.5px !important;
}

.contact-from .form-check-label {
  font-size: 18px;
  color: #f2f2f2;
  font-weight: 500;
}

.industry-label {
  font-size: 24px;
  font-weight: 600;
  color: #f2f2f2;
}

.submit-btn {
  padding: 0.7rem 1rem;
  color: #f2f2f2 !important;
  font-size: 19px;
  font-weight: 600;
}

.form-info p {
  font-size: 15px;
  color: #f2f2f2;
  line-height: 20px;
  font-weight: 300;
}

.contact-from .form-check-input:checked {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/*----- FAQ ------*/
.faq-sec {
  padding: 50px 0;
}

.faq-sec .accordion-header {
  font-family: "Jost";
}

.faq-sec .accordion-button {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: var(--purple);
  border: 1px solid #afa0d4;
  border-radius: 20rem;
  background: transparent;
}

.faq-sec .accordion-item:last-of-type .accordion-button.collapsed,
.faq-sec .accordion-item:first-of-type .accordion-button {
  border-radius: 20rem !important;
}

.faq-sec .accordion-body {
  font-size: 20px;
  line-height: 31px;
}

.faq-sec .accordion-button:not(.collapsed) {
  background: #ffffff;
}

.faq-sec .accordion-button::after,
.faq-sec .accordion-button:not(.collapsed)::after {
  background: url(../img/faq-arrow.svg) no-repeat;
  width: 1.5rem;
  height: 1rem;
}

.faq-item {
  background: #ffffff;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #afa0d4;
}

.faq-item h2 {
  font-size: 24px;
  font-family: "Jost";
}

.faq-item p {
  font-size: 20px;
  line-height: 28px;
}

.accordion-item {
  background: transparent;
  border: none;
  margin-bottom: 1rem;
}

/*----- Footer ------*/
footer {
  padding: 70px 0 0;
}

footer h3 {
  font-family: "Jost";
  font-size: 26px;
  font-weight: 700;
}

footer p {
  font-size: 23px;
  line-height: 29px;
}

.user-connect .btn {
  font-size: 21px;
  font-weight: 600;
  line-height: 22px;
  padding: 0.8rem 2rem;
}

.user-connect p {
  font-size: 13px;
}

/*------ Style for the Back to Top Button --------*/
#backToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  background-color: var(--secondary-color);
  color: #ffffff;
  border: none;
  outline: none;
  padding: 0.3rem 1rem 0.5rem 1rem;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

#backToTopBtn.show {
  opacity: 1;
  visibility: visible;
}

#backToTopBtn:hover {
  background-color: var(--purple);
  transition: all 0.5s;
}

#backToTopBtn svg {
  transform: rotate(270deg);
}

#shadow-host-companion {
  display: none !important;
}

/* .border-testimonial {
    border-image: linear-gradient(to right, #3acfd5 0%, #3a4ed5 100%) 1;
    border-radius: 35px; 
    border-width: 4px;
    border-style: solid;
    
  } */
/* 
  .swiper-slide {
    position: relative;
  }
  .swiper-slide::before {
    border-radius: 100%;
    content: '';
    background-image: linear-gradient(to bottom, #3acfd5 0%, #3a4ed5 100%);
    top: -10px;
    left: -10px;
    bottom: -10px;
    right: -10px;
    position: absolute;
    z-index: -1;
  } */

/* Biz Onboarding page CSS
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
.body-full-height {
  min-height: 100vh;
}

.section-row {
  padding: 5rem 0;
}

.sign-up-row {
  position: relative;
  z-index: 0;
}

.top-left-shape-img {
  position: absolute;
  right: 0;
  top: -10%;
  width: 22%;
  z-index: -1;
}

.bottom-right-shape-img {
  position: absolute;
  left: 0;
  bottom: -15%;
  width: 22%;
  z-index: -1;
}

.top-left-shape-img svg,
.bottom-right-shape-img svg {
  width: 100%;
  height: auto;
}

.signup-left-box h1 {
  font-size: 2.938rem;
  line-height: 1.25;
}

.signup-left-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.375rem;
}

.signup-left-box ul li {
  margin-bottom: 1.5rem;
  border-left: 2px solid var(--secondary-color);
  padding-left: 1.5rem;
}

.signup-left-box ul li:last-child {
  margin-bottom: 0;
}

.signup-left-box ul p {
  margin: 0;
}

.signup-form-box {
  box-shadow: 0px 0px 30px 0px #f7714859;
  background: linear-gradient(
    200.93deg,
    rgba(242, 242, 242, 0.5) 29.28%,
    rgba(255, 255, 255, 0.3) 94.09%
  );
  border-radius: 1.875rem;
  padding: 2.938rem;
}

.signup-form-box h5 {
  font-weight: 700;
  font-size: 1.625rem;
  font-family: Jost;
}

.signup-form-box .form-group {
  margin-bottom: 1.5rem;
}

.form-control,
.select2-container--default .select2-selection--multiple {
  height: 48px;
  font-size: 1.125rem;
  border-radius: 50px;
  border: 0;
  padding: 10px 30px;
  box-shadow: none !important;
  outline: none !important;
}

.btn {
  font-size: 1.125rem;
  padding: 10px 15px;
  font-weight: 600;
  border-radius: 50px;
  border: 0;
  box-shadow: none !important;
  outline: none !important;
  transition: 0.35s all;
}

.btn.btn-secondary {
  color: var(--white);
  background: var(--secondary-color);
}

.btn.btn-secondary:hover {
  color: var(--white);
  background: var(--purple);
}

.account-link p {
  text-align: center;
  margin: 0;
  font-size: 1.125rem;
}

.form-group.account-link {
  margin-bottom: 0;
}

.account-link p a {
  color: var(--secondary-color);
  text-decoration: none;
}

.copyright-box {
  font-size: 0.875rem;
}

.pdf-view {
  height: 50vh;
  /* overflow: auto; */
}

.pdf-view iframe {
  height: 98%;
  width: 100%;
}

.terms-check {
  color: #000000b8;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.terms-check p {
  margin-bottom: 1rem;
  line-height: 1.25;
}

.terms-check p a {
  color: var(--secondary-color);
  text-decoration: none;
}

.form-check {
  display: flex;
  align-items: center;
  font-weight: 400;
  line-height: 1.25;
  position: relative;
  padding-left: 1.8rem;
}

.form-check .form-check-input {
  position: absolute;
  left: 0;
  top: 3px;
  margin: 0;
  float: none;
  background: #d9d9d9;
  border-color: #d9d9d9;
  height: 20px;
  width: 20px;
}

.form-check-input:checked {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.modal-title {
  font-family: Jost;
  font-weight: 800;
  color: var(--purple);
  font-size: 1.625rem;
}

.modal-content {
  box-shadow: 0px 0px 10px 3px #12174426;
  border-radius: 30px;
  padding: 1rem;
}

.verification-box .form-control {
  border-radius: 20px;
  padding: 0;
  text-align: center;
}

.form-control-square {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
}

.form-control-square .form-control {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}

.verification-box {
  font-size: 1.313rem;
}

.verification-box h6 {
  font-size: 26px;
  font-family: Jost;
  font-weight: 800;
  text-decoration-skip-ink: none;
}

.top-right-shape-img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 53%;
}

.top-right-shape-img svg {
  width: 100%;
  height: auto;
}

.bottom-left-shape-img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 45%;
}

.bottom-left-shape-img svg {
  width: 100%;
  height: auto;
}

.ready-page h1 {
  font-size: 3.375rem;
  line-height: 1;
}

.ready-page h1,
.ready-page p {
  margin-bottom: 2rem;
}

/* Customer Landing Page CSS
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
.page-banner h1 {
  font-size: 3.375rem;
  line-height: 1;
}

.page-text p {
  max-width: 608px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.page-banner {
  background-color: #121744;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1;
}

.page-banner:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: linear-gradient(
    360deg,
    rgba(18, 23, 68, 0) 12.61%,
    #121744 66.91%
  );
}

.find-option-main-box {
  background: #fff;
  box-shadow: 0px 0px 10px 3px #12174426;
  border-radius: 1.4rem;
  padding: 1.6rem 2rem;
}

.find-option-main-box .form-group label {
  line-height: 1;
  font-size: 19px;
  font-weight: 500;
  color: #121744;
}

.find-option-main-box .form-group .form-control {
  padding-left: 0;
  border-radius: 0;
}

.page-banner-find-section {
  background-color: #eae8fd;
  padding-bottom: 7rem;
}

.find-option-row {
  position: relative;
  transform: translateY(50%);
}

.find-submit-btn {
  margin: 1rem auto -3rem;
}

.squeez-works-box {
  max-width: 320px;
  width: 100%;
  margin: auto;
}

.squeez-works-box img {
  width: 100%;
  height: auto;
}

.squeez-works-box .badge {
  background: #3d1a91;
  font-size: 1.188rem;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
}

.squeez-works-box h5 {
  font-size: 1.563rem;
  color: #3d1a91;
  font-family: Jost;
  font-weight: 700;
}

.squeez-works-box p {
  color: #545048;
}

.select2-container--default .select2-selection--multiple {
  overflow: auto;
}

.select2-container--default.select2-container--focus
  .select2-selection--multiple {
  border: 0;
  background: #fff;
  height: 48px;
  border-radius: 50px !important;
  padding: 9px 10px;
}

.select2-container--default .select2-selection--multiple {
  padding: 9px 10px;
}

.select2-container--default.select2-container--open.select2-container--above
  .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above
  .select2-selection--multiple {
  border-radius: 50px;
}

.select2-container--default .select2-selection--multiple {
  background: #fff;
}

.select2-container--default .select2-results > .select2-results__options {
  font-size: 1.125rem;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  margin-bottom: 5px;
  padding: 7px 11px;
  line-height: 1;
  margin-top: 0;
  background: #3d1a91;
  border: 0;
  border-radius: 50px;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove {
  margin-right: 5px;
  color: #fff;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove:hover {
  color: #fff;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__rendered {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.form-group .fa-chevron-down {
  height: 15px;
  width: 15px;
}

.form-group .fa-chevron-down:after {
  content: "";
  position: absolute;
  top: 7px;
  bottom: 0;
  right: 10px;
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  border-top: 0.2em solid #000;
  border-right: 0.2em solid transparent;
  border-bottom: 0;
  border-left: 0.2em solid transparent;
}

.form-control.dropdown-toggle {
  display: flex;
  align-items: center;
}

.form-control.dropdown-toggle:after {
  margin-left: auto;
}

.form-control + .dropdown-menu {
  box-shadow: 0px 0px 10px 3px #12174426;
  border-radius: 1rem;
  border: 0;
  width: 100%;
}

.select-box {
  position: relative;
  z-index: 2;
}

.selected-option {
  display: flex;
  position: relative;
  align-items: center;
}

.country-flag {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.country-flag:after {
  display: inline-block;
  margin-left: 0.5em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  transition: 0.35s all;
  transform: rotate(0);
}

.country-flag strong {
  display: none;
}

.options {
  background: #fff;
  color: #000;
  border-radius: 1rem;
  overflow: hidden;
  font-size: 1rem;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}
.options ol {
  max-height: 30vh;
  overflow: auto;
}
.options.active {
  display: block;
}

.options .search-box {
  width: 100%;
  border-radius: 1rem 1rem 0 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding-left: 1rem;
}

.options ol {
  margin: 0;
  padding: 0 0;
  padding-top: 0;
  list-style: none;
}

.selected-option .form-control {
  padding-right: 0;
  padding-left: 0.7rem;
}

.options ol li {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: 0.35s all;
}

.options ol li:hover {
  background: #f0f4f8;
}

.options ol li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.options ol li strong {
  margin-left: auto;
}

.options ol li svg {
  width: 24px;
  height: auto;
  margin: 0 0.3rem 0 0;
}

span.country-name {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.options ol li div {
  display: flex;
}

.countryCode {
  display: flex;
  column-gap: 10px;
}

.countryCode .form-control.selected-option {
  width: max-content;
}

.countryCode .selected-option .form-control {
  width: 35px;
  background-color: transparent;
}

.cursor-pointer {
  cursor: pointer;
}

.option.selected {
  background-color: #f77148;
  /* Light grey background for selected option */
  color: #ffffff;
  /* Ensure text color is visible */
}

/* Partner Page CSS
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
.partner-page {
  font-size: 1.5rem !important;
  line-height: 2rem;
  overflow-x: hidden;
  color: var(--primary-color) !important;
}

.row-spacing {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}

.partner-wrapper .navbar-main .navbar-nav .nav-item .nav-link {
  padding: 0;
}

.devider {
  width: 1px;
  height: 36px;
  background: var(--white);
}

.partner-wrapper .navbar-main .navbar-nav .nav-item:last-child .nav-link {
  background: transparent;
  border-radius: 0;
}

.partner-page,
.partner-page h1,
.partner-page h2,
.partner-page h3,
.partner-page h4,
.partner-page h5,
.partner-page h6 {
  font-family: "Proxima Nova Rg" !important;
}

.partner-page h1,
.partner-page h2,
.partner-page h3,
.partner-page h4,
.partner-page h5,
.partner-page h6 {
  font-weight: bold;
}

.partner-wrapper .hero-sec h1 {
  font-size: 4rem;
  line-height: 4rem;
}

.partner-page h2 {
  font-size: 3.625rem;
  line-height: 4.375rem;
}

.partner-page h2 {
  font-size: 3.625rem;
  line-height: 4.375rem;
}

.partner-wrapper .hero-sec h6 {
  font-size: 1.625rem;
  line-height: 2.688rem;
}

.partner-wrapper h4 {
  font-size: 2.25rem;
}

.beni-pointers.py-5 {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}

.h-devider {
  height: 1px;
  width: 100%;
  background: #ffffff;
}

.bg-light-p {
  background-color: #eae8fd !important;
}

.revenue-sec::before,
.revenue-sec::after {
  position: absolute;
  background: url(../img/partner-program/sec-before.svg) no-repeat;
  height: 100%;
  width: 100%;
  content: "";
}

.revenue-sec::before {
  left: 0;
  top: 0;
}

.revenue-sec::after {
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
}

.counter-row .card,
.why-card,
.cta-card {
  border-radius: 1.875rem;
}

.why-card img {
  height: 300px;
  object-fit: cover;
  overflow: hidden;
  border-radius: 1.5rem;
  object-position: center;
}

/* .cta-card {
 background: linear-gradient(270deg, rgba(247, 113, 72, 0.6) 0%, rgba(61, 26, 145, 0.6) 100%), url(../img/partner-program/cta-bg.png) no-repeat center;
background-size: cover;

} */

.cta-bg {
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.cta-card {
  position: relative;
  background: linear-gradient(
    270deg,
    rgba(247, 113, 72, 1) 0%,
    rgba(61, 26, 145, 1) 100%
  );
  z-index: 1;
  overflow: hidden;
  padding: 6rem;
}

.cta-sec:after {
  position: absolute;
  width: 100%;
  height: 13.75rem;
  background: var(--primary-color);
  content: "";
  left: 0;
  bottom: 0;
}

.row-spacing-top {
  padding-top: 7.5rem;
}

.row-spacing-bottom {
  padding-bottom: 7.5rem;
}

/* Commerce Restaurant Page CSS
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
.rounded-30 {
  border-radius: 1.875rem !important;
}

.data-row {
  background: linear-gradient(
    270deg,
    rgba(247, 113, 72, 1) 0%,
    rgba(61, 26, 145, 1) 100%
  );
}

.data-row .row.gx-5 {
  --bs-gutter-x: 6rem;
}

.data-item h2 {
  font-size: 4.5rem;
}

.revenue-section::before {
  position: absolute;
  width: 100%;
  height: 8rem;
  background: var(--primary-color);
  content: "";
  left: 0;
  top: 0;
}

.rev-before {
  top: 8rem;
  left: 0;
  width: 50vw;
}

.rev-after {
  bottom: 0;
  right: 0;
  width: 50vw;
}

.program-works-flow {
  overflow: hidden;
  max-width: 1650px;
  margin-left: auto;
  padding-left: 1rem;
}

.step-number {
  width: 4rem;
  height: 4rem;
  font-size: 2.75rem;
}

.partner-page h5 {
  font-size: 1.688rem;
}

hr {
  background-color: #ffffff;
}

.arrow-icon {
  height: 46px;
  width: 46px;
}

.bg-accent {
  background: #a5d84c !important;
}
.faq-item .accordion-button {
  font-size: 2.313rem;
  box-shadow: none;
}

.faq-item .accordion-button::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="26" height="15" viewBox="0 0 26 15" fill="none"><path d="M12.6781 14.6057C12.3909 14.6057 12.1034 14.4947 11.8842 14.2729L0.65525 2.91495C0.216479 2.47114 0.216479 1.75246 0.65525 1.30893C1.09402 0.865405 1.80453 0.865121 2.24302 1.30893L12.6781 11.8639L23.1131 1.30893C23.5519 0.865121 24.2624 0.865121 24.7009 1.30893C25.1394 1.75275 25.1397 2.47142 24.7009 2.91495L13.472 14.2729C13.2527 14.4947 12.9653 14.6057 12.6781 14.6057Z" fill="currentColor"/></svg>') !important;
  background-repeat: no-repeat;
  border-radius: 50rem;
  background-size: 1.5rem;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #121744;
  height: 46px;
  width: 46px;
}

/*- Golf page-*/
.golf-cta::after,
.revenue-sec-home::before {
  display: none !important;
}
.cta-card-golf {
  background: transparent;
  border-radius: 0 !important;
}
.cta-card-golf .cta-bg {
  opacity: 1;
}

/*-- Home --*/
.squeez-about-img {
  min-height: 100%;
  object-fit: cover;
  object-position: left;
}

.border-radius-0 {
  border-radius: 0 !important;
}

.sq-about-bg {
  z-index: -1 !important;
  top: 0;
}

.revenue-sec-home .border-end {
  border-right: 1px solid var(--primary-color) !important;
}

.revenue-sec-home .data-row {
  background: none;
}

.program-works-slider-btn .swiper-button-next {
  left: 0;
}

#navbarSupportedContent .custom-dropdown {
  margin-top: 1rem;
  position: absolute;
  z-index: 2;
}
.inner-page-dropdown.dropdown-toggle::after {
  display: none;
}

.min-hvh {
  min-height: 100vh !important;
}

.flex-1 {
  flex: 1 !important;
}

.sign-up-form-wrapper .top-left-shape-img {
  top: 33px;
  z-index: 1 !important;
}

.sign-up-form-wrapper .bottom-right-shape-img {
  bottom: 0;
  top: auto;
  z-index: 1 !important;
}

.z-index-2 {
  z-index: 2 !important;
}

.home-hero-image {
  right: 5vw;
}
