@charset "UTF-8";
/***
    The new CSS reset - version 1.8.5 (last updated 14.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" attribute is exclud, because otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
@import url(https://fonts.googleapis.com/css?family=Montserrat:,300,regular,500,600,700,800&display=swap);
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element */
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

html,
body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #fff;
}

body.lock {
  overflow-y: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-color: #090f1e;
}

p {
  line-height: 150%;
}

h1 {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  margin: 25px 0;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 20px 0;
  text-align: center;
}

h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 15px 0;
}

ol {
  list-style: decimal;
  padding: 15px 25px;
}

ul {
  list-style: disc;
  padding: 15px 25px;
}

li {
  line-height: 150%;
}

ol li::marker,
ul li::marker {
  color: #233d50;
}

table {
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
}
table tr td,
table tr th {
  border: 1px solid #333;
  padding: 15px;
}
table tr th {
  background-color: #00b7ff;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
table tr td:hover {
  background-color: #e3e3e3;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background: #090f1e;
  padding: 15px 0;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.header .container .logo {
  flex: 0 0 150px;
}
.header .container .btns {
  display: flex;
  gap: 15px;
}
.header .container .btns .btn {
  border-radius: 10px;
  padding: 20px 16px;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
}
.header .container .btns .btn-1 {
  gap: 10px;
  background: linear-gradient(255deg, #00b7ff, #8d53e9);
  animation: glowing 1300ms infinite;
}
.header .container .btns .btn-1 img {
  max-width: 20px;
}
.header .container .btns .btn-2 {
  animation: glowing2 1300ms infinite;
  background: linear-gradient(70deg, #31bc69 -8%, #089e4e 96%);
}
.header .container .nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}
.header .container .nav ul li a {
  background-color: #17233a;
  padding: 10px;
  border-radius: 10px;
}
.header .container .nav ul li a:hover {
  background-color: rgba(138, 86, 234, 0.3411764706);
}

.main {
  height: 100%;
  flex: 1 1 auto;
  padding: 75px 0 50px;
}
.main .first-screen {
  background-color: #2d97c8;
  padding: 80px 0;
}
.main .first-screen .flex {
  display: flex;
  align-items: center;
  gap: 100px;
}
.main .first-screen .flex .flex-item {
  flex: 1 1 50%;
}
.main .first-screen .flex .banner {
  background: linear-gradient(90deg, transparent 0%, #3a435a 100%);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  padding: 1.4rem;
  text-align: right;
}
.main .first-screen .flex .banner__bg {
  background: url("../img/prize-1.png");
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: 180px;
  background-position: left bottom;
  transition: 0.2s;
}
.main .first-screen .flex .banner__title {
  font-size: 35px;
  font-weight: 600;
}
.main .first-screen .flex .banner__bonus {
  color: #2db866;
  font-size: 32px;
  font-weight: 700;
  animation: glowing3 1500ms infinite;
}
.main .first-screen .flex .banner__btn {
  background: linear-gradient(90deg, #2db866 0%, #099e4f 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0.6rem 3rem;
  border-radius: 10px;
}
.main .first-screen .flex .banner__btn:hover {
  background: linear-gradient(90deg, #099e4f 0%, #2db866 100%);
}
.main .first-screen .flex .flex__item:last-child:hover .banner__bg {
  background-size: 200px;
}
.main .first-screen .flex .item-2 .title {
  font-weight: 700;
  font-size: 51px;
  line-height: 124.69%;
  padding-bottom: 10px;
  position: relative;
  text-align: left;
}
.main .first-screen .flex .item-2 .title::before {
  width: 113px;
  height: 6px;
  content: "";
  position: absolute;
  border-radius: 9px;
  bottom: 0;
  background-color: var(--main-accent-color);
  background-image: linear-gradient(70deg, #31bc69 -8%, #089e4e 96%);
}
.main .content {
  background-color: #17233a;
  padding: 50px 0;
}

.footer {
  display: flex;
  justify-content: center;
  padding: 30px 0;
  border-top: 1px solid rgba(138, 86, 234, 0.3411764706);
}

.container {
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 16px;
}

@media (max-width: 1199px) {
  .header .container {
    justify-content: space-around;
  }
  .header .nav {
    display: none;
  }
  .header .nav.active {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 100%;
    background-color: rgba(9, 16, 30, 0.9215686275);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
  }
  .header .nav.active ul {
    flex-direction: column;
  }
  .header .nav.active ul li {
    margin: 10px 0;
  }
  .header .burger {
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
    z-index: 3;
    position: absolute;
    top: 0;
    right: 10px;
  }
  .header .burger::after, .header .burger::before {
    content: "";
  }
  .header .burger::after, .header .burger::before,
  .header .burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #00b7ff;
    border-radius: 10px;
    transition: all 0.3s ease 0s;
  }
  .header .burger::before {
    top: 0;
  }
  .header .burger::after {
    bottom: 0;
  }
  .header .burger span {
    top: 9px;
  }
  .header .burger.active::before {
    transform: rotate(45deg);
    top: 9px;
  }
  .header .burger.active::after {
    transform: rotate(-45deg);
    bottom: 9px;
  }
  .header .burger.active span {
    transform: scale(0);
  }
}
@media (max-width: 768px) {
  h1 {
    margin: 20px 0;
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
    margin: 15px 0;
  }
  h3 {
    font-size: 20px;
    margin: 10px 0;
  }
  .container {
    max-width: 100%;
  }
  .header {
    padding: 20px 0;
  }
  .header .container {
    flex-direction: column;
    gap: 10px;
  }
  .header .container .logo {
    flex: auto;
    max-width: 150px;
  }
  .header .container .btns .btn {
    padding: 12px 8px;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 16px;
  }
  .main {
    padding: 140px 0 30px;
  }
  .main .first-screen {
    padding: 30px 0;
  }
  .main .first-screen .flex {
    flex-direction: column;
    gap: 30px;
  }
  .main .first-screen .flex .flex-item {
    width: 100%;
  }
  .main .first-screen .flex .item-2 .title {
    font-size: 40px;
  }
  .main .first-screen .flex .banner__btn {
    padding: 0.6rem 1rem;
  }
  .main .first-screen .flex .banner__title {
    font-size: 28px;
  }
}
@keyframes stopsignal {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes glowing {
  0% {
    box-shadow: 0 0 5px #4d4d4d;
  }
  50% {
    box-shadow: 0 0 20px #00b7ff;
  }
  100% {
    box-shadow: 0 0 5px #4d4d4d;
  }
}
@keyframes glowing2 {
  0% {
    box-shadow: 0 0 5px #4d4d4d;
  }
  50% {
    box-shadow: 0 0 20px #31bc69;
  }
  100% {
    box-shadow: 0 0 5px #4d4d4d;
  }
}
@keyframes glowing3 {
  0% {
    text-shadow: 0 0 5px #4d4d4d;
  }
  50% {
    text-shadow: 0 0 20px #2db866;
  }
  100% {
    text-shadow: 0 0 5px #4d4d4d;
  }
}