@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Ranchers&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
}

.content, .header, .intro, .marquee > * {
  will-change: transform;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: "Nunito", sans-serif;
  font-weight: 300;
  font-size: 24px;
  background-color: #0e100a;
}

.preloader {
  background: #0e100a;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  overflow: hidden;
  position: fixed;
}

.wave {
  width: 5px;
  height: 100px;
  background: linear-gradient(45deg, cyan, #fff);
  margin: 10px;
  animation: wave 1s linear infinite;
  border-radius: 20px;
}

.wave:nth-child(2) {
  animation-delay: 0.1s;
}

.wave:nth-child(3) {
  animation-delay: 0.2s;
}

.wave:nth-child(4) {
  animation-delay: 0.3s;
}

.wave:nth-child(5) {
  animation-delay: 0.4s;
}

.wave:nth-child(6) {
  animation-delay: 0.5s;
}

.wave:nth-child(7) {
  animation-delay: 0.6s;
}

.wave:nth-child(8) {
  animation-delay: 0.7s;
}

.wave:nth-child(9) {
  animation-delay: 0.8s;
}

.wave:nth-child(10) {
  animation-delay: 0.9s;
}

@keyframes wave {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
._container {
  max-width: 1570px;
  padding: 0 45px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 480px) {
  ._container {
    padding: 0 15px;
    max-width: 1510px;
  }
}
.wrapper {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.button {
  font-size: 24px;
  color: #fff;
  padding: 16px 20px;
  background-color: #000;
  font-weight: 600;
  text-decoration: none;
  display: block;
  border-radius: 10px;
}

@media (max-width: 992px) {
  .button {
    font-size: 18px;
    padding: 8px 16px;
  }
}
@media (max-width: 768px) {
  .button {
    padding: 8px 8px;
  }
}
@media (max-width: 480px) {
  .button {
    font-size: 30px;
    display: flex;
    align-self: self-start;
  }
}
.header {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 1;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  border-radius: 20px;
  padding: 10px 30px;
}

.header__logo {
  font-size: 38px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .header__logo {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .header__logo {
    font-size: 20px;
  }
}
.header__buttons {
  display: flex;
  gap: 10px;
}

@media (max-width: 480px) {
  .header__buttons {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    transform: translateX(200%);
    flex-direction: column;
    padding-top: 20px;
    padding-left: 60px;
    gap: 20px;
  }
}
.header__buttons.active {
  transform: translateX(0%);
}

.header__button:hover {
  background-color: #acde79;
  color: #000;
}

.header__burger-menu {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: none;
}

.header__burger-menu span {
  width: 30px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  transition: all 0.5s;
}

.header__burger-menu span:nth-of-type(2) {
  top: calc(50% - 8px);
}

.header__burger-menu span:nth-of-type(3) {
  top: calc(50% + 8px);
}

@media (max-width: 480px) {
  .header__burger-menu {
    display: block;
  }
}
.header__burger-menu.active span:nth-of-type(1) {
  display: none;
}

.header__burger-menu.active span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);
}

.header__burger-menu.active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg);
}

