/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

html {
  scroll-behavior: smooth;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type='file'] {
  max-width: 100%;
}

@font-face {
  font-family: 'Inter';
  src: url('/fontsMIsmimisfj/inter-variablefontMIsmimisfj.woff2')
    format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Russo One';
  src: url('/fontsMIsmimisfj/russoone-regularMIsmimisfj.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

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

main {
  min-height: 100vh;

  background: linear-gradient(180deg, rgba(9, 7, 8, 0.17) 56.64%, #090708 100%),
    url('/imagesMIsmimisfj/frame-bg.webp') center top / cover repeat-y, #090708;
}

.headerMIsmimisfj {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: #381d14;
  backdrop-filter: blur(7px);
}

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

.headerMIsmimisfj__logo {
  display: inline-flex;
  align-items: center;
  max-width: 205px;
  flex-shrink: 0;
}

.headerMIsmimisfj__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.headerMIsmimisfj__nav ul {
  display: flex;
  align-items: center;
  gap: 58px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.headerMIsmimisfj__nav ul li a {
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  transition: color 0.25s ease;
}

.headerMIsmimisfj__nav ul li a:hover {
  color: #b44500;
}

.headerMIsmimisfj__burger {
  display: none;
  width: 42px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.headerMIsmimisfj__burger span {
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 10px;
  background: #b44500;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.headerMIsmimisfj__burger span + span {
  margin-top: 8px;
}

.headerMIsmimisfj__burger.is-activeMIsmimisfj span:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}

.headerMIsmimisfj__burger.is-activeMIsmimisfj span:nth-child(2) {
  opacity: 0;
}

.headerMIsmimisfj__burger.is-activeMIsmimisfj span:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}

@media (max-width: 768px) {
  .headerMIsmimisfj__logo {
    max-width: 260px;
  }

  .headerMIsmimisfj__burger {
    display: block;
  }

  .headerMIsmimisfj__nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 28px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    background: #381d14;
    backdrop-filter: blur(7px);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .headerMIsmimisfj__nav.is-openMIsmimisfj {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .headerMIsmimisfj__nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .headerMIsmimisfj__nav ul li a {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .headerMIsmimisfj__logo {
    max-width: 220px;
  }
}
.heroMIsmimisfj {
  position: relative;
  overflow: hidden;
  padding: 90px 0 110px;
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.72) 100%
    ),
    url('/imagesMIsmimisfj/tank-bgMIsmimisfj.webp') center / cover no-repeat;
}

.heroMIsmimisfj__container {
  max-width: 980px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.heroMIsmimisfj__label {
  margin-bottom: 28px;
  padding: 10px 22px;

  color: #ff6a39;
  text-align: center;

  font-family: 'Russo One', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  text-transform: uppercase;

  border-radius: 4px;
  border: 1px solid #ad4725;
  background: #1e1e1e;
}

.heroMIsmimisfj__title {
  margin: 0 0 28px;

  color: #fff;
  text-align: center;

  font-family: 'Russo One', sans-serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 56px;
  text-transform: uppercase;

  letter-spacing: 1px;
}

.heroMIsmimisfj__title span {
  display: block;
  color: #ff6a39;
}

.heroMIsmimisfj__text {
  max-width: 760px;
  margin: 0 0 40px;

  color: #fff;
  text-align: center;

  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

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

  min-width: 223px;
  padding: 20px 40px;

  border-radius: 12px;
  border: 2px solid #f0b03c;

  background: linear-gradient(90deg, #bf3200 0%, #e86d3e 100%);

  color: #fff;
  text-align: center;

  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;

  text-decoration: none;

  transition: transform 0.25s ease;
}

.heroMIsmimisfj__btn:hover {
  transform: translateY(-3px);
}

.gamesTitleMIsmimisfj {
  padding: 56px 0;
  background: #050505;
}

.gamesTitleMIsmimisfj__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;

  margin: 0;

  color: #fff;
  text-align: center;

  font-family: 'Russo One', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 45px;
  text-transform: uppercase;
}

.gamesTitleMIsmimisfj__title span {
  width: 200px;
  height: 2px;
  background: #ad4725;
}

@media (max-width: 992px) {
  .heroMIsmimisfj {
    padding: 70px 0 90px;
  }

  .heroMIsmimisfj__title {
    font-size: 46px;
    line-height: 50px;
  }
}

@media (max-width: 768px) {
  .heroMIsmimisfj {
    padding: 55px 0 80px;
  }

  .heroMIsmimisfj__title {
    font-size: 34px;
    line-height: 40px;
  }

  .heroMIsmimisfj__btn {
    width: 100%;
    min-width: initial;

    min-height: 56px;
    padding: 16px 22px;

    font-size: 15px;
  }

  .gamesTitleMIsmimisfj__title {
    gap: 20px;
    font-size: 32px;
    line-height: 38px;
  }

  .gamesTitleMIsmimisfj__title span {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .heroMIsmimisfj__title {
    font-size: 28px;
    line-height: 34px;

    letter-spacing: 0.5px;

    text-shadow: 0.8px 0 0 currentColor, -0.8px 0 0 currentColor;
  }

  .heroMIsmimisfj__btn {
    min-height: 22px;
    padding: 14px 18px;

    font-size: 14px;
    border-radius: 10px;
  }

  .gamesTitleMIsmimisfj__title {
    font-size: 26px;
    line-height: 32px;
  }

  .gamesTitleMIsmimisfj__title span {
    width: 70px;
  }
}

.gamesMIsmimisfj {
  padding: 56px 0 72px;
}

.gamesMIsmimisfj__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin: 0 0 48px;

  color: #fff;
  text-align: center;
  font-family: 'Russo One', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 45px;
  text-transform: uppercase;
}

.gamesMIsmimisfj__title span {
  width: 200px;
  height: 2px;
  background: #ad4725;
}

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

.gamesMIsmimisfj__card {
  position: relative;
  min-height: 532px;
  overflow: hidden;

  border-radius: 2px;
  border: 1px solid #ad4725;
  box-shadow: 0 0 15.1px 0 #763f07;
}

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

  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gamesMIsmimisfj__card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;

  background: linear-gradient(
    180deg,
    rgba(84, 42, 0, 0) 47.17%,
    rgba(84, 42, 0, 0.37) 53.77%,
    #542a00 82.17%,
    #281503 100%
  );
}

.gamesMIsmimisfj__content {
  position: relative;
  z-index: 3;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  min-height: 532px;
  padding: 24px 18px 18px;
}

.gamesMIsmimisfj__content h3 {
  margin: 0 0 12px;

  color: #fff;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #3c1a07;

  font-family: 'Russo One', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  text-transform: uppercase;
}

.gamesMIsmimisfj__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;

  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.gamesMIsmimisfj__rating img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.gamesMIsmimisfj__content p {
  margin: 0 0 14px;

  color: #dbdbdb;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.gamesMIsmimisfj__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

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

  padding: 6px 10px;
  border-radius: 999px;
  background: #e8780f;

  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

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

  min-height: 50px;
  padding: 12px 20px;

  border-radius: 8px;
  border: 1px solid #fdc66d;

  color: #fff;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;

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

.gamesMIsmimisfj__content a:hover {
  background: rgba(253, 198, 109, 0.14);
  transform: translateY(-2px);
}

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

@media (max-width: 768px) {
  .gamesMIsmimisfj {
    padding: 44px 0 56px;
  }

  .gamesMIsmimisfj__title {
    gap: 20px;
    margin-bottom: 34px;
    font-size: 32px;
    line-height: 38px;
  }

  .gamesMIsmimisfj__title span {
    width: 100px;
  }

  .gamesMIsmimisfj__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gamesMIsmimisfj__card,
  .gamesMIsmimisfj__content {
    min-height: 520px;
  }
}

@media (max-width: 480px) {
  .gamesMIsmimisfj__title {
    font-size: 26px;
    line-height: 32px;
  }

  .gamesMIsmimisfj__title span {
    width: 70px;
  }

  .gamesMIsmimisfj__content {
    padding: 22px 16px 16px;
  }
}

.benefitsMIsmimisfj {
  padding: 72px 0;
}

.benefitsMIsmimisfj__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;

  margin: 0 0 56px;

  color: #fff;
  text-align: center;

  font-family: 'Russo One', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 45px;
  text-transform: uppercase;
}

.benefitsMIsmimisfj__title span {
  width: 120px;
  height: 2px;
  background: #ad4725;
}

.benefitsMIsmimisfj__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;

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

.benefitsMIsmimisfj__item {
  padding: 54px 28px 24px;

  border-radius: 2px;
  border: 1px solid #ad4725;

  background: linear-gradient(
    180deg,
    rgba(84, 42, 0, 0) 0%,
    rgba(84, 42, 0, 0.22) 65%,
    #281503 100%
  );

  box-shadow: 0 0 15.1px 0 #763f07;

  text-align: center;
}

.benefitsMIsmimisfj__item img {
  display: block;

  margin: 0 auto;

  object-fit: contain;
}

.benefitsMIsmimisfj__item h3 {
  margin: 0 0 16px;

  color: #fff;

  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #3c1a07;

  font-family: 'Russo One', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  text-transform: uppercase;
}

.benefitsMIsmimisfj__item p {
  margin: 0;

  color: #dbdbdb;

  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

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

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

  .benefitsMIsmimisfj__title {
    gap: 20px;

    margin-bottom: 36px;

    font-size: 32px;
    line-height: 38px;
  }

  .benefitsMIsmimisfj__title span {
    width: 80px;
  }

  .benefitsMIsmimisfj__list {
    gap: 20px;
  }

  .benefitsMIsmimisfj__item {
    padding: 40px 20px;
  }
}

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

  .benefitsMIsmimisfj__title {
    font-size: 26px;
    line-height: 32px;
  }

  .benefitsMIsmimisfj__title span {
    width: 60px;
  }
}

.aboutMIsmimisfj {
  padding: 72px 0;
}

.aboutMIsmimisfj__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;

  margin: 0 0 48px;

  color: #fff;

  font-family: 'Russo One', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 45px;
  text-transform: uppercase;
}

.aboutMIsmimisfj__title span {
  width: 110px;
  height: 2px;
  background: #ad4725;
}

.aboutMIsmimisfj__text {
  max-width: 980px;
  margin: 0 auto 52px;

  text-align: center;
}

.aboutMIsmimisfj__text p {
  margin: 0 0 18px;

  color: #dbdbdb;

  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.aboutMIsmimisfj__image {
  width: 100%;
}

.aboutMIsmimisfj__image img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;
}

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

  .aboutMIsmimisfj__title {
    gap: 20px;

    font-size: 32px;
    line-height: 38px;
  }

  .aboutMIsmimisfj__title span {
    width: 70px;
  }

  .aboutMIsmimisfj__text {
    margin-bottom: 34px;
  }

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

@media (max-width: 480px) {
  .aboutMIsmimisfj__title {
    font-size: 26px;
    line-height: 32px;
  }

  .aboutMIsmimisfj__title span {
    width: 50px;
  }
}

.faqMIsmimisfj {
  padding: 72px 0;
}

.faqMIsmimisfj__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;

  margin: 0 0 48px;

  color: #fff;
  text-align: center;

  font-family: 'Russo One', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 45px;
  text-transform: uppercase;
}

