@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
}

a {
  text-decoration: none;
}

.sec-py {
  --padding-value: 86px;
  padding-block: var(--padding-value);
}
@media (max-width: 769px) {
  .sec-py {
    --padding-value: 40px;
  }
}

.sec-sub-head {
  font-size: clamp(16px, 2.5vw, 20px);
  font-family: "DM Sans", sans-serif;
  line-height: 1.8;
  color: #5e80a3;
}

.sec-head-title {
  font-family: "DM Sans", sans-serif;
  color: #101828;
  font-weight: 700;
  font-size: clamp(24px, 4vw, 36px);
}

.sec-head-4 {
  font-family: "DM Sans", sans-serif;
  color: #101828;
  font-weight: 700;
  font-size: clamp(16px, 2.5vw, 20px);
}

.max-ch-75 {
  max-width: 75ch;
}

.w-full {
  width: 100%;
}

.max-w-200 {
  max-width: 200px;
}

.max-w-300 {
  max-width: 300px;
}

.max-w-400 {
  max-width: 400px;
}

.text_primary {
  color: #245C95;
}

.text_dark_clr {
  color: #282B27;
}

.bg_primary {
  background-color: #245C95;
}

.bg_sec {
  background-color: #f6f9fb;
}

.text-para {
  color: #5A5A5A;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.5;
}

.btn_primary {
  border-radius: 8px;
  width: 100%;
  min-width: 155px;
  max-width: 175px;
  padding-block: 10px;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 500;
  display: inline-block;
  background-color: #245C95;
  color: #fff;
}
.btn_primary.full {
  width: 100%;
  max-width: 100%;
}

.btn_primary_outline {
  border-radius: 8px;
  width: 100%;
  min-width: 155px;
  max-width: 175px;
  padding-block: 10px;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 500;
  border: 1.6px solid #3670BA;
  color: #245C95;
  background-color: transparent;
}

.web-input {
  --fnt-size: 14px;
}
.web-input label {
  display: block;
  font-size: var(--fnt-size);
  color: #8A8A8A;
  margin-bottom: 8px;
}
.web-input input {
  border-radius: 10px;
  border: 1px solid #f3f3f3;
  padding: 15px 17px;
  color: #5A5A5A;
  width: 100%;
  font-size: var(--fnt-size);
}
.web-input .password-input {
  position: relative;
}
.web-input .password-input .password-toggle {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: var(--fnt-size);
}

.global-input {
  position: relative;
}
.global-input input {
  color: #818181;
  border-radius: 8px;
  border: 1px solid #BECFE0;
  padding: 10px 16px;
  font-size: clamp(14px, 1.5vw, 16px);
}
.global-input i {
  background-color: #fff;
  color: #818181;
  position: absolute;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: clamp(14px, 1.5vw, 16px);
}

.global-select {
  position: relative;
}
.global-select select {
  color: #818181;
  border-radius: 8px;
  border: 1px solid #BECFE0;
  padding: 10px 16px;
  font-size: clamp(14px, 1.5vw, 16px);
  appearance: none;
  /* modern browsers */
  -webkit-appearance: none;
  -moz-appearance: none;
}
.global-select i {
  background-color: #fff;
  color: #818181;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: clamp(16px, 2.5vw, 20px);
}

