/* FONTS & NORMALIZE */
@font-face {
    font-family: 'Manrope';
    src: url('/themes/creditsfast/fonts/index_v3/Manrope.woff2') format('woff2');
    font-weight: 200 800;
    font-display: swap;
    font-style: normal;
  }
  
   *,
   *::before,
   *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
   }
   
   html,
   body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont,
      'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
     height: 100%;
     scroll-behavior: smooth;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
     line-height: 1.5;
     font-weight: 500;
     background-color: #fff;
     color: #020617;
     -webkit-text-size-adjust: none;
   }
   
   ul[role='list'],
   ol[role='list'] {
     list-style: none;
   }
   
   img,
   picture,
   video,
   canvas,
   svg {
     display: block;
     max-width: 100%;
   }
   
   input,
   button,
   textarea,
   select {
     font: inherit;
   }
   
   a {
     text-decoration: none;
     color: inherit;
   }
   
   
/* REUSABLE */
.container {
  width: 100%;
  padding: 0 16px;
  margin-left: auto;
  margin-right: auto;
}

.primary_button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  width: 100%;
  background-color: #2563EB;
  box-shadow: inset 0px 4px 9px rgba(255, 255, 255, 0.25),inset 0px 1px 1px rgba(255, 255, 255, 0.2), 0px 4px 4px rgba(8, 8, 8, 0.08), 0px 1px 2px rgba(8, 8, 8, 0.2);
  color: #ffffff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 650;
  transition: background-color 0.3s ease;
}

.link {
  color: #2563EB;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: #60a5fa;
}

.link-dark {
  color: #0f172a;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: #94a3b8;
  font-size: 14px;
  transition: all .3s ease;
}

/* HEADER */
header {
  position: relative;
  z-index: 10;
  background-color: #ffffff;
  padding: 16px 0px;
  box-shadow: 0px 1px 4px rgba(12, 12, 13, 0.05);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header_button__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 0px 24px;
  background-color: #2563EB;
  box-shadow: inset 0px 4px 9px rgba(255, 255, 255, 0.25),inset 0px 1px 1px rgba(255, 255, 255, 0.2), 0px 4px 4px rgba(8, 8, 8, 0.08), 0px 1px 2px rgba(8, 8, 8, 0.2);
  color: #ffffff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 650;
  transition: background-color 0.3s ease;
}

.header_button__profile {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F1F5F9;
  border-radius: 8px;
  box-shadow: 0px 1px 4px rgba(12, 12, 13, 0.05), 0px 1px 4px rgba(12, 12, 13, 0.1);
  transition: background-color, box-shadow .3s ease;
}

/* FIRST SCREEN */
.firstscreen__desktop-img {
  display: none;
}

.firstscreen {
  background-color: #EFF6FF;
  padding-top: 24px;
  border-radius: 0px 0px 12px 12px;
  overflow: hidden;
}

.firstscreen__heading {
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.firstscreen__subheading {
  text-align: center;
  margin-bottom: 24px;
}

.is--desktop {
  display: none;
}

.firstscreen__reviews {
  margin-top: 24px;
  padding: 136px 16px 20px 16px;
  background: url(/themes/creditsfast/images/index_v3/firstscreen_cover.jpg);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}

.review_item__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 0px;
  border-radius: 12px;
  box-shadow: 0px 1px 4px rgba(12, 12, 13, 0.05), 0px 1px 4px rgba(12, 12, 13, 0.1);
  background-color: #ffffff;
}

.review_item__avatars {
  display: flex;
}

.review_item_avatar-single {
  height: 48px;
  margin-left: -12px;
  border-radius: 9999px;
  border: 1px solid #ffffff;
  box-shadow: 0px 1px 4px rgba(12, 12, 13, 0.05), 0px 1px 4px rgba(12, 12, 13, 0.1);
}

.review_item_avatar-single:first-child {
  margin-left: 0px;
}

.review_item_rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.review_rating_value {
  font-size: 14px;
  font-weight: 700;
}