.intro {
  background: url("../assets/img/intro/background.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100vh;
  padding-top: 220px;
  position: relative;
}

@media (max-width: 576px) {
  .intro {
    padding-top: 210px;
  }
}
@media (max-width: 480px) {
  .intro {
    height: 100%;
    padding-bottom: 100px;
  }
}
.intro__title {
  text-align: center;
  font-family: "Ranchers", sans-serif;
  font-size: 310px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #0e100a;
  position: relative;
  z-index: 1;
}

@media (max-width: 1560px) {
  .intro__title {
    font-size: 250px;
  }
}
@media (max-width: 1300px) {
  .intro__title {
    font-size: 210px;
  }
}
@media (max-width: 1180px) {
  .intro__title {
    font-size: 180px;
  }
}
@media (max-width: 992px) {
  .intro__title {
    font-size: clamp(8.125rem, -2.5893rem + 22.3214vw, 11.25rem);
  }
}
@media (max-width: 768px) {
  .intro__title {
    font-size: clamp(6.25rem, 0.625rem + 15.625vw, 8.125rem);
  }
}
@media (max-width: 576px) {
  .intro__title {
    font-size: clamp(5rem, -1.25rem + 20.8333vw, 6.25rem);
  }
}
@media (max-width: 480px) {
  .intro__title {
    font-size: clamp(3.75rem, -0.7143rem + 19.0476vw, 5rem);
  }
}
@media (max-width: 375px) {
  .intro__title {
    font-size: clamp(3.125rem, 1.2829rem + 10.5263vw, 3.75rem);
  }
}
.intro__bottom {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 75px;
}

@media (max-width: 576px) {
  .intro__bottom {
    flex-direction: column;
    margin-top: 110px;
    gap: 30px;
  }
}
@media (max-width: 375px) {
  .intro__bottom {
    margin-top: 120px;
  }
}
.intro__button {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  padding: 24px 100px 24px 80px;
  display: flex;
  gap: 24px;
  align-items: center;
  background-color: #0e100a;
  border-radius: 0 69px 69px 69px;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
  transition: 0.2s ease;
}

.intro__button img {
  width: 20px;
}

.intro__button div {
  color: #0e100a;
  position: absolute;
  left: 0;
  top: -30px;
  background-color: #acde79;
  border: 5px solid #0e100a;
  text-transform: capitalize;
  border-radius: 69px 69px 69px 69px;
  padding: 5px 18px;
}

@media (max-width: 1180px) {
  .intro__button div {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .intro__button div {
    font-size: 16px;
    top: -25px;
  }
}
.intro__button:hover {
  background-color: #1c1c1c;
}

@media (max-width: 1560px) {
  .intro__button {
    padding: 24px 50px 24px 50px;
  }
}
@media (max-width: 1180px) {
  .intro__button {
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  .intro__button {
    font-size: 20px;
    padding: 16px 30px 16px 30px;
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .intro__button {
    display: flex;
    align-self: center;
    padding: 16px 50px 16px 50px;
  }
}
.intro__cat {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: 1.4s ease-in-out;
}

@media (max-width: 1300px) {
  .intro__cat {
    width: 550px;
    bottom: -60px;
  }
}
@media (max-width: 1200px) {
  .intro__cat {
    width: 500px;
  }
}
@media (max-width: 992px) {
  .intro__cat {
    width: 400px;
    bottom: -40px;
  }
}
@media (max-width: 768px) {
  .intro__cat {
    width: 300px;
    bottom: 60px;
  }
}
@media (max-width: 576px) {
  .intro__cat {
    width: 240px;
    bottom: 200px;
  }
}
@media (max-width: 480px) {
  .intro__cat {
    width: 200px;
  }
}
.intro__decoration {
  position: absolute;
  top: 0;
  z-index: 0;
  transition: 1s ease;
  height: 100vh;
}

.intro__decoration_left {
  left: 0px;
}

.intro__decoration_right {
  right: 0px;
}

@media (max-width: 1180px) {
  .intro__decoration {
    display: none;
  }
}
.intro-media-list {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .intro-media-list {
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .intro-media-list {
    display: flex;
    justify-content: center;
  }
}
.intro-media-list__item {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0e100a;
  border-radius: 100px;
  cursor: pointer;
}

.intro-media-list__link:hover {
  transform: rotateY(360deg);
}

@media (max-width: 1560px) {
  .intro-media-list__item {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 1180px) {
  .intro-media-list__item {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 992px) {
  .intro-media-list__item {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 576px) {
  .intro-media-list__item {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 375px) {
  .intro-media-list__item {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 1560px) {
  .intro-media-list__link img {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 1180px) {
  .intro-media-list__link img {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 992px) {
  .intro-media-list__link img {
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 992px) and (max-width: 576px) {
  .intro-media-list__link img {
    width: 30px;
    height: 30px;
  }
}
.left0 {
  left: 0;
}

.right0 {
  right: 0;
}

.bottomNeg170 {
  bottom: -170px;
}

@media (max-width: 1280px) {
  .bottomNeg170 {
    bottom: -60px;
  }
}
@media (max-width: 768px) {
  .bottomNeg170 {
    bottom: 60px;
  }
}
@media (max-width: 576px) {
  .bottomNeg170 {
    bottom: 185px;
  }
}
.zIndexNeg {
  z-index: -3;
}

.ovHidden {
  overflow: hidden;
}

@keyframes marqueeLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes marqueeRight {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes fadeout {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.marquee {
  background-color: #0e100a;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}

@media (max-width: 480px) {
  .marquee {
    padding-top: 30px;
  }
}
@media (max-width: 480px) {
  .marquee__wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.marquee__item {
  font-size: 100px;
  color: #fff;
  width: 100vw;
  animation: marqueeLeft 30s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.marquee__item:nth-of-type(even) {
  animation: marqueeRight 30s linear infinite;
}

@media (max-width: 1300px) {
  .marquee__item {
    font-size: 70px;
  }
}
@media (max-width: 992px) {
  .marquee__item {
    font-size: 50px;
  }
}
@media (max-width: 480px) {
  .marquee__item {
    font-size: 30px;
  }
}
.marquee__item_tax span {
  position: relative;
}

.marquee__item_tax span:after {
  opacity: 0;
  z-index: 10;
  content: "0% TAX";
  position: absolute;
  left: -90px;
  bottom: -20px;
  background-color: #fff;
  font-size: 40px;
  background-color: #8dde95;
  color: #0e100a;
  font-weight: 700;
  padding: 5px 50px;
  border: 10px solid #0e100a;
  border-radius: 70px;
}

@media (max-width: 1300px) {
  .marquee__item_tax span:after {
    font-size: 30px !important;
  }
}
@media (max-width: 992px) {
  .marquee__item_tax span:after {
    font-size: 20px !important;
    padding: 5px 20px;
  }
}
@media (max-width: 480px) {
  .marquee__item_tax span:after {
    font-size: 16px !important;
    padding: 5px 10px;
    border: 5px solid #0e100a;
  }
}
.marquee__item_tax span:hover {
  cursor: pointer;
}

.marquee__item_tax span:hover:after {
  animation: fadeout 1s ease;
}

.marquee__item_mint span {
  position: relative;
}

.marquee__item_mint span:after {
  opacity: 0;
  z-index: 10;
  content: "Mint Revoked";
  position: absolute;
  left: -40px;
  bottom: -20px;
  background-color: #fff;
  font-size: 40px;
  background-color: #de8d8d;
  color: #0e100a;
  font-weight: 700;
  padding: 5px 50px;
  border: 10px solid #0e100a;
  border-radius: 70px;
}

@media (max-width: 1300px) {
  .marquee__item_mint span:after {
    font-size: 30px !important;
  }
}
@media (max-width: 992px) {
  .marquee__item_mint span:after {
    font-size: 20px !important;
    padding: 5px 20px;
  }
}
@media (max-width: 480px) {
  .marquee__item_mint span:after {
    font-size: 16px !important;
    padding: 5px 10px;
    border: 5px solid #0e100a;
  }
}
.marquee__item_mint span:hover {
  cursor: pointer;
}

.marquee__item_mint span:hover:after {
  animation: fadeout 1s ease;
}

.marquee__item_lp span {
  position: relative;
}

.marquee__item_lp span:after {
  opacity: 0;
  z-index: 10;
  content: "LP Burnt";
  position: absolute;
  left: 50px;
  bottom: -20px;
  background-color: #fff;
  font-size: 40px;
  background-color: #f8b42f;
  color: #0e100a;
  font-weight: 700;
  padding: 5px 50px;
  border: 10px solid #0e100a;
  border-radius: 70px;
}

@media (max-width: 1300px) {
  .marquee__item_lp span:after {
    font-size: 30px !important;
  }
}
@media (max-width: 992px) {
  .marquee__item_lp span:after {
    font-size: 20px !important;
    padding: 5px 20px;
  }
}
@media (max-width: 480px) {
  .marquee__item_lp span:after {
    font-size: 16px !important;
    padding: 5px 10px;
    border: 5px solid #0e100a;
  }
}
.marquee__item_lp span:hover {
  cursor: pointer;
}

.marquee__item_lp span:hover:after {
  animation: fadeout 1s ease;
}

.marquee__item_supply span {
  position: relative;
}

.marquee__item_supply span:after {
  opacity: 0;
  z-index: 10;
  content: "A Whole Lotta Supply";
  position: absolute;
  left: 30px;
  bottom: -20px;
  background-color: #fff;
  font-size: 40px;
  background-color: #8dde95;
  color: #0e100a;
  font-weight: 700;
  padding: 5px 50px;
  border: 10px solid #0e100a;
  border-radius: 70px;
  z-index: 2;
}

@media (max-width: 1300px) {
  .marquee__item_supply span:after {
    font-size: 30px !important;
  }
}
@media (max-width: 992px) {
  .marquee__item_supply span:after {
    font-size: 20px !important;
    padding: 5px 20px;
  }
}
@media (max-width: 480px) {
  .marquee__item_supply span:after {
    font-size: 16px !important;
    padding: 5px 10px;
    border: 5px solid #0e100a;
  }
}
.marquee__item_supply span:hover {
  cursor: pointer;
}

.marquee__item_supply span:hover:after {
  animation: fadeout 1s ease;
}

.marquee__item_creator span {
  position: relative;
}

.marquee__item_creator span:after {
  opacity: 0;
  z-index: 10;
  content: "@browixx";
  position: absolute;
  left: -90px;
  top: 0px;
  background-color: #fff;
  font-size: 40px;
  background-color: #ace1ff;
  color: #0e100a;
  font-weight: 700;
  padding: 5px 50px;
  border: 10px solid #0e100a;
  border-radius: 70px;
}

@media (max-width: 1300px) {
  .marquee__item_creator span:after {
    font-size: 30px !important;
  }
}
@media (max-width: 992px) {
  .marquee__item_creator span:after {
    font-size: 20px !important;
    padding: 5px 20px;
  }
}
@media (max-width: 480px) {
  .marquee__item_creator span:after {
    font-size: 16px !important;
    padding: 5px 10px;
    border: 5px solid #0e100a;
  }
}
.marquee__item_creator span:hover {
  cursor: pointer;
}

.marquee__item_creator span:hover:after {
  animation: fadeout 1s ease;
}

.twitter {
  padding: 64px 0 84px;
}

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

.twitter__img-area {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.twitter__img-area img {
  max-height: 225px;
}

.roadmap {
  padding: 84px 0 0 0;
}

@media (max-width: 768px) {
  .roadmap {
    padding: 50px 0 0 0;
  }
}
.roadmap__title {
  font-size: 130px;
  color: #fff;
  font-family: "Ranchers", sans-serif;
  text-transform: uppercase;
  margin-bottom: 50px;
  text-shadow: 0px 0px 82px rgba(206, 206, 206, 0.25);
}

@media (max-width: 992px) {
  .roadmap__title {
    font-size: 90px;
    margin-bottom: 90px;
  }
}
@media (max-width: 768px) {
  .roadmap__title {
    font-size: 70px;
  }
}
@media (max-width: 480px) {
  .roadmap__title {
    font-size: 50px;
  }
}
.roadmap__map {
  display: flex;
  flex-direction: column;
}

.card-roadmap {
  padding: 30px;
  background-color: #8dde95;
  display: flex;
  align-self: flex-end;
  flex-direction: column;
  position: relative;
  max-width: 600px;
  border-radius: 30px;
  position: relative;
  margin-bottom: 67px;
  z-index: 1;
}

@media (max-width: 1280px) {
  .card-roadmap {
    max-width: 500px;
  }
}
@media (max-width: 992px) {
  .card-roadmap {
    margin-bottom: 90px;
  }
}
@media (max-width: 768px) {
  .card-roadmap {
    width: 100%;
    max-width: initial;
  }
}
.card-roadmap:before {
  content: "PHASE 1";
  position: absolute;
  top: -50px;
  right: 20px;
  background-color: #6fc077;
  padding: 20px;
  border-radius: 40px;
  border: 5px solid #000;
  text-transform: uppercase;
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  z-index: 2;
}

@media (max-width: 1180px) {
  .card-roadmap:before {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .card-roadmap:before {
    padding: 12px;
    top: -36px;
    right: 12px;
  }
}
.card-roadmap:after {
  content: "";
  background: url("../assets/img/roadmap/decoration-green.svg") no-repeat;
  position: absolute;
  left: -30px;
  top: -50px;
  width: 30px;
  height: 34px;
  background-size: cover;
}

@media (max-width: 480px) {
  .card-roadmap:after {
    display: none;
  }
}
.card-roadmap_purple {
  background-color: #dc8dde;
  align-self: flex-start;
  margin-bottom: 157px;
}

@media (max-width: 992px) {
  .card-roadmap_purple {
    margin-bottom: 90px;
  }
}
.card-roadmap_blue {
  background-color: #ace1ff;
}

.card-roadmap__title {
  color: #fff;
  text-transform: uppercase;
  font-family: "Ranchers", sans-serif;
  font-size: 64px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1180px) {
  .card-roadmap__title {
    font-size: 48px;
  }
}
@media (max-width: 576px) {
  .card-roadmap__title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .card-roadmap__title {
    font-size: 24px;
  }
}
.card-roadmap__subtitle {
  font-size: 24px;
  color: #fff;
}

.card-roadmap__subtitle span {
  font-weight: bold;
}

@media (max-width: 1180px) {
  .card-roadmap__subtitle {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .card-roadmap__subtitle {
    font-size: 16px;
  }
}
.card-roadmap__bg-dec {
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 30px;
}

@media (max-width: 768px) {
  .card-roadmap__bg-dec {
    width: 100px;
  }
}
.card-roadmap__trip-line {
  position: absolute;
  left: -530px;
  bottom: -70px;
  z-index: -1;
}

@media (max-width: 992px) {
  .card-roadmap__trip-line {
    display: none;
  }
}
.card-roadmap__trip-line_purple {
  right: -500px;
  top: 120px !important;
  left: auto !important;
}

@media (max-width: 1280px) {
  .card-roadmap__trip-line_purple {
    top: 180px !important;
    right: -450px;
  }
}
@media (max-width: 1180px) {
  .card-roadmap__trip-line_purple {
    top: 143px !important;
    right: -350px;
  }
}
@media (max-width: 1180px) {
  .card-roadmap__trip-line_blue {
    left: -380px !important;
  }
}
@media (max-width: 1280px) {
  .card-roadmap__trip-line {
    left: -430px;
  }
}
@media (max-width: 1180px) {
  .card-roadmap__trip-line {
    left: -325px;
  }
}
.card-roadmap_purple .card-roadmap__bg-dec {
  top: 0;
}

.card-roadmap_purple:before {
  background-color: #be6fc0;
  content: "PHASE 2";
}

@media (max-width: 1180px) {
  .card-roadmap_purple:before {
    font-size: 16px;
  }
}
.card-roadmap_purple:after {
  background: url("../assets/img/roadmap/decoration-purple.svg") no-repeat;
  width: 60px;
  height: 60px;
  left: -50px;
}

@media (max-width: 768px) {
  .card-roadmap_purple:after {
    left: -35px;
  }
}
.card-roadmap_blue .card-roadmap__bg-dec {
  left: 0;
  top: 0;
}

.card-roadmap_blue:before {
  background-color: #7aafcd;
  content: "PHASE 3";
}

@media (max-width: 1180px) {
  .card-roadmap_blue:before {
    font-size: 16px;
  }
}
.card-roadmap_blue:after {
  background: url("../assets/img/roadmap/decoration-blue.svg") no-repeat;
  width: 90px;
  height: 90px;
  left: -50px;
  top: -60px;
}

@media (max-width: 768px) {
  .card-roadmap_blue:after {
    left: -35px;
  }
}
.card-roadmap__trip-line_blue {
  left: -450px;
  top: 80px;
}

.gallery {
  padding: 0 0 60px 0;
}

.gallery__body {
  animation: marqueeLeft 30s linear infinite;
  display: flex;
  gap: 30px;
}

@media (max-width: 768px) {
  .gallery__body {
    gap: 15px;
  }
}
.gallery__item {
  width: 200px;
}

.item-gallery {
  min-width: 320px;
  position: relative;
  cursor: pointer;
}

@media (max-width: 1180px) {
  .item-gallery {
    min-width: 260px;
  }
}
@media (max-width: 992px) {
  .item-gallery {
    min-width: 220px;
  }
}
@media (max-width: 768px) {
  .item-gallery {
    min-width: 150px;
  }
}
@media (max-width: 480px) {
  .item-gallery {
    min-width: 120px;
  }
}
.item-gallery__hover {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  padding: 30px 0 0 0;
  background-color: #dc8dde;
  border-radius: 30px;
  overflow: hidden;
  transition: 0.2s ease;
}

@media (max-width: 768px) {
  .item-gallery__hover {
    padding-top: 10px;
    border-radius: 15px;
  }
}
.item-gallery__hover h3 {
  text-align: center;
  color: #fff;
  font-size: 81px;
  text-transform: uppercase;
  font-family: "Ranchers", sans-serif;
}

@media (max-width: 1180px) {
  .item-gallery__hover h3 {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .item-gallery__hover h3 {
    font-size: 25px;
  }
}
.item-gallery__hover h4 {
  text-align: center;
  color: #fff;
  font-size: 29px;
  text-transform: uppercase;
  font-family: "Ranchers", sans-serif;
}

@media (max-width: 768px) {
  .item-gallery__hover h4 {
    font-size: 18px;
  }
}
.item-gallery__hover img {
  position: absolute;
  bottom: 30px;
}

.item-gallery__hover_eats {
  background-color: #8dde95;
}

.item-gallery__hover_sleeps {
  background-color: #de8d8d;
}

.item-gallery:hover .item-gallery__hover {
  opacity: 1;
}

.buy {
  padding: 72px 0 230px;
}

@media (max-width: 992px) {
  .buy {
    padding: 50px 0 100px 0;
  }
}
@media (max-width: 576px) {
  .buy {
    padding-top: 0;
  }
}
.buy__container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.buy__bag {
  position: relative;
}

.buy__title {
  color: #fff;
  text-transform: uppercase;
  font-family: "Ranchers", sans-serif;
  font-size: 130px;
  text-shadow: 0px 0px 82px rgba(206, 206, 206, 0.25);
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
}

@media (max-width: 1360px) {
  .buy__title {
    font-size: 100px;
  }
}
@media (max-width: 992px) {
  .buy__title {
    font-size: 70px;
  }
}
@media (max-width: 576px) {
  .buy__title {
    font-size: 50px;
  }
}
@media (max-width: 480px) {
  .buy__title {
    font-size: 40px;
  }
}
@media (max-width: 375px) {
  .buy__title {
    font-size: 30px;
  }
}
.buy__dec {
  position: absolute;
  color: #fff;
  font-size: 50px;
  font-family: "Ranchers", sans-serif;
  text-transform: uppercase;
  overflow: visible;
}

@media (max-width: 1300px) {
  .buy__dec {
    font-size: 35px;
  }
}
.buy__dec_purple {
  top: 150px;
  left: -50px;
  transform: rotate(-25deg);
}

.buy__dec_purple:after {
  content: "";
  background-image: url("../assets/img/buy/purple-bg.png");
  background-size: cover;
  background-position: center;
  position: absolute;
  left: -60px;
  top: -80px;
  width: 308px;
  height: 230px;
  z-index: -1;
  transform: rotate(25deg);
}

.buy__dec_blue {
  top: 50px;
  right: -20px;
  text-align: center;
}

.buy__dec_blue:after {
  content: "";
  background-image: url("../assets/img/buy/blue-bg.png");
  background-size: cover;
  background-position: center;
  position: absolute;
  left: -30px;
  top: -20px;
  width: 217px;
  height: 217px;
  z-index: -1;
}

.buy__dec_orange {
  top: 380px;
  right: -120px;
  text-align: center;
  transform: rotate(21deg);
}

.buy__dec_orange:after {
  content: "";
  transform: rotate(-21deg);
  background-image: url("../assets/img/buy/orange-bg.png");
  background-size: cover;
  background-position: center;
  position: absolute;
  left: -100px;
  top: -70px;
  width: 386px;
  height: 212px;
  z-index: -1;
}

.buy__dec_green {
  top: 740px;
  right: -120px;
  text-align: center;
  transform: rotate(-3deg);
}

.buy__dec_green:after {
  content: "";
  transform: rotate(3deg);
  background-image: url("../assets/img/buy/green-bg.png");
  background-size: cover;
  background-position: center;
  position: absolute;
  left: -10px;
  top: -45px;
  width: 256px;
  height: 150px;
  z-index: -1;
}

@media (max-width: 1250px) {
  .buy__dec_green {
    top: 620px;
  }
}
.buy__dec_light-blue {
  bottom: 20px;
  left: 160px;
  text-align: center;
}

.buy__dec_light-blue:after {
  content: "";
  background-image: url("../assets/img/buy/light-blue-bg.png");
  background-size: cover;
  background-position: center;
  position: absolute;
  left: -40px;
  top: -75px;
  width: 200px;
  height: 141px;
  z-index: -1;
}

.buy__dec_black {
  bottom: 250px;
  left: -170px;
  text-align: center;
  transform: rotate(-13.43deg);
}

.buy__dec_black:after {
  content: "";
  transform: rotate(13.43deg);
  background-image: url("../assets/img/buy/black-bg.png");
  background-size: cover;
  background-position: center;
  position: absolute;
  left: -25px;
  top: -45px;
  width: 340px;
  height: 160px;
  z-index: -1;
}

.footer__container {
  display: flex;
}

.footer__top {
  background: linear-gradient(90deg, #8aa666 0%, #4c7a43 100%);
  padding: 17px 0;
  border-top: 5px solid #fff;
  border-bottom: 5px solid #fff;
}

.footer__top p {
  color: #fff;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .footer__top p {
    font-size: 20px;
  }
}
.footer__marquee {
  animation: marqueeLeft 30s linear infinite;
  display: flex;
  gap: 44px;
  align-items: center;
}

@media (max-width: 768px) {
  .footer__marquee {
    gap: 16px;
  }
}
.footer__marquee img {
  width: 20px;
}

.footer__info {
  padding: 80px 0;
  width: 62%;
}

@media (max-width: 576px) {
  .footer__info {
    padding: 160px 0 80px 0;
    width: 100%;
  }
}
.footer__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  column-gap: 183px;
  row-gap: 32px;
  margin-bottom: 61px !important;
}

@media (max-width: 1180px) {
  .footer__list {
    column-gap: 100px;
  }
}
@media (max-width: 992px) {
  .footer__list {
    column-gap: 15px;
    row-gap: 20px;
  }
}
@media (max-width: 768px) {
  .footer__list {
    margin-bottom: 20px !important;
  }
}
.footer__link {
  font-family: "Ranchers", sans-serif;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 50px;
}

.footer__link:hover {
  text-decoration: underline;
}

.footer__link span {
  color: #41baff;
}

@media (max-width: 992px) {
  .footer__link {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .footer__link {
    font-size: 30px;
  }
}
@media (max-width: 375px) {
  .footer__link {
    font-size: 24px;
  }
}
.footer__hr {
  color: #d9d9d9;
  height: 10px;
  border: 10px solid #d9d9d9;
  margin-bottom: 32px;
}

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

@media (max-width: 1180px) {
  .footer__bottom {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}
.footer__address-area {
  display: flex;
  align-items: center;
  gap: 20px;
  text-transform: uppercase;
  font-size: 30px;
  color: rgba(255, 255, 255, 0.4117647059);
  position: relative;
  z-index: 10;
}

.footer__address-area p {
  display: flex;
  gap: 20px;
}

@media (max-width: 480px) {
  .footer__address-area p {
    gap: 10px;
  }
}
.footer__address-area span {
  color: rgba(255, 255, 255, 0.1843137255);
  cursor: pointer;
}

.footer__address-area img {
  cursor: pointer;
}

@media (max-width: 480px) {
  .footer__address-area img {
    width: 20px;
  }
}
@media (max-width: 768px) {
  .footer__address-area {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .footer__address-area {
    gap: 10px;
  }
}
.footer__copyright {
  font-size: 30px;
  color: rgba(255, 255, 255, 0.2196078431);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .footer__copyright {
    font-size: 20px;
  }
}
.footer__cat img {
  position: absolute;
  bottom: 50px;
  right: -35px;
}

@media (max-width: 1300px) {
  .footer__cat img {
    width: 500px;
  }
}
@media (max-width: 992px) {
  .footer__cat img {
    width: 420px;
  }
}
@media (max-width: 768px) {
  .footer__cat img {
    width: 295px;
    right: 0;
  }
}
@media (max-width: 576px) {
  .footer__cat img {
    left: 50%;
    transform: translateX(-50%);
    bottom: auto;
    top: -228px;
  }
}
@media (max-width: 480px) {
  .footer__cat img {
    width: 240px;
    top: -190px;
  }
}
@media (max-width: 375px) {
  .footer__cat img {
    width: 200px;
    top: -170px;
  }
}