html,
body {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  height: 100%;
  box-sizing: border-box;
}

.wrapper {
  width: clamp(320px, 90vw, 1200px);
  margin: 0 auto;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  overflow-x: hidden;
}

.primary-btn {
  padding: 0.8rem 2rem;
  text-decoration: none;
  color: #211111;
  font-weight: 500;
  font-size: clamp(12px, 10vw, 16px);
  border-radius: 10rem;
  background-color: #FFC600;
  position: relative;
  overflow: hidden;
  display: block;
  width: -moz-max-content;
  width: max-content;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  border: none;
}
.primary-btn::after {
  content: "";
  background-color: #211111;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  border-radius: inherit;
  background-color: #211111;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.primary-btn:hover {
  color: #FFC600;
}
.primary-btn:hover::after {
  width: 100%;
}

.invert-btn {
  padding: 0.8rem 2rem;
  text-decoration: none;
  color: #FFC600;
  font-weight: 500;
  font-size: clamp(12px, 10vw, 16px);
  border-radius: 10rem;
  background-color: #211111;
  position: relative;
  overflow: hidden;
  display: block;
  width: -moz-max-content;
  width: max-content;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  border: none;
}
.invert-btn::after {
  content: "";
  background-color: #FFC600;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  border-radius: inherit;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.invert-btn:hover {
  color: #211111;
}
.invert-btn:hover::after {
  width: 100%;
}

.btn-center {
  margin: 0 auto;
}

