@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Anton&display=swap");
a:focus {
  outline: none; }

a:focus {
  outline: none; }

.closers-loading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 80px 0; }
  .closers-loading__dots {
    display: flex;
    gap: 10px; }
  .closers-loading__dot {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f5cc00;
    animation: closers-bounce 1s ease-in-out infinite; }
    .closers-loading__dot:nth-child(2) {
      animation-delay: 0.15s; }
    .closers-loading__dot:nth-child(3) {
      animation-delay: 0.3s; }
  .closers-loading__text {
    font-family: "Anton", sans-serif;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #000;
    text-transform: uppercase;
    opacity: 0.5; }

@keyframes closers-bounce {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.4; }
  40% {
    transform: scale(1);
    opacity: 1; } }
.closers-load-more {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  align-self: center;
  display: flex;
  width: fit-content;
  cursor: pointer;
  filter: drop-shadow(0px 4.978px 4.978px rgba(0, 0, 0, 0.25));
  transition: filter 0.2s; }
  .closers-load-more.is-loading {
    cursor: default;
    pointer-events: none; }
  @media (hover: hover) {
    .closers-load-more:hover {
      filter: drop-shadow(0px 5.13px 5.13px rgba(0, 0, 0, 0.35)); }
      .closers-load-more:hover .closers-loadmore-inner {
        background: #f5cc00; }
      .closers-load-more:hover .closers-loadmore-icon {
        filter: brightness(0) invert(1); }
      .closers-load-more:hover .closers-loadmore-text {
        color: #fff; } }
  .closers-load-more:active {
    filter: drop-shadow(0px 5.13px 5.13px rgba(0, 0, 0, 0.35)); }
    .closers-load-more:active .closers-loadmore-inner {
      background: #f5cc00; }
    .closers-load-more:active .closers-loadmore-icon {
      filter: brightness(0) invert(1); }
    .closers-load-more:active .closers-loadmore-text {
      color: #fff; }
  @media (max-width: 991px) {
    .closers-load-more {
      width: 100%;
      filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.25)); } }

.closers-loadmore-inner {
  width: 390px;
  height: 83px;
  padding: 18.912px 89.403px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19.772px;
  box-sizing: border-box;
  background: #fff;
  clip-path: polygon(18px 0%, 100% 0%, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0% 100%, 0% 18px);
  transition: background 0.2s; }
  @media (max-width: 991px) {
    .closers-loadmore-inner {
      width: 100%;
      padding: max(1.4vw, 11px) 0;
      gap: 18px;
      clip-path: none;
      height: auto; } }

.closers-loadmore-icon {
  width: 34.452px;
  height: 34.452px;
  flex-shrink: 0;
  display: block; }
  @media (max-width: 991px) {
    .closers-loadmore-icon {
      width: max(3vw, 21.504px);
      height: max(3vw, 21.504px); } }

.closers-loadmore-spinner {
  display: block;
  width: 28px;
  height: 28px;
  border: 3px solid rgba(0, 0, 0, 0.15);
  border-top-color: #333;
  border-radius: 50%;
  animation: closers-spin 0.7s linear infinite; }
  @media (max-width: 991px) {
    .closers-loadmore-spinner {
      width: 20px;
      height: 20px; } }

@keyframes closers-spin {
  to {
    transform: rotate(360deg); } }
.c-page-title {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 20px; }
  @media (max-width: 991px) {
    .c-page-title {
      position: relative; } }

.c-page-title__bg--mobile {
  display: none; }
  @media (max-width: 991px) {
    .c-page-title__bg--mobile {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      pointer-events: none;
      z-index: 0; } }

.c-page-title__inner {
  position: relative;
  width: 100%;
  max-width: 1460px;
  flex-shrink: 0;
  aspect-ratio: 1460 / 89; }
  @media (max-width: 991px) {
    .c-page-title__inner {
      width: 100%;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center; } }

.c-page-title__bg {
  position: absolute;
  left: 0;
  top: 16.85%;
  width: 100%;
  height: 83.15%;
  max-width: none;
  object-fit: fill;
  pointer-events: none;
  display: block; }
  @media (max-width: 991px) {
    .c-page-title__bg {
      display: none; } }

.c-page-title__text {
  position: absolute;
  left: 17%;
  top: 35%;
  transform: translateY(-50%);
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: clamp(34px, 4.3vw, 64px);
  line-height: 1.4;
  color: #000;
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap; }
  @media (max-width: 991px) {
    .c-page-title__text {
      position: relative;
      left: auto;
      top: auto;
      z-index: 1;
      font-size: 28px;
      letter-spacing: 0.3657px;
      transform: none; } }

.closers-loadmore-text {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: normal;
  letter-spacing: 0.9px;
  color: #333;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s; }
  @media (max-width: 991px) {
    .closers-loadmore-text {
      font-size: max(2.2vw, 18px);
      letter-spacing: 0.42px; } }

#closers-faq-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #f7f7f7;
  overflow-x: clip;
  padding-top: 58px; }
  @media (max-width: 991px) {
    #closers-faq-page {
      background-color: #f7f7f7;
      min-height: unset;
      padding-top: 0; } }

.cfaq-page-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  z-index: 0; }

.cfaq-page-bg__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: top; }
  @media (max-width: 991px) {
    .cfaq-page-bg__img {
      display: none; } }

@media (min-width: 992px) {
  .c-page-title__text {
    left: 19%; } }
