/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type='file'] {
  max-width: 100%;
}

@font-face {
  font-family: 'Inter';
  src: url('/fontsWFCS/inter-variablefontWFCS.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Lato';
  src: url('/fontsWFCS/lato-blackWFCS.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('/fontsWFCS/roboto-variablefontWFCS.woff2')
    format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Anton';
  src: url('/fontsWFCS/anton-regularWFCS.woff2') format('woff2-variations');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  background: #fff;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}

/* header  */

.headerWFCS {
  background: #0e2126;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(15px);
  padding: 16px 0;
  top: 0;
  z-index: 1000;
}

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

.logoWFCS {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-imgWFCS {
  width: 40px;
  height: 51.249px;
}

.logo-textWFCS {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

/* DESKTOP NAV */
.navWFCS {
  display: flex;
}

.nav-listWFCS {
  list-style: none;
  display: flex;
  gap: 36px;
  padding: 0;
  margin: 0;
}

.nav-listWFCS li {
  margin: 0;
}

.nav-listWFCS a {
  text-decoration: none;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  transition: 0.25s;
}

.nav-listWFCS a:hover {
  color: #fd7526;
}

/* BURGER */
.burgerWFCS {
  width: 32px;
  height: 24px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
}

.burgerWFCS span {
  width: 100%;
  height: 4px;
  background: #fd7526;
  border-radius: 4px;
  transition: 0.3s;
}

.mobileNavWFCS {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: #0e2126;
  padding: 60px 30px;
  z-index: 999;

  display: none;
}

.mobileNavWFCS.active {
  display: block;
}

.closeWFCS {
  position: absolute;
  top: 25px;
  right: 25px;
  color: #fd7526;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 40px;
  line-height: 1;
}

.mobile-listWFCS {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mobile-listWFCS a {
  text-decoration: none;
  color: #ffffff;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

/* OVERLAY */
.overlayWFCS {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

.overlayWFCS.active {
  opacity: 1;
  pointer-events: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .navWFCS {
    display: none;
  }

  .burgerWFCS {
    display: flex;
  }
}

/* hero */

.heroWFCS {
  padding-top: 70px;
  padding-bottom: 70px;
}

.hero-contentWFCS {
  background-image: url('/imagesWFCS/hero-cardbgWFCS.webp');
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px;
  padding-top: 80px;
  padding-bottom: 50px;
  border-radius: 35px;
}

.hero-textWFCS {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 567px;
}

.hero-contentWFCS h1 {
  color: #fff;

  /* H1 */
  font-family: Lato;
  font-size: 38px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.hero-contentWFCS p {
  color: #fff;

  /* p_regular */
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.hero-contentWFCS span {
  color: #242424;
  text-align: center;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.hero-contentWFCS ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  row-gap: 0;
}

.hero-contentWFCS ul li img {
  width: 20px;
  height: 20px;
}

.hero-contentWFCS ul li {
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 10px;
  background: #fff;
  padding: 4px;
}

@media (max-width: 740px) {
  .hero-contentWFCS {
    background-image: url('/imagesWFCS/hero-bg-stars-mbWFCS.webp');
  }
}

@media (max-width: 1024px) {
  .heroWFCS {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-contentWFCS {
    padding: 32px;
    padding-top: 60px;
    padding-bottom: 40px;
    border-radius: 28px;
    background-size: cover;
  }

  .hero-contentWFCS h1 {
    font-size: 34px;
  }

  .hero-contentWFCS p {
    font-size: 15px;
    max-width: 80%;
  }

  .hero-contentWFCS ul {
    gap: 8px;
  }

  .hero-contentWFCS ul li {
    padding: 4px 6px;
  }

  .hero-contentWFCS ul li img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 740px) {
  .heroWFCS {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .hero-contentWFCS {
    background-image: url('/imagesWFCS/hero-bg-stars-mbWFCS.webp');
    padding: 24px;
    padding-top: 40px;
    padding-bottom: 32px;
    border-radius: 26px;
  }

  .hero-textWFCS {
    max-width: 100%;
    gap: 14px;
  }

  .hero-contentWFCS h1 {
    font-size: 28px;
    line-height: 1.15;
  }

  .hero-contentWFCS p {
    font-size: 15px;
    line-height: 1.35;
  }

  .hero-contentWFCS ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .hero-contentWFCS ul li {
    padding: 6px 8px;
    border-radius: 12px;
  }

  .hero-contentWFCS ul li img {
    width: 18px;
    height: 18px;
  }

  .hero-contentWFCS span {
    font-size: 12px;
  }
}

/*  */

.premiumWFCS {
  padding-top: 70px;
}

.premium-cardWFCS {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0px 16px;
}

.premium-infoWFCS {
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  background: #fff8f8;
  padding: 16px;
}

.premium-listWFCS {
  display: flex;
  flex-direction: column;
  width: 357px;
}

.premium-itemWFCS {
  display: flex;
  align-items: center;
}

.premium-infoTitleWFCS {
  color: #242424;
  text-align: center;
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 16px;
}

.premium-infoTextWFCS {
  color: #5c5c5c;
  text-align: center;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.premium-titleWFCS {
  color: #242424;
  text-align: center;
  font-family: Lato;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 16px;
}

.premium-descWFCS {
  color: #242424;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 16px;
}

.premium-centerWFCS {
  border-radius: 16px;
  border: 1px solid #cfd6fa;
  background: #eefbf6;
  padding: 16px 32px;
}

.premium-logoWFCS {
  max-width: 200px;
}

.premium-offerSubWFCS {
  color: #5c5c5c;
  text-align: center;
  /* p_regular */
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.premium-offerTitleWFCS {
  color: #242424;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.premium-itemTextWFCS {
  color: #242424;

  /* p_regular */
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.premium-btnWrapWFCS {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
  background: #fd7526;
  padding: 3px 16px;
  width: max-content;
}

.premium-btnWrapWFCS img {
  width: 38px;
  height: 38px;
}
.premium-btnWFCS {
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100px;
}
@media (max-width: 740px) {
  .premium-topWFCS {
    display: none;
  }

  .premium-centerWFCS {
    padding: 16px;
  }
}

/* ===========================
   DESKTOP FIX
=========================== */

.premium-cardWFCS {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 40px;
}

.premium-leftWFCS {
  max-width: 420px;
  flex-shrink: 0;
}

.premium-rightWFCS {
  flex: 1;
}

.premium-offerWFCS {
  max-width: 204px;
}

@media (max-width: 1024px) {
  .premium-cardWFCS {
    flex-direction: column;
    justify-content: center;
    gap: 40px;
  }

  .premium-leftWFCS,
  .premium-rightWFCS {
    max-width: 100%;
    flex: 1 1 100%;
    text-align: center;
  }

  .premium-btnWrapWFCS {
    margin: 0 auto;
  }

  .premium-itemWFCS {
    justify-content: center;
    text-align: center;
  }
}

/* ===========================
     MOBILE (≤740px)
  =========================== */
@media (max-width: 740px) {
  .premium-topWFCS {
    display: none;
  }

  .premium-centerWFCS {
    padding: 16px;
  }

  .premium-cardWFCS {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 24px;
    padding: 16px;
  }

  .premium-leftWFCS,
  .premium-rightWFCS {
    max-width: 100%;
    text-align: center;
  }

  .premium-listWFCS {
    align-items: center;
  }

  .premium-itemWFCS {
    align-items: flex-start;
    text-align: left;
    width: 100%;
    max-width: 320px;
  }

  .premium-btnWrapWFCS {
    width: 100%;
    justify-content: space-between;
    padding: 12px;
  }
}

/* ================= TITLE ================= */
.elementsWFCS {
  padding: 70px 0;
}
.elements-titleWFCS {
  color: #242424;
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 40px;
}

/* ================= LIST ================= */

.elements-listWFCS {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 24px;
}

/* ================= CARD ================= */

.elements-itemWFCS {
  width: 100%;
  max-width: 390px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  background: #eefbf6;
}

/* icon */
.elements-iconWFCS {
  width: 64px;
  height: 63.976px;
  margin-bottom: 14px;
}

/* h3 */
.elements-itemTitleWFCS {
  color: #242424;
  font-family: Lato, sans-serif;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
}

/* paragraph */
.elements-itemTextWFCS {
  color: #5c5c5c;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

/* ================= TABLET ================= */

@media (max-width: 1024px) {
  .elements-listWFCS {
    gap: 20px;
    flex-wrap: wrap;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 740px) {
  .elements-itemWFCS {
    max-width: 100%;
  }

  .elements-iconWFCS {
    width: 48px;
    height: 48px;
  }

  .elements-titleWFCS {
    font-size: 22px;
  }
}

/*  */

.compare-titleWFCS {
  color: #242424;
  text-align: center;
  font-family: Lato;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 10px;
}

.compare-subtitleWFCS {
  color: #242424;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  margin-bottom: 30px;
}

.compare-tableWFCS {
  width: 100%;
  border-collapse: collapse;
}

.compare-tableWFCS th,
.compare-tableWFCS td {
  border: 1px solid #e8e8e8;
  padding: 14px 12px;
  font-family: Roboto;
  font-size: 16px;
  color: #242424;
  text-align: center;
}

.compare-tableWFCS thead th {
  background: #eefbf6;
  font-family: Lato;
  font-size: 18px;
  font-weight: 900;
}

.compare-tableWFCS tbody th {
  font-family: Lato;
  font-size: 18px;
  font-weight: 900;
}

.compare-tableWFCS tbody tr:nth-child(even) td,
.compare-tableWFCS tbody tr:nth-child(even) th {
  background: #f7fffb;
}

@media (max-width: 740px) {
  .compare-titleWFCS {
    font-size: 20px;
  }

  .compare-subtitleWFCS {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .compare-tableWFCS th,
  .compare-tableWFCS td {
    font-size: 10px;
    padding: 10px 8px;
  }

  .compare-tableWFCS thead th {
    font-size: 13px;
  }

  .compare-tableWFCS tbody th {
    font-size: 13px;
  }

  .compare-tableWFCS td {
    line-height: 1.3;
  }
}

.materialWFCS {
  padding: 70px 0;
}

.material-titleWFCS {
  color: #242424;
  text-align: center;
  font-family: Lato;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 10px;
}

.material-subtitleWFCS {
  color: #242424;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.material-listWFCS {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.material-itemWFCS {
  width: 240px;
  height: 425px;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  background: #eefbf6;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.material-iconWFCS {
  width: 48px;
  height: auto;
}

.material-itemWFCS h3 {
  color: #242424;
  font-family: Lato;
  font-size: 18px;
  font-weight: 900;
  line-height: normal;
}

.material-itemWFCS p {
  color: #5c5c5c;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.material-btnWFCS {
  margin-top: 40px;
  margin-top: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;

  background: #fd7526;
  border-radius: 10px;
  padding: 10px 12px;

  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.material-btnWFCS img {
  width: 20px;
  height: 20px;
}

@media (max-width: 1000px) {
  .material-listWFCS {
    flex-wrap: wrap;
  }
}

@media (max-width: 740px) {
  .material-titleWFCS {
    font-size: 20px;
  }

  .material-subtitleWFCS {
    font-size: 14px;
  }

  .material-itemWFCS h3 {
    font-size: 16px;
  }

  .material-itemWFCS p {
    font-size: 14px;
  }

  .material-btnWFCS {
    font-size: 15px;
  }
}

.faq-titleWFCS {
  text-align: center;
  font-family: Lato;
  font-size: 24px;
  font-weight: 900;
  color: #242424;
  margin-bottom: 30px;
}

.faq-listWFCS {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.faq-itemWFCS {
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  background: #eefbf6;
  padding: 0 20px;
}

.faq-questionWFCS {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;

  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  color: #242424;
  text-align: left;
}

.faq-arrowWFCS {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.faq-itemWFCS.active .faq-arrowWFCS {
  transform: rotate(180deg);
}

.faq-answerWFCS {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answerWFCS p {
  padding-bottom: 18px;
  font-family: Roboto;
  font-size: 16px;
  color: #5c5c5c;
  font-weight: 400;
}

/* MOBILE */
@media (max-width: 740px) {
  .faq-questionWFCS {
    font-size: 15px;
  }

  .faq-answerWFCS p {
    font-size: 14px;
  }

  .faq-titleWFCS {
    font-size: 20px;
  }
}

.awareWFCS {
  padding: 70px 0;
  display: flex;
  justify-content: center;
}

.aware-boxWFCS {
  max-width: 1200px;
  width: 100%;
  padding: 40px 20px;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  background: #fff7f7;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.aware-iconWFCS {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.aware-titleWFCS {
  color: #242424;
  font-family: Lato;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 16px;
}

.aware-textWFCS {
  max-width: 900px;
  color: #5c5c5c;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

/* MOBILE */
@media (max-width: 740px) {
  .aware-boxWFCS {
    padding: 30px 16px;
  }

  .aware-titleWFCS {
    font-size: 16px;
  }

  .aware-textWFCS {
    font-size: 14px;
  }

  .aware-iconWFCS {
    width: 42px;
    height: 42px;
  }
}
.footerWFCS {
  background: #0e1b20;
  padding-top: 40px;
  padding-bottom: 40px;
  color: #fff;
}

/* 18+ IMAGE BLOCK */
.footer-ageWFCS {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.footer-ageWFCS img {
  width: 80px;
  height: auto;
}

/* TOP SECTIONS */
.footer-topWFCS {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

/* LOGO */
.footer-logoWFCS {
  width: 102px;
  height: 130px;
}

/* COLUMNS */
.footer-colWFCS h3 {
  color: #fff;
  font-family: Lato;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 16px;
}

.footer-colWFCS ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-colWFCS li {
  margin-bottom: 10px;
}

/* LINKS */
.footer-colWFCS a {
  color: #fd7526;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
}

/* TEXT BLOCKS */
.footer-middleWFCS {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-textBlockWFCS h3 {
  font-family: Lato;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.footer-textBlockWFCS p {
  font-family: Roboto;
  font-size: 16px;
  line-height: 1.4;
  max-width: 480px;
}

/* PARTNERS */
.footer-partnersWFCS ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.footer-partnersWFCS li a img {
  width: 150px;
  height: auto;
}

/* ---------------- MOBILE ---------------- */

@media (max-width: 740px) {
  .footer-logoWFCS {
    display: none;
  }

  .footer-topWFCS {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .footer-colWFCS h3 {
    font-size: 16px;
  }

  .footer-colWFCS a {
    font-size: 14px;
  }

  .footer-middleWFCS {
    flex-direction: column;
    gap: 30px;
  }

  .footer-textBlockWFCS p {
    font-size: 14px;
  }

  .footer-partnersWFCS ul {
    justify-content: center;
    gap: 20px;
  }

  .footer-partnersWFCS li a img {
    width: 90px;
  }
}

/* casinos page */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.principlesWFCS {
  padding: 70px 0;
}

.principles-titleWFCS {
  color: #242424;
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 10px;
}

.principles-subtitleWFCS {
  color: #242424;
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto 40px;
}

.principles-listWFCS {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 35px 25px;
}

.principles-itemWFCS:nth-child(-n + 4) {
  grid-column: span 3;
}

.principles-itemWFCS:nth-child(n + 5) {
  grid-column: span 4;
}

.principles-itemWFCS h3 {
  color: #242424;
  font-family: Lato, sans-serif;
  font-size: 18px;
  font-weight: 900;
  margin-top: 12px;
  margin-bottom: 6px;
}

.principles-itemWFCS p {
  color: #5c5c5c;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.img-178WFCS {
  width: 100%;
  height: 178px;
  object-fit: cover;
  border-radius: 12px;
}

.img-220WFCS {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 1199px) {
  .principles-listWFCS {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .principles-itemWFCS {
    grid-column: auto;
  }
}

@media (max-width: 767px) {
  .principlesWFCS {
    padding: 50px 0;
  }

  .principles-subtitleWFCS {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .principles-listWFCS {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .principles-itemWFCS {
    grid-column: auto;
  }

  .principles-itemWFCS h3 {
    font-size: 17px;
  }

  .principles-itemWFCS p {
    font-size: 15px;
  }
}

.benefitsWFCS {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.benefit-cardWFCS {
  background: #f1faf7;
  border-radius: 16px;
  padding: 30px 35px;
  border: 1px solid #e4efea;
  width: calc(50% - 30px);
}

.benefit-cardWFCS h3 {
  color: #242424;
  text-align: center;
  font-family: Lato;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 14px;
}

.benefit-descWFCS {
  color: #5c5c5c;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}

.benefit-listWFCS {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-listWFCS li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;

  color: #5c5c5c;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.benefit-listWFCS li img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Tablet */
@media (max-width: 991px) {
  .benefit-cardWFCS {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .benefitsWFCS {
    padding: 40px 15px;
  }

  .benefit-cardWFCS {
    padding: 25px 20px;
  }

  .benefit-listWFCS li {
    gap: 10px;
    font-size: 15px;
  }

  .benefit-cardWFCS h3 {
    font-size: 17px;
  }
}

/* caba page */

.safetyRecoWFCS {
  padding: 60px 0;
}

.safety-gridWFCS {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.safety-cardWFCS {
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  padding: 35px 40px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.card-greenWFCS {
  background: #eeffe9;
}

.card-yellowWFCS {
  background: #fff9e9;
}

.safety-cardWFCS h3 {
  color: #242424;
  font-family: Lato;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 18px;
}

.safety-cardWFCS p {
  color: #5c5c5c;
  font-family: Roboto;
  font-size: 16px;
  line-height: 1.5;
}

/* Tablet */
@media (max-width: 991px) {
  .safety-gridWFCS {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .safety-cardWFCS {
    padding: 30px 25px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .safety-cardWFCS {
    padding: 25px 20px;
  }

  .safety-cardWFCS p {
    font-size: 15px;
  }
}
.toplistWFCS {
  padding: 50px 0 70px;
}

.toplist-gridWFCS {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  justify-content: center;
  max-width: 1240px;
}

.topcardWFCS {
  background: #ecf6ef;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  padding: 32px 28px 30px;
  position: relative;
  box-sizing: border-box;

  width: calc((100% - 80px) / 3);
}

.topcardWFCS.row2 {
  width: 48%;
}

.topcard-numWFCS {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #0f4f39;
  color: #fff;
  font-family: Inter;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 10px;
}

.topcard-tagWFCS {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #fff4e1;
  font-family: Roboto;
  font-size: 12px;
  color: #986000;
  padding: 6px 12px;
  border-radius: 5px;
  box-shadow: 0 1px 5.8px rgba(0, 0, 0, 0.1);
}

.topcard-titleWFCS {
  margin-top: 55px;
  margin-bottom: 16px;
  font-family: Lato;
  font-size: 20px;
  font-weight: 900;
  color: #242424;
}

.topcard-featuresWFCS {
  list-style: none;
  padding: 0;
  margin: 0;
}

.topcard-featuresWFCS li {
  display: flex;
  gap: 10px;
  font-family: Inter;
  font-size: 15px;
  margin-bottom: 12px;
}

.topcard-featuresWFCS img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ===========================
      MOBILE
=========================== */
@media (max-width: 900px) {
  .topcardWFCS {
    width: 100%;
  }
  .topcardWFCS.row2 {
    width: 100%;
  }
}

.caba-infoWFCS {
  padding: 60px 0;
}

.caba-info-listWFCS {
  list-style: none;
  margin: 0;
  padding: 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.caba-info-itemWFCS {
  background: #f1faf5;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 28px 26px;
}

/* Titles */
.caba-info-itemWFCS h3 {
  color: var(--black, #242424);

  /* h3 */
  font-family: Lato;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 12px;
}

/* Paragraph */
.caba-info-itemWFCS p {
  color: var(--gray_text, #5c5c5c);

  /* p_regular */
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 12px;
}

/* Inner UL */
.inner-listWFCS {
  list-style: disc;
  padding-left: 22px;
}

.inner-listWFCS li {
  color: var(--gray_text, #5c5c5c);

  /* p_regular */
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* Tablet */
@media (max-width: 1199px) {
  .caba-info-listWFCS {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .caba-info-listWFCS {
    grid-template-columns: 1fr;
  }

  .caba-info-itemWFCS {
    padding: 22px 20px;
  }

  .caba-info-itemWFCS h3 {
    font-size: 17px;
  }

  .inner-listWFCS li,
  .caba-info-itemWFCS p {
    font-size: 15px;
  }
}

/* bonus */

.bonusIntroWFCS {
  padding: 60px 0;
}

.bonus-titleWFCS {
  color: #242424;
  text-align: center;
  font-family: Lato;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 18px;
}

.bonus-subWFCS {
  color: #242424;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  margin: 0 auto 40px;
}

.bonus-boxWFCS {
  background: #fff9e9;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  padding: 28px 25px;
  text-align: center;
}

.bonus-box-titleWFCS {
  color: #242424;
  font-family: Lato;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 18px;
}

.bonus-box-textWFCS {
  color: #242424;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.bonusTypesWFCS {
  padding: 60px 0;
}

.bonusTypes-titleWFCS {
  color: #242424;
  text-align: center;
  font-family: Lato;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 35px;
}

.bonusTypes-listWFCS {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1300px;
}

.bonusTypes-itemWFCS {
  background: #f3fbf7;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  padding: 26px 22px;
  text-align: center;
}

.bonusTypes-itemWFCS h3 {
  color: var(--black_text, #474747);
  text-align: center;

  /* h3 */
  font-family: Lato;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 12px;
}

.bonusTypes-itemWFCS p {
  color: var(--gray_text, #6a6a6a);
  text-align: center;

  /* p_regular */
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1199px) {
  .bonusTypes-listWFCS {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .bonusTypes-listWFCS {
    grid-template-columns: repeat(1, 1fr);
  }

  .bonusTypes-itemWFCS p {
    font-size: 15px;
  }

  .bonusTypes-titleWFCS {
    font-size: 20px;
  }
}

.bonosHowWFCS {
  padding: 70px 0;
}

.bonosHow-wrapperWFCS {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}

.bonosHow-itemWFCS {
  flex: 1;
  min-width: 420px;
  background: #f3fbf7;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 26px 28px;
}

.bonosHow-itemWFCS h3 {
  color: #242424;
  font-family: Lato;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 15px;
}

.bonosHow-descWFCS {
  color: #242424;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 18px;
}

.bonosHow-listWFCS {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bonosHow-listWFCS li {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  color: #242424;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;

  margin-bottom: 14px;
}

.bonosHow-listWFCS li img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .bonosHow-wrapperWFCS {
    flex-direction: column;
  }

  .bonosHow-itemWFCS {
    min-width: 100%;
  }
}

.bonosRegulWFCS {
  padding: 70px 0;
}

.bonosRegul-titleWFCS {
  color: #242424;
  text-align: center;
  font-family: Lato;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 20px;
}

.bonosRegul-textWFCS {
  color: #242424;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto 40px;
}

.bonosRegul-wrapperWFCS {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 25px;
  flex-wrap: wrap;
}

.bonosRegul-itemWFCS {
  flex: 1;
  min-width: 420px;
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  text-align: center;
}

.bg-greenWFCS {
  background: #eeffe9;
}

.bg-yellowWFCS {
  background: #fff9e9;
}

.bonosRegul-itemWFCS h3 {
  color: #242424;
  font-family: Lato;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 12px;
}

.bonosRegul-itemWFCS p {
  color: #242424;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 991px) {
  .bonosRegul-wrapperWFCS {
    flex-direction: column;
  }

  .bonosRegul-itemWFCS {
    min-width: 100%;
  }
}

/* pagos */

.depositGuideWFCS {
  padding: 70px 0;
}

/* H2 */
.depositGuide-titleWFCS {
  color: #242424;
  text-align: center;
  font-family: Lato;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 20px;
}

/* P */
.depositGuide-textWFCS {
  color: #242424;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
  line-height: normal;
}

/* Mobile */
@media (max-width: 767px) {
  .depositGuide-titleWFCS {
    font-size: 22px;
  }

  .depositGuide-textWFCS {
    font-size: 15px;
  }
}

.localPaymentsWFCS {
  padding: 70px 0;
}

.localPayments-titleWFCS {
  color: #242424;
  text-align: center;
  font-family: Lato;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 12px;
}

.localPayments-subtitleWFCS {
  color: #242424;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto 40px;
}

.localPayments-listWFCS {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.paymentCardWFCS {
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  background: #eefbf6;
  padding: 26px 22px;
}

.paymentCardWFCS h3 {
  color: #242424;
  font-family: Lato;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 6px;
}

.paymentCard-descWFCS {
  color: #242424;
  font-family: Roboto;
  font-size: 16px;
  margin-bottom: 18px;
}

.paymentCard-innerWFCS {
  list-style: none;
  padding: 18px 20px;
  margin: 0;

  border-radius: 16px;
  border: 1px solid #e8e8e8;
  background: #fff;
}

.paymentCard-innerWFCS li {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  font-family: Roboto;
  font-size: 16px;
  color: #242424;

  margin-bottom: 14px;
}

.paymentCard-innerWFCS li:last-child {
  margin-bottom: 0;
}

.paymentCard-innerWFCS img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 1199px) {
  .localPayments-listWFCS {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .localPayments-listWFCS {
    grid-template-columns: 1fr;
  }

  .paymentCardWFCS {
    padding: 22px 18px;
  }

  .paymentCard-innerWFCS {
    padding: 16px;
  }
}

.criteriaWFCS {
  padding: 70px 0;
}

.criteria-listWFCS {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.criteria-itemWFCS {
  flex: 1;
  min-width: 420px;

  border-radius: 16px;
  border: 1px solid #e8e8e8;
  background: #eefbf6;

  padding: 26px 28px;
}

.criteria-itemWFCS h2 {
  color: #242424;
  font-family: Lato;
  font-size: 24px;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 15px;
}

.criteria-itemWFCS p {
  color: #5c5c5c;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
}

.criteria-ulWFCS {
  list-style: disc;
  padding-left: 22px;
  margin: 0 0 20px 0;

  color: #5c5c5c;
  font-family: Roboto;
  font-size: 16px;
  line-height: 1.45;
}

.criteria-ulWFCS li {
  margin-bottom: 10px;
}

/* Mobile */
@media (max-width: 767px) {
  .criteria-itemWFCS {
    min-width: 100%;
  }

  .criteria-itemWFCS h2 {
    font-size: 20px;
  }

  .criteria-itemWFCS p,
  .criteria-ulWFCS li {
    font-size: 15px;
  }
}

/* registro  */

.guideWFCS {
  padding: 70px 0;
}

.guide-containerWFCS {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.guide-titleWFCS {
  color: #242424;
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 15px;
}

.guide-subWFCS {
  color: #242424;
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  max-width: 860px;
  margin: 0 auto 40px;
}

.guide-gridWFCS {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 25px;
}

.guide-cardWFCS {
  background: #f3fbf7;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 26px 28px;
  position: relative;
}

.guide-stepWFCS {
  display: inline-block;
  background: #0f4f39;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  padding: 6px 14px;
  margin-bottom: 14px;
}

.guide-cardWFCS h3 {
  color: #242424;
  font-family: Lato, sans-serif;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 12px;
}

.guide-cardWFCS p {
  color: #5c5c5c;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.45;
}

.guide-cardWFCS ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guide-cardWFCS ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  color: #5c5c5c;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;

  margin-bottom: 14px;
}

.guide-cardWFCS ul li img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 3px;
}

.guide-cardWFCS ul li:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .guide-gridWFCS {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 575px) {
  .guide-cardWFCS {
    padding: 22px 20px;
  }

  .guide-stepWFCS {
    font-size: 15px;
    padding: 5px 12px;
  }

  .guide-cardWFCS h3 {
    font-size: 17px;
  }

  .guide-cardWFCS p,
  .guide-cardWFCS ul li {
    font-size: 15px;
  }
}

/* contact */

.contact-sectionWFCS {
  padding: 40px 0;
  max-width: 606px;
  margin: auto;
}

.contact-titleWFCS {
  color: var(--black, #242424);
  text-align: center;
  font-family: Lato;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 10px;
}

.contact-subtitleWFCS {
  color: var(--black, #242424);
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 30px;
}

.contact-inputWFCS {
  width: 100%;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;

  color: var(--text-gray, #656565);
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
}

.contact-textareaWFCS {
  width: 100%;
  height: 170px;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 16px;

  color: var(--text-gray, #656565);
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  resize: none;
  margin-bottom: 25px;
}

.contact-successWFCS {
  text-align: center;
  color: #0f4f39;
}

.contact-submitWFCS {
  width: 100%;
  padding: 18px 0;
  border: none;
  border-radius: 10px;

  background: var(--button_color, #fd7526);
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.contact-submitWFCS:hover {
  opacity: 0.9;
}

.contact-selectGroupWFCS {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.contact-selectHeaderWFCS {
  width: 100%;
  background: #fff;
  border: none;
  padding: 16px;

  font-family: Roboto;
  font-size: 16px;
  color: var(--text-gray, #656565);
  text-align: left;

  display: flex;
  align-items: center;
  justify-content: space-between;

  cursor: pointer;
}

.contact-selectArrowWFCS {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.contact-selectOptionsWFCS {
  display: none;
  flex-direction: column;
  background: #fff;
}

.contact-selectGroupWFCS.open .contact-selectOptionsWFCS {
  display: flex;
}

.contact-selectGroupWFCS.open .contact-selectArrowWFCS {
  transform: rotate(180deg);
}

.contact-optionWFCS {
  border-top: 1px solid #e8e8e8;
  cursor: pointer;
}

.contact-optionWFCS input {
  display: none;
}

.contact-optionWFCS span {
  display: block;
  padding: 16px;
  font-family: Roboto;
  font-size: 16px;
  color: var(--text-gray, #656565);
}

.contact-optionWFCS:hover span {
  background: #f4f4f4;
}

.contact-optionWFCS input:checked + span {
  background: #efefef;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .contact-titleWFCS {
    font-size: 22px;
  }

  .contact-inputWFCS,
  .contact-textareaWFCS,
  .contact-selectHeaderWFCS,
  .contact-optionWFCS span {
    font-size: 15px;
    padding: 14px;
  }

  .contact-submitWFCS {
    font-size: 15px;
    padding: 16px 0;
  }
}

.terms {
  padding: 10px;
}

.terms ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style-type: none;
}

.terms h1 {
  color: #242424;
  font-family: Lato;
  font-size: 38px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 16px;
}

.terms h2 {
  color: #242424;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 16px;
}

.terms p,
ol,
li {
  color: #5c5c5c;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 16px;
}
