@import url("https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --main: "Montserrat", sans-serif;
  --secondary: "Luckiest Guy", cursive;
  --text-color: #fff;
  --header-bg: #FF8D02;
  --header-text: #fff;
  --accent: #ffa600;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--main);
  color: var(--text-color);
  margin: 0;
  background: radial-gradient(115.41% 38.79% at 20.62% 15.13%, #ff8d02 12.5%, #000000 91.83%);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.list {
  list-style: none;
}

button,
a {
  cursor: pointer;
}

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

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 364px;
  height: 86px;
  width: 100%;
  background: #11FF00;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 20px;
  margin: 0 auto;
  font-weight: 900;
  font-size: 20px;
  line-height: 20px;
  color: #fff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2509803922);
  text-decoration: none;
  text-align: center;
  padding-inline: 28px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.icon {
  width: 42px;
  height: 42px;
  fill: white;
}

.section--title {
  font-family: var(--secondary);
  font-weight: 400;
  font-size: 36px;
  line-height: 36px;
  color: #000;
  text-align: center;
  margin-bottom: 30px;
}

.section--text {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
}

.text-colored {
  margin-bottom: 32px;
  color: #ff0000 !important;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 5;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  background: var(--header-bg);
}
.header__background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 100%;
  background: var(--header-bg);
  z-index: -1;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
}
.header.is-open .header__background {
  left: 0;
}
.header__button-wrapper {
  margin-left: auto;
  padding-right: 35px;
}
.header__icon {
  display: none;
  width: 48px;
  height: 48px;
  fill: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__icon:hover {
  fill: #ffa600;
}
.header__icon-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: transparent;
  border: none;
  border-radius: 50%;
}

.header__icon--menu {
  display: block;
}

.header__icon-button.is-open .header__icon--menu {
  display: none;
}

.header__icon-button.is-open .header__icon--close {
  display: block;
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-block: 10px;
  position: relative;
}
.navigation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  padding-block: 63px;
  background: var(--header-bg);
  margin-top: 12px;
  position: absolute;
  top: 100%;
  right: -100%;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 999;
}
.navigation__list.is-open {
  right: 0;
}
.navigation__link {
  color: var(--header-text);
  font-weight: 900;
  font-size: 20px;
  line-height: 20px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.navigation__link:hover {
  text-decoration: underline;
}

.header.is-open {
  background-color: transparent;
}

@media screen and (min-width: 1205px) {
  .header {
    background-color: #000;
  }
  .header__icon-button {
    display: none;
  }
  .header__button-wrapper {
    width: auto;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .navigation {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-block: 19px;
  }
  .navigation__list {
    background: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
    position: static;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
    margin-top: 0;
    padding: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .navigation__link {
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
  }
}
.home {
  padding: 100px 10px 267px 10px;
  position: relative;
}
@media screen and (min-width: 1205px) {
  .home {
    padding-bottom: 147px;
  }
  .home .box-left {
    width: 653px;
  }
  .home .box-right {
    width: 440px;
  }
}
.home__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 44px;
}
@media screen and (min-width: 1205px) {
  .home__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}
.home__text {
  font-weight: 900;
  font-size: 24px;
  line-height: 26px;
  margin-bottom: 36px;
}
.home .title-img {
  max-width: 424px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 36px;
}
@media screen and (min-width: 1205px) {
  .home .title-img {
    margin-left: 0;
  }
}
.home h1 {
  font-family: var(--secondary);
  font-weight: 400;
  font-size: 40px;
  line-height: 40px;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (min-width: 1205px) {
  .home h1 {
    text-align: end;
  }
}
.home .section--text {
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 1205px) {
  .home .section--text {
    text-align: end;
  }
}
.home .image {
  position: absolute;
  bottom: 0;
}
.home .img-orange {
  left: 0;
}
@media screen and (min-width: 1205px) {
  .home .img-orange {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -120%);
            transform: translate(-50%, -120%);
  }
}
.home .img-lemon {
  right: 0;
}
@media screen and (min-width: 1205px) {
  .home .img-lemon {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-30%, 50%);
            transform: translate(-30%, 50%);
  }
}
.home .img-cherry {
  top: 0;
  left: 0;
  z-index: 5;
  width: 130px;
}
@media screen and (min-width: 1205px) {
  .home .img-cherry {
    left: unset;
    right: 0;
    width: auto;
    top: 100px;
  }
}
.home .button {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1205px) {
  .home .button {
    margin-left: 0;
  }
}

.popup {
  position: fixed;
  z-index: 3;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  max-width: 400px;
  width: calc(100% - 20px);
  background: #fff;
  -webkit-box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.1803921569);
          box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.1803921569);
  overflow: hidden;
  padding: 40px 36px;
}
@media screen and (min-width: 1205px) {
  .popup {
    max-width: 1280px;
    padding-bottom: 45px;
  }
}
.popup .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 36px;
}
@media screen and (min-width: 1205px) {
  .popup .wrapper {
    gap: 24px;
  }
}
.popup img {
  width: 43px;
}
.popup p {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  text-align: center;
}
.popup .button-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 1205px) {
  .popup .button-wrap {
    max-width: 466px;
    gap: 38px;
  }
}
.popup .button-wrap button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  background: transparent;
  color: #ff0000;
  border: none;
  border-bottom: 2px solid #ff0000;
  padding: 10px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.popup .button-wrap button:hover {
  background: var(--accent);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 12px;
  color: #fff;
}

