/* Color palette */
:root {
  --color-primary-500: hsl(47, 83%, 62%);
  --color-primary-600: hsl(41, 79%, 59%);
  --color-neutral-white: #ffffff;
  --color-light-50: #f6f8f9;
  --color-secondary-800: hsl(216, 12%, 25%);

  --font-primary: 'Montserrat', sans-serif;
  --font-standart: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Text styles */
h2,
h1 {
  font-family: var(--font-primary);
  /* font-size: 44px; */
  font-size: 4.4rem;
  font-weight: bold;
  line-height: 1.18;
  color: var(--color-secondary-800);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  font-family: var(--font-standart);
  scroll-behavior: smooth;
}

@media (max-width: 992px) {
  html {
    font-size: 9px;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 7px;
  }
}

#sidenav_mobile:not(.active),
#sidenav_mobile_bg:not(.active) {
  display: none;
}

body {
  background: var(--color-light-50);
  font-family: var(--font-standart);
  font-weight: 400;
  font-size: 1.6rem;
  color: black;
}

a {
  transition: all 0.25s ease-in-out;
}

a:hover {
  text-decoration: none;
}

.btn {
  /* width: 370px; */
  /* height: 70px; */
  padding: 24px 64px;
  border: none;
  border-radius: 35px;
  background-image: linear-gradient(28deg, var(--color-primary-600), var(--color-primary-500));
  box-shadow: 0px 10px 15px 0 rgba(238, 202, 77, 0.3);
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.44;
  color: var(--color-neutral-white);
  transition: all 0.25s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-circle {
  padding: 24px;
  border: none;
  border-radius: 100%;
  background-image: linear-gradient(28deg, var(--color-primary-600), var(--color-primary-500));
  box-shadow: 0px 10px 15px 0 rgba(238, 202, 77, 0.3);
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.44;
  color: var(--color-neutral-white);
  transition: all 0.25s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-grad {
  background-image: linear-gradient(270deg, #f00, #dc00ff, #ff9400);
  color: #fff;
  text-transform: uppercase;
  font-weight: 700 !important;
  /* padding: 3px 6px; */
  background-size: 600% 600%;
  animation: gradient 10s ease infinite;
  padding: 8px 16px !important;
  border-radius: 32px;
  color: var(--color-neutral-white) !important;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.btn-grad:hover {
  -webkit-transform: scale(1.025);
  transform: scale(1.025);
  box-shadow: 0px 10px 20px 0 rgba(238, 202, 77, 0.2);
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.btn--small {
  padding: 8px 16px !important;
}

.btn-circle img {
  width: 40px;
  height: 40px;
}

.btn:hover,
.btn-circle:hover {
  -webkit-transform: scale(1.025);
  transform: scale(1.025);
  box-shadow: 0px 10px 20px 0 rgba(238, 202, 77, 0.5);
}

@media (max-width: 767px) {
  .btn-circle {
    padding: 16px;
    border: none;
    border-radius: 100%;
    background-image: linear-gradient(28deg, var(--color-primary-600), var(--color-primary-500));
    box-shadow: 0px 10px 15px 0 rgba(238, 202, 77, 0.3);
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.44;
    color: var(--color-neutral-white);
    transition: all 0.25s;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .btn-circle img {
    width: 24px;
    height: 24px;
  }

  .btn {
    /* width: 370px; */
    /* height: 70px; */
    padding: 16px 32px;
    border: none;
    border-radius: 35px;
    background-image: linear-gradient(28deg, var(--color-primary-600), var(--color-primary-500));
    box-shadow: 0px 10px 15px 0 rgba(238, 202, 77, 0.3);
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.44;
    color: var(--color-neutral-white);
    transition: all 0.25s;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.navbar-logo .logo {
  width: 48px;
}

.navbar .logo {
  width: 80px;
}

@media (max-width: 767px) {
  .navbar .logo {
    width: 64px;
  }
}

.menu {
  padding-top: 30px;
  flex: 1;
}

@media screen and (max-width: 992px) {
  .menu {
    gap: 24px;
  }
}

.menu-collapse {
  gap: 24px;
}

.menu .small_logo {
  margin-right: 7px;
  width: 40px;
}

.menu a:not(.link) {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 255, 255, 0.65);
}

.menu a:not(.link):hover {
  color: var(--color-neutral-white);
}

.menu .link {
  float: right !important;
  /* margin-top: 4px; */
  position: relative;
}

@media screen and (max-width: 992px) {
  .menu .link {
    float: none !important;
  }

  .menu-collapse {
    gap: 8px;
    display: flex;
    flex-direction: column;
  }
}

.menu .link::before {
  content: url("../img/copy.svg");
  position: absolute;
  left: 100%;
  margin-left: 5px;
  opacity: 1;
}

.menu .link.copied::before {
  transition: all 0.25s;
  -webkit-transform: scale(3);
  transform: scale(3);
  opacity: 0;
}

.menu ul {
  gap: 24px;
  margin: 0;
}

@media screen and (max-width: 992px) {
  .menu ul {
    gap: 8px !important;
  }

  .menu ul li a {
    flex: 1;
  }
}

.logo,
.small_logo {
  /* -webkit-transform: rotate(0deg);
  transform: rotate(0deg); */
  transition: all 0.5s;
  cursor: pointer;
}


.navbar-toggler {
  padding: 10px;
  width: 48px;
  height: 48px;
  border: none;
}

.navbar-toggler span {
  width: 24px;
  height: 24px;
}

.navbar-toggler:focus-visible {
  outline: auto;
}

.navbar-toggler:focus {
  outline: none;
}

.menu-mobile__right {
  gap: 12px;
}

.menu-mobile__store {
  font-family: var(--font-primary);
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}



/* @media screen and (max-width: 992px) {
  .logo {
    width: 48px;
  }
} */

/* .logo:hover,
.small_logo:hover {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
} */

.link {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-neutral-white);
  border-bottom: dashed 1px var(--color-primary-500);
  position: relative;
}

.link::after {
  position: absolute;
  left: 100%;
  margin-left: 5px;
  content: url("../img/copy.svg");
}

.link:hover {
  color: rgba(255, 255, 255, 0.65);
  border-bottom-color: rgba(255, 255, 255, 0.65);
}

header {
  background-color: #4ea0f2;
  background-image: url("../img/bg-header.png");
  background-position: top center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  position: relative;
}

header .container {
  /* padding: 0; */
}

header .content {
  position: relative;
  /* padding: 0; */
  height: 810px;
}

@media (max-width: 992px) {
  header .content {
    height: 680px;
  }
}

@media (max-width: 767px) {
  header .content {
    height: auto;
    padding-bottom: 60px;
    padding-top: 60px;
  }
}

header .content .content-block {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

@media (max-width: 767px) {
  header .content .content-block {
    max-width: 100%;
  }
}

header .content .content-block__btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

header .content .head {
  font-family: var(--font-primary);
  font-size: 44px;
  font-weight: bold;
  line-height: 1.27;
  color: var(--color-neutral-white);
  margin-bottom: 25px;
}

header .content .info {
  font-family: var(--font-primary);
  font-size: 18px;
  line-height: 1.44;
  color: var(--color-neutral-white);
  margin-bottom: 55px;
}

header .content .spyme {
  height: 610px;
  position: absolute;
  right: 0;
  bottom: 0;
}

header .content .spyme>img {
  height: 100%;
}

header .content .spyme a {
  position: absolute;
  right: 231px;
  top: 76px;
  width: 119px;
  height: 118px;
  border-radius: 50%;
}

header .content .spyme a img {
  width: 40px;
  height: 40px;
}

header .content .spyme .text {
  position: absolute;
  margin-bottom: 43px;
  left: 80px;
  bottom: 100%;
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.38;
  text-align: left;
  color: rgba(255, 255, 255, 0.65);
}

header .content .spyme .text::after {
  position: absolute;
  content: url("../img/arrow-spyme.png");
  top: 100%;
  margin-top: 7px;
  left: 0;
}

@media (max-width: 992px) {
  header .content .spyme {
    height: 250px;
    right: 0;
  }

  header .content .spyme a {
    right: 65px;
  }
}

header .band {
  z-index: 5;
  position: absolute;
  left: -2px;
  bottom: -1px;
  width: 100%;
  width: calc(100% + 2px);
  height: auto;
}

.section {
  padding-bottom: 80px;
}

.section h2 {
  text-align: center;
  padding-top: 70px;
}

.sectionModes h2 {
  margin-bottom: 105px;
}

.sectionModes .modes {
  margin-bottom: -95px;
}

.sectionModes .mode {
  position: relative;
  height: 375px;
  margin-bottom: 95px;
  padding: 200px 35px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (max-width: 992px) {
  .sectionModes .mode {
    padding-inline: 70px;
  }
}

@media (max-width: 767px) {
  .sectionModes .mode {
    padding-inline: 30px;
  }
}

.sectionModes .mode::before {
  content: '';
  position: absolute;
  left: 7.5px;
  top: 0;
  height: 100%;
  width: calc(100% - 15px);
}

.sectionModes .mode .bg {
  z-index: -1;
  position: absolute;
  /* bottom: -23px;
  left: -7px; */
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0%);
}

.sectionModes .mode .mode-name {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: bold;
  line-height: 2.17;
  text-align: center;
  color: var(--color-secondary-800);
  width: 100%;
  margin-inline: auto;
  max-width: 240px;
}

.sectionModes .mode .mode-info {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.38;
  text-align: center;
  color: #79808b;
  width: 100%;
  margin-inline: auto;
  max-width: 240px;
}

.sectionModes .mode .mode-info span {
  white-space: nowrap;
}

.sectionComments {
  background-color: var(--color-light-50);
  background-image: url("../img/sectionComments_bg.png");
}

.sectionComments h2 {
  margin-bottom: 55px;
}

.sectionComments .comments_block {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.sectionStart {
  background-color: #00a5f0;
  background-image: url("../img/sectionStart_bg.png");
  background-repeat: no-repeat;
}

.sectionStart h2 {
  color: var(--color-neutral-white);
  margin-bottom: 75px;
}

.sectionStart .steps>div {
  position: relative;
  border-radius: 10px;
  background-color: var(--color-neutral-white);
  box-shadow: 0px 10px 15px 0 rgba(55, 61, 70, 0.1);
  padding: 25px 25px 20px 60px;
  margin-bottom: 65px;
  margin-left: 35px;
  font-family: var(--font-primary);
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
  color: var(--color-secondary-800);
}

.sectionStart .steps>div a {
  font-weight: 600;
  color: var(--color-primary-500);
  border-bottom: 1px solid var(--color-primary-500);
}

.sectionStart .steps>div::before {
  position: absolute;
  left: -35px;
  top: -35px;
  content: '?';
  width: 70px;
  height: 70px;
  border-radius: 10px;
  background-color: var(--color-primary-500);
  box-shadow: 0px 10px 15px 0 rgba(238, 202, 77, 0.25);
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: bold;
  line-height: 2.17;
  text-align: left;
  color: var(--color-neutral-white);
  line-height: 70px;
  text-align: center;
}

.sectionStart .steps>div::before {
  content: attr(data-number-steps);
}

.sectionStart .bonus .text {
  position: relative;
  z-index: 2;
  padding-right: 30px;
}

.sectionStart .bonus .text h2 {
  font-family: var(--font-primary);
  font-size: 44px;
  font-weight: bold;
  line-height: 1.27;
  color: var(--color-neutral-white);
  margin-bottom: 35px;
  text-align: start;
}

.sectionStart .bonus .text span {
  display: block;
  margin-bottom: 20px;
  font-family: var(--font-primary);
  font-size: 18px;
  line-height: 1.44;
  color: var(--color-neutral-white);
}

.sectionStart .bonus img {
  position: absolute;
  right: 15px;
  bottom: -80px;
}

@media (max-width: 767px) {
  .sectionStart .bonus img {
    position: relative;
  }

  .sectionStart .bonus {
    overflow: hidden;
  }
}

.sectionStart .buttonBonus {
  position: relative;
  outline: none !important;
}

.sectionStart .buttonBonus::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  z-index: -1;
  opacity: 1;
}

.sectionStart .buttonBonus.copied::before {
  transition: all 0.5s;
  -webkit-transform: scale(1.25);
  transform: scale(1.25);
  opacity: 0;
}

.bonus-revealed {
  display: none;
  margin-top: 20px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 20px 25px;
  text-align: center;
}

.bonus-revealed__command {
  display: block;
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary-500);
  margin-bottom: 8px;
  letter-spacing: 2px;
  user-select: all;
  -webkit-user-select: all;
}

.bonus-revealed small {
  font-family: var(--font-primary);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.sectionContacts .contact {
  margin-top: 35px;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--color-neutral-white);
  box-shadow: 0px 10px 15px 0 rgba(194, 194, 194, 0.25);
  text-align: center;
  padding-bottom: 50px;
}

.sectionContacts .contact .head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 140px;
  position: relative;
}

.sectionContacts .contact .head .bend {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.sectionContacts .contact .head.vk {
  background-color: #4c77a4;
}

.sectionContacts .contact .head.discord {
  background-color: #8c9eff;
}

.sectionContacts .contact .head.forum {
  background-color: #126f32;
}

.sectionContacts .contact .head.site {
  background-color: #ebeced;
}

.sectionContacts .contact .head.tg {
  background-color: #51a8ff;
}

.sectionContacts .contact .head.tt {
  background-color: #ebeced;
}

.sectionContacts .contact .title {
  display: block;
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: bold;
  color: var(--color-secondary-800);
  margin-top: 25px;
  margin-bottom: 7px;
  transition: all 0.25s;
}

.sectionContacts .contact .title:hover {
  opacity: 0.75;
}

.sectionContacts .contact span {
  font-family: var(--font-primary);
  font-size: 16px;
  color: #79808b;
}

.sectionContacts .contact img {
  width: 40px;
}

footer {
  background-color: var(--color-secondary-800);
  padding: 50px 0;
}

footer .menu {
  padding-top: 0;
  /* height: 110px; */
}

footer .link {
  color: var(--color-neutral-white) !important;
}

.tooltip-inner {
  padding: 0.5rem 1rem;
  font-size: 15px;
}

.modalYT {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.95);
  padding: 50px 100px;
  transition: all 0.25s;
}

.modalYT:not(.show) {
  display: none;
  background: rgba(0, 0, 0, 0);
}

.modalYT iframe {
  height: 100%;
  width: 100%;
}

.modalYT .close {
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 100px;
  color: var(--color-neutral-white);
  transition: all 0.25s;
  line-height: 0.5;
}

.modalYT .close:hover {
  color: var(--color-neutral-white) !important;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

.footer .footer-bottom .footer-bottom__copy {
  color: rgba(255, 255, 255, .65);
  font-size: 16px;
  text-decoration: none;
  width: 100%;
  /* text-align: center; */
  display: block;
}

.footer .footer-bottom ul {
  flex-shrink: 0;
}

.footer .footer-bottom ul li a {
  color: rgba(255, 255, 255, .65);
}

.footer .footer-bottom ul li a:hover {
  color: var(--color-neutral-white);
}