#closers-faq-content {
  position: relative;
  z-index: 1;
  padding: 30px 0 70px; }
  @media (max-width: 991px) {
    #closers-faq-content {
      padding: 20px 15px; } }

.cfaq-body {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  width: 100%;
  max-width: 1500px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box; }
  @media (max-width: 991px) {
    .cfaq-body {
      padding: 0;
      gap: 20px;
      align-items: center; } }

.cfaq-tabs {
  display: flex;
  width: 100%;
  max-width: 996px;
  height: 54px;
  flex-shrink: 0; }
  @media (max-width: 991px) {
    .cfaq-tabs {
      max-width: 100%;
      height: 39px; } }

.cfaq-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #fff;
  border: 1px solid #ddd;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  text-decoration: none;
  text-align: center;
  padding: 5px;
  cursor: pointer;
  transition: background 0.15s; }
  .cfaq-tab span {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: clamp(14px, 1.5vw, 24px);
    line-height: 1.4;
    color: #333;
    text-transform: capitalize; }
    @media (max-width: 991px) {
      .cfaq-tab span {
        font-size: 18px;
        font-weight: 500;
        white-space: normal;
        line-height: 1; } }
    @media (max-width: 484px) {
      .cfaq-tab span {
        font-size: 16px; } }
    @media (max-width: 350px) {
      .cfaq-tab span {
        font-size: 14px; } }
  .cfaq-tab:first-child {
    border-radius: 13px 0 0 13px; }
  .cfaq-tab:last-child {
    border-radius: 0 13px 13px 0; }
  @media (max-width: 991px) {
    .cfaq-tab:first-child, .cfaq-tab:last-child {
      border-radius: 0; } }
  .cfaq-tab.is-active {
    background: #000;
    border-bottom: 3px solid #f5cc00; }
    .cfaq-tab.is-active span {
      color: #f5cc00; }
  .cfaq-tab:not(.is-active):hover {
    background: #f8f8f8; }

.cfaq-items-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  align-items: center; }
  @media (max-width: 991px) {
    .cfaq-items-list {
      max-width: 100%;
      gap: 20px; } }

.cfaq-item {
  width: 100%;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #ddd;
  box-sizing: border-box;
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  transition: background 0.2s; }
  .cfaq-item.is-open {
    background: #f8f8f8; }
  .cfaq-item.is-open .cfaq-item-q-row {
    background: #fff;
    border-bottom: 1px solid var(--is-grey-lighter, #DDD);
    border-radius: 10px; }
  @media (max-width: 991px) {
    .cfaq-item {
      border-radius: 0px; } }

.cfaq-item-q-row {
  display: flex;
  align-items: center;
  padding: 0 61px 0 130px;
  height: 100px; }
  @media (max-width: 991px) {
    .cfaq-item-q-row {
      padding: 14px 7px 14px 9px;
      height: auto;
      min-height: 60px;
      align-items: center;
      gap: 13px;
      border-radius: 0px !important; } }

.cfaq-q-label,
.cfaq-a-label {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.48;
  letter-spacing: -0.48px;
  color: #f0b100;
  flex-shrink: 0;
  min-width: 48px; }
  @media (max-width: 991px) {
    .cfaq-q-label,
    .cfaq-a-label {
      font-size: 16.32px;
      letter-spacing: -0.3264px;
      min-width: auto; } }

@media (max-width: 991px) {
  .cfaq-q-label {
    padding-top: 1px; } }

.cfaq-q-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.48;
  letter-spacing: -0.4px;
  color: #333;
  flex: 1; }
  @media (max-width: 991px) {
    .cfaq-q-text {
      font-size: 16px;
      font-weight: 300;
      line-height: 1.1;
      letter-spacing: 0; } }

.cfaq-arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
  transform: rotate(180deg);
  transition: transform 0.2s;
  margin-top: 10px; }
  .cfaq-arrow svg path {
    fill: #787878;
    transition: fill 0.2s; }
  @media (max-width: 991px) {
    .cfaq-arrow {
      width: 22px;
      height: 22px;
      margin-left: 0;
      margin-top: 3px; }
      .cfaq-arrow svg {
        width: 22px;
        height: 22px; } }

.cfaq-item.is-open .cfaq-arrow {
  transform: rotate(0deg);
  margin-top: 0; }
  .cfaq-item.is-open .cfaq-arrow svg path {
    fill: #f0b100; }

.cfaq-item.is-open .cfaq-q-label {
  color: #f0b100; }

.cfaq-item-a-row {
  display: flex;
  align-items: flex-start;
  padding: 43px 55px 40px 130px; }
  @media (max-width: 991px) {
    .cfaq-item-a-row {
      padding: 14px 7px 14px 9px;
      gap: 13px; } }

.cfaq-a-text {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: normal;
  color: #333;
  flex: 1;
  padding-top: 5px; }
  .cfaq-a-text p {
    margin: 0 0 6px; }
    .cfaq-a-text p:last-child {
      margin-bottom: 0; }
  @media (max-width: 991px) {
    .cfaq-a-text {
      font-size: 16px;
      padding-top: 3px; } }

.cfaq-list-wrap {
  position: relative;
  min-height: 300px;
  width: 100%; }

.cfaq-loadmore-text {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: normal;
  letter-spacing: 0.9px;
  color: #333;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s; }
  @media (max-width: 991px) {
    .cfaq-loadmore-text {
      font-size: 14px;
      letter-spacing: 0.42px; } }

/*# sourceMappingURL=faq.css.map */