.secondary-btn {
  padding: 0.8rem 2rem;
  text-decoration: none;
  color: #211111;
  font-weight: 500;
  font-size: clamp(12px, 10vw, 16px);
  border-radius: 10rem;
  background-color: transparent;
  border: thin solid #211111;
  position: relative;
  overflow: hidden;
  display: block;
  width: -moz-max-content;
  width: max-content;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.secondary-btn::after {
  content: "";
  background-color: #211111;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  border-radius: inherit;
  background-color: #211111;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.secondary-btn:hover {
  color: #FFC600;
}
.secondary-btn:hover::after {
  width: 100%;
}

.btn-group {
  display: flex;
  gap: 1rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .btn-group {
    flex-direction: column;
  }
  .btn-group a,
  .btn-group b {
    width: 100%;
  }
}

.link {
  text-decoration: none;
  color: black;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 2rem;
  background-color: white;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  header {
    padding: 0 1rem;
  }
}
header .wrapper {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}
header .wrapper .logo {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  flex-shrink: 1;
  padding: 1rem 0;
}
header .wrapper .logo img {
  height: 45px;
  display: block;
}
header .wrapper nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
header .wrapper nav .right-menu,
header .wrapper nav .left-menu {
  align-items: center;
  display: flex;
  gap: 1rem;
}
header .wrapper nav .left-menu {
  flex: 1;
  justify-content: center;
  font-weight: 500;
  font-size: clamp(14px, 10vw, 16px);
  gap: 1.5rem;
}
header .wrapper nav .left-menu .dropdown {
  position: relative;
}
header .wrapper nav .left-menu .dropdown .link {
  cursor: pointer;
}
header .wrapper nav .left-menu .dropdown .sub-menu {
  display: none;
  position: absolute;
  width: 180px;
  background-color: #f5f5f5;
}
header .wrapper nav .left-menu .dropdown .sub-menu .link {
  padding: 1rem;
}
header .wrapper nav .left-menu .dropdown:hover .sub-menu {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1199px) {
  header .wrapper nav .left-menu {
    display: none;
  }
}
header .wrapper nav .right-menu {
  flex-shrink: 1;
}
@media (max-width: 767px) {
  header .wrapper nav .right-menu .secondary-btn {
    display: none;
  }
}
header .wrapper nav .btn-menu {
  border: none;
  outline: none;
  background-color: transparent;
  display: none;
  gap: 8px;
  flex-direction: column;
  padding: 1rem;
}
header .wrapper nav .btn-menu .bar {
  height: 2px;
  width: 24px;
  border-radius: 2px;
  background-color: #211111;
  display: block;
  position: relative;
}
@media (max-width: 1199px) {
  header .wrapper nav {
    justify-content: flex-end;
  }
  header .wrapper nav .btn-menu {
    display: flex;
  }
}

@media (max-width: 1199px) {
  .open-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
  }
  .open-menu .wrapper .logo {
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .open-menu .wrapper nav {
    position: relative;
    flex-direction: column;
    padding: 0;
    height: 100vh;
  }
  .open-menu .wrapper nav .left-menu {
    display: flex !important;
    flex-direction: column;
    justify-content: start;
  }
  .open-menu .wrapper nav .left-menu .dropdown .link {
    display: flex;
    justify-content: center;
  }
  .open-menu .wrapper nav .left-menu .dropdown .sub-menu {
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .open-menu .wrapper nav .left-menu .dropdown .sub-menu .link {
    padding: 1rem;
  }
  .open-menu .wrapper nav .right-menu {
    display: flex;
    flex-direction: column;
    margin-top: 6rem;
  }
  .open-menu .wrapper nav .dropdown .link {
    text-align: center;
  }
  .open-menu .wrapper nav .dropdown .sub-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    border-top: thin solid rgba(255, 255, 255, 0.1);
    border-bottom: thin solid rgba(255, 255, 255, 0.1);
    background-color: transparent;
  }
  .open-menu .wrapper nav .left-menu {
    margin-top: 6rem;
  }
  .open-menu .wrapper nav .btn-menu {
    gap: 0;
    padding: 2rem;
  }
  .open-menu .wrapper nav .btn-menu span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
    transform-origin: center;
  }
  .open-menu .wrapper nav .btn-menu span:last-child {
    transform: rotate(-45deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.hero-section {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
  min-height: 650px;
  padding-top: 80px;
  overflow: hidden;
}
.hero-section .blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: inherit;
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  z-index: 1;
}
.hero-section::before {
  content: "";
  display: block;
  position: absolute;
  top: 100px;
  left: -100px;
  width: 250px;
  height: 250px;
  border-radius: 100%;
  background-image: linear-gradient(45deg, #FFC600, rgb(202, 189, 5));
  animation: pulse 5s infinite forwards ease-in-out;
}
.hero-section::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 50px;
  right: -100px;
  width: 250px;
  height: 250px;
  border-radius: 100%;
  background-image: linear-gradient(45deg, rgba(33, 17, 17, 0.5), rgb(253, 104, 78));
  border: 3px solid #FFC600;
  animation: pulse 5s 2s infinite forwards ease-in-out;
}
.hero-section .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-section .title {
  text-align: center;
  font-size: clamp(24px, 10vw, 52px);
  margin-bottom: 1rem;
  font-weight: 800;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(45deg, #FFC600, #211111);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-section .title span {
  font-size: clamp(16px, 10vw, 24px);
  display: block;
  -webkit-background-clip: text;
          background-clip: text;
  font-weight: 500;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#211111, #211111);
}
.hero-section .description {
  font-size: clamp(16px, 5vw, 22px);
  margin-bottom: 2rem;
  color: #211111;
}
.hero-section .primary-btn {
  gap: 1rem;
  padding: 1rem 2rem;
}

.btn-floating {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.cta-strip {
  background-color: #FFC600;
  background-image: url("../img/bg-cta-strip.jpg");
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 1.56rem;
  position: relative;
  z-index: 1;
}
.cta-strip::after {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.cta-strip h3 {
  margin: 0;
  font-weight: bold;
  margin-bottom: 1rem;
}
.cta-strip p {
  margin: 0;
}
@media (max-width: 991px) {
  .cta-strip::after {
    display: block;
  }
  .cta-strip h3,
  .cta-strip p {
    color: white;
  }
}

.glass-card {
  position: relative;
  padding: 2rem;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(48px);
          backdrop-filter: blur(48px);
  transition: all 0.3s ease-in-out;
}
.glass-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.solid-glass {
  padding: 2rem;
  border-radius: 1rem;
}
.solid-glass .title {
  margin-bottom: 1.2rem;
  font-size: 24px;
  font-weight: 700;
}

.section {
  padding: 80px 0;
}
.section .section-title {
  color: #211111;
  margin-bottom: 1.5rem;
  font-weight: bolder;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: clamp(18px, 10vw, 40px);
  align-items: start;
}
.section .section-title span {
  font-size: 16px;
  padding: 4px 16px;
  line-height: 22px;
  background-color: rgba(33, 17, 17, 0.1);
  color: #211111;
  width: auto;
  display: inline-block;
  border-radius: 1rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.section:hover .section-title span {
  background-color: #211111;
  color: white;
}
.section .title-center {
  text-align: center;
  align-items: center;
}
.section .title-center span {
  margin: auto;
}
.section .text {
  margin: 0;
}
.section .sec-img {
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  .section .sec-img {
    width: 50%;
    margin: auto;
  }
}
.section ul {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
.section ul li {
  display: block;
}

@keyframes img-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
#introduction {
  background-image: url("../img/bg-mob_1.png");
  background-position: top center;
  background-repeat: no-repeat repeat;
  background-size: contain;
}
#introduction .sec-img {
  animation-name: img-animation;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  height: 550px;
  -o-object-fit: contain;
     object-fit: contain;
}
#introduction ul {
  display: grid;
  grid-template-columns: auto auto;
  gap: 2rem;
}
@media (max-width: 767px) {
  #introduction ul {
    grid-template-columns: auto;
    gap: 1rem;
  }
}

.solutions {
  padding: 80px 0;
}
.solutions .wrapper {
  background-color: rgba(255, 198, 0, 0.1);
  border-radius: 2rem;
  padding: 4rem 2.5rem;
}
@media (max-width: 991px) {
  .solutions .wrapper {
    border-radius: 2rem;
    padding: 2rem 1.5rem;
  }
}
.solutions .info-boxes {
  display: grid;
  gap: 2rem;
  grid-template-columns: auto auto;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .solutions .info-boxes {
    grid-template-columns: auto;
  }
}
.solutions .info-boxes .info-box {
  background-color: white;
  background-image: linear-gradient(45deg, white 0% 50%, rgba(255, 198, 0, 0.1));
  padding: 2rem;
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .solutions .info-boxes .info-box {
    padding: 1rem;
  }
}
.solutions .info-boxes .info-box:hover {
  background-image: linear-gradient(45deg, white 0% 100%, rgba(255, 198, 0, 0.1));
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08);
  z-index: 1;
}
.solutions .info-boxes .info-box .icon {
  position: relative;
}
.solutions .info-boxes .info-box .icon::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  background-color: #FFC600;
}
.solutions .info-boxes .info-box .content {
  position: relative;
  z-index: 1;
}
.solutions .info-boxes .title {
  font-weight: bold;
  font-size: 18px;
}

.info-boxes {
  position: relative;
}
.info-boxes .info-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.info-boxes .info-box .icon {
  position: relative;
}
.info-boxes .info-box .icon img {
  display: block;
  height: 100px;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  z-index: 1;
}

#features {
  position: relative;
  background-image: url("../img/welcome-bg.png");
  background-position: top right;
  background-repeat: no-repeat repeat;
  background-size: contain;
}
#features::after {
  content: "";
}
#features .text {
  min-height: 50px;
}
#features .glass-card .title {
  display: flex;
  gap: 1rem;
}
#features .glass-card i {
  display: flex;
  height: 48px;
  width: 48px;
  border-radius: 100%;
  background-color: rgba(255, 198, 0, 0.24);
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
#features .glass-card h3 {
  font-weight: 500;
  color: black;
  font-size: 24px;
}
#features .glass-card h3 span {
  font-weight: bold;
  display: block;
}
#features .glass-card .text {
  font-size: 15px;
}