.faqMIsmimisfj__title span {
  width: 110px;
  height: 2px;
  background: #ad4725;
}

.faqMIsmimisfj__list {
  display: flex;
  flex-direction: column;
  gap: 36px;

  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.faqMIsmimisfj__item {
  border-radius: 4px;
  border: 1px solid #ad4725;

  background: linear-gradient(
      180deg,
      rgba(84, 42, 0, 0) 0%,
      rgba(84, 42, 0, 0.22) 100%
    ),
    #1e1e1e;

  overflow: hidden;
}

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

  width: 100%;
  padding: 18px 14px 10px;

  border: 0;
  background: transparent;
  cursor: pointer;

  color: #dbdbdb;
  text-align: left;

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

.faqMIsmimisfj__question img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  flex-shrink: 0;

  transition: transform 0.25s ease;
}

.faqMIsmimisfj__answer {
  max-height: 0;
  overflow: hidden;

  transition: max-height 0.3s ease;
}

.faqMIsmimisfj__answer p {
  margin: 0;
  padding: 0 14px 18px;

  color: #dbdbdb;

  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.faqMIsmimisfj__item.is-activeMIsmimisfj .faqMIsmimisfj__answer {
  max-height: 260px;
}

.faqMIsmimisfj__item.is-activeMIsmimisfj .faqMIsmimisfj__question img {
  transform: rotate(180deg);
}

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

  .faqMIsmimisfj__title {
    gap: 20px;
    margin-bottom: 36px;

    font-size: 32px;
    line-height: 38px;
  }

  .faqMIsmimisfj__title span {
    width: 70px;
  }

  .faqMIsmimisfj__list {
    gap: 22px;
  }

  .faqMIsmimisfj__question {
    padding: 16px 14px 10px;
    font-size: 15px;
  }

  .faqMIsmimisfj__answer p {
    padding: 0 14px 16px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .faqMIsmimisfj__title {
    font-size: 26px;
    line-height: 32px;
  }

  .faqMIsmimisfj__title span {
    width: 50px;
  }
}

.contactMIsmimisfj {
  padding: 72px 0;
}

.contactMIsmimisfj__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;

  margin: 0 0 48px;

  color: #fff;
  text-align: center;

  font-family: 'Russo One', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 45px;
  text-transform: uppercase;
}

