html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: Montserrat, sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

body.no-scroll {
  overflow: hidden;
}

footer,
header,
main,
nav,
section {
  display: block;
}

footer a {
  color: var(--gray-color);
}

a:active,
a:hover {
  outline: 0;
}

strong {
  font-weight: bold;
}

h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

img {
  border: 0;
}

input {
  color: inherit;
  font: inherit;
  margin: 0;
}

textarea {
  height: 100px !important;
  resize: none;
}

textarea::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #333;
  background-color: var(--white);
  margin: 0;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}

.w-inline-block {
  max-width: 100%;
  display: inline-block;
}

.w-button {
  line-height: inherit;
  cursor: pointer;
  border: 0;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
}

input.w-button {
  -webkit-appearance: button;
}

h1,
h2,
h3,
h5,
h6 {
  margin-bottom: 10px;
  font-weight: bold;
}

h1 {
  margin-top: 20px;
  font-size: 38px;
  line-height: 44px;
}

.blog-item .show-more {
  display: flex;
  gap: 10px;
  color: var(--gray-color);
  align-items: center;
}

.blog-link:hover {
  border-color: var(--tomato);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.05);
}

.blog-item .show-more img {
  width: 24px;
}

.blog-item .text-wrapp {
  display: flex;
  flex-direction: column;
  padding: 10px 15px;
  border-top: none;
}

h2 {
  margin-top: 20px;
  font-size: 32px;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  font-size: 24px;
  line-height: 30px;
}

h5 {
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  font-size: 12px;
  line-height: 18px;
}

.hero-inner-icon {
  height: 40px;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin: 0 0 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

.w-form {
  margin: 0 0 15px;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
  display: block;
}

.w-input {
  width: 100%;
  height: 38px;
  color: var(--gray-color);
  vertical-align: middle;
  background-color: var(--white);
  margin-bottom: 10px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.42857;
  display: block;
}

.w-input:-moz-placeholder {
  color: #999;
}

.w-input::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.w-input::-webkit-input-placeholder {
  color: #999;
}

.w-input:focus {
  border-color: #3898ec;
  outline: 0;
}

.grid-about .button {
  margin-top: 40px;
}

.w-container {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.w-container:before,
.w-container:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-container:after {
  clear: both;
}

@media screen and (max-width: 991px) {
  .w-container {
    max-width: 728px;
  }
}

@media screen and (max-width: 479px) {
  .w-container {
    max-width: none;
  }
}

@media screen and (max-width: 767px) {
  .w-nav-brand {
    padding-left: 10px;
  }
}

.w-richtext:before,
.w-richtext:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-richtext:after {
  clear: both;
}

.w-richtext ul {
  overflow: hidden;
}

.w-nav {
  z-index: 1000;
  position: relative;
}

.w-nav:before,
.w-nav:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-nav:after {
  clear: both;
}

.w-nav-brand {
  float: left;
  color: #333;
  height: 40px;
  width: max-content;
  text-decoration: none;
  position: relative;
}

.games-nav-wrapp {
  position: relative;
}

.games-all-nav {
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  border-radius: 12px;
  background: var(--white);
  padding: 15px 30px;
  left: -30px;
  transition: 0.2s ease-in-out;
  list-style: none;
}

.games-nav-wrapp:hover .games-all-nav {
  opacity: 1;
  pointer-events: all;
}

.w-nav-brand img {
  height: 100%;
}

.flex-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.w-nav-link {
  vertical-align: top;
  color: #222;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.link-form {
  margin-top: 10px;
  text-align: center;
  width: 100%;
  display: block;
}

.action-box-2 {
  margin: 0 15px;
}

.our-mission {
  margin: 0 15px;
}

.w-nav-menu {
  float: right;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.w-nav-overlay {
  width: 100%;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .w-nav-brand {
    padding-left: 10px;
  }
}

:root {
  --black: #333333;
  --gray: #f9f9f9;
  --white: white;
  --tomato: #fd523c;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: var(--black);
  background: var(--white);
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4em;
}

h1 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 70px;
  font-weight: 900;
  line-height: 1.3em;
}

h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.3em;
}

h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.3em;
}

h5 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.3em;
}

h6 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.3em;
}

p {
  margin-bottom: 10px;
}