.review_item_info-text {
  font-size: 12px;
  font-weight: 600;
  padding-left: 4px;
}

.review_item_info-secondary {
  font-size: 12px;
  font-weight: 500;
  padding-left: 4px;
  color: #475569;
}

.review_item__bottom {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 16px;
  z-index: 0;
  padding: 24px 12px 12px 12px;
  margin-top: -12px;
  border: 1px solid #F1F5F9;border-radius: 0px 0px 12px 12px;
  background-color: #F8FAFC;
}

.review_item_bottom-check {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
}

/* STEPS */
.steps {
  padding: 32px 0px 40px 0px;
}

.section__h2 {
  text-align: center;
  font-size: 24px;
  line-height: 140%;
  font-weight: 650;
}

.section_h2__accent {
  color: #1D4ED8;
}

.section_h2__underline {
  display: inline-block;
  position: relative;
}

.section_h2__underline:after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  height: 16px;
  width: 146px;
  background-image: url(/themes/creditsfast/images/index_v3/underline.svg);
 background-size: contain;
  background-repeat: no-repeat;
}

.steps__wrapper {
  padding-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.steps__link-item {
  display: block;
  width: 100%;
  background-color: #ffffff;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.03), 0px 2px 10px rgba(0, 0, 0, 0.06), 0px 0px 1px rgba(0, 0, 0, 0.3);
}

.steps_link__top {
  display: flex;
  justify-content: flex-end;
  align-items: end;
  width: 100%;
  height: 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
}

.steps_item__counter {
  position: relative;
  display: inline-block;
  padding: 6px 0px 0px 6px;
  border-radius: 8px 0px 8px 0px;
  background-color: #ffffff;
}

.steps_item__counter::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background-image: url(/themes/creditsfast/images/index_v3/round_bottom.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.steps_item__counter::after{
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-100%);
  background-image: url(/themes/creditsfast/images/index_v3/round_top.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.steps_item__counter-tag {
  background-color: #DBEAFE;
  padding: 2px 20px;
  font-size: 12px;
  font-weight: 600;
  color: #1D4ED8;border-radius: 4px;
}

.steps_link__bottom {
  padding: 4px;
}

.steps_link__heading {
  font-size: 16px;
  font-weight: 650;
  padding: 8px 0px 6px 0px;
}

.steps_link__text {
  font-size: 14px;
  line-height: 24px;
  font-weight: 550;
  color: #475569;
  padding-bottom: 12px;
}

.steps_link__time {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 550;
  color: #64748B;
}

.section__button {
  padding-top: 24px;
}

/* CONS */
.cons {
  padding: 24px 0px 32px 0px;
  background-color: #EFF6FF;
  border-radius: 12px;
}

.cons__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  width: 100%;
  padding-top: 36px;
}

.cons__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0px 12px 12px 12px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 1px 4px rgba(12, 12, 13, 0.05);
}

.cons_item__img {
  height: 80px;
  padding-top: 4px;
}

.cons_item__heading {
  font-size: 16px;
  font-weight: 650;
  margin-bottom: 4px;
}

.cons_item__text {
  font-size: 14px;
  font-weight: 550;
  color: #64748B;
}

/* REVIEWS */
.reviews {
  padding: 32px 0px 36px 0px;
}

.reviews__wrapper {
  padding: 0px 16px;
}

.review__card-scroll {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 20px;
  padding: 12px 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.review__card-scroll::-webkit-scrollbar {
  display: none;
}

.review__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 80vw;
  scroll-snap-align: start;
  background: #ffffff;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.03), 0px 2px 10px rgba(0, 0, 0, 0.06), 0px 0px 1px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 16px;
}

.review_card__rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review_card__text {
  padding-top: 16px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
}

.review_card__person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.review_card_person-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  color: #ffffff;
  border-radius: 9999px;
}

.review_card_person__name {
  font-size: 14px;
  font-weight: 800;
}