#benefits {
  background-color: rgba(255, 198, 0, 0.08);
}
#benefits .solid-glass {
  padding: 1.5rem 1.5rem 0;
  background-color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
}
#benefits .solid-glass * {
  transition: all 0.3s ease-in-out;
}
#benefits .solid-glass .title {
  font-weight: bold;
  position: relative;
  color: #FFC600;
  margin-bottom: 0.5rem;
}
#benefits .solid-glass .text {
  color: black;
  font-weight: 500;
  margin-bottom: 1rem;
}
#benefits .solid-glass img {
  display: block;
  margin: auto;
  height: 150px;
  width: 150px;
}

#process {
  background-position: top right;
  background-repeat: no-repeat;
  background-size: clamp(320px, 100vw, 450px);
  position: relative;
}
#process canvas {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  opacity: 0.5;
}
#process .process {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}
#process .process .bullet-points {
  display: flex;
  flex-direction: column;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
  counter-reset: section;
}
#process .process .bullet-points li {
  flex-grow: 0 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease-in-out;
}
#process .process .bullet-points li::before {
  counter-increment: section;
  content: counter(section);
  font-weight: 800;
  font-size: 4rem;
  transition: all 0.3s ease-in-out;
}
#process .process .bullet-points li div {
  display: flex;
  flex-direction: column;
}
#process .process .bullet-points li:hover h4, #process .process .bullet-points li:hover::before {
  color: #FFC600;
}
#process .process .bullet-points h4 {
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