.features {
  padding-top: 66px;
  padding-inline: 10px;
}
@media screen and (min-width: 1205px) {
  .features {
    padding-top: 82px;
  }
}
.features p:first-of-type {
  font-weight: 400;
}
.features ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-block: 30px;
}
@media screen and (min-width: 1205px) {
  .features ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 100px;
  }
}
.features li {
  font-family: var(--secondary);
  font-weight: 400;
  font-size: 64px;
  line-height: 64px;
  color: #ff0b0b;
}

.tips {
  padding-top: 42px;
  padding-inline: 10px;
}
@media screen and (min-width: 1205px) {
  .tips {
    padding-top: 197px;
    position: relative;
  }
  .tips img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -60%);
            transform: translate(-50%, -60%);
  }
}
.tips h2 {
  color: #ff8d02;
}
.tips .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1205px) {
  .tips .wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.tips ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.tips li {
  font-weight: 700;
  font-size: 20px;
  line-height: 36px;
}
.tips .box-right li {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-align: end;
}
@media screen and (min-width: 1205px) {
  .tips .box-right li {
    max-width: 442px;
  }
}
.tips .box-right h2 {
  text-align: end;
}
.tips .box-left h2 {
  text-align: start;
}

.autospin {
  padding-top: 116px;
  padding-inline: 10px;
}
@media screen and (min-width: 1205px) {
  .autospin {
    padding-top: 111px;
  }
}
.autospin h2 {
  color: #ff8d02;
}
.autospin ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  margin-block: 30px;
}
@media screen and (min-width: 1205px) {
  .autospin ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 100px;
  }
}
.autospin li {
  font-family: var(--secondary);
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  color: #ff0b0b;
  text-align: center;
}

.compatibility {
  padding-top: 73px;
  padding-inline: 10px;
}
@media screen and (min-width: 1205px) {
  .compatibility {
    padding-top: 197px;
  }
}
.compatibility h2 {
  color: #ff8d02;
}
.compatibility ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  padding: 63px 43px;
  background: -webkit-gradient(linear, left top, right top, from(#2a980a), to(#0a5601));
  background: linear-gradient(90deg, #2a980a 0%, #0a5601 100%);
  border-radius: 30px;
}
@media screen and (min-width: 1205px) {
  .compatibility ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
    padding: 40px;
  }
}
.compatibility li {
  font-family: var(--secondary);
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
}

.about {
  padding-inline: 10px;
  padding-top: 30px;
}
@media screen and (min-width: 1205px) {
  .about h2 {
    text-align: start;
  }
}
.about .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
@media screen and (min-width: 1205px) {
  .about .wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
  }
}
.about .home__text {
  font-size: 20px;
}
.about .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #000;
  margin-bottom: 24px;
}