/* Hide default checkbox */
.custom-checkbox {
  position: relative;
  display: inline-block;
  cursor: pointer;
  user-select: none;
  margin: 10px;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Custom checkbox box */
.checkmark {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #2d6ca5;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

/* Checkmark icon (hidden by default) */
.checkmark::after {
  content: "✔";
  /* check mark character */
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: white;
  display: none;
}

/* Show checkmark when checked */
.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Hover effect */
.custom-checkbox:hover .checkmark {
  background-color: #1e4f7a;
}

/* Unchecked state */
.custom-checkbox input:not(:checked) ~ .checkmark {
  background-color: #e0e0e0;
}

.custom-checkbox input:not(:checked) ~ .checkmark:after {
  display: none;
}

/* Active/pressed state */
.custom-checkbox:active .checkmark {
  transform: scale(0.95);
}

/* Disabled state */
.custom-checkbox input:disabled ~ .checkmark {
  background-color: #f0f0f0;
  cursor: not-allowed;
  opacity: 0.6;
}

.custom-checkbox input:disabled {
  cursor: not-allowed;
}

/* Label text */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  color: #333;
}

header.web {
  border-bottom: 1.6px solid #C7C7C7;
}
header.web .navbar-brand {
  width: 100%;
  max-width: 100px;
}
header.web .navbar-brand img {
  width: 100%;
}
header.web .navbar-nav .nav-link {
  font-size: 17px;
  color: #5A5A5A;
  display: flex;
  align-items: center;
  gap: 4px;
}
header.web .navbar-nav .nav-link svg {
  width: 20px;
  height: 20px;
}
header.web .navbar-nav .nav-link.active {
  color: #245C95;
}
header.web .navbar-toggler i {
  font-size: 24px;
}

.web-footer {
  position: relative;
  background-color: #F0F5FC;
  margin-top: 5rem;
}
.web-footer ul {
  padding: 0;
  list-style-type: none;
}
.web-footer i {
  color: #245C95;
  font-size: clamp(14px, 1.5vw, 16px);
}
.web-footer a {
  text-decoration: none;
  color: #282B27;
}
.web-footer p {
  color: #282B27;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.6;
}
.web-footer .footer-content {
  padding-top: 168px;
}
@media screen and (max-width: 767px) {
  .web-footer .footer-content {
    padding-top: 0;
  }
}
.web-footer .footer-head {
  font-family: "DM Sans", sans-serif;
  color: #101828;
  font-weight: 700;
  margin-bottom: 16px;
  color: #245C95;
}
.web-footer .blog-title-list {
  list-style-type: none;
}
.web-footer .blog-title-list li:last-child a {
  margin-bottom: 0;
}
.web-footer .blog-title-list .blog-link {
  display: inline-block;
  font-weight: normal;
  font-size: clamp(14px, 1.5vw, 16px);
  margin-bottom: 25px;
}
.web-footer .others-link li {
  margin-bottom: 13px;
}
.web-footer .others-link a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.web-footer .download-app {
  display: inline-block;
  padding: 15px;
  border-radius: 8px;
  background-color: #dfe4ea;
  max-width: 200px;
}
.web-footer .download-app i {
  color: #282B27;
  font-size: 20px;
}
.web-footer .download-app span {
  font-size: clamp(12px, 1.5vw, 14px);
}
.web-footer .download-app p {
  line-height: 1;
  font-weight: 500;
}
.web-footer .reviews {
  border: 1px solid #E5E5E5;
  border-radius: 16px;
  padding: 18px;
  background-color: #fff;
}
.web-footer .reviews h4 {
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(36, 92, 149, 0.1);
}
.web-footer .reviews .rating p {
  color: #245C95;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
}
.web-footer .reviews .rating span {
  font-size: clamp(14px, 1.5vw, 16px);
}
.web-footer .reviews .stars {
  font-weight: 500;
}
.web-footer .reviews .stars i {
  font-size: 18px;
  color: #F4C952;
}
.web-footer .contact-info li {
  margin-bottom: 20px;
}
.web-footer .contact-info a {
  display: flex;
  gap: 8px;
}
.web-footer .social-links h4 {
  font-family: "Roboto Slab", serif;
}
.web-footer .social-links img {
  width: 46px;
}
@media screen and (max-width: 767px) {
  .web-footer {
    margin-top: 0;
  }
}

.news-letter-wrapper {
  padding-bottom: 48px;
}
.news-letter-wrapper .btn-clr {
  background-color: #5E80A3;
}
.news-letter-wrapper .news-letter {
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  background-color: #245C95;
  padding: 24px 38px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.news-letter-wrapper h3 {
  color: #fff;
  font-size: clamp(17px, 2.5vw, 22px);
  font-family: "DM Sans", sans-serif;
}
.news-letter-wrapper p {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 2.5vw, 20px);
}
.news-letter-wrapper input {
  color: #818181;
  border-radius: 8px;
  border: 1px solid #BECFE0;
  padding: 10px 16px;
  font-size: clamp(14px, 1.5vw, 16px);
  padding: 18px 15px;
  border: none;
  width: 100%;
}
.news-letter-wrapper input:focus {
  outline: none;
  box-shadow: none;
}
.news-letter-wrapper input::placeholder {
  font-weight: 600;
}
.news-letter-wrapper .news-letter .row {
  position: relative;
  z-index: 2;
}
.news-letter-wrapper .news-loons {
  position: absolute;
  bottom: -89px;
  left: -56px;
  z-index: 1;
  pointer-events: none;
  max-width: 320px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .news-letter-wrapper {
    padding-top: 48px;
  }
  .news-letter-wrapper .news-letter {
    position: static;
    left: unset;
    top: unset;
    transform: unset;
  }
}
@media (max-width: 576px) {
  .news-letter-wrapper .news-loons {
    left: -24px;
    max-width: 140px;
  }
}

.hero-sec {
  position: relative;
}
.hero-sec .form-sec-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .hero-sec .form-sec-wrap {
    display: flex;
    justify-content: center;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.hero-sec .form-sec {
  max-width: 500px;
}
.hero-sec .form-sec .search-form {
  display: flex;
  background: #fff;
  border-radius: 12px;
  padding: 7px;
  font-size: clamp(14px, 1.5vw, 16px);
  box-shadow: 0 0 15px 0 rgba(36, 92, 149, 0.1);
  border: 1px solid #d3deea;
}
.hero-sec .form-sec .search-form:focus-within {
  border: 2px solid #282B27;
}
.hero-sec .form-sec .search-form input {
  border: none;
  background-color: transparent;
  padding-left: 12px;
  width: 100%;
}
.hero-sec .form-sec .search-form input:focus {
  outline: none;
  box-shadow: none;
}
.hero-sec .form-sec p {
  color: #5A5A5A;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 500;
  font-family: "Inter", sans-serif;
  line-height: 1.8;
}
.hero-sec .decor {
  padding: 0;
  width: 100%;
  aspect-ratio: 1/1;
}
.hero-sec .decor img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .hero-sec .decor {
    max-width: 600px;
    margin-inline: auto;
  }
}
.hero-sec .image-sec {
  background-color: #94afca;
  clip-path: polygon(25% 0, 100% 0%, 100% 100%, 0% 100%);
  height: 100%;
  width: 100%;
  position: relative;
}
.hero-sec .image-sec .main-image {
  max-width: 500px;
  width: 100%;
  padding: 0;
  position: absolute;
  z-index: 9999;
  bottom: -30px;
  left: 60px;
}
.hero-sec .image-sec .main-image img {
  width: 100%;
  height: 100%;
}
.hero-sec .image-sec .site-title h1 {
  font-family: "DM Sans", sans-serif;
  position: absolute;
  top: 110px;
  right: 80px;
  color: #282B27;
  font-size: clamp(40px, 5vw, 48px);
  max-width: 12ch;
  line-height: 1.17;
  text-align: right;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .hero-sec .image-sec .site-title h1 {
    right: 5%;
  }
}
@media screen and (max-width: 1200px) {
  .hero-sec .image-sec {
    height: 500px;
    width: 100%;
  }
}

.marquee {
  background: #245C95;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
}

.marquee-track {
  display: inline-flex;
  width: max-content;
  will-change: transform;
}

.marquee-track span {
  padding: 0 3rem;
  font-size: 0.9rem;
}

.about-us {
  margin-bottom: 320px;
}
.about-us .stats-wrap {
  padding-bottom: 300px;
  background-color: #F0F5FC;
}
.about-us svg {
  width: 80px;
  height: 80px;
  stroke: #245C95;
}
.about-us .about-bg {
  width: 78%;
  aspect-ratio: 13/5;
  position: absolute;
  bottom: -514px;
  overflow: hidden;
  border-radius: 12px;
}
.about-us .about-bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.about-us .about-us-content {
  position: absolute;
  bottom: -617px;
  right: 0;
}
.about-us .about-us-content .content {
  margin-left: auto;
  padding: 40px;
  background-color: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 760px;
  box-shadow: 24px 15px 35px 0 rgba(64, 64, 64, 0.1);
}

.why-choose-us .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #f6f9fb;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}
.why-choose-us .icon i {
  font-size: 24px;
  color: #245C95;
}
.why-choose-us .img-sec {
  width: 100%;
  aspect-ratio: 3/2;
  max-width: 560px;
}
.why-choose-us .img-sec img {
  width: 100%;
  height: 100%;
}
.why-choose-us .stat {
  border: 1.3px solid #3670BA;
  background-color: #FBFCFF;
  border-radius: 16px;
  padding-block: 44px;
  text-align: center;
}
.why-choose-us .stat h3 {
  color: #245C95;
  font-weight: 600;
  font-size: clamp(24px, 4vw, 36px);
  font-family: "DM Sans", sans-serif;
}
.why-choose-us .stat p {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 500;
  color: #8A8A8A;
}

.how-we-work .video-sec {
  border: 1px solid #E5E7EB;
  padding: 14px;
  border-radius: 16px;
  aspect-ratio: 3/2;
  width: 100%;
}
.how-we-work .video-sec img {
  border-radius: 4px;
  width: 100%;
  height: 100%;
}

.how-it-works .index-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #245C95;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  color: #fff;
  font-size: clamp(24px, 4vw, 36px);
  flex-shrink: 0;
}
.how-it-works .decor {
  height: 2px;
  background-repeat: repeat;
  background-size: 60%;
  width: 70%;
  position: absolute;
  left: 50%;
  top: 35px;
  transform: translateX(-50%);
  z-index: -1;
}