footer {
  padding: 50px 0 0;
  background-color: #FFC600;
}
footer .footer-logo {
  display: block;
  height: 40px;
  margin: auto;
}
footer .footer-note {
  border-top: thin solid #eee;
  font-size: 14px;
  padding: 2rem 0;
  margin-top: 3rem;
}
footer .footer-note .row {
  text-align: center;
}
footer .footer-note .link:hover {
  text-decoration: underline;
}

.form-control:focus {
  border-color: #FFC600;
  box-shadow: 0 0 0 0.25rem rgba(255, 198, 0, 0.25);
}

.login-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.login-wrapper video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.login-wrapper::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-backdrop-filter: blur(32px);
          backdrop-filter: blur(32px);
}
.login-wrapper form {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 450px;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 1rem;
  border: thin solid rgba(255, 255, 255, 0.1);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.login-wrapper form .form {
  flex-grow: 1;
}
.login-wrapper form img {
  display: block;
  height: 40px;
  margin-bottom: 2rem;
}
.login-wrapper form .title {
  margin-bottom: 1.5rem;
  font-size: 16px;
  line-height: 1.8;
  color: white;
}
.login-wrapper form .title span {
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  display: block;
  font-size: 24px;
}
.login-wrapper form .form-floating button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 0 1rem;
  border: none;
  outline: none;
  background-color: transparent;
}
.login-wrapper form .form-floating button i {
  font-size: 20px;
}
.login-wrapper form .form-floating button.show-password i::before {
  content: "\f341";
}
@media (max-width: 519px) {
  .login-wrapper form {
    width: calc(100% - 48px);
    padding: 1rem;
  }
}

.accordion-item {
  background-color: transparent;
}

.accordion-button {
  background-color: transparent;
}
.accordion-button::after {
  content: "\f282";
  font-family: bootstrap-icons !important;
  background-image: none;
}

.accordion-button:not(.collapsed) {
  border-color: #FFC600;
  box-shadow: 0 0 0 0.25rem rgba(255, 198, 0, 0.25);
}
.accordion-button:not(.collapsed)::after {
  content: "\f286";
  font-family: bootstrap-icons !important;
  background-image: none;
}

embed {
  height: 100vh;
}

#why-choose {
  counter-reset: section;
  background-color: rgba(255, 198, 0, 0.08);
}
#why-choose .glass-card {
  display: flex;
  gap: 1rem;
  background-color: white;
  padding: 1.5rem;
}
#why-choose .glass-card img {
  display: block;
  height: 60px;
  width: 60px;
}
#why-choose .glass-card .content {
  display: flex;
  flex-direction: column;
}