.contactMIsmimisfj__title span {
  width: 110px;
  height: 2px;

  background: #ad4725;
}

.contactMIsmimisfj__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;

  align-items: stretch;
}

.contactMIsmimisfj__image {
  overflow: hidden;
}

.contactMIsmimisfj__image img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;
}

.contactMIsmimisfj__list {
  display: flex;
  flex-direction: column;
  gap: 28px;

  min-width: 0;

  margin: 0;
  padding: 22px 18px;

  list-style: none;

  border-radius: 4px;
  border: 1px solid #ad4725;

  background: linear-gradient(
      180deg,
      rgba(84, 42, 0, 0) 0%,
      rgba(84, 42, 0, 0.22) 100%
    ),
    #1e1e1e;
}

.contactMIsmimisfj__list li {
  display: flex;
  align-items: center;
  gap: 18px;

  min-width: 0;

  color: #fff;

  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.contactMIsmimisfj__list li img {
  width: 26px;
  height: 26px;

  object-fit: contain;

  flex-shrink: 0;
}

.contactMIsmimisfj__list a,
.contactMIsmimisfj__list li span {
  min-width: 0;
  max-width: 100%;

  color: #fff;

  overflow-wrap: anywhere;
  word-break: break-word;
}

.contactMIsmimisfj__list a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

  .contactMIsmimisfj__title {
    gap: 20px;

    margin-bottom: 34px;

    font-size: 32px;
    line-height: 38px;
  }

  .contactMIsmimisfj__title span {
    width: 70px;
  }

  .contactMIsmimisfj__grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 28px;
  }

  .contactMIsmimisfj__list {
    padding: 22px 18px;
  }
}