.contacts {
  padding-top: 73px;
  padding-inline: 10px;
}
@media screen and (min-width: 1205px) {
  .contacts {
    padding-top: 103px;
  }
}
.contacts h2 {
  color: #ff8d02;
  text-align: start;
}
.contacts p {
  font-weight: 700;
  font-size: 20px;
  line-height: 36px;
}

.community {
  padding-top: 44px;
  padding-bottom: 55px;
  padding-inline: 15px;
}
@media screen and (min-width: 1205px) {
  .community {
    padding-top: 52px;
    padding-bottom: 81px;
  }
}

.mechanics {
  padding-top: 94px;
  padding-inline: 10px;
}
@media screen and (min-width: 1205px) {
  .mechanics {
    padding-top: 111px;
  }
}
.mechanics h2 {
  color: #fff;
}
.mechanics ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
.mechanics li {
  max-width: 770px;
  width: 100%;
  min-height: 64px;
  background: -webkit-gradient(linear, left top, left bottom, from(#2a980a), to(#0a5601));
  background: linear-gradient(180deg, #2a980a 0%, #0a5601 100%);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 30px;
  padding-inline: 8px;
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.fruits {
  padding-top: 94px;
  padding-inline: 10px;
}
.fruits h2 {
  color: #fff;
}
.fruits ul {
  margin-top: 58px;
  margin-bottom: 51px;
  margin-inline: -10px;
}
@media screen and (min-width: 1205px) {
  .fruits ul {
    height: 355px;
    margin-bottom: 150px;
  }
}
.fruits li {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  margin: 0 11px;
}
@media screen and (min-width: 1205px) {
  .fruits li {
    gap: 73px;
  }
}
.fruits li img {
  height: 130px;
}
@media screen and (min-width: 1205px) {
  .fruits li img {
    height: 238px;
    opacity: 40%;
    -webkit-transition: all 1.1s linear;
    transition: all 1.1s linear;
  }
}
.fruits li p {
  font-family: var(--secondary);
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
}
@media screen and (min-width: 1205px) {
  .fruits li p {
    font-weight: 400;
    font-size: 32px;
    line-height: 32px;
  }
}
@media screen and (min-width: 1205px) {
  .fruits .slick-slide.slick-active img {
    height: 355px;
    opacity: 100%;
  }
}

.game-iframe-wrapper {
  position: relative;
  margin-top: 36px;
}

.game-iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
}

@media screen and (min-width: 1205px) {
  .game-iframe {
    height: 613px;
  }
}
.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 2;
  padding: 0;
  background-color: transparent;
}

.tricks {
  margin-top: -1px;
  padding-block: 58px;
  padding-inline: 15px;
}
@media screen and (min-width: 1205px) {
  .tricks {
    padding-top: 88px;
    padding-bottom: 37px;
  }
}
.tricks__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
@media screen and (min-width: 1205px) {
  .tricks__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 21px;
    position: relative;
  }
}
.tricks .pumpkin-img {
  display: none;
}
@media screen and (min-width: 1205px) {
  .tricks .section--title,
  .tricks .section--text {
    text-align: start;
  }
  .tricks .pumpkin-img {
    display: block;
    position: absolute;
    bottom: 30px;
    left: 150px;
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
  }
}

.ritual {
  background-color: #fff;
  padding-top: 83px;
  padding-bottom: 50px;
  padding-inline: 15px;
}
@media screen and (min-width: 1205px) {
  .ritual {
    padding-block: 53px;
  }
}
.ritual__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
@media screen and (min-width: 1205px) {
  .ritual__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
}
.ritual .section--text {
  color: #000;
}
.ritual .pumpkin-img {
  display: none;
}
.ritual .button {
  margin-top: 33px;
  margin-bottom: 56px;
}
.ritual ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
@media screen and (min-width: 1205px) {
  .ritual ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    min-width: 548px;
  }
}
.ritual li {
  width: 262px;
  height: 197px;
  background-color: #000;
  border-radius: 50px;
  padding-inline: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.ritual li p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}