.pricing-table {
  position: relative;
}
.pricing-table .pricing-column {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  border-radius: 1.5rem;
  padding: 1.5rem;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
  background-color: white;
  transition: all 0.3s ease-in-out;
  border-bottom: thick solid #eee;
}
.pricing-table .pricing-column .title,
.pricing-table .pricing-column .price {
  text-align: center;
}
.pricing-table .pricing-column .title {
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.5;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  padding: 6px 12px;
  transition: all 0.3s ease-in-out;
}
.pricing-table .pricing-column .price {
  font-weight: bolder;
  margin: 0.5rem 0 0;
}
.pricing-table .pricing-column .content {
  position: relative;
  gap: 0;
}
.pricing-table .pricing-column .content li {
  border-top: thin solid #eee;
  padding: 1rem 0;
  font-size: 14px;
}
.pricing-table .pricing-column p {
  text-align: center;
  font-size: 0.9rem;
}
.pricing-table .pricing-column:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-bottom-color: #FFC600;
}
.pricing-table .pricing-column:hover .title {
  background-color: rgba(255, 198, 0, 0.98);
  border-radius: 100px;
  opacity: 1;
}

.clientele {
  padding: 0 0;
}

.testimonials {
  background-color: #FFC600;
}
.testimonials .owl-carousel .item {
  background-color: white;
  padding: 1rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 250px;
}
.testimonials .owl-carousel .item p {
  text-align: center;
  margin: 0;
}
.testimonials .owl-carousel .item .content {
  font-size: 1.16rem;
  position: relative;
}
.testimonials .owl-carousel .item .content::before, .testimonials .owl-carousel .item .content::after {
  content: '"';
  position: absolute;
  font-weight: bolder;
  font-size: 1.5rem;
  opacity: 0.5;
}
.testimonials .owl-carousel .item .content::before {
  left: -8px;
  top: -4px;
}
.testimonials .owl-carousel .item .author {
  font-size: 14px;
  font-weight: bold;
  margin-top: 1rem;
}

.lead-form {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  z-index: 1000;
  background-color: rgba(33, 17, 17, 0.8);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
}
.lead-form form {
  display: flex;
  flex-direction: column;
  margin: 1rem auto;
  background-color: white;
  height: -moz-max-content;
  height: max-content;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  min-width: 420px;
}
.lead-form form .heading {
  display: flex;
  justify-content: space-between;
  margin: 0 0 1rem;
}
.lead-form form .heading button {
  background-color: transparent;
  border: none;
  height: 32px;
  width: 32px;
}

