@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=Open+Sans: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: 80%;
  max-block-size: 80%;
}

/* 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: "Open Sans", sans-serif;
  font-weight: 400;
  background-color: #091117;
  color: #fff;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

p {
  line-height: 150%;
}

strong {
  font-weight: 800;
}

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: #fff;
  font-weight: 600;
}

table {
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  overflow: auto;
}
table tr td,
table tr th {
  padding: 15px;
}
table tr th {
  background: linear-gradient(70deg, #31bc69 -8%, #089e4e 96%);
  color: #fff;
  font-size: 18px;
  text-align: center;
}
table tr td {
  background-color: #fff;
  color: #333;
  border: 1px solid #333;
}
table tr td:hover {
  background-color: #e3e3e3;
}

.btn {
  display: flex;
  justify-content: center;
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease-in-out;
}
.btn:hover {
  opacity: 0.8;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background: #13202B;
  padding: 20px 0;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
/* .header .container .logo {
  flex: 0 0 100px;
} */
.header .container .auth {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header .container .auth .btn-1 {
  background: #0F853D;
}
.header .container .auth .btn-2 {
  background: #00B7FF;
}

.main {
  height: 100%;
  flex: 1 1 auto;
  padding: 120px 0 50px;
}
.main .bonus {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(270deg, #0f853d, #2b394c);
  padding: 32px;
  border-radius: 45px;
  margin: 20px 0;
  gap: 20px;
}
.main .bonus__img {
  flex: 1;
  margin-left: 80px;
}
.main .bonus__img img {
  max-width: 250px;
  border-radius: 45px;
}
.main .bonus__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex: 0 0 40%;
}
.main .bonus__text {
  font-size: 40px;
  text-align: left;
  font-weight: 600;
}
.main .bonus__btn {
  background-color: #FF2428;
  animation: glowing 1500ms infinite;
}
.main .content p {
  margin: 15px 0;
}
.main .content img {
  display: flex;
  margin: 0 auto;
  max-width: 700px;
}

.container {
  max-width: 80vw;
  margin: 0 auto;
  padding: 0 16px;
}

.footer {
  padding: 30px 0;
  background: #1e283f;
}
.footer .container {
  display: flex;
  justify-content: center;
}

.main .content .img-small {
  width: 200px;
  margin-right: 25px;
  margin-bottom: 25px;
  float: left;
}

.img-small img{
  width: 200px;
}

.img-cov{
  clear: both;
}

@media (max-width: 1199px) {
  .main .bonus {
    flex-direction: column;
  }
  .main .bonus__img {
    margin-left: 0;
  }
  .main .bonus__text {
    font-size: 30px;
    text-align: center;
  }
  .main .bonus__content {
    align-items: center;
  }
}
@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;
  }
  .header .container {
    flex-direction: column;
    justify-content: center;
    /* gap: 20px; */
  }
  .header .container .logo {
    flex: auto;
  }
  .header .container .logo img {
    max-width: 80px;
  }
  .container {
    max-width: 100%;
  }
  .main {
    padding: 160px 0 30px;
  }
  .main .bonus {
    gap: 20px;
  }
  .main .bonus__img {
    display: flex;
    justify-content: center;
    margin: 0;
  }
  .main .bonus__content {
    align-items: center;
  }
  .main .bonus__text {
    text-align: center;
    font-size: 30px;
  }
  .main .content img {
    max-width: 100%;
  }

  .main .content .img-small{
    float: none;
    margin: 0 auto;
  }
}
@keyframes glowing {
  0% {
    box-shadow: 0 0 5px #969696;
  }
  50% {
    box-shadow: 0 0 20px #FF2428;
  }
  100% {
    box-shadow: 0 0 5px #969696;
  }
}