.review_card_person__sum {
  font-size: 12px;
  font-weight: 500;
  color: #64748B;
}

/* HERO */
.hero {
  padding: 32px 0px 32px 0px;
  background-color: #EFF6FF;
  border-radius: 12px;
}

.hero__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__image {
  max-height: 208px;
  margin-bottom: 24px;
}

.section__h3 {
  text-align: center;
  font-size: 20px;
  line-height: 155%;
  font-weight: 650;
  margin-bottom: 8px;
}

.section_h3__accent {
  color: #1D4ED8;
}

.hero__text {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
}

/* FAQ */
.faq {
  padding: 36px 0px 36px 0px;
}

.faq__wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.03), 0px 2px 10px rgba(0, 0, 0, 0.06), 0px 0px 1px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 8px 8px 8px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}

.faq__question {
  font-size: 16px;
  font-weight: 600;
  color: #020617;
}

.faq__icon-btn {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: #ffffff;
}

.faq__icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faq__item--open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  position: relative;
  display: none;
  margin: 0px 8px 8px 8px;
  border-radius: 0px 0px 12px 12px;
  padding: 24px 12px 12px 12px;
  font-size: 14px;
  font-weight: 550;
  color: #334155;
  background-color: #ffffff;
  box-shadow: inset 0px -2px 7px rgba(226, 232, 240, 1);
}

.faq__answer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 24px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(241, 245, 249, 1) 0%, rgba(241, 245, 249, 0) 100%);
}


.faq__item--open .faq__answer {
  display: block;
}

.faq__item--open {
border-radius: 16px;
background-color: #F1F5F9;
}

/* FOOTER */
footer {
  padding: 24px 0px 36px 0px;
  background-color: #F8FAFC;
  border-top: 1px solid #E2E8F0;
}

.footer__logo {
  margin: 0 auto;
}

