@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat-SemiBold.woff2") format("truetype");
  font-weight: normal;
  font-style: normal;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: #505871;
}

::-webkit-scrollbar-track {
  background-color: #2a2e3b;
}

html,
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background-color: #181B26;
  background-image: url("../assets/bg-images/bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  overflow-x: hidden;
}

.main {
  text-align: center;
  max-width: 100%;
}

* {
  font-family: inherit;
  font-size: 16px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

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

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  z-index: 1000;
  padding: 10px;
  margin: 0 auto;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .header__logo {
    gap: 5px;
  }
}
.header__logo .logo__icon-gif img {
  max-width: 150px;
  max-height: 40px;
}
@media (max-width: 768px) {
  .header__logo .logo__icon-gif img {
    max-width: 80px;
    max-height: 25px;
  }
}
.header__auth {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .header__auth {
    gap: 5px;
  }
}
.header__auth .auth__promo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  background: #404555;
  padding: 10px 26px;
  border-radius: 6px;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  text-decoration: none;
}
@media (max-width: 768px) {
  .header__auth .auth__promo-link {
    padding: 6px 16px;
    font-size: 12px;
  }
}
.header__auth .auth__promo-link:hover {
  cursor: pointer;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .header__auth .auth__promo-link .promo-text-desktop {
    display: none;
  }
}
.header__auth .auth__promo-link .promo-text-mobile {
  display: none;
}
@media (max-width: 768px) {
  .header__auth .auth__promo-link .promo-text-mobile {
    display: inline;
  }
}
.header__auth .auth__signin {
  color: #FFFFFF;
  text-decoration: underline;
  cursor: pointer;
}
@media (max-width: 768px) and (max-width: 768px) {
  .header__auth .auth__signin {
    font-size: 12px;
    padding: 4px 8px;
  }
}
.header__auth .auth__signin:hover {
  opacity: 0.8;
}
.header__auth .auth__register {
  border-radius: 16px;
  padding: 10px 26px;
  font-weight: 500;
  background: #24AE82;
  color: #FFFFFF;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header__auth .auth__register {
    font-size: 12px;
    padding: 4px 8px;
  }
}
.header__auth .auth__register:hover {
  opacity: 0.8;
}

.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 0;
  }
}
.hero-section .left-section {
  max-width: -moz-max-content;
  max-width: max-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}
@media (max-width: 768px) {
  .hero-section .left-section {
    align-items: center;
  }
}
.hero-section .left-section .head {
  color: #111111;
  background-color: #00f5c3;
  font-size: 30px;
  padding: 16px 30px;
  -webkit-clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
          clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
  font-weight: 800;
  line-height: 120%;
  text-align: left;
}
@media (max-width: 768px) {
  .hero-section .left-section .head {
    text-align: center;
    font-size: 26px;
  }
}
.hero-section .left-section .subhead {
  color: #FFFFFF;
  text-shadow: 0px 4px 12px #015434;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  text-align: left;
}
@media (max-width: 768px) {
  .hero-section .left-section .subhead {
    text-align: center;
    font-size: 18px;
  }
}
.hero-section .left-section .btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  background: linear-gradient(to bottom, #348a6e, #1e4033);
  color: #FFFFFF;
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: 30px;
  transition: box-shadow 0.3s, transform 0.2s;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 10px rgba(52, 234, 191, 0.5), 0 0 20px rgba(52, 234, 191, 0.4), 0 0 30px rgba(52, 234, 191, 0.2);
}
.hero-section .left-section .btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(52, 234, 191, 0.7), 0 0 30px rgba(52, 234, 191, 0.6);
}
@media (max-width: 768px) {
  .hero-section .left-section .btn {
    width: 100%;
  }
}
.hero-section .right-section {
  max-width: 50%;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .hero-section .right-section {
    max-width: 100%;
  }
}
.hero-section .right-section img {
  max-width: 100%;
}
@media (max-width: 768px) {
  .hero-section .right-section img {
    max-width: 100%;
  }
}

.bottom-section {
  margin-bottom: 20px;
}
.bottom-section .title {
  text-shadow: 0px 4px 12px rgba(117, 253, 220, 0.36);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  color: #FFFFFF;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .bottom-section .title {
    font-size: 28px;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .bottom-section .accordion {
    width: 100%;
  }
}
.bottom-section .accordion .accordion-item {
  flex: 1 1 50%;
  box-sizing: border-box;
  margin-bottom: 15px;
  background-color: transparent;
  border-radius: 12px;
  overflow: hidden;
}
.bottom-section .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.bottom-section .accordion .accordion-item .accordion-button {
  color: #FFFFFF;
  background-color: transparent;
}
.bottom-section .accordion .accordion-item .accordion-button::after {
  content: "+";
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-left: auto;
}
.bottom-section .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  content: "–";
}
.bottom-section .accordion .accordion-item .accordion-body {
  color: #FFFFFF;
  text-align: left;
}
.bottom-section .accordion .accordion-item .accordion-body strong {
  color: #24AE82;
  font-size: 18px;
}
@media (max-width: 768px) {
  .bottom-section .accordion .accordion-item .accordion-body strong {
    font-size: 14px;
  }
}
.bottom-section .accordion .accordion-item .accordion-body ol {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  color: #FFFFFF;
  text-align: left;
  counter-reset: item;
  padding: 0;
  margin: 0;
}
.bottom-section .accordion .accordion-item .accordion-body ol li {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 15px;
  counter-increment: item;
}
@media (max-width: 768px) {
  .bottom-section .accordion .accordion-item .accordion-body ol li {
    padding: 0 10px;
  }
}
.bottom-section .accordion .accordion-item .accordion-body ol li .item-number {
  text-align: left;
}
.bottom-section .accordion .accordion-item .accordion-body ol li .item-number::before {
  content: counter(item);
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #42bd92;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  color: #FFFFFF;
  font-size: 24px;
}
.bottom-section .accordion .accordion-item .accordion-body ol li .item-title {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}