@media (max-width: 480px) {
  .contactMIsmimisfj__title {
    font-size: 26px;
    line-height: 32px;
  }

  .contactMIsmimisfj__title span {
    width: 50px;
  }

  .contactMIsmimisfj__list li {
    align-items: flex-start;

    font-size: 15px;
  }
}

.footerMIsmimisfj {
  background: #050505;
}

.footerMIsmimisfj__wrapper {
  padding: 34px 78px 28px;

  border-radius: 43px 43px 0 0;
  background: #381d14;
}

.footerMIsmimisfj__top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 84px;

  margin-bottom: 44px;
}

.footerMIsmimisfj__info h2 {
  margin: 0 0 20px;

  color: #fff;

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

.footerMIsmimisfj__info p {
  margin: 0 0 6px;

  color: #dbdbdb;

  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.footerMIsmimisfj__nav {
  margin-bottom: 44px;
}

.footerMIsmimisfj__nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 56px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.footerMIsmimisfj__nav ul li a {
  color: #fff;

  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;

  text-decoration: none;

  transition: opacity 0.25s ease;
}

.footerMIsmimisfj__nav ul li a:hover {
  opacity: 0.8;
}

.footerMIsmimisfj__copy {
  text-align: center;
}

.footerMIsmimisfj__copy p {
  margin: 0;

  color: #dbdbdb;

  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 992px) {
  .footerMIsmimisfj__wrapper {
    padding: 34px 40px 28px;
  }

  .footerMIsmimisfj__top {
    gap: 42px;
  }

  .footerMIsmimisfj__nav ul {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .footerMIsmimisfj__wrapper {
    padding: 30px 26px;

    border-radius: 43px 43px 0 0;
  }

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

    gap: 34px;

    margin-bottom: 34px;
  }

  .footerMIsmimisfj__nav {
    margin-bottom: 32px;
  }

  .footerMIsmimisfj__nav ul {
    gap: 18px 28px;
  }
}

@media (max-width: 480px) {
  .footerMIsmimisfj__wrapper {
    padding: 28px 24px;
  }

  .footerMIsmimisfj__nav ul {
    justify-content: center;
    gap: 16px 24px;
  }

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

.aboutGameMIsmimisfj {
  padding: 72px 0;
}

.aboutGameMIsmimisfj__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;

  margin: 0 0 56px;

  color: #fff;
  text-align: center;

  font-family: 'Russo One', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 45px;
  text-transform: uppercase;
}

.aboutGameMIsmimisfj__title span {
  width: 86px;
  height: 2px;

  background: #ad4725;
}

.aboutGameMIsmimisfj__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 510px;
  gap: 40px;
  align-items: center;
}

.aboutGameMIsmimisfj__content strong {
  display: block;

  margin-bottom: 26px;

  color: #fff;

  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

.aboutGameMIsmimisfj__content p {
  margin: 0;

  color: #dbdbdb;

  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.aboutGameMIsmimisfj__image {
  overflow: hidden;

  border-radius: 12px;
  border: 1px solid #ad4725;
}

.aboutGameMIsmimisfj__image img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: cover;
}

@media (max-width: 992px) {
  .aboutGameMIsmimisfj__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .aboutGameMIsmimisfj__image {
    max-width: 520px;
    width: 100%;

    margin: 0 auto;
  }
}

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

  .aboutGameMIsmimisfj__title {
    gap: 16px;

    margin-bottom: 40px;

    font-size: 32px;
    line-height: 38px;
  }

  .aboutGameMIsmimisfj__title span {
    width: 58px;
  }

  .aboutGameMIsmimisfj__content strong,
  .aboutGameMIsmimisfj__content p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .aboutGameMIsmimisfj__title {
    font-size: 26px;
    line-height: 32px;
  }

  .aboutGameMIsmimisfj__title span {
    width: 42px;
  }

  .aboutGameMIsmimisfj__grid {
    gap: 24px;
  }
}
.contactFormMIsmimisfj {
  padding: 82px 0;
}

.contactFormMIsmimisfj__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;

  margin: 0 0 52px;

  color: #fff;
  text-align: center;

  font-family: 'Russo One', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 45px;
  text-transform: uppercase;
}