a {
  color: var(--black);
  text-decoration: underline;
  transition: color 0.3s ease-in-out;
}

a:hover {
  text-decoration: none;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}

img {
  max-width: 100%;
  display: inline-block;
}

blockquote {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: rgba(143, 211, 255, 0.1);
  border-radius: 15px;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

.container-small {
  max-width: 900px;
  padding-left: 30px;
  padding-right: 30px;
}

.section-title {
  margin-bottom: 50px;
}

.hero-section .hero-content {
  color: var(--black);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-section .hero-content h1 {
  font-size: 36px;
}

.hero-section .hero-content a,
.hero-section .hero-content p,
.hero-section .hero-content h1 {
  position: relative;
  z-index: 2;
}

.contact-form-wrap {
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.our-games .games-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  margin-top: 40px;
}

.about-game .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.text-wrapp {
  display: flex;
  justify-content: center;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding-bottom: 40px;
}

.tabs .tab-btn.isActive {
  background: var(--tomato);
  color: var(--white);
}

.text-wrapp h1 {
  color: var(--black);
  border: 1px solid var(--tomato);
  width: max-content;
  padding: 15px 30px;
}

.img-about-game .img-wrapp {
  width: 100%;
  align-items: center;
  max-height: 500px;
  display: flex;
}

.img-about-game .img-wrapp img {
  width: 100%;
  object-fit: contain;
}

.about-game section {
  padding: 30px;
  border-radius: 18px;
  background: var(--white);
}

.games-content .games-item {
  padding: 30px;
  border: 1px solid var(--tomato);
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

.games-content .games-item:hover {
  background: var(--tomato);
  color: var(--white);
}

.games-content .games-item img {
  transition: 0.2s ease-in-out;
}

.games-content .games-item:hover img {
  filter: grayscale(1) brightness(1000%);
}

.games-content .games-item .img-wrapp {
  width: 48px;
}

.games-content .games-item .text-wrapp {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.games-content .games-item .title {
  font-size: 24px;
  font-weight: 500;
}

.games-content .games-item .description {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.8;
}

.contact-section .arrow-bottom {
  height: 50px;
  opacity: 0.5;
  margin-bottom: 20px;
}

.contact-section .w-button {
  font-weight: 600;
}

.contact-section .w-button img {
  margin-left: 0;
  margin-right: 10px;
}

.contact-section .arrow-bottom img {
  height: 100%;
  position: relative;
  animation: 1s arrow-bottom infinite;
}

.form-input {
  height: 42px;
  border: 1px solid var(--black);
  margin-bottom: 10px;
  padding: 24px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6em;
  transition: border-color 0.3s ease-in-out;
}

.form-input:focus {
  border-color: var(--tomato);
}

.form-input::-ms-input-placeholder {
  color: var(--black);
}

.lead-text {
  font-size: 18px;
  line-height: 1.4em;
}

.input-group {
  align-items: center;
  margin-bottom: 20px;
}

.button {
  color: var(--tomato);
  width: max-content;
  padding: 0 30px;
  height: 52px;
  background: none;
  border: 1px solid var(--tomato);
  letter-spacing: 0.05rem;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
}

.button:hover {
  background: var(--tomato);
  color: var(--white);
}

.action-box-content .btns-wrapp {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.w-button img {
  width: 24px;
  margin-right: 10px;
}

.heading-h1 {
  margin-bottom: 10px;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.3em;
}

.heading-h2 {
  margin-bottom: 10px;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.3em;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.history-items-wrapp {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.history-items-wrapp .history-item-wrapp {
  display: flex;
  gap: 20px;
  align-items: center;
}

.history-items-wrapp .history-item-wrapp .date-wrapp {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.our-values .img-wrapp {
  width: 80px;
  margin-bottom: 20px;
}

.history-items-wrapp .history-item-wrapp .date-wrapp .date {
  width: 60px;
  height: 60px;
  background: var(--gold);
  color: var(--black);
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}

.history-items-wrapp .history-item-wrapp .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-2);
}

.history-items-wrapp .history-item-wrapp .date-wrapp .line {
  width: 2px;
  height: 30px;
  background: var(--gray);
}

.history-items-wrapp .history-item-wrapp .text-wrapp {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 30px;
  background: var(--white);
  border-radius: 18px;
  width: 100%;
}

.history-items-wrapp .history-item-wrapp .text-wrapp .title {
  font-weight: 600;
  font-size: 24px;
}

.history-items-wrapp .history-item-wrapp .text-wrapp .description {
  font-weight: 400;
  font-size: 18px;
  color: var(--black);
  opacity: 0.8;
}

.nav-link {
  color: var(--black);
  opacity: 0.8;
  font-size: 18px;
  letter-spacing: 0.05rem;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.section-spacing {
  padding-top: 76px;
  padding-bottom: 76px;
}

.navbar {
  padding-top: 20px;
  padding-bottom: 20px;
  background: var(--white);
  z-index: 1;
}

.hero-section {
  overflow: hidden;
  padding-top: 60px;
}

.hero-section .container {
  background: var(--white);
  border-radius: 18px;
}

.boosts-wrapp .boosts-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

.modal-disclaimer-wrapp {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  z-index: 111;
  backdrop-filter: blur(6px);
}

.modal-disclaimer {
  background: var(--white);
  padding: 30px;
  border-radius: 18px;
}

.modal-disclaimer .buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.modal-disclaimer button {
  display: flex;
  padding: 15px 30px;
  background: unset;
  outline: none;
  cursor: pointer;
  border: none;
  color: var(--white);
  border-radius: 36px;
  font-size: 18px;
}

.modal-disclaimer button#btnYes {
  background: var(--tomato);
}

.modal-disclaimer button#btnNo {
  border: 1px solid var(--tomato);
  color: var(--tomato);
}

.disclaimer-wrapp {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1111;
}

.disclaimer-wrapp .disclaimer {
  width: 60px;
  height: 60px;
  background: var(--tomato);
  border-radius: 50%;
  font-size: 18px;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}

.boosts-wrapp .boosts-items .boost-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  border: 1px solid var(--tomato);
  align-items: center;
}

.boosts-wrapp .boosts-items .boost-item .img-wrapp {
  width: 100px;
  height: 100px;
  background: var(--tomato);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.boosts-wrapp .boosts-items .boost-item .img-wrapp img {
  width: 50px;
  height: 50px;
}

.boosts-wrapp .boosts-items .boost-item .text-wrapp p {
  opacity: 0.8;
}

.boosts-wrapp .boosts-items .boost-item .text-wrapp .title {
  text-align: center;
}

.boosts-wrapp .boosts-items .boost-item .button {
  justify-content: center;
}

.boosts-wrapp .boosts-items .boost-item .button {
  width: 100%;
}

.grid-hero {
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero-content {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  color: var(--black);
}

.hero-image-wrap-main {
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 50px;
  position: relative;
}

.hero-title {
  margin-bottom: 10px;
  font-size: 60px;
}

.hero-description {
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-image-wrap {
  z-index: 1;
  position: relative;
  max-width: 500px;
  overflow: hidden;
  border-radius: 2rem;
  float: right;
}

.text-center {
  text-align: center;
}

.grid-product {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.product-item {
  transition: 0.2s ease-in-out;
  opacity: 1;
  transform: scale(1);
  margin-bottom: 40px;
  position: relative;
  border-radius: 18px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0);
}

.product-item:hover {
  transform: scale(0.98);
  box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.05);
}

.product-link {
  background: var(--white);
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  z-index: 11;
}

.faq_item {
  border: 1px solid var(--black);
  padding: 15px 30px;
  transition: 0.2s ease-in-out;
}

.faq_item.open {
  border-color: var(--tomato);
}

.faq_question {
  cursor: pointer;
  font-weight: bold;
  transition: 0.2s ease-out;
}

.faq_question h5 {
  margin-bottom: 0;
}

.faq_answer {
  display: block;
  height: 0;
  overflow: hidden;
  transition: 0.2s ease-out;
  opacity: 0;
}

.faq_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.faq_item.open .faq_answer {
  height: 100%;
  opacity: 1;
}

.reviews-wrapp .reviews {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.reviews-wrapp .reviews .review-wrapp {
  display: flex;
  flex-direction: column;
  padding: 30px 40px;
  background: var(--white);
  border-radius: 18px;
  position: relative;
  z-index: 99;
}

.reviews-wrapp .reviews .review-wrapp-item {
  position: relative;
  border: 1px solid var(--black);
}

.reviews-wrapp .reviews .review-wrapp-item .review {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reviews-wrapp .reviews .review-wrapp .review .title-wrapp .user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-wrapp .reviews .review-wrapp .review .title-wrapp {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reviews-wrapp .reviews .review-wrapp .review .text {
  color: var(--black);
  opacity: 0.8;
}

.reviews-wrapp .reviews .review-wrapp .review .user .name {
  font-weight: 600;
  font-size: 20px;
}

.reviews-wrapp .reviews .review-wrapp .review .user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-wrapp .reviews .review-wrapp .review .user .img-wrapp {
  width: 40px;
  height: 40px;
  border: 1px solid var(--green);
  overflow: hidden;
  border-radius: 50%;
}

.reviews-wrapp .reviews .review-wrapp .review .stars {
  height: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-wrapp .reviews .review-wrapp .review .stars img {
  height: 100%;
}

.reviews-wrapp .reviews .review-wrapp .review .stars span {
  font-size: 18px;
  font-weight: 500;
}

.product-title {
  font-size: 24px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;
  text-overflow: ellipsis;
  line-height: 1.8rem;
}

.product-descr {
  color: var(--black);
  opacity: 0.8;
  position: relative;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 400;
}

.product-item:hover .product-descr::before {
  width: 100%;
}

.product-info {
  padding: 20px;
}

.product-price {
  width: max-content;
  font-size: 20px;
  color: var(--gold-2);
  font-weight: 600;
}

.product-price-old {
  color: var(--gray-color);
  position: relative;
}

.product-price-old::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: calc(50% - 0.5px);
  left: 0;
  background: var(--gray-color);
  transform: rotate(-10deg);
}

.product-price-wrapp {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.section-spacing-bottom {
  padding-bottom: 76px;
}

.services-grid {
  display: flex;
  gap: 40px;
}

.grid-action-box {
  grid-column-gap: 100px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  align-items: center;
}

.action-box-image-wrap {
  position: relative;
  max-height: 500px;
  max-width: 1024px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.action-box-title {
  margin-bottom: 30px;
}

.action-box-description {
  margin-bottom: 60px;
  color: var(--black);
  font-weight: 400;
}

.footer {
  background: var(--white);
  color: var(--black);
  position: relative;
  overflow: hidden;
}

.grid-footer {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  position: relative;
}

.footer-about {
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-right: 50px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.footer-about .brand-wrapp {
  margin-bottom: 20px;
}

.footer-about .w-inline-block {
  height: 40px;
  width: max-content;
}

.footer-about .w-inline-block img {
  height: 100%;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  flex-wrap: wrap;
}

.about-team .heading-h2 {
  text-align: center;
}

.team-grid .team-member {
  width: 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  background: var(--white);
  border-radius: 18px;
}

.team-grid .team-member h5 {
  margin: 0;
  padding: 0;
}

.team-grid .team-member p {
  color: var(--gray-color);
}

.team-grid .team-member img {
  border-radius: 10px;
}

.value-item {
  padding: 20px 30px;
  display: flex;
  transition: 0.2s ease-in-out;
  border: 1px solid var(--tomato);
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.value-item:hover {
  background: var(--tomato);
  color: var(--white);
}

.value-item:hover p {
  color: var(--white);
}

.value-item:hover img {
  filter: grayscale(1) brightness(1000%);
}

.value-item p {
  margin: 0;
  color: var(--black);
  opacity: 0.8;
  padding: 0;
}

.mission-content {
  display: flex;
  align-items: center;
  gap: 100px;
}

.mission-content .mission-text {
  max-width: 50%;
}

.mission-content .mission-text p {
  color: var(--gray-color);
}

.service-item {
  display: flex;
  gap: 20px;
  flex-direction: column;
  padding: 30px 40px;
  color: var(--black);
  position: relative;
  border: 1px solid var(--tomato);
  width: 33%;
  padding-top: 58px;
  text-align: center;
  position: relative;
  top: 28px;
}

.service-item:first-child {
  top: 0;
}

.service-item:last-child {
  top: 56px;
}

.our-services .section-title {
  margin-bottom: 78px;
}

.service-item .icon-wrapp {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-item .icon {
  color: var(--tomato);
  opacity: 1;
  font-weight: 600;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-item h5 {
  font-size: 32px;
  margin: 0;
  padding: 0;
}

.service-item p {
  color: var(--black);
  opacity: 0.8;
  font-size: 18px;
}

.service-item .service-icon {
  max-width: 500px;
  overflow: hidden;
  border-radius: 10px;
}

.mission-image-wrap {
  max-height: 450px;
  float: right;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: start;
  width: max-content;
  position: relative;
}

.mission-image-wrap img {
  height: 100%;
  object-fit: contain;
}

.footer-links {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 80px;
  position: relative;
}

.footer-about-content {
  padding-top: 30px;
}

.footer-address {
  margin-top: 50px;
}

.footer-copyright {
  margin-top: 80px;
}

.grid-footer-link {
  z-index: 1;
  grid-template-rows: auto;
  position: relative;
}

.footer-links-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-link {
  color: var(--black);
  margin-top: 12px;
  margin-bottom: 6px;
  opacity: 0.8;
  font-weight: 500;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--black);
}

.product-link {
  text-decoration: none;
  width: 100%;
  height: 100%;
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.product-image-wrap .show-more-wrapp {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s ease-in-out;
  opacity: 0;
}

.product-image-wrap .show-more-wrapp:hover {
  opacity: 1;
}

.product-image-wrap .show-more-wrapp:hover .show-more {
  transform: scale(1);
}

.product-image-wrap .show-more-wrapp .show-more {
  background: var(--white);
  color: var(--black);
  text-transform: uppercase;
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 12px;
  transition: 0.2s ease-in-out;
  transform: scale(0.5);
}

.grid-blog {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-image {
  height: 100%;
}

.blog-image-wrap {
  max-height: 450px;
  overflow: hidden;
  height: 100%;
}

.blog-item .text-wrapp .blog-date {
  color: var(--blue);
  font-weight: 400;
}

.blog-item .text-wrapp .blog-title {
  color: var(--black);
  font-weight: 500;
}

.blog-link {
  text-decoration: none;
  border: 1px solid var(--black);
  overflow: hidden;
  transition: 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero-inner {
  z-index: 1;
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
}

.hero-inner.text-center {
  text-align: center;
}

.hero-inner-title {
  color: var(--black);
  margin-bottom: 20px;
  padding-bottom: 10px;
  padding: 20px 30px;
  display: inline-block;
  position: relative;
}

.hero-inner-title::after {
  content: "";
  position: absolute;
  width: 20%;
  height: 5px;
  background: var(--black);
  bottom: 0px;
  left: calc(50% - 10%);
}

.contact-section {
  position: relative;
}

.contact-section .container {
  background: var(--white);
  border-radius: 36px;
}

label.input-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

label.input-group label {
  margin-bottom: 0;
}

.grid-hero-inner {
  width: 100%;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-left: auto;
  margin-right: auto;
}

.hero-inner-item {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: left;
  align-items: center;
  display: flex;
}

.hero-inner-icon {
  height: 80px;
}

.contact-info {
  border-radius: 15px;
  padding: 40px;
  padding-bottom: 0;
  height: max-content;
  position: relative;
  overflow: hidden;
}

.grid-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.grid-about {
  grid-column-gap: 120px;
  grid-row-gap: 120px;
  grid-template-rows: auto;
}

.about-image {
  width: 100%;
}

.action-box-content {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.our-mission .container {
  padding-right: 0;
}

.about-content-info {
  background-color: var(--white);
  color: var(--black);
  padding: 30px;
}

.about-content-info p {
  color: var(--black);
  opacity: 0.8;
}

.blog-detail-section .img-wrapp {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  margin-top: 30px;
}

.blog-detail-section .img-wrapp .img {
  max-height: 600px;
  overflow: hidden;
}

.blog-detail-section .img-wrapp .img img {
  object-fit: contain;
}

.reviews-wrapp .reviews .review-wrapp-item .review .data .location {
  opacity: 0.8;
}

.review-author {
  font-size: 18px;
}

.review-title {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.review-content {
  font-size: 17px;
  line-height: 1.4em;
}

.product-rating,
.product-review-rating {
  height: 20px;
}

.blog-detail-section {
  position: relative;
}

.blog-detail .img-wrapp {
  max-height: 500px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 40px;
}

.blog-detail .img-wrapp img {
  width: auto;
  height: 100%;
}

.blog-detail-date {
  font-size: 20px;
  font-weight: 400;
}

.blog-detail-meta {
  align-items: center;
  margin-top: 30px;
  margin-bottom: 40px;
  display: flex;
}

.blog-dash {
  width: 26px;
  min-height: 2px;
  background-color: var(--lime-green);
  color: rgba(0, 0, 0, 0);
  margin-left: 0;
  margin-right: 12px;
}

.brand-wrap {
  margin-right: 40px;
}

.blog-description {
  margin-bottom: 0;
  color: var(--gray-color);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

@media screen and (min-width: 1280px) {
  .hero-title {
    margin-bottom: 30px;
    font-size: 54px;
  }
}

@media screen and (max-width: 991px) {
  .values-grid {
    display: flex;
    flex-direction: column;
  }

  .value-item {
    width: 100%;
  }

  .service-item:last-child {
    top: 0;
  }

  .service-item {
    top: 0;
  }

  .grid-blog {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    flex-direction: column;
  }

  .service-item {
    width: 100%;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .product-detail-section .w-dyn-items {
    display: flex;
    justify-content: center;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-spacing {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .grid-hero {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .hero-title {
    margin-bottom: 10px;
  }

  .hero-description {
    margin-bottom: 30px;
  }

  .hero-bg {
    display: none;
  }

  .grid-product {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .product-item {
    margin-bottom: 0;
  }

  .section-spacing-bottom {
    padding-bottom: 80px;
  }

  .grid-action-box {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .grid-action-box .action-box-content {
    padding: 30px;
  }

  .our-mission .container .mission-content .mission-text {
    padding: 30px 0px 30 15px;
  }

  .action-box-title.heading-h1 {
    margin-bottom: 20px;
  }

  .action-box-description {
    margin-bottom: 30px;
  }

  .grid-hero-inner {
    width: 100%;
  }

  .grid-contact,
  .grid-about,
  .grid-product-detail {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .blog-detail-section {
    padding: 40px 20px;
  }

  .blog-detail-image {
    margin-bottom: 0;
  }

  .blog-rich-text {
    margin-top: 20px;
  }

  .grid-shop {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .grid-product-page {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .shop-page-category-wrap {
    flex-wrap: wrap;
  }

  .brand {
    height: 30px;
  }

  .brand-wrap {
    height: 50px;
  }

  .nav-menu {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 46px;
  }

  h3 {
    font-size: 38px;
  }

  .brand-wrap {
    height: 30px;
  }

  .boosts-wrapp .boosts-items {
    grid-template-columns: repeat(1, 1fr);
  }

  .nav-link {
    margin-left: 0;
    margin-right: 0;
  }

  .grid-blog {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .blog-image {
    width: 100%;
    height: auto;
  }

  .our-games .games-content {
    grid-template-columns: repeat(1, 1fr);
  }

  .grid-product-detail .w-inline-block {
    width: unset;
  }

  .container-small {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .services-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .button-white.hero-button {
    right: 10%;
  }

  .heading-h1 {
    font-size: 24px;
  }

  .button-lime-green {
    font-size: 16px;
  }

  .button {
    font-size: 16px;
  }

  .action-box-description {
    font-size: 14px;
  }

  .heading-h2 {
    font-size: 46px;
  }

  .section-spacing {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .hero-content {
    padding-top: 30px;
    padding-bottom: 40px;
    padding-right: 0;
  }

  .hero-image-wrap-main {
    padding: 30px 20px;
  }

  .section-spacing-bottom {
    padding-bottom: 70px;
  }

  .grid-footer {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .footer-about {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 0;
  }

  .footer-links {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 20px;
  }

  .footer-address,
  .footer-copyright {
    margin-top: 20px;
  }

  .footer-bg {
    display: none;
  }

  .footer-links-block {
    align-items: flex-start;
  }

  .hero-inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .grid-hero-inner {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .product-detail-title {
    font-size: 36px;
  }

  .grid-shop {
    grid-template-columns: 1.75fr;
  }

  .collection-list-category {
    height: 100%;
    flex-wrap: nowrap;
    align-content: center;
    align-items: flex-start;
  }

  .shop-category-link {
    display: block;
  }

  .collection-item {
    width: 100%;
    display: block;
  }
}

@media (max-width: 516px) {
  .brand-wrap {
    display: none;
  }

  .flex-navbar {
    flex-direction: column;
  }

  .action-box-content .btns-wrapp {
    flex-direction: column;
  }

  .action-box-content .btns-wrapp a {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 24px;
  }

  .grid-footer-link {
    flex-direction: column;
    display: flex;
  }

  .hero-description {
    display: none;
  }

  .review-wrapp .title-wrapp {
    flex-direction: column;
    gap: 20px;
  }

  .section-title {
    text-align: center;
  }

  .our-mission .container .mission-content .mission-text {
    padding-right: 30px;
    padding-left: 30px;
  }

  .our-mission .container {
    padding-left: 0;
    padding-right: 0;
  }

  .flex-navbar {
    flex-direction: column;
  }

  .hero-section .w-button img {
    display: none;
  }

  .hero-section h1 {
    font-size: 20px !important;
  }

  .product-information .info-item:not(.description) {
    width: 100%;
  }

  .mission-image-wrap {
    max-width: 100%;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 34px;
  }

  .mission-content {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .mission-content .mission-text {
    max-width: 100%;
  }

  h5 {
    font-size: 18px;
  }

  .hero-inner-title {
    font-size: 24px;
  }

  .hero-inner p {
    font-size: 16px;
  }

  .product-detail-title {
    font-size: 24px;
  }

  .product-detail-price,
  .product-detail-price-compare {
    font-size: 18px;
  }

  .product-short-description {
    font-size: 16px;
  }

  .container-small {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-title {
    font-size: 24px;
  }

  .action-box-title.heading-h1 {
    font-size: 24px;
  }

  .product-title {
    font-size: 16px;
  }

  .grid-product {
    margin-bottom: 20px;
  }

  .hero-inner-icon {
    height: 40px;
  }

  .product-price {
    font-size: 16px;
  }

  .add-to-cart {
    flex-direction: column;
  }

  .input-group {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .button-white.hero-button {
    bottom: 0;
  }

  .heading-h1 {
    font-size: 24px;
  }

  label.input-group {
    flex-direction: row;
    margin-bottom: 20px;
  }

  .heading-h2 {
    font-size: 24px;
  }

  .container {
    max-width: none;
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-spacing {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-image-wrap-main {
    padding: 20px 10px;
  }

  .grid-product {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .section-spacing-bottom {
    padding-bottom: 60px;
  }

  .footer-links {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .grid-blog {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-inner-title {
    padding-left: 10px;
    padding-right: 10px;
  }

  .contact-info {
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-content-info {
    padding-left: 15px;
    padding-right: 15px;
  }

  .product-detail-title {
    font-size: 24px;
  }

  .product-detail-price-wrap {
    flex-wrap: wrap;
  }

  .product-review-item {
    margin-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .review-title {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .blog-detail-meta {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .blog-dash {
    margin-top: 0;
    display: none;
  }

  .grid-product-page {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .brand {
    height: 20px;
  }
}

.btn__pulse {
  display: none;
}

.btn__desktop {
  display: flex;
}

@media (max-width: 787px) {
  .disclaimer-wrapp .disclaimer {
    display: none;
  }

  .btn__desktop {
    display: none;
  }

  .btn__pulse {
    display: block;
    font-weight: 500;
    font-size: 26px;
    color: #fff;
    padding: 15px 50px;
    background: linear-gradient(90deg, rgb(205 113 12) 0%, rgb(170 1 19) 100%);
    border-radius: 3px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    line-height: 30px;
    animation: pulse 1.5s infinite;
    transition: transform 0.2s ease-in-out;
    margin: 0 0 20px 0;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 10px rgba(255, 199, 21, 0.5);
    }
    50% {
      transform: scale(1.07);
      box-shadow: 0 0 20px rgba(255, 199, 21, 0.7);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 10px rgba(255, 199, 21, 0.5);
    }
  }
}