.faq {
  position: relative;
}
.faq .accordion {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.faq .accordion .accordion-item {
  border: none;
}
.faq .accordion .accordion-button {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  border: none;
}
.faq .accordion .accordion-button[aria-expanded=true] {
  background-color: #FFC600;
  color: black;
}
.faq .accordion .accordion-collapse {
  border: none;
}
.faq .accordion .accordion-collapse.show .accordion-body {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
  margin-bottom: 1rem;
}

.cta-section {
  padding: 120px 0;
  background-image: linear-gradient(-35deg, rgba(255, 198, 0, 0.2), white);
}
.cta-section .title {
  font-size: clamp(24px, 10vw, 40px);
  margin-bottom: 1rem;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cta-section .title span {
  display: block;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(45deg, #FFC600, #211111);
}
.cta-section form {
  background-color: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  border-radius: 1.5rem;
}

.pricing-tab {
  position: relative;
}
.pricing-tab .nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 0 0 2rem;
  border-bottom: none;
  flex-wrap: nowrap;
}
@media (max-width: 767px) {
  .pricing-tab .nav {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .pricing-tab .nav .nav-item {
    width: 100%;
  }
}
.pricing-tab .nav .nav-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background-color: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 0.5rem;
  color: black;
  align-items: center;
}
@media (max-width: 767px) {
  .pricing-tab .nav .nav-link {
    width: 100%;
  }
}
.pricing-tab .nav .nav-link:hover {
  background-color: rgba(255, 198, 0, 0.1);
}
.pricing-tab .nav .nav-link span {
  font-weight: 600;
}
.pricing-tab .nav .active {
  background-color: #FFC600;
}
.pricing-tab .nav .active:hover {
  background-color: #FFC600;
}
.pricing-tab .tab-content {
  position: relative;
  z-index: 1;
}
.pricing-tab .tab-content .tab-pane {
  background-color: white;
  box-shadow: 0 0rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  border: thin solid #eee;
}
@media (max-width: 767px) {
  .pricing-tab .tab-content .tab-pane {
    box-shadow: none;
    border: none;
    border-radius: 0;
    overflow: visible;
  }
}
.pricing-tab .tab-content .tab-pane table {
  border: none;
  box-sizing: border-box;
  border-collapse: collapse;
  width: 100%;
  overflow: auto;
}
.pricing-tab .tab-content .tab-pane table thead {
  background-color: #f5f5f5;
}
.pricing-tab .tab-content .tab-pane table tr {
  border-bottom: thin solid #eee;
}
.pricing-tab .tab-content .tab-pane table tr:last-child {
  border-bottom: none;
}
.pricing-tab .tab-content .tab-pane table th {
  font-weight: bold;
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 14px;
}
.pricing-tab .tab-content .tab-pane table td {
  padding: 1rem;
  text-align: center;
  font-weight: 500;
}
.pricing-tab .tab-content .tab-pane table td s {
  font-size: 14px;
  opacity: 0.5;
}
.pricing-tab .tab-content .tab-pane table th:first-child,
.pricing-tab .tab-content .tab-pane table td:first-child {
  position: sticky;
  left: 0;
  border-right: thin solid #eee;
  max-width: 80px;
}
.pricing-tab .tab-content .tab-pane .data-cards {
  display: flex;
  flex-direction: column;
}
.pricing-tab .tab-content .tab-pane .data-cards .data-card {
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20%;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: space-between;
  gap: 0;
  border-bottom: thin solid #eee;
}
@media (max-width: 767px) {
  .pricing-tab .tab-content .tab-pane .data-cards .data-card {
    display: flex;
    box-shadow: 0 0rem 1rem rgba(0, 0, 0, 0.1);
    border: thin solid #eee;
    border-radius: 1rem;
    overflow: hidden;
    margin: 0 0 2rem;
  }
}
.pricing-tab .tab-content .tab-pane .data-cards .data-card:first-child strong {
  display: flex;
  flex-direction: column;
  visibility: visible;
  background-color: #f5f5f5;
  padding: 1rem;
  font-size: 14px;
  height: 72px;
  align-items: center;
}
@media (max-width: 767px) {
  .pricing-tab .tab-content .tab-pane .data-cards .data-card:first-child strong {
    height: auto;
    background-color: transparent;
  }
}
.pricing-tab .tab-content .tab-pane .data-cards .data-card:first-child span {
  padding: 1rem;
}
.pricing-tab .tab-content .tab-pane .data-cards .data-card:last-child {
  border-bottom: none;
}
.pricing-tab .tab-content .tab-pane .data-cards .data-card li {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-bottom: thin solid #eee;
}
@media (max-width: 767px) {
  .pricing-tab .tab-content .tab-pane .data-cards .data-card li {
    display: grid;
    grid-template-columns: 50% 50%;
  }
  .pricing-tab .tab-content .tab-pane .data-cards .data-card li:first-child {
    background-color: rgba(255, 198, 0, 0.24);
  }
  .pricing-tab .tab-content .tab-pane .data-cards .data-card li:first-child span {
    font-weight: bold;
  }
}
.pricing-tab .tab-content .tab-pane .data-cards .data-card li strong {
  visibility: hidden;
  text-align: center;
}
@media (max-width: 767px) {
  .pricing-tab .tab-content .tab-pane .data-cards .data-card li strong {
    visibility: visible;
  }
}
.pricing-tab .tab-content .tab-pane .data-cards .data-card li span {
  padding: 0 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 500;
}
.pricing-tab .tab-content .tab-pane .data-cards .data-card li span s {
  font-size: 14px;
  opacity: 0.5;
}
@media (max-width: 767px) {
  .pricing-tab .tab-content .tab-pane .data-cards .data-card li strong,
  .pricing-tab .tab-content .tab-pane .data-cards .data-card li span {
    padding: 1rem;
  }
}
.pricing-tab .tab-content .tab-pane .grid-col-4 .data-card {
  grid-template-columns: 25% 25% 25% 25%;
}
@media (max-width: 767px) {
  .pricing-tab .tab-content .tab-pane .grid-col-4 .data-card {
    grid-template-columns: auto;
  }
}/*# sourceMappingURL=style.css.map */