@media screen and (min-width: 1205px) {
  .ritual .section--title,
  .ritual .section--text {
    text-align: end;
  }
  .ritual .box {
    min-width: 675px;
  }
  .ritual .button {
    margin-right: 0;
    margin-bottom: 0;
  }
  .ritual .pumpkin-img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: rotate(4deg) translate(10%, 50%);
            transform: rotate(4deg) translate(10%, 50%);
  }
}

.disclaimer {
  background-color: #fff;
  border: 8.71px solid #11ff00;
  margin-top: 73px;
}
.disclaimer .box {
  padding: 51px 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
@media screen and (min-width: 1205px) {
  .disclaimer .box {
    padding-block: 58px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 81px;
  }
}
.disclaimer h2 {
  font-weight: 900;
  font-size: 32px;
  line-height: 32px;
  margin-bottom: 16px;
  text-transform: uppercase;
  text-align: center;
  color: #ff0b0b;
}
@media screen and (min-width: 1205px) {
  .disclaimer h2 {
    font-weight: 900;
    font-size: 40px;
    line-height: 40px;
    text-align: start;
  }
}
.disclaimer p {
  font-weight: 900;
  font-size: 19px;
  line-height: 22px;
  text-transform: uppercase;
  text-align: center;
  color: #ff8d02;
}
@media screen and (min-width: 1205px) {
  .disclaimer p {
    font-weight: 900;
    font-size: 24px;
    line-height: 28px;
    text-align: justify;
  }
}
.disclaimer img {
  max-width: 342px;
  width: 100%;
}

.footer {
  padding-top: 73px;
  padding-bottom: 61px;
  padding-inline: 10px;
}
@media screen and (min-width: 1205px) {
  .footer {
    padding-top: 44px;
    padding-bottom: 26px;
  }
}
.footer img {
  max-width: 504px;
  width: 100%;
}
.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 42px;
  margin-bottom: 17px;
}
@media screen and (min-width: 1205px) {
  .footer__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 27px;
  }
}
.footer__text {
  font-weight: 900;
  font-size: 25px;
  line-height: 25px;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  color: #ff8d02;
}
@media screen and (min-width: 1205px) {
  .footer__text {
    font-weight: 900;
    font-size: 40px;
    line-height: 40px;
  }
}
.footer__copyright {
  font-weight: 400;
  font-size: 9px;
  line-height: 17px;
  text-align: center;
  text-transform: uppercase;
  color: #ff0b0b;
}
@media screen and (min-width: 1205px) {
  .footer__copyright {
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
  }
}

.policies {
  padding-top: 80px;
  padding-inline: 10px;
  padding-bottom: 44px;
  color: #fff;
}
@media screen and (min-width: 1205px) {
  .policies {
    padding-top: 148px;
    padding-bottom: 52px;
  }
}
.policies a {
  color: #fff;
  text-decoration: underline;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.policies a:hover {
  color: #000;
}
.policies h1 {
  font-weight: 900;
  font-size: 36px;
  line-height: 36px;
  margin-bottom: 33px;
  margin-bottom: 56px;
}
.policies h2 {
  margin-block: 10px;
  font-size: 20px;
}
.policies h4 {
  margin-top: 10px;
}
.policies ul {
  margin-left: 40px;
  list-style: disc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  padding-block: 10px;
}
.policies p {
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
}
.policies strong {
  font-weight: 400;
}/*# sourceMappingURL=main.css.map */