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

.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%;
}

@font-face {
  font-family: 'Source Sans 3';
  src: url('/fontspirewK/sourcesans3-variablefontopirewK.woff2') format('woff2');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

.headeropirewK {
  position: relative;
  z-index: 100;
  background: #fff3e0;
  padding: 10px 0;
}

.headeropirewK__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.headeropirewK__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.headeropirewK__logo img {
  display: block;
  max-width: 260px;
  width: 100%;
  object-fit: contain;
}

.headeropirewK__nav {
  display: flex;
  align-items: center;
}

.headeropirewK__list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.headeropirewK__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 26px;
  border-radius: 20px;
  background: rgba(254, 254, 254, 0.8);
  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.headeropirewK__link--active,
.headeropirewK__link:hover {
  background: #f79855;
  color: #fefefe;
}

.headeropirewK__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.headeropirewK__burger span {
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 20px;
  background: #483629;
}

.headeropirewK__overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.headeropirewK__mobile {
  position: fixed;
  top: 0;
  right: -320px;
  z-index: 200;
  width: 320px;
  height: 100vh;
  padding: 100px 24px 30px;
  background: #fff3e0;
  transition: right 0.35s ease;
}

.headeropirewK__close {
  position: absolute;
  top: 28px;
  right: 24px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.headeropirewK__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 3px;
  border-radius: 20px;
  background: #483629;
}

.headeropirewK__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.headeropirewK__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

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

.headeropirewK__mobile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 26px;
  border-radius: 20px;
  background: rgba(254, 254, 254, 0.8);
  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.headeropirewK__mobile-link:hover {
  background: #f79855;
  color: #fefefe;
}

.headeropirewK--open .headeropirewK__overlay {
  opacity: 1;
  visibility: visible;
}

.headeropirewK--open .headeropirewK__mobile {
  right: 0;
}

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

  .headeropirewK__nav {
    display: none;
  }

  .headeropirewK__burger {
    display: flex;
  }

  .headeropirewK__logo img {
    max-width: 235px;
  }
}

@media (max-width: 480px) {
  .headeropirewK__mobile {
    right: -100%;
    width: 100%;
  }

  .headeropirewK--open .headeropirewK__mobile {
    right: 0;
  }

  .headeropirewK__logo img {
    max-width: 220px;
  }
}

.mainopirewK {
  background: url('/imagesopirewK/main-frameopirewK.webp') center top / cover
    no-repeat;
}

.mainopirewK {
  background: url('/imagesopirewK/main-frameopirewK.webp') center top / cover
    no-repeat;
}

.heroopirewK {
  padding: 40px 0 80px;
  background: url('/imagesopirewK/hero-placeopirewK.webp') center / cover
    no-repeat;
  overflow: hidden;
}

.heroopirewK__container {
  display: flex;
  flex-direction: column;
}

.heroopirewK__timer-wrap {
  width: 100%;
  max-width: 520px;
  min-height: 260px;
  padding: 64px 88px 42px;
  background: url('/imagesopirewK/frame-coloropirewK.webp') center / 100% 100%
    no-repeat;
}