.footer__links {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.footer__copyright {
  text-align: center;
  padding: 20px 0px 24px 0px;
  font-size: 14px;
}

.footer__legaltext {
  font-size: 10px;
  color: #475569;
  text-align: center;
}

/* Tablet S */
@media (min-width: 576px) {
.primary_button {
 width: fit-content;
 padding: 0px 32px 0px 40px;
 margin: 0 auto;
  }
.calculator {
  max-width: 360px;
}
.review__item {
  max-width: 328px;
  margin: 0 auto;
}
.steps__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}
.steps__link-item {
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s ease;
}
.steps_link__bottom {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review__card {
  flex: 0 0 40vw;
}
.section__h3 {
  margin: 8px auto;
  max-width: 65%;
}
.hero__text {
  margin: 0 auto;
  max-width: 55%;
}
.footer__copyright {
  font-size: 14px;
}
.footer__legaltext {
  font-size: 10px;
}
}

/* Tablet M */
@media (min-width: 640px) {
  .review__card {
    flex: 0 0 45vw;
  }
  .section__h3 {
    margin: 8px auto;
    max-width: 80%;
  }
  .hero__text {
    margin: 0 auto;
    max-width: 80%;
  }
}

/* Tablet L */
@media (min-width: 768px) {
  .review__card {
    flex: 0 0 45vw;
  }
  .section__h3 {
    margin: 8px auto;
    max-width: 70%;
  }
  .hero__text {
    margin: 0 auto;
    max-width: 70%;
  }
  .faq__wrapper {
    justify-content: center;
    align-items: center;
  }
  .faq__item {
    width: 100%;
    max-width: 65%;
  }
}

/* Laptop */
@media (min-width: 1024px) {
  .firstscreen {
    padding: 64px 0px;
  }
  .firstscreen__desktop-img {
    display: block;
    height: 380px;
    margin-top: 56px;
  }
  .accent__desktop {
    color: #1D4ED8;
  }
  .calculator {
    flex-shrink: 0;
    min-width: 360px;
  }
  .firstscreen__heading {
    font-size: 48px;
    line-height: 64px;
    text-align: left;
    margin-bottom: 16px;
  }
  .firstscreen__subheading {
    font-size: 20px;
    line-height: 32px;
    text-align: left;
  }
  .firstscreen__reviews {
    display: none;
  }
.is--desktop {
  display: block;
  margin-top: 24px;
}
.firstscreen__wrapper {
  display: flex;
  justify-content: space-between;
}
  .section__button {
    padding-top: 32px;
  }
  .cons__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .review__item {
    max-width: 360px;
  }
  .review_item__top {
    gap: 16px;
  }
  .review__card {
    flex: 0 0 30vw;
  }
  .review__card-mask {
    position: relative;
    overflow: hidden;
  }
.review__card-mask::before,
.review__card-mask::after {
  content: '';
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.review__card-mask::before {
  left: 0;
  background: linear-gradient(to right, white 0%, transparent 100%);
}

.review__card-mask::after {
  right: 0;
  background: linear-gradient(to left, white 0%, transparent 100%);
}
  .review__card-scroll {
    position: relative;
    scroll-snap-type: none;
  }
  .hero__wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .section__h3 {
    min-width: 100%;
    text-align: left;
    margin-bottom: 8px;
  }
  .hero__content {
    max-width: 50%;
  }
  .hero__image {
    margin-bottom: 0px;
    max-height: 218px;
  }
  .hero__text {
    min-width: 100%;
    text-align: left;
    margin: 0;
  }
  .is--hero {
    width: fit-content;
    text-align: left;
    margin: 0;
  }
}

/* Desktop */
@media (min-width: 1280px) {
  .container {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .section__h2 {
    font-size: 30px;
  }
  .steps {
    padding: 56px 0px 56px 0px;
  }
  .steps__wrapper {
    padding-top: 56px;
  }
  .steps_link__top {
    height: 88px;
  }
  .steps_link__bottom {
    height: auto;
  }
  .cons {
    padding: 56px 0px 56px 0px;
  }
  .cons__grid {
    padding-top: 56px;
    gap: 16px;
  }
  .review_item_info-text {
    font-size: 14px;
  }
  .review_item_info-secondary {
    font-size: 14px;
  }
  .review_item_bottom-check {
    font-size: 14px;
  }
  .reviews {
    padding: 56px 0px 56px 0px;
  }
  .review__card-scroll {
    margin-top: 32px;
  }
  .hero {
    padding: 56px 0px 56px 0px;
  }
  .section__h3 {
    font-size: 24px;
    margin: 0px 0px 12px 0px;
  }
  .hero__text {
    font-size: 16px;
  }
  .hero__image {
    max-height: 238px;
  }
  .faq__toggle {
    padding: 16px 16px 16px 20px;
  }
  .faq__question {
    font-size: 20px;
  }
  .faq__answer {
    font-size: 16px;
  }
  footer {
    padding: 40px 0px;
  }
  .footer__logo {
    height: 24px;
  }
  .footer__links {
    margin-top: 32px;
  }
  .link-dark {
    font-size: 16px;
  }
  .footer__copyright {
    font-size: 14px;
    padding: 32px 0px;
  }
  .footer__legaltext {
    font-size: 12px;
  }
}

/* Large Desktop */
@media (min-width: 1440px) {
  .review__card {
    flex: 0 0 20vw;
  }
}

/* HOVER EFFECTS */
@media (hover: hover) and (pointer: fine) {
.primary_button:hover {
  background-color: #3b82f6;
}
.primary_button img {
  transition: transform 0.3s ease;
}
.primary_button:hover img {
  transform: translateX(4px);
}
.header_button__cta:hover {
  background-color: #3b82f6;
}
.header_button__profile:hover {
  background-color: #f8fafc;
  box-shadow: none;
}
.steps__link-item:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.faq__item:hover {
  background-color: #f1f5f9;
}
.link-dark:hover {
  text-underline-offset: 4px;
  text-decoration-color: #3b82f6;
}
}