/* 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%;
}

/* Archivo Black (regular) */
@font-face {
  font-family: 'Archivo Black';
  src: url('/fontsGURRLAGAN/archivo-black-regularGURRLAGAN.woff2')
    format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Inter Variable */
@font-face {
  font-family: 'Inter';
  src: url('/fontsGURRLAGAN/inter-variable-fontGURRLAGAN.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

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

.headerGURRLAGAN {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.headerGURRLAGAN__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.headerGURRLAGAN__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}
.headerGURRLAGAN__logo img {
  width: 28px;
  height: 28px;
}
.headerGURRLAGAN__logo span {
  color: #fff;
  font-family: 'Archivo Black';
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-transform: uppercase;
}

.headerGURRLAGAN__menu {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.headerGURRLAGAN__menu a {
  color: #fff;
  font-family: 'Archivo Black';
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.headerGURRLAGAN__menu a:hover {
  opacity: 0.75;
}

.headerGURRLAGAN__burger {
  display: none;
  width: 40px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;

  flex-direction: column;
  justify-content: space-between;
}
.headerGURRLAGAN__burger span {
  display: block;
  height: 4px;
  background: #fff;
  border-radius: 3px;
}

.headerGURRLAGAN__overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;

  display: grid;
  place-items: center;

  background: rgba(0, 0, 0, 0.7);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}

.headerGURRLAGAN__overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transition: opacity 0.25s ease;
}

.headerGURRLAGAN__panel {
  width: 100%;

  background-color: #d4a047;

  padding: 28px 22px 26px;
  position: relative;
}

.headerGURRLAGAN__close {
  position: absolute;
  top: 16px;
  right: 16px;

  width: 42px;
  height: 42px;

  border: none;
  background: transparent;
  cursor: pointer;
}

.headerGURRLAGAN__close::before,
.headerGURRLAGAN__close::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;

  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}
.headerGURRLAGAN__close::before {
  transform: rotate(45deg);
}
.headerGURRLAGAN__close::after {
  transform: rotate(-45deg);
}

.headerGURRLAGAN__mobileMenu {
  list-style: none;
  margin: 0;
  padding: 22px 0 6px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.headerGURRLAGAN__mobileMenu a {
  color: #fff;
  font-family: 'Archivo Black';
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .headerGURRLAGAN__menu {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .headerGURRLAGAN__nav {
    display: none;
  }
  .headerGURRLAGAN__burger {
    display: flex;
  }
  .headerGURRLAGAN__logo span {
    font-size: 14px;
  }
}

.headerGURRLAGAN.white-bg {
  background: #fff;
}

.headerGURRLAGAN.white-bg,
.headerGURRLAGAN.white-bg * {
  color: #000;
  font-family: 'Archivo Black';
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-transform: uppercase;
}
.heroGURRLAGAN {
  position: relative;
  padding-top: 100px;
  padding-bottom: 80px;
  background: rgba(0, 0, 0, 0);
  overflow: hidden;
  z-index: 1;
}

.heroGURRLAGAN::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/imagesGURRLAGAN/desk-coffeeGURRLAGAN.webp') center / cover
    no-repeat;
  z-index: 0;
}

/* INNER */
.heroGURRLAGAN__inner {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.heroGURRLAGAN__card {
  max-width: 880px;
  padding: 48px 56px;
  border-radius: 30px;

  background: rgba(0, 0, 0, 0);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(6px);

  text-align: center;
}

.heroGURRLAGAN__card h1 {
  margin: 0 0 24px;
  color: #fff;
  font-family: 'Archivo Black';
  font-size: 48px;
  font-weight: 400;
  text-transform: uppercase;
}

.heroGURRLAGAN__card p {
  margin: 0 0 32px;
  color: #fff;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.heroGURRLAGAN__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 32px;
  border-radius: 503px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.12);

  color: #fff;
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.42px;
  text-transform: uppercase;
  text-decoration: none;

  cursor: pointer;
  position: relative;
  z-index: 3;

  transition: background 0.2s ease, transform 0.2s ease;
}

.heroGURRLAGAN__btn:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .heroGURRLAGAN__card {
    padding: 40px;
  }

  .heroGURRLAGAN__card h1 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .heroGURRLAGAN {
    padding-bottom: 48px;
  }

  .heroGURRLAGAN__card {
    padding: 32px 24px;
  }

  .heroGURRLAGAN__card h1 {
    font-size: 30px;
  }

  .heroGURRLAGAN__card p {
    font-size: 15px;
  }
}

.aboutGURRLAGAN {
  background: #f8f8f8;
  padding: 80px 0;
}

.aboutGURRLAGAN__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.aboutGURRLAGAN__content h2 {
  margin: 0 0 24px;
  color: #000;
  font-family: 'Archivo Black';
  font-size: 48px;
  font-weight: 400;
  text-transform: uppercase;
}

.aboutGURRLAGAN__content p {
  margin: 0;
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.aboutGURRLAGAN__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .aboutGURRLAGAN__inner {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .aboutGURRLAGAN {
    padding: 64px 0;
  }

  .aboutGURRLAGAN__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .aboutGURRLAGAN__image {
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .aboutGURRLAGAN {
    padding: 48px 0;
  }

  .aboutGURRLAGAN__content h2 {
    color: #000;
    text-align: center;
    font-family: 'Archivo Black';
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: left;
  }

  .aboutGURRLAGAN__content p {
    font-size: 15px;
  }
}

.whyGURRLAGAN {
  padding: 80px 0;
  background: #fff;
}

.whyGURRLAGAN__title {
  margin: 0 0 48px;
  color: #000;
  font-family: 'Archivo Black';
  font-size: 48px;
  font-weight: 400;
  text-transform: uppercase;
}

.whyGURRLAGAN__list {
  list-style: none;
  margin: 0;
  padding: 0;

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

.whyGURRLAGAN__item {
  padding: 32px 28px;
  border-radius: 30px;
  border: 1px solid #d4a047;
  box-shadow: 0 4px 12px 0 #d4a047;
  background: #fff;
  max-width: 300px;
  width: 100%;
}

.whyGURRLAGAN__num {
  display: block;
  margin-bottom: 16px;

  color: #d4a047;
  font-family: 'Archivo Black';
  font-size: 48px;
  font-weight: 400;
  text-transform: uppercase;
}

.whyGURRLAGAN__item h3 {
  margin: 0 0 12px;
  color: #000;
  font-family: Arial;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.whyGURRLAGAN__item p {
  margin: 0;
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

@media (max-width: 1200px) {
  .whyGURRLAGAN__list {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
}

@media (max-width: 900px) {
  .whyGURRLAGAN {
    padding: 64px 0;
  }

  .whyGURRLAGAN__title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .whyGURRLAGAN__list {
    grid-template-columns: 1fr;
  }

  .whyGURRLAGAN__item h3 {
    color: #000;
    font-family: Arial;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .whyGURRLAGAN__num {
    color: #d4a047;
    font-family: 'Archivo Black';
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
  }

  .whyGURRLAGAN__item p {
    color: #000;
    font-family: Inter;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
  }
}

.exploreGURRLAGAN {
  background: #f8f8f8;
  padding: 80px 0;
}

.exploreGURRLAGAN__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.exploreGURRLAGAN__head h2 {
  margin: 0 0 16px;
  color: #000;
  font-family: 'Archivo Black';
  font-size: 48px;
  font-weight: 400;
  text-transform: uppercase;
}

.exploreGURRLAGAN__head p {
  margin: 0;
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
}

.exploreGURRLAGAN__list {
  list-style: none;
  padding: 0;
  margin: 0;

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

.exploreGURRLAGAN__item {
  border-radius: 30px;
  background: #fff;
  box-shadow: 2px 7px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 20px;

  display: flex;
  flex-direction: column;
}

.exploreGURRLAGAN__item img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 16px;
}

.exploreGURRLAGAN__item h3 {
  margin: 0 0 12px;
  color: #000;
  font-family: Arial;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.exploreGURRLAGAN__points {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 20px;

  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
}
.exploreGURRLAGAN__points li {
  list-style-type: disc;
  margin-left: 10px;
}

.exploreGURRLAGAN__btn {
  margin-top: auto;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 24px;
  border-radius: 503px;
  border: 1px solid #000;
  background: #d4a047;

  color: #000;
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;

  transition: transform 0.2s ease, opacity 0.2s ease;
}

.exploreGURRLAGAN__btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .exploreGURRLAGAN__list {
    grid-template-columns: 1fr;
  }

  .exploreGURRLAGAN__head h2 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .exploreGURRLAGAN {
    padding: 48px 0;
  }

  .exploreGURRLAGAN__head h2 {
    font-size: 30px;
  }

  .exploreGURRLAGAN__points {
    font-size: 14px;
  }
}

.contactGURRLAGAN {
  background: #f8f8f8;
  padding: 80px 0;
}

.contactGURRLAGAN__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contactGURRLAGAN__info h2 {
  margin: 0 0 20px;
  font-family: 'Archivo Black';
  font-size: 48px;
  text-transform: uppercase;
}

.contactGURRLAGAN__info p {
  margin: 0 0 32px;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
}

.contactGURRLAGAN__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contactGURRLAGAN__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Inter;
  font-size: 16px;
}

.contactGURRLAGAN__detail img {
  width: 20px;
  height: 20px;
}

.contactGURRLAGAN__form {
  background: #fff;
  border-radius: 30px;
  padding: 32px;
  box-shadow: 2px 7px 20px rgba(0, 0, 0, 0.1);

  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contactGURRLAGAN__form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
}

.contactGURRLAGAN__form input,
.contactGURRLAGAN__form textarea {
  border-radius: 30px;
  border: 1px solid #000;
  background: #f3f3f3;
  padding: 12px 16px;
  font-family: Inter;
  font-size: 14px;

  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25);
}

.contactGURRLAGAN__form textarea {
  resize: none;
}

.contactGURRLAGAN__form button {
  margin-top: 8px;
  padding: 14px;
  border-radius: 503px;
  border: 1px solid #000;
  background: #d4a047;

  font-family: Inter;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.contactGURRLAGAN__success {
  display: none;
  margin-top: 8px;
  font-family: Inter;
  font-size: 14px;
  color: #2e7d32;
}

@media (max-width: 768px) {
  .contactGURRLAGAN__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contactGURRLAGAN__info h2 {
    font-size: 30px;
  }
}

.footerGURRLAGAN {
  background: #a9a9a9;
  padding: 48px 0 32px;
  color: #fff;
}

.footerGURRLAGAN__top {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.footerGURRLAGAN__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}

.footerGURRLAGAN__logo img {
  width: 28px;
  height: 28px;
}

.footerGURRLAGAN__logo span {
  font-family: 'Archivo Black';
  font-size: 16px;
  text-transform: uppercase;
}

.footerGURRLAGAN__age {
  margin-top: 16px;
  color: #fff;
  text-align: center;
  font-family: 'Archivo Black';
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
}

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

.footerGURRLAGAN__contacts li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-family: Inter;
  font-size: 16px;
}

.footerGURRLAGAN__contacts img {
  width: 18px;
  height: 18px;
}

.footerGURRLAGAN__contacts a {
  color: #fff;
  text-decoration: none;
}

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

.footerGURRLAGAN__nav li {
  margin-bottom: 12px;
}

.footerGURRLAGAN__nav a {
  color: #fff;
  font-family: Inter;
  font-size: 16px;
  text-decoration: none;
}

.footerGURRLAGAN__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footerGURRLAGAN__logos {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(6, auto);
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}

.footerGURRLAGAN__logos img {
  max-height: 36px;
  width: auto;
}

@media (max-width: 768px) {
  .footerGURRLAGAN__top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footerGURRLAGAN__contacts li {
    justify-content: center;
  }

  .footerGURRLAGAN__logos {
    grid-template-columns: repeat(2, auto);
    gap: 24px;
    justify-items: center;
  }

  .footerGURRLAGAN__brand {
    align-items: center;
  }
}

.heroGURRLAGAN.hero-about::before {
  background: url('/imagesGURRLAGAN/hero-filmGURRLAGAN.webp') center / cover
    no-repeat;
}

.missionGURRLAGAN {
  background: #fff;
  padding: 80px 0;
}

.missionGURRLAGAN h2 {
  margin: 0 0 24px;
  color: #000;
  font-family: 'Archivo Black';
  font-size: 48px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.missionGURRLAGAN p {
  margin: 0 0 16px;
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.missionGURRLAGAN ul {
  margin: 0 0 16px 20px;
  padding: 0;
}

.missionGURRLAGAN li {
  margin-bottom: 8px;
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .missionGURRLAGAN {
    padding: 48px 0;
  }

  .missionGURRLAGAN h2 {
    font-size: 30px;
  }

  .missionGURRLAGAN p,
  .missionGURRLAGAN li {
    font-size: 14px;
  }
}

.contactGURRLAGAN.contact-page {
  padding: 160px 0;
}

.contactGURRLAGAN.contact-page h1 {
  margin: 0 0 20px;
  font-family: 'Archivo Black';
  font-size: 48px;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .contactGURRLAGAN.contact-page h1 {
    font-size: 30px;
    text-align: center;
  }
}

.heroGURRLAGAN.bg-film::before {
  background: url('/imagesGURRLAGAN/hero-film2GURRLAGAN.webp') center / cover
    no-repeat;
}

.filmsGURRLAGAN {
  background: #f8f8f8;
  padding: 80px 0;
}

.filmsGURRLAGAN__list {
  list-style: none;
  padding: 0;
  margin: 0;

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

.filmsGURRLAGAN__item {
  background: #fff;
  border-radius: 30px;
  padding: 20px;
  box-shadow: 2px 7px 20px rgba(0, 0, 0, 0.1);
}

.filmsGURRLAGAN__item img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin-bottom: 16px;
  display: block;
}

.filmsGURRLAGAN__item h3 {
  margin: 0 0 12px;
  color: #000;
  text-align: center;
  font-family: Arial;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.filmsGURRLAGAN__item ul {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}

.filmsGURRLAGAN__item li {
  margin-bottom: 6px;
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  list-style-type: disc;
}

@media (max-width: 768px) {
  .filmsGURRLAGAN {
    padding: 48px 0;
  }

  .filmsGURRLAGAN__list {
    grid-template-columns: 1fr;
  }

  .filmsGURRLAGAN__item h3 {
    font-size: 18px;
  }

  .filmsGURRLAGAN__item li {
    font-size: 14px;
  }
}

.heroGURRLAGAN.bg-book::before {
  background: url('/imagesGURRLAGAN/open-book-and-stack-of-booksGURRLAGAN.webp')
    center / cover no-repeat;
}

.heroGURRLAGAN.bg-game::before {
  background: url('/imagesGURRLAGAN/interactive-eveningGURRLAGAN.webp') center /
    cover no-repeat;
}
.offerGURRLAGAN {
  padding: 50px 0;
}

.offerGURRLAGAN__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offerGURRLAGAN__item {
  display: grid;
  grid-template-columns: 150px 240px 200px 1fr 280px;
  align-items: center;
  gap: 32px;

  padding: 24px 32px;
  border-radius: 16px;
  border: 1px solid #000;

  background: linear-gradient(
    90deg,
    rgba(212, 160, 71, 0.3) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  backdrop-filter: blur(2px);
}

/* LOGO */
.offerGURRLAGAN__logo {
  width: 140px;
  height: 52px;
  object-fit: contain;
}

/* BONUS */
.offerGURRLAGAN__bonus-label {
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.offerGURRLAGAN__bonus-title {
  margin-top: 6px;
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 19.2px */
  text-transform: uppercase;
}

/* RATING */
.offerGURRLAGAN__rating-value {
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 28px */
}

.offerGURRLAGAN__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 6px 0;
  padding: 0;
  list-style: none;
}

.offerGURRLAGAN__stars img {
  width: 20px;
  height: 20px;
}

.offerGURRLAGAN__rating-text {
  color: #000;
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 12px */
  text-align: center;
}

/* TEXT */
.offerGURRLAGAN__text {
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* CTA */
.offerGURRLAGAN__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.offerGURRLAGAN__btn {
  height: 48px;
  padding: 0 32px;
  border-radius: 503px;
  border: 1px solid #000;
  background: #d4a047;

  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* PAYMENTS */
.offerGURRLAGAN__payments {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.offerGURRLAGAN__payments img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

@media (max-width: 1128px) {
  .offerGURRLAGAN__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .offerGURRLAGAN__item {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      'logo rating'
      'bonus cta'
      'text cta';
    gap: 12px;
    padding: 16px;
    max-width: 340px;
  }

  .offerGURRLAGAN__logo-wrap {
    grid-area: logo;
  }
  .offerGURRLAGAN__rating {
    grid-area: rating;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .offerGURRLAGAN__bonus {
    grid-area: bonus;
  }
  .offerGURRLAGAN__text {
    grid-area: text;
  }
  .offerGURRLAGAN__cta {
    grid-area: cta;
  }

  .offerGURRLAGAN__btn {
    width: 150px;
    height: 44px;
    font-size: 10px;
  }

  .offerGURRLAGAN__stars li:nth-child(n + 4) {
    display: none;
  }

  .offerGURRLAGAN__bonus-title {
    font-size: 10px;
  }

  .offerGURRLAGAN__payments {
    flex-wrap: wrap;
    justify-content: center;
  }

  .offerGURRLAGAN__rating-text {
    display: none;
  }

  .offerGURRLAGAN__rating-value {
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 16px */
  }

  .offerGURRLAGAN__bonus-label {
    display: none;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .offerGURRLAGAN__item {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      'logo rating'
      'bonus cta'
      'text cta';
    gap: 12px;
    padding: 16px;
  }

  .offerGURRLAGAN__logo-wrap {
    grid-area: logo;
  }
  .offerGURRLAGAN__rating {
    grid-area: rating;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .offerGURRLAGAN__bonus {
    grid-area: bonus;
  }
  .offerGURRLAGAN__text {
    grid-area: text;
  }
  .offerGURRLAGAN__cta {
    grid-area: cta;
  }

  .offerGURRLAGAN__btn {
    width: 150px;
    height: 44px;
    font-size: 10px;
  }

  .offerGURRLAGAN__stars li:nth-child(n + 4) {
    display: none;
  }

  .offerGURRLAGAN__bonus-title {
    font-size: 10px;
  }

  .offerGURRLAGAN__payments {
    flex-wrap: wrap;
    justify-content: center;
  }

  .offerGURRLAGAN__rating-text {
    display: none;
  }

  .offerGURRLAGAN__rating-value {
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 16px */
  }

  .offerGURRLAGAN__bonus-label {
    display: none;
  }
}

.terms {
  padding: 150px 0;
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background: #f8f8f8;
}

.terms h1 {
  color: #000;
  font-family: 'Archivo Black';
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.terms p {
  margin-top: 15px;
}

.term ul {
  list-style: disc;
}

.terms ul li {
  list-style-type: disc;
  margin-left: 20px;
}

.terms ol li {
  margin-left: 20px;
}

@media (max-width: 768px) {
  .terms {
    padding: 140px 0;
  }

  .terms h1 {
    font-size: 30px;
    word-break: break-all;
  }
}