.heroopirewK__timer-text {
  margin: 0 0 14px;
  color: #483629;
  text-align: center;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.heroopirewK__timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.heroopirewK__timer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.heroopirewK__timer-number {
  width: 100%;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid #84522c;
  background: rgba(255, 229, 184, 0.6);
  color: #483629;
  text-align: center;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}

.heroopirewK__timer-label {
  color: #483629;
  text-align: center;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
}

.heroopirewK__content {
  width: 100%;
  max-width: 750px;
  margin: 200px auto 0;
  padding: 18px 28px 0;
  border-radius: 16px;
  border: 1px solid #84522c;
  background: #fbebd0;
  backdrop-filter: blur(10px);
  text-align: center;
}

.heroopirewK__subtitle {
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(132, 82, 44, 0.2);
  color: #483629;
  text-align: center;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.heroopirewK__title {
  margin: 22px 0 0;
  color: #483629;
  text-align: center;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.heroopirewK__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 58px;
  margin-top: 18px;
  padding: 14px 28px;
  transform: translateY(28px);
  border-radius: 10px;
  background: #84522c;
  color: #fff;
  text-decoration: none;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 576px) {
  .heroopirewK {
    padding: 24px 0 70px;
  }

  .heroopirewK__timer-wrap {
    max-width: 100%;
    min-height: 270px;

    padding: 58px 52px 38px;

    background-size: 100% 100%;
  }

  .heroopirewK__timer-text {
    margin-bottom: 10px;

    font-size: 14px;
    line-height: 1.3;
  }

  .heroopirewK__timer {
    gap: 4px;
    display: flex;
    justify-content: center;
    margin-left: 20px;
  }

  .heroopirewK__timer-item {
    gap: 5px;
    width: 50px;
  }

  .heroopirewK__timer-number {
    height: 52px;

    font-size: 28px;
  }

  .heroopirewK__timer-label {
    font-size: 14px;
  }

  .heroopirewK__content {
    max-width: 100%;

    margin-top: 28px;

    padding: 20px;
  }

  .heroopirewK__title {
    font-size: 26px;

    line-height: 1.4;
  }

  .heroopirewK__button {
    width: 100%;

    min-height: 60px;
  }
}

@media (max-width: 390px) {
  .heroopirewK__timer-wrap {
    min-height: 217px;

    padding: 48px 40px 30px;
  }

  .heroopirewK__timer-text {
    font-size: 13px;
  }

  .heroopirewK__timer-number {
    height: 44px;

    font-size: 24px;
  }

  .heroopirewK__timer-label {
    font-size: 12px;
  }

  .heroopirewK__title {
    font-size: 22px;
  }
}

.vibeopirewK {
  padding: 52px 0 42px;
}

.vibeopirewK__title {
  max-width: 850px;
  margin: 0 0 18px;

  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.vibeopirewK__text {
  max-width: 760px;
  margin: 0 0 34px;

  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.vibeopirewK__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;

  margin: 0;
  padding: 0;
  list-style: none;
}

.vibeopirewK__item {
  min-height: 220px;
  padding: 20px;

  border-radius: 16px;
  border: 1px solid #84522c;
  background: rgba(255, 229, 184, 0.55);
}

.vibeopirewK__icon {
  display: block;
  width: 74px;
  height: 74px;
  margin-bottom: 26px;
  object-fit: contain;
}

.vibeopirewK__item-title {
  margin: 0 0 16px;

  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.vibeopirewK__item-text {
  margin: 0;

  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

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

  .vibeopirewK__item {
    min-height: 216px;
  }
}

@media (max-width: 576px) {
  .vibeopirewK {
    padding: 24px 0;
  }

  .vibeopirewK__title {
    margin-bottom: 16px;
    font-size: 32px;
  }

  .vibeopirewK__text {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .vibeopirewK__list {
    gap: 12px;
  }

  .vibeopirewK__item {
    padding: 20px;
  }

  .vibeopirewK__icon {
    margin-bottom: 22px;
  }
}

.pricesopirewK {
  padding: 56px 0;
}

.pricesopirewK__title {
  margin: 0 0 18px;

  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  text-transform: uppercase;
}

.pricesopirewK__text {
  margin: 0 0 34px;

  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.pricesopirewK__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 22px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.pricesopirewK__item {
  display: flex;
  flex-direction: column;

  padding: 22px;

  border-radius: 20px;

  border: 1px solid #84522c;

  background: rgba(255, 229, 184, 0.45);
}

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

  margin-bottom: 46px;
}

.pricesopirewK__num {
  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.pricesopirewK__badge {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 44px;

  padding: 10px 18px;

  border-radius: 20px;

  background: #f79855;

  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.pricesopirewK__item-title {
  margin: 0 0 20px;

  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  text-transform: uppercase;
}

.pricesopirewK__features {
  margin: 0 0 34px;

  padding-left: 22px;
}

.pricesopirewK__features li {
  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.pricesopirewK__features li:not(:last-child) {
  margin-bottom: 10px;
}

.pricesopirewK__price {
  margin-top: auto;
  margin-bottom: 26px;

  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  text-transform: uppercase;
}

.pricesopirewK__button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 68px;

  border-radius: 12px;

  background: #84522c;

  color: #fff;

  text-decoration: none;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  transition: background 0.3s ease, opacity 0.3s ease;
}

.pricesopirewK__button:hover {
  opacity: 0.92;
}

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

  .pricesopirewK__item {
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .pricesopirewK {
    padding: 28px 0;
  }

  .pricesopirewK__title {
    margin-bottom: 16px;

    font-size: 32px;
  }

  .pricesopirewK__text {
    margin-bottom: 24px;
  }

  .pricesopirewK__list {
    gap: 14px;
  }

  .pricesopirewK__item {
    padding: 20px;
  }

  .pricesopirewK__top {
    margin-bottom: 28px;
  }

  .pricesopirewK__badge {
    min-height: 40px;

    padding: 8px 14px;

    font-size: 16px;
  }

  .pricesopirewK__price {
    font-size: 28px;
  }

  .pricesopirewK__button {
    min-height: 60px;

    font-size: 16px;
  }
}

.fortuneopirewK {
  padding: 56px 0;
}

.fortuneopirewK__title {
  margin: 0 0 18px;

  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 32px;
  font-weight: 700;

  text-transform: uppercase;
}

.fortuneopirewK__text {
  margin: 0 0 34px;

  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.fortuneopirewK__box {
  display: grid;
  grid-template-columns: 1fr 420px;

  gap: 40px;

  padding: 22px;

  border-radius: 20px;

  border: 1px solid #84522c;

  background: rgba(255, 229, 184, 0.35);
}

.fortuneopirewK__content {
  display: flex;
  flex-direction: column;

  gap: 22px;
}

.fortuneopirewK__block h3 {
  margin: 0 0 12px;

  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-weight: 700;

  text-transform: uppercase;
}

.fortuneopirewK__block p {
  margin: 0;

  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 400;

  line-height: 1.5;
}

.fortuneopirewK__list {
  display: flex;
  flex-direction: column;

  gap: 12px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.fortuneopirewK__list li {
  display: flex;
  align-items: flex-start;

  gap: 8px;

  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.fortuneopirewK__list li img {
  width: 16px;
  height: 16px;

  flex-shrink: 0;

  margin-top: 2px;

  object-fit: contain;
}

.fortuneopirewK__image {
  display: flex;

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

.fortuneopirewK__image img {
  display: block;

  width: 100%;
  max-width: 380px;

  height: auto;

  object-fit: contain;
}

@media (max-width: 991px) {
  .fortuneopirewK__box {
    grid-template-columns: 1fr;

    gap: 28px;
  }

  .fortuneopirewK__image {
    order: 2;
  }

  .fortuneopirewK__image img {
    max-width: 420px;
  }
}

@media (max-width: 576px) {
  .fortuneopirewK {
    padding: 28px 0;
  }

  .fortuneopirewK__title {
    font-size: 32px;

    margin-bottom: 16px;
  }

  .fortuneopirewK__text {
    margin-bottom: 24px;
  }

  .fortuneopirewK__box {
    padding: 20px;
  }

  .fortuneopirewK__content {
    gap: 18px;
  }

  .fortuneopirewK__image img {
    max-width: 100%;
  }
}

.magicopirewK {
  padding: 48px 0 36px;
}

.magicopirewK__title {
  margin: 0 0 18px;
  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.magicopirewK__text {
  margin: 0 0 34px;
  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.magicopirewK__list {
  display: grid;
  grid-template-columns: repeat(3, 180px) 1fr;
  grid-template-rows: 240px 250px;
  grid-template-areas:
    'small1 small2 small3 big'
    'wide wide wide big';
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.magicopirewK__item {
  overflow: hidden;
  border-radius: 12px;
}

.magicopirewK__item:nth-child(1) {
  grid-area: small1;
}

.magicopirewK__item:nth-child(2) {
  grid-area: small2;
}

.magicopirewK__item:nth-child(3) {
  grid-area: small3;
}

.magicopirewK__item--wide {
  grid-area: wide;
}

.magicopirewK__item--big {
  grid-area: big;
}

.magicopirewK__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .magicopirewK__list {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-template-areas:
      'small1 small2 small3'
      'wide wide wide'
      'big big big';
    gap: 12px;
  }

  .magicopirewK__item--small img {
    aspect-ratio: 1 / 1;
  }

  .magicopirewK__item--wide img {
    aspect-ratio: 16 / 9;
  }

  .magicopirewK__item--big img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 576px) {
  .magicopirewK {
    padding: 36px 0 28px;
  }

  .magicopirewK__title {
    font-size: 24px;
  }

  .magicopirewK__text {
    margin-bottom: 28px;
  }

  .magicopirewK__list {
    gap: 10px;
  }

  .magicopirewK__item {
    border-radius: 10px;
  }
}

.reviewsopirewK {
  padding: 56px 0;
}

.reviewsopirewK__title {
  margin: 0 0 18px;

  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 32px;
  font-weight: 700;

  text-transform: uppercase;
}

.reviewsopirewK__text {
  margin: 0 0 34px;

  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.reviewsopirewK__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 22px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.reviewsopirewK__item {
  display: flex;
  flex-direction: column;

  min-height: 274px;

  padding: 24px;

  border-radius: 20px;

  border: 1px solid #84522c;

  background: rgba(255, 229, 184, 0.45);
}

.reviewsopirewK__rating {
  display: flex;
  align-items: center;

  gap: 8px;

  margin-bottom: 42px;
}

.reviewsopirewK__rating img {
  width: 20px;
  height: 20px;

  object-fit: contain;

  flex-shrink: 0;
}

.reviewsopirewK__rating span {
  color: #f79855;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.reviewsopirewK__quote {
  margin: 0;

  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-weight: 700;

  line-height: 1.45;
}

.reviewsopirewK__author {
  margin-top: auto;
  padding-top: 28px;

  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 400;
}

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

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

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

  .reviewsopirewK__item {
    min-height: auto;
  }

  .reviewsopirewK__rating {
    margin-bottom: 28px;
  }

  .reviewsopirewK__quote {
    font-size: 18px;
  }
}
.memoryopirewK {
  padding: 56px 0;
  overflow: hidden;
}

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

.memoryopirewK__title {
  margin: 0 0 18px;
  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.memoryopirewK__text {
  max-width: 980px;
  margin: 0 0 34px;
  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.memoryopirewK__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.memoryopirewK__card {
  width: 100%;
  min-width: 0;
  aspect-ratio: 1 / 0.86;
  perspective: 1000px;
}

.memoryopirewK__card-button {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.memoryopirewK__card-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  transform-style: preserve-3d;
  transition: transform 0.45s ease;
}

.memoryopirewK__card.is-open .memoryopirewK__card-inner,
.memoryopirewK__card.is-matched .memoryopirewK__card-inner {
  transform: rotateY(180deg);
}

.memoryopirewK__card-front,
.memoryopirewK__card-back {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  backface-visibility: hidden;
  background: #8d552c;
}

.memoryopirewK__card-back {
  transform: rotateY(180deg);
}

.memoryopirewK__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.memoryopirewK__card.is-matched {
  pointer-events: none;
}

.memoryopirewK__stats {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-top: 30px;
  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  text-align: center;
}

.memoryopirewK__stats div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.memoryopirewK__stats span {
  font-size: 14px;
  font-weight: 400;
}

.memoryopirewK__stats strong {
  font-size: 18px;
  font-weight: 700;
}

.memoryopirewK__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 56px;
  margin: 28px auto 0;
  padding: 14px 28px;
  border: 0;
  border-radius: 10px;
  background: #8d552c;
  color: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.memoryopirewK__button[hidden] {
  display: none;
}

@media (max-width: 1200px) {
  .memoryopirewK__grid {
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .memoryopirewK__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .memoryopirewK__card {
    aspect-ratio: 1 / 0.78;
  }
}

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

  .memoryopirewK__title {
    font-size: 28px;
  }

  .memoryopirewK__text {
    margin-bottom: 24px;
  }

  .memoryopirewK__grid {
    gap: 10px;
  }

  .memoryopirewK__card {
    aspect-ratio: 1 / 0.98;
  }
}

@media (max-width: 420px) {
  .memoryopirewK__title {
    font-size: 24px;
  }

  .memoryopirewK__grid {
    gap: 8px;
  }

  .memoryopirewK__card {
    aspect-ratio: 1 / 1;
  }
}

.oraclesopirewK {
  padding: 56px 0;
}

.oraclesopirewK__title {
  margin: 0 0 18px;
  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.oraclesopirewK__text {
  margin: 0 0 34px;
  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.oraclesopirewK__box {
  padding: 22px;
  border-radius: 16px;
  border: 1px solid #84522c;
  background: rgba(255, 229, 184, 0.35);
}

.oraclesopirewK__block:not(:last-child) {
  margin-bottom: 26px;
}

.oraclesopirewK__block h3 {
  margin: 0 0 16px;
  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.oraclesopirewK__block h4 {
  margin: 18px 0 8px;
  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.oraclesopirewK__block p {
  margin: 0;
  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.oraclesopirewK__block p:not(:last-child) {
  margin-bottom: 8px;
}

@media (max-width: 576px) {
  .oraclesopirewK {
    padding: 36px 0;
  }

  .oraclesopirewK__title {
    font-size: 28px;
  }

  .oraclesopirewK__box {
    padding: 18px;
  }
}

.subscribeopirewK {
  padding: 56px 0;
}

.subscribeopirewK__title {
  margin: 0 0 18px;
  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.subscribeopirewK__text {
  margin: 0 0 34px;
  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.subscribeopirewK__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid #84522c;
  background: rgba(255, 229, 184, 0.35);
}

.subscribeopirewK__form {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid #84522c;
}

.subscribeopirewK__form input {
  width: 100%;
  height: 58px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid #483629;
  background: transparent;
  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 400;
  outline: none;
}

.subscribeopirewK__form input::placeholder {
  color: #483629;
  opacity: 1;
}

.subscribeopirewK__form button {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 10px;
  background: #84522c;
  color: #fefefe;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

.subscribeopirewK__message {
  min-height: 18px;
  margin: -12px 0 0;
  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.subscribeopirewK__info {
  padding: 10px 0;
}

.subscribeopirewK__info h3 {
  margin: 0 0 26px;
  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.subscribeopirewK__info p {
  max-width: 620px;
  margin: 0 0 16px;
  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.subscribeopirewK__links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.subscribeopirewK__links li {
  display: flex;
}

.subscribeopirewK__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.subscribeopirewK__links img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

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

  .subscribeopirewK__title {
    font-size: 28px;
  }

  .subscribeopirewK__box {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }

  .subscribeopirewK__info {
    order: 1;
    padding: 0;
  }

  .subscribeopirewK__form {
    order: 2;
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .subscribeopirewK__box {
    padding: 20px;
  }

  .subscribeopirewK__form {
    padding: 20px;
  }
}

.footeropirewK {
  padding: 56px 0 28px;
  background: #fff3e0;
}

.footeropirewK__container {
  display: grid;
  grid-template-columns: 1fr auto auto;

  gap: 80px;

  margin-bottom: 42px;
}

.footeropirewK__logo {
  display: inline-flex;

  margin-bottom: 26px;
}

.footeropirewK__logo img {
  display: block;

  width: 220px;
  height: auto;
}

.footeropirewK__age {
  margin-bottom: 28px;

  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.footeropirewK__text p,
.footeropirewK__contact-list li a,
.footeropirewK__nav ul li a,
.footeropirewK__copy {
  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footeropirewK__text p {
  margin: 0 0 10px;
}

.footeropirewK__contact-list,
.footeropirewK__nav ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.footeropirewK__contact-list {
  display: flex;
  flex-direction: column;

  gap: 10px;
}

.footeropirewK__contact-list li a {
  display: flex;
  align-items: center;

  gap: 12px;

  text-decoration: none;
}

.footeropirewK__contact-list img {
  width: 24px;
  height: 24px;

  object-fit: contain;
}

.footeropirewK__nav {
  display: flex;

  gap: 80px;
}

.footeropirewK__nav span {
  display: block;

  margin-bottom: 28px;

  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-weight: 700;

  text-transform: uppercase;
}

.footeropirewK__nav ul {
  display: flex;
  flex-direction: column;

  gap: 16px;
}

.footeropirewK__nav a {
  text-decoration: none;
}

.footeropirewK__copy {
  margin: 0;

  text-align: center;
}

@media (max-width: 900px) {
  .footeropirewK {
    padding: 36px 0 24px;
  }

  .footeropirewK__container {
    grid-template-columns: 1fr;

    gap: 34px;
  }

  .footeropirewK__nav {
    gap: 60px;
  }
}

.partnersopirewK {
  padding: 56px 0;
  background: #fff3e0;
}

.partnersopirewK__title {
  margin: 0 0 18px;
  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.partnersopirewK__text {
  margin: 0 0 34px;
  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.partnersopirewK__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-cardopirewK {
  position: relative;
  min-height: 420px;
  padding: 34px 22px 22px;
  border-radius: 16px;
  border: 1px solid #f79855;
  background: rgba(255, 229, 184, 0.6);
  backdrop-filter: blur(10px);
  text-align: center;
}

.partner-cardopirewK__label {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 130px;
  padding: 8px 14px;
  border-radius: 16px 0 16px 0;
  background: #f79855;
  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
}

.partner-cardopirewK__brand {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 10px;
  color: #483629;
  text-align: center;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  text-transform: uppercase;
}

.partner-cardopirewK__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  margin-bottom: 14px;
}

.partner-cardopirewK__logo img {
  display: block;
  max-width: 210px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-cardopirewK__bonus {
  display: block;
  margin-bottom: 24px;
  color: #483629;
  text-align: center;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  text-transform: uppercase;
}

.partner-cardopirewK__rating-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.partner-cardopirewK__rating {
  color: #483629;
  text-align: center;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
}

.partner-cardopirewK__stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.partner-cardopirewK__stars img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.partner-cardopirewK__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 68px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: #84522c;
  color: #fefefe;
  text-align: center;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
}

.partner-cardopirewK__payments {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.partner-cardopirewK__payments li {
  display: flex;
}

.partner-cardopirewK__payments img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.partner-cardopirewK__players {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.partner-cardopirewK__players img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

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

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

  .partnersopirewK__title {
    font-size: 28px;
  }

  .partnersopirewK__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .partner-cardopirewK {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      'logo bonus'
      'rating button'
      'players payments';
    align-items: center;
    column-gap: 18px;
    row-gap: 12px;
    padding: 38px 12px 14px;
    text-align: left;
  }

  .partner-cardopirewK__brand {
    display: none;
  }

  .partner-cardopirewK__logo {
    grid-area: logo;
    justify-content: flex-start;
    height: 54px;
    margin: 0;
  }

  .partner-cardopirewK__logo img {
    max-width: 150px;
    max-height: 54px;
  }

  .partner-cardopirewK__bonus {
    grid-area: bonus;
    margin: 0;
    font-size: 16px;
    text-align: left;
  }

  .partner-cardopirewK__rating-wrap {
    grid-area: rating;
    justify-content: flex-start;
    gap: 6px;
    margin: 0;
  }

  .partner-cardopirewK__rating {
    font-size: 28px;
  }

  .partner-cardopirewK__stars img {
    width: 15px;
    height: 15px;
  }

  .partner-cardopirewK__button {
    grid-area: button;
    min-height: 46px;
    margin: 0;
    font-size: 16px;
  }

  .partner-cardopirewK__payments {
    grid-area: payments;
    justify-content: flex-start;
    margin: 0;
    gap: 6px;
  }

  .partner-cardopirewK__payments img {
    width: 28px;
    height: 28px;
  }

  .partner-cardopirewK__players {
    grid-area: players;
    justify-content: flex-start;
    font-size: 12px;
  }
}

.beliefopirewK {
  padding: 56px 0;
  background: #fff3e0;
}

.beliefopirewK__title {
  margin: 0 0 16px;

  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  text-transform: uppercase;
}

.beliefopirewK__subtitle {
  margin: 0 0 30px;

  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.beliefopirewK__box {
  padding: 18px;

  border-radius: 16px;
  border: 1px solid #84522c;

  background: rgba(255, 229, 184, 0.35);
}

.beliefopirewK__box h3 {
  margin: 0 0 18px;

  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  text-transform: uppercase;
}

.beliefopirewK__box h4 {
  margin: 28px 0 12px;

  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.beliefopirewK__box p {
  margin: 0 0 18px;

  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

.beliefopirewK__box p:last-child {
  margin-bottom: 0;
}

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

  .beliefopirewK__title {
    font-size: 28px;
    line-height: 1.2;
  }

  .beliefopirewK__subtitle {
    margin-bottom: 24px;
  }

  .beliefopirewK__box {
    padding: 16px;
  }

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

  .beliefopirewK__box h4 {
    font-size: 15px;
  }
}
.helpCenteropirewK {
  padding: 24px 0 56px;
  background: #fff3e0;
}

.helpage {
  color: var(--Color_bb, #483629);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.helpCenteropirewK__list {
  display: flex;
  flex-wrap: wrap;

  align-items: center;
  justify-content: center;

  gap: 24px 42px;

  margin: 0;
  padding: 32px;

  list-style: none;

  border-radius: 20px;
  border: 1px solid #84522c;

  background: rgba(255, 229, 184, 0.35);

  overflow: hidden;
}

.helpCenteropirewK__list li {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 1 auto;
}

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

  text-decoration: none;
}

.helpCenteropirewK__list img {
  display: block;

  max-width: 150px;
  max-height: 46px;

  width: auto;
  height: auto;

  object-fit: contain;
}

@media (max-width: 900px) {
  .helpCenteropirewK {
    padding: 24px 0 36px;
  }

  .helpCenteropirewK__list {
    gap: 28px 32px;
    padding: 24px;
  }

  .helpCenteropirewK__list li {
    flex: 0 1 calc(33.333% - 22px);
  }
}

@media (max-width: 560px) {
  .helpCenteropirewK__list li {
    flex: 0 1 calc(50% - 16px);
  }

  .helpCenteropirewK__list img {
    max-width: 130px;
  }
}

.disclaimeropirewK {
  padding: 24px 0 56px;
  background: #fff3e0;
}

.disclaimeropirewK__box {
  padding: 26px 22px;

  border-radius: 16px;
  border: 1px solid #84522c;

  background: #f79855;

  backdrop-filter: blur(10px);
}

.disclaimeropirewK__title {
  margin: 0 0 18px;

  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  text-transform: uppercase;
}

.disclaimeropirewK__text {
  margin: 0;

  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .disclaimeropirewK {
    padding: 24px 0 36px;
  }

  .disclaimeropirewK__box {
    padding: 20px 18px;
  }

  .disclaimeropirewK__title {
    margin-bottom: 14px;
  }
}

.trustopirewK {
  padding: 56px 0;
  background: #fff3e0;
}

.trustopirewK__title {
  margin: 0 0 16px;

  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  text-transform: uppercase;
}

.trustopirewK__subtitle {
  margin: 0 0 26px;

  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.trustopirewK__box {
  padding: 18px;

  border-radius: 16px;
  border: 1px solid #84522c;

  background: rgba(255, 229, 184, 0.35);

  backdrop-filter: blur(10px);
}

.trustopirewK__heading {
  margin: 0 0 18px;

  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  text-transform: uppercase;
}

.trustopirewK__box p {
  margin: 0 0 24px;

  color: #483629;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
}

.trustopirewK__box p:last-child {
  margin-bottom: 0;
}

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

  .trustopirewK__title {
    font-size: 28px;
    line-height: 1.2;
  }

  .trustopirewK__subtitle {
    margin-bottom: 22px;
  }

  .trustopirewK__box {
    padding: 16px;
  }

  .trustopirewK__heading {
    font-size: 18px;
  }

  .trustopirewK__box p {
    margin-bottom: 18px;
    line-height: 1.6;
  }
}

.slotopirewK {
  padding: 56px 0;
  background: #fff3e0;
}

.slotopirewK__container {
  display: flex;
  justify-content: center;
}

.slotopirewK__box {
  position: relative;
  width: 100%;
  max-width: 1232px;
  aspect-ratio: 16 / 8.2;
  overflow: hidden;
}

.slotopirewK__preview {
  position: absolute;
  inset: 0;
  z-index: 2;

  width: 100%;
  height: 100%;

  padding: 0;
  border: 0;
  background: transparent;

  cursor: pointer;
}

.slotopirewK__preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slotopirewK__iframe {
  position: absolute;
  inset: 0;
  z-index: 1;

  display: block;

  width: 100%;
  height: 100%;

  border: 0;
}

.slotopirewK__box.active .slotopirewK__preview {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

  .slotopirewK__box {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 480px) {
  .slotopirewK__box {
    aspect-ratio: 9 / 12;
  }

  .slotopirewK__preview img {
    object-fit: cover;
  }
}

.terms {
  padding: 30px 0;
}

.terms-content {
  border-radius: 16px;
  border: 1px solid #84522c;
  background: rgba(255, 229, 184, 0.6);
  backdrop-filter: blur(10px);
  padding: 20px;
}

.terms h1 {
  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.terms p {
  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}

.terms ul {
  list-style: disc;
  margin-bottom: 20px;
}

.terms ul li {
  color: #483629;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
  list-style-type: disc;
  margin-left: 15px;
}

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