/* 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,
a:hover,
a:active,
a:focus {
  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%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

/* fonts */

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

@font-face {
  font-family: 'Montserrat';
  src: url('/fontsLISA/montserrat-variablefont-wghtLISA.woff2')
    format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Kodchasan';
  src: url('/fontsLISA/kodchasan-boldLISA.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

@media (max-width: 768px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* header */
.headerTopLISA {
  background: linear-gradient(90deg, #635cbd 0%, #9e5cbd 100%);
  color: #fff;
  padding: 6px 0;
}

.headerTopInnerLISA {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.headerTopIconLISA {
  width: 18.993px;
  height: 8.688px;
}

.headerTopTextLISA {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
}

@media (max-width: 768px) {
  .headerTopLISA {
    display: none;
  }
}

.headerNavLISA {
  background: linear-gradient(183deg, #090712 2.99%, #27263f 97.37%);
  padding-top: 13px;
  padding-bottom: 13px;
}

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

.headerLogoLISA {
  padding: 13px 0;
  display: flex;
  align-items: center;
}

.headerLogoLISA img {
  width: 70px;
  height: 73.339px;
  object-fit: contain;
}

.navLISA ul {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navLISA a {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: normal;
  transition: opacity 0.2s ease;
}

.navLISA a:hover {
  opacity: 0.7;
}

.burgerLISA {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.burgerLISA span {
  width: 100%;
  height: 4px;
  background: #f580ff;
  border-radius: 4px;
  display: block;
  transition: 0.3s ease;
}

.burgerLISA.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.burgerLISA.active span:nth-child(2) {
  opacity: 0;
}
.burgerLISA.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 900px) {
  .burgerLISA {
    display: flex;
  }

  .navLISA {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #1b1a2e;
    padding-top: 120px;
    transition: 0.35s ease;
    z-index: 1000;
  }

  .navLISA ul {
    flex-direction: column;
    gap: 32px;
  }

  .navLISA.open {
    right: 0;
  }
}

/* hero */
.hero-bg-imgLISA {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  object-fit: cover;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}

.heroLISA {
  position: relative;
  overflow: hidden;
  padding: 40px 15px;

  background: linear-gradient(
    180deg,
    rgba(9, 7, 18, 0.35) 5%,
    rgba(9, 7, 18, 0.15) 26%,
    rgba(9, 7, 18, 0.49) 61.32%,
    #090712 75%
  );
}

.hero-containerLISA,
.hero-textLISA,
.hero-imageLISA {
  position: relative;
  z-index: 2;
}

.hero-containerLISA {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-textLISA {
  max-width: 608px;
}

.hero-textLISA h1 {
  color: #fff;
  font-family: Kodchasan;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 49px;
  margin-bottom: 20px;
}

.hero-textLISA p {
  color: #cbcbcb;
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 28px;
}

.hero-badgesLISA {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badgesLISA li {
  border-radius: 12px;
  border: 1px solid #44406e;
  background: linear-gradient(90deg, #635cbd 0%, #9e5cbd 100%);
  color: #fff;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 10px 14px;
  width: fit-content;
}

.hero-imageLISA {
  position: relative;
}

.hero-image-wrapLISA {
  position: relative;
  width: 608px;
  height: auto;
}

.hero-flagLISA {
  width: 100%;
  display: block;
}

.cube {
  position: absolute;
  display: block;
  pointer-events: none;
}

.cube-1 {
  width: 267.263px;
  height: 154.386px;
  aspect-ratio: 267.26/154.39;
  transform: rotate(-4.709deg);
  left: 0%;
  top: 22%;
}

.cube-2 {
  width: 152px;
  height: 152px;
  aspect-ratio: 1/1;
  transform: rotate(-51.481deg);
  left: 28%;
  top: 58%;
}

.cube-3 {
  width: 152px;
  height: 152px;
  aspect-ratio: 1/1;
  transform: rotate(-37.291deg);
  left: 49%;
  top: 43%;
}

@keyframes cube3D_1 {
  0% {
    transform: translate(0, 0) rotate(-4.709deg) rotateX(0deg) rotateY(0deg);
  }
  33% {
    transform: translate(3px, -4px) rotate(-5deg) rotateX(6deg) rotateY(-4deg);
  }
  66% {
    transform: translate(-2px, 3px) rotate(-4deg) rotateX(-4deg) rotateY(6deg);
  }
  100% {
    transform: translate(0, 0) rotate(-4.709deg) rotateX(0deg) rotateY(0deg);
  }
}

@keyframes cube3D_2 {
  0% {
    transform: translate(0, 0) rotate(-51.481deg) rotateX(0deg) rotateY(0deg);
  }
  33% {
    transform: translate(-4px, 3px) rotate(-53deg) rotateX(8deg) rotateY(5deg);
  }
  66% {
    transform: translate(3px, -2px) rotate(-50deg) rotateX(-6deg) rotateY(-4deg);
  }
  100% {
    transform: translate(0, 0) rotate(-51.481deg) rotateX(0deg) rotateY(0deg);
  }
}

@keyframes cube3D_3 {
  0% {
    transform: translate(0, 0) rotate(-37.291deg) rotateX(0deg) rotateY(0deg)
      scale(1);
  }
  50% {
    transform: translate(3px, 3px) rotate(-38deg) rotateX(5deg) rotateY(-6deg)
      scale(1.03);
  }
  100% {
    transform: translate(0, 0) rotate(-37.291deg) rotateX(0deg) rotateY(0deg)
      scale(1);
  }
}

.cube-1 {
  animation: cube3D_1 6s ease-in-out infinite;
  transform-style: preserve-3d;
}

.cube-2 {
  animation: cube3D_2 7s ease-in-out infinite;
  transform-style: preserve-3d;
}

.cube-3 {
  animation: cube3D_3 5.5s ease-in-out infinite;
  transform-style: preserve-3d;
}

@media (max-width: 999px) {
  .hero-imageLISA {
    display: none;
  }
}

@media (max-width: 999px) {
  .heroLISA {
    padding: 60px 20px;
  }

  .hero-containerLISA {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
  }

  .hero-badgesLISA li {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-imageLISA {
    display: none;
  }
}

@media (max-width: 640px) {
  .heroLISA {
    padding: 24px;
  }

  .hero-imageLISA {
    display: none;
  }

  .hero-textLISA h1 {
    font-size: 20px;
    line-height: 25px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .hero-textLISA p {
    color: #cbcbcb;
    font-family: Inter;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
  }

  .hero-badgesLISA {
    flex-direction: column;
    gap: 10px;
  }

  .hero-badgesLISA li {
    width: max-content;
    padding: 10px 14px;
    margin-left: 0;
    margin-right: auto;
  }

  .hero-containerLISA {
    text-align: left;
    padding: 0;
  }
}

/* items */
.itemsLISA {
  background-color: #090712;
  padding: 40px 0;
}

.container-items {
  max-width: 1240px;
  margin: 0 auto;
}

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

.casinoCardsLISA > li:not(:last-child) {
  margin-bottom: 24px;
}

.casinoCardLISA {
  border-radius: 31px;
  border: 1px solid var(--stroke, #44406e);
  background: rgba(18, 17, 27, 0.79);
  box-shadow: 0 -2px 0 0 #b9b3ff;
  backdrop-filter: blur(16px);
  color: #fff;
  overflow: hidden;
}

.casinoCard-contentLISA {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 16px;
}

.casinoCard-logoLISA {
  flex: 0 0 240px;
  display: flex;
  justify-content: center;
}

.casinoCard-logoLISA img {
  width: 195px;
  object-fit: contain;
}

.casinoCard-centerLISA {
  display: flex;
  align-items: center;
  gap: 15px;
}

.casinoCard-bonusLISA {
  max-width: 231px;
}

.bonus-label {
  color: #e4e4e4;
  text-align: center;
  font-family: Inter;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 8px;
}

.bonus-text {
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 17px;
  font-weight: 400;
}

.casinoCard-featuresLISA {
  max-width: 430px;
  margin-top: 18px;
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  align-self: stretch;
}

.features-title {
  color: #e4e4e4;
  text-align: left;
  font-family: Inter;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 10px;
}

.casinoCard-featuresLISA ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.casinoCard-featuresLISA li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.casinoCard-featuresLISA img {
  width: 28px;
  height: 28px;
}

.casinoCard-bottomLISA {
  flex: 0 0 245px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rating-numberLISA {
  color: #fff;
  text-align: center;
  font-family: Kodchasan;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 6px;
}

.rating-num-small {
  color: #e4e4e4;
  text-align: center;
  font-family: 'Open Sans';
  font-size: 16px;
  font-weight: 400;
}

.card__num {
  display: none;
}

.rating-starsLISA {
  display: flex;
  align-items: center;
  gap: 2.44px;
  margin-bottom: 16px;
}

.rating-starsLISA img {
  width: 32.423px;
  height: 31.627px;
  aspect-ratio: 32.42/31.63;
}

.rating-starsLISA .bigStar {
  width: 44.581px;
  height: 43.487px;
  aspect-ratio: 44.58/43.49;
}

.casinoCard-btnWrapLISA {
  width: 100%;
}
.casinoCard-btnLISA {
  color: #fff;
  text-align: center;
  font-family: Kodchasan;
  font-size: 16px;
  font-weight: 800;
  padding: 10.29px 32px;
  border-radius: 14698.995px;
  border-top: 1.47px solid #f580ff;
  background: linear-gradient(
      180deg,
      rgba(64, 41, 91, 0.2) 83.05%,
      rgba(226, 50, 255, 0.2) 100%
    ),
    linear-gradient(180deg, #c84ae2 0%, #73126f 100%);
  box-shadow: 0 208.747px 58.802px 0 rgba(20, 6, 19, 0.01),
    0 133.774px 52.922px 0 rgba(20, 6, 19, 0.05),
    0 74.972px 45.571px 0 rgba(20, 6, 19, 0.16),
    0 33.811px 33.811px 0 rgba(20, 6, 19, 0.28),
    0 8.82px 17.641px 0 rgba(20, 6, 19, 0.32);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 14px;
  width: 100%;
}

.casinoCard-paymentsLISA {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.casinoCard-paymentsLISA img {
  width: 25.317px;
  height: 25.317px;
}

@media (max-width: 1200px) {
  .casinoCard-contentLISA {
    gap: 24px;
    padding: 16px 16px;
  }

  .casinoCard-logoLISA {
    flex: 0 0 200px;
  }

  .casinoCard-bottomLISA {
    flex: 0 0 220px;
  }
}

@media (max-width: 999px) {
  .casinoCard-contentLISA {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 24px 20px;
    text-align: center;
  }

  .casinoCard-logoLISA,
  .casinoCard-centerLISA,
  .casinoCard-bottomLISA {
    flex: 0 0 auto;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .casinoCard-centerLISA {
    gap: 16px;
  }

  .casinoCard-bonusLISA,
  .bonus-text,
  .bonus-label {
    text-align: center;
    width: 100%;
  }

  .casinoCard-featuresLISA {
    display: none;
  }
}

@media (min-width: 1000px) {
  .casinoCard-centerLISA {
    align-items: center;
    gap: 24px;
  }

  .casinoCard-featuresLISA {
    margin-top: 0;
  }

  .casinoCard-logoLISA {
    flex: 0 0 240px;
  }

  .casinoCard-centerLISA {
    flex: 1 1 420px;
  }

  .casinoCard-bottomLISA {
    flex: 0 0 245px;
  }
}

/* about */

.aboutLISA {
  padding: 40px 0;
  background: #090712;
}

.about-wrappLISA {
  padding: 32px;
  border-radius: 31px;
  border: 1px solid #44406e;

  background: url('/imagesLISA/about-bgLISA.webp') center/cover no-repeat;
  box-shadow: 0 -2px 0 0 #b9b3ff;
}

.about-wrappLISA p {
  color: #c9c9c9;

  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}

.aboutLISA {
  background: #090712;
  padding: 40px 0;
}

.container-aboutLISA {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-titleLISA {
  text-align: center;
  color: #fff;
  font-family: Kodchasan;
  font-size: 48px;
  font-weight: 700;
  line-height: 49px;
  margin-bottom: 40px;
}

.about-gridTopLISA {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
  list-style: none;
  padding: 0;
}

.about-gridBottomLISA {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  list-style: none;
  padding: 0;

  align-items: stretch;
}

.about-cardLISA {
  padding: 32px;
  border-radius: 31px;
  border: 1px solid #44406e;
  background: url('/imagesLISA/about-bgLISA.webp') center/cover no-repeat;
  box-shadow: 0 -2px 0 #b9b3ff;

  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-bigLISA {
  padding: 32px;
  border-radius: 31px;
  background: #b9b3ff !important;
  border: 1px solid #44406e;
  box-shadow: none;
  color: #212121;

  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-numLISA {
  display: inline-block;
  padding: 15px 20px;
  border-radius: 11px;
  background: #281f4c;
  color: #fff;
  font-family: Inter;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  width: max-content;
}

.about-textLISA {
  color: #c9c9c9;
  font-family: Inter;
  font-size: 17px;
  font-weight: 400;
  line-height: normal;

  flex-grow: 1;
}

.about-textBigLISA {
  color: #212121;
  font-family: Inter;
  font-size: 17px;
  font-weight: 400;
  line-height: normal;

  flex-grow: 1;
}

@media (max-width: 900px) {
  .about-gridTopLISA,
  .about-gridBottomLISA {
    grid-template-columns: 1fr;
  }

  .about-titleLISA {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

/* contact */
.contactLISA {
  background: #090712;
  padding: 80px 0;
}

.contact-containerLISA {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
}

.contact-imageLISA {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-imageLISA img {
  width: 100%;
  height: 515px;
  object-fit: contain;
  display: block;
}

.contact-formBlockLISA {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-titleLISA {
  font-family: Kodchasan;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.contact-descLISA {
  color: #fff;
  font-family: Inter;
  font-size: 17px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 12px;
}

/* ==== FORM ==== */
.contact-formLISA {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inputLISA {
  width: 100%;
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  font-family: Inter;
  font-size: 17px;
  border: none;
}

.row-2LISA {
  display: flex;
  gap: 20px;
}

.row-2LISA .inputLISA {
  flex: 1;
}

.textareaLISA {
  width: 100%;
  height: 160px;
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  font-family: Inter;
  font-size: 17px;
  border: none;
  resize: none;
}

.contact-btnLISA {
  width: 100%;
  padding: 22px 0;
  border-radius: 14699px;
  border-top: 1.47px solid #f580ff;

  background: linear-gradient(
      180deg,
      rgba(64, 41, 91, 0.2) 83%,
      rgba(226, 50, 255, 0.2) 100%
    ),
    linear-gradient(180deg, #c84ae2 0%, #73126f 100%);

  color: #fff;
  font-family: Kodchasan;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;

  box-shadow: 0 208px 58px rgba(20, 6, 19, 0.01),
    0 134px 53px rgba(20, 6, 19, 0.05), 0 75px 46px rgba(20, 6, 19, 0.16),
    0 34px 34px rgba(20, 6, 19, 0.28), 0 9px 18px rgba(20, 6, 19, 0.32);
}

.contact-successLISA {
  display: none;
  margin-top: 20px;
  color: #8aff8a;
  font-family: Inter;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 999px) {
  .contact-containerLISA {
    flex-direction: column;
    text-align: left;
  }

  .contact-imageLISA {
    display: none;
  }

  .contact-formBlockLISA {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .contact-titleLISA {
    font-size: 32px;
  }

  .contact-descLISA {
    font-size: 15px;
  }

  .row-2LISA {
    flex-wrap: nowrap;
    gap: 12px;
  }
}

/* footer */
.footerLISA {
  background: linear-gradient(183deg, #090712 2.99%, #27263f 97.37%);
  padding-top: 24px;
  padding-bottom: 24px;
}

.footerLISA h2 {
  color: #fff;

  font-family: Kodchasan;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 16px;
}

.footerLISA p {
  color: #c9c9c9;
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer-ageLISA {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.footer-ageLISA img {
  width: 79.123px;
  height: 35.55px;
}

.footer-infoLISA {
  display: flex;
  justify-content: center;
}

.footer__wrappLISA {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-ageLISA {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-infoLISA {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: nowrap;
}

.footer-infoLISA > li {
  flex: 1;
  min-width: 260px;
}

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

.footer-services-topLISA {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-services-topLISA span {
  color: #c9c9c9;
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer-servicesLISA li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.footer-servicesLISA li img {
  width: 26px;
  height: 26px;
  margin-bottom: 2px;
}

.footer-logosLISA {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer-logosLISA img {
  height: 40px;
  object-fit: contain;
  opacity: 0.9;
  display: block;
}

.footer-navLISA ul {
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.footer-navLISA a {
  color: #fff;
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.footer-navLISA a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .footer-infoLISA {
    flex-direction: column;
    gap: 28px;
  }
}

/* terms */

.terms {
  background-color: #090712;
  padding-top: 40px;
  padding-bottom: 40px;
}

.terms h1 {
  color: #fff;
  text-align: center;
  font-family: Kodchasan;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 49px;
  margin-bottom: 40px;
}

.terms h2 {
  color: #fff;
  font-family: Kodchasan;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 16px;
}

.terms p {
  color: #c9c9c9;
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 24px;
}

@media (max-width: 720px) {
  .terms h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .terms h2 {
    font-size: 20px;
  }

  .terms p {
    font-size: 17px;
  }
}