.blogs-sec .blog {
  border: 1px solid transparent;
}
.blogs-sec .blog:hover {
  border: 1px solid #E7E7E7;
  border-radius: 8px;
  box-shadow: 0 36px 40px 0 rgba(0, 0, 0, 0.06);
}
.blogs-sec .blog figure {
  width: 100%;
  aspect-ratio: 2/1;
  border-radius: 12px;
  overflow: hidden;
}
.blogs-sec .blog figure img {
  width: 100%;
  height: 100%;
}
.blogs-sec .blog h3 {
  color: #282B27;
  font-size: clamp(17px, 2.5vw, 22px);
}

.you-need-to-know-sec i {
  font-size: 2.5rem;
}
.you-need-to-know-sec .benefit {
  padding: 46px 24PX;
  border-radius: 20px;
  border: 1px solid #729acf;
  background-color: #fff;
  color: #282B27;
}
.you-need-to-know-sec .benefit svg {
  width: 80px;
  height: 80px;
  stroke: #245C95;
}

@media screen and (max-width: 1200px) {
  .about-us .about-bg {
    bottom: -411px;
  }
}
@media screen and (max-width: 1023px) {
  .about-us .about-bg {
    width: 100%;
    bottom: -411px;
  }
}
@media screen and (max-width: 993px) {
  .how-it-works .decor {
    transform: rotate(90deg);
    left: -129px;
    top: 179px;
    width: 50%;
    background-size: 60%;
  }
}
@media screen and (max-width: 767px) {
  .how-it-works .decor {
    display: none;
  }
  .about-us .about-bg {
    aspect-ratio: 3/2;
    width: 100%;
    bottom: -411px;
  }
}
@media screen and (max-width: 426px) {
  .how-it-works .decor {
    display: block;
    left: -147px;
    top: 206px;
    width: 92%;
  }
}
@media screen and (max-width: 425px) {
  .how-it-works .decor {
    display: none;
  }
  .about-us .about-bg {
    bottom: -350px;
  }
}
@media screen and (max-width: 376px) {
  .about-us .about-bg {
    display: none;
  }
  .about-us .about-us-content {
    bottom: -639px;
  }
}
.new-sec .para {
  color: #5A5A5A;
}