.contactFormMIsmimisfj__title span {
  width: 110px;
  height: 2px;

  background: #ad4725;
}

.contactFormMIsmimisfj__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;

  align-items: stretch;
}

.contactFormMIsmimisfj__image img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;
}

.contactFormMIsmimisfj__right {
  display: flex;
  flex-direction: column;
  gap: 14px;

  min-width: 0;
}

.contactFormMIsmimisfj__form {
  display: flex;
  flex-direction: column;
  gap: 12px;

  min-width: 0;
}

.contactFormMIsmimisfj__form label {
  display: block;
}

.contactFormMIsmimisfj__form label span {
  display: block;

  margin-bottom: 8px;

  color: #fff;

  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.contactFormMIsmimisfj__form input,
.contactFormMIsmimisfj__form textarea {
  width: 100%;
  min-width: 0;

  min-height: 54px;
  padding: 14px 18px;

  border-radius: 10px;
  border: 1px solid #ad4725;

  outline: none;

  background: #d9eefb;

  color: #111;

  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.contactFormMIsmimisfj__form textarea {
  resize: vertical;
  min-height: 54px;
}

.contactFormMIsmimisfj__form input:focus,
.contactFormMIsmimisfj__form textarea:focus {
  border-color: #fdc66d;
}

.contactFormMIsmimisfj__form button {
  min-height: 50px;
  padding: 14px 24px;

  border-radius: 8px;
  border: 1px solid #fdc66d;

  background: linear-gradient(90deg, #bf3200 0%, #e86d3e 100%);

  color: #fff;
  text-align: center;

  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;

  cursor: pointer;
}

.contactFormMIsmimisfj__success {
  display: none;

  margin: 0;
  padding: 12px 16px;

  border-radius: 8px;
  border: 1px solid #fdc66d;

  background: rgba(56, 29, 20, 0.9);

  color: #fff;
  text-align: center;

  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;

  overflow-wrap: anywhere;
  word-break: break-word;
}

.contactFormMIsmimisfj__success.is-showMIsmimisfj {
  display: block;
}

.contactFormMIsmimisfj__list {
  display: flex;
  flex-direction: column;
  gap: 26px;

  margin: 0;
  padding: 18px;

  list-style: none;

  min-width: 0;

  border-radius: 4px;
  border: 1px solid #ad4725;

  background: linear-gradient(
      180deg,
      rgba(84, 42, 0, 0) 0%,
      rgba(84, 42, 0, 0.22) 100%
    ),
    #1e1e1e;
}

.contactFormMIsmimisfj__list li {
  display: flex;
  align-items: center;
  gap: 16px;

  min-width: 0;

  color: #fff;

  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.contactFormMIsmimisfj__list li img {
  width: 26px;
  height: 26px;

  object-fit: contain;

  flex-shrink: 0;
}

.contactFormMIsmimisfj__list a,
.contactFormMIsmimisfj__list li span {
  min-width: 0;
  max-width: 100%;

  color: #fff;

  overflow-wrap: anywhere;
  word-break: break-word;
}

.contactFormMIsmimisfj__list a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

  .contactFormMIsmimisfj__right {
    order: 1;
  }

  .contactFormMIsmimisfj__image {
    order: 2;
  }
}

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

  .contactFormMIsmimisfj__title {
    gap: 20px;

    margin-bottom: 36px;

    font-size: 32px;
    line-height: 38px;
  }

  .contactFormMIsmimisfj__title span {
    width: 70px;
  }
}

@media (max-width: 480px) {
  .contactFormMIsmimisfj__title {
    font-size: 26px;
    line-height: 32px;
  }

  .contactFormMIsmimisfj__title span {
    width: 50px;
  }

  .contactFormMIsmimisfj__list li {
    align-items: flex-start;
    font-size: 15px;
  }
}

.terms {
  padding: 70px 0;
  background-color: #1b0c02;
}

.terms h1 {
  color: #fff;
  font-family: 'Russo One', sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.terms h2 {
  color: #fff;

  font-family: 'Russo One', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.terms p {
  color: #fff;

  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 24px;
}

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

.terms ul li {
  list-style-type: disc;
  margin-left: 15px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.terms a {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

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