header.auth {
  background-color: transparent;
  position: absolute;
  top: 0;
  width: 100%;
}

.auth-title {
  font-size: 28px;
  color: #245C95;
  font-weight: 600;
}

.auth-btn {
  display: inline-block;
  padding: 11px;
  min-width: 80px;
  text-decoration: none;
  color: #245C95;
  font-size: clamp(14px, 1.5vw, 16px);
  text-align: center;
}
.auth-btn.active {
  color: #fff;
  background-color: #245C95;
}

.site-logo {
  padding: 32px 34px;
  background-color: #fff;
}
.site-logo img {
  width: 78px;
}

.auth-sec {
  height: 100vh;
  font-size: 14px;
}
.auth-sec .wrap {
  height: 100vh;
}
.auth-sec figure.right {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}
.auth-sec figure.right img {
  width: 100%;
  height: 100%;
}
.auth-sec .login-form {
  max-width: 660px;
  padding: 0px 68px;
}
.auth-sec .fortget-password {
  font-size: 14px;
}
@media screen and (max-width: 992px) {
  .auth-sec {
    padding-block: 150px;
  }
  .auth-sec .login-form {
    margin-inline: auto;
  }
  .auth-sec .wrap {
    height: unset;
  }
}
@media screen and (max-width: 426px) {
  .auth-sec .login-form {
    padding-inline: 40px;
  }
}

.success-img {
  width: 170px;
  height: 170px;
}
.success-img img {
  width: 100%;
  height: 100%;
}

.otp-input-wrapper {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.otp-input {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  outline: none;
  color: #333;
}

.otp-input:focus {
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.otp-input:hover {
  border-color: #b0b0b0;
}

.otp-input.filled {
  border-color: #4a90e2;
  background-color: #f8fbff;
}

.otp-input.error {
  border-color: #dc3545;
  animation: shake 0.3s;
}

/* Responsive design */
@media (max-width: 576px) {
  .otp-input {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  .otp-input-wrapper {
    gap: 8px;
  }
}
.job_benefit_sec i {
  font-size: 2.5rem;
}
.job_benefit_sec .benefit {
  padding: 16px 24PX;
  border-radius: 16px;
}
.job_benefit_sec .benefit.blue {
  background-color: #c1dade;
}
.job_benefit_sec .benefit.orange {
  background-color: #f6c243;
}
.job_benefit_sec .benefit.pink {
  background-color: #f2a6b0;
}

.you_need_sec .right-img {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}
.you_need_sec .right-img img {
  width: 100%;
  height: 100%;
}
.you_need_sec .instructions {
  align-items: center;
}
.you_need_sec .instructions i {
  font-size: 3.5rem;
  display: block;
}

.tips_registration_sec {
  background-color: #f6f9fb;
}
.tips_registration_sec .tips figure {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-inline: auto;
  width: 9rem;
  height: 9rem;
}
.tips_registration_sec .tips figure i {
  display: block;
  text-align: center;
  font-size: 5rem;
  font-weight: 400;
}
.tips_registration_sec .tips figure.blue {
  background-color: #c1dade;
}
.tips_registration_sec .tips figure.orange {
  background-color: #f6c243;
}
.tips_registration_sec .tips figure.pink {
  background-color: #f2a6b0;
}
.tips_registration_sec .tips figure.purple {
  background-color: #5b3d5b;
}
.tips_registration_sec .tips figure.skin {
  background-color: #e7cda2;
}
.tips_registration_sec .tips p {
  font-size: clamp(12px, 1.5vw, 14px);
}

.faq-sec {
  --faq-primary-bg: #f0f5fc;
  --text-primary: #000;
  font-family: "DM Sans", sans-serif;
  /* FAQ Title */
  /* Accordion Customization */
  /* Accordion Button */
  /* Remove default arrow */
  /* Custom Plus Icon */
  /* Accordion Body */
  /* Responsive Design */
  /* Smooth transitions */
}
.faq-sec .faq-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}
.faq-sec .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 3rem;
}
.faq-sec .accordion {
  border-radius: 0;
}
.faq-sec .accordion-item {
  background-color: #ffffff;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 0;
}
.faq-sec .accordion-item:first-child {
  border-top: 1px solid #e0e0e0;
}
.faq-sec .accordion-item:last-child {
  border-bottom: 1px solid #e0e0e0;
}
.faq-sec .accordion-button {
  background-color: #ffffff;
  color: #555555;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 1.5rem 2rem;
  border: none;
  box-shadow: none;
  position: relative;
  transition: all 0.3s ease;
}
.faq-sec .accordion-button:not(.collapsed) {
  background-color: var(--faq-primary-bg);
  box-shadow: none;
  border-bottom: 1px solid #ffe4cc;
}
.faq-sec .accordion-button:hover {
  background-color: var(--faq-primary-bg);
}
.faq-sec .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
.faq-sec .accordion-button::after {
  display: none;
}
.faq-sec .accordion-icon {
  position: absolute;
  right: 2rem;
  font-size: 1.25rem;
  color: var(--text-primary);
  transition: transform 0.3s ease;
  font-weight: 600;
}
.faq-sec .accordion-button:not(.collapsed) .accordion-icon {
  transform: rotate(45deg);
}
.faq-sec .accordion-button.collapsed .accordion-icon {
  transform: rotate(0deg);
  color: var(--text-primary);
}
.faq-sec .accordion-body {
  padding: 1.5rem 2rem 2rem 2rem;
  background-color: var(--faq-primary-bg);
  color: #333333;
  font-size: 1rem;
  line-height: 1.7;
}
.faq-sec .accordion-body p {
  margin-bottom: 1rem;
}
.faq-sec .accordion-body ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.faq-sec .accordion-body ul li {
  margin-bottom: 0.5rem;
  color: #333333;
}
.faq-sec .accordion-body ul li::marker {
  color: var(--text-primary);
}
@media (max-width: 768px) {
  .faq-sec .faq-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .faq-sec .accordion-button {
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    padding-right: 3.5rem;
  }
  .faq-sec .accordion-icon {
    right: 1.5rem;
    font-size: 1.125rem;
  }
  .faq-sec .accordion-body {
    padding: 1.25rem 1.5rem 1.75rem 1.5rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 576px) {
  .faq-sec .faq-section {
    padding: 10px;
  }
  .faq-sec .faq-title {
    font-size: 1.75rem;
  }
  .faq-sec .accordion-button {
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
    padding-right: 3rem;
  }
  .faq-sec .accordion-icon {
    right: 1.25rem;
    font-size: 1rem;
  }
  .faq-sec .accordion-body {
    padding: 1rem 1.25rem 1.5rem 1.25rem;
    font-size: 0.9rem;
  }
}
.faq-sec .accordion-collapse {
  transition: height 0.35s ease;
}/*# sourceMappingURL=front.css.map */