@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=Poppins:300,regular,500,600,700&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 {
  max-width: 100vw;
  overflow-x: hidden;
  height: 100%;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

p {
  line-height: 150%;
}

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

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

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: #1a5684;
}

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

.wrapper {
  display: flex;
  flex-direction: column;
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 16px;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background: linear-gradient(0deg, rgba(0, 50, 102, 0) 0, #003266 73%, #003266 98%);
  background-color: #0a519e;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  max-width: 90vw;
  margin: 0 auto;
}
.header nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__logo img:first-child {
  max-width: 30px;
}
.header__logo img:last-child {
  max-width: 180px;
}
.header .header__logo.header__item {
  justify-content: flex-start;
}
.header__item {
  flex: 0 0 150px;
  justify-content: center;
}
.header__buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__buttons .btn {
  color: #fff;
  text-transform: uppercase;
}
.header__buttons .orange {
  background: linear-gradient(0deg, #fa4d00 0, #fa5e00);
  box-shadow: 0 10px 30px rgba(250, 65, 0, 0.4);
}
.header__buttons .orange:hover {
  background-image: linear-gradient(0deg, #fa5e00 0, #fa7c00);
  box-shadow: 0 20px 30px rgba(250, 65, 0, 0.4);
}
.header__buttons .blue {
  background: linear-gradient(0deg, #428cdc 0, #509aea 97%, #509aea);
  box-shadow: 0 10px 30px rgba(0, 67, 250, 0.4);
}
.header__buttons .blue:hover {
  background: linear-gradient(180deg, #428cdc 0, #509aea 97%, #509aea);
}

.btn {
  display: flex;
  justify-content: center;
  width: 140px;
  font-size: 18px;
  padding: 15px 0;
  border-radius: 50px;
}

.popup {
  position: relative;
}

.close {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
}

.bonus {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background-color: #fff;
  box-shadow: 0 17px 40px rgba(9, 25, 42, 0.36);
  color: #333;
  border-radius: 20px;
  padding: 0 16px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  width: 300px;
  height: 300px;
}

.bonus__icon {
  width: 80px;
  background-color: #ff4c00;
  padding: 20px;
  border-radius: 67%;
  height: 80px;
  animation: 4s infinite scaleanim;
  transition: 0.5s;
  margin-top: -40px;
}

.text {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.number {
  color: #153872;
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  animation-delay: 2s;
  animation: 1s steps(2) infinite stopsignal;
}

.bonus__btn {
  padding-bottom: 25px;
}
.bonus__btn .btn {
  background: linear-gradient(0deg, #fa4d00 0, #fa5e00);
  box-shadow: 0 10px 30px rgba(250, 65, 0, 0.4);
  color: #fff;
  text-transform: uppercase;
  width: 200px;
  padding: 10px 0;
}
.bonus__btn .btn:hover {
  background-image: linear-gradient(0deg, rgb(250, 94, 0) 0px, rgb(250, 124, 0));
  box-shadow: rgba(250, 65, 0, 0.4) 0px 20px 30px;
}

.main {
  min-height: 100vh;
  flex: 1 1 auto;
  padding-top: 100px;
  background-color: #002347;
}
.main__bonus {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url("../img/bg.webp") center/cover no-repeat;
  position: relative;
  text-transform: uppercase;
  text-align: center;
  padding: 150px 0;
}
.main__bonus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 9, 9, 0.25);
}
.main__bonus .container {
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.main__bonus p {
  line-height: 100%;
}
.main__bonus .small {
  font-size: 30px;
}
.main__bonus .big {
  font-size: 120px;
  font-weight: 600;
}
.main__bonus .big span {
  color: #f8612b;
}
.main__bonus .middle {
  font-size: 40px;
}
.main__bonus .big-btn {
  background-color: #f8612b;
  font-size: 25px;
  border-radius: 15px;
  padding: 20px 16px;
  width: 100%;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(250, 65, 0, 0.4);
  border-radius: 50px;
  margin-top: 40px;
  animation: pulse 2s infinite;
  transition: transform 0.3s ease-in-out;
}
.main__bonus #particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.main__body {
  padding: 50px 0;
}
.main__body img {
  max-width: 600px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.main__body p {
  margin: 12px 0;
}
.main .slots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  background-color: rgba(15, 15, 17, 0.643);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.main .slots h2 {
  width: 100%;
  text-align: center;
  margin: 0;
}
.main .slots .slot {
  width: 200px;
  height: 150px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.main .slots .slot:hover {
  transform: scale(1.1);
}
.main .slots .slot img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer {
  background-color: #0a519e;
  text-align: center;
  font-size: 14px;
}
.footer .container {
  background: linear-gradient(0deg, rgba(0, 50, 102, 0) 0, #003266 73%, #003266 98%);
}
.footer__body {
  max-width: 90vw;
  margin: 0 auto;
  padding: 30px 16px;
  color: #fff;
}
.footer .payments {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid #fff;
  padding-bottom: 30px;
}
.footer .payments img {
  max-width: 100px;
}
.footer .icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 30px;
}
.footer .icons .icon {
  width: 80px;
}

@media (max-width: 1199px) {
  .header {
    padding: 25px 16px;
  }
  .header .container {
    flex-direction: column;
    gap: 20px;
    height: auto;
  }
  .header .header__logo.header__item {
    flex: auto;
    justify-content: center;
    width: 150px;
  }
  .header__logo img:last-child {
    max-width: 120px;
  }
  .btn {
    font-size: 16px;
  }
  .btn-content,
  .btn-content-green {
    font-size: 16px;
  }
  .main {
    padding-top: 150px;
  }
  .main__body {
    padding: 30px 0;
  }
  .main__body img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .wrapper {
    max-width: 100%;
  }
  h1 {
    margin: 20px 0;
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
    margin: 15px 0;
  }
  h3 {
    font-size: 20px;
    margin: 10px 0;
  }
  .main__bonus .container {
    max-width: 100%;
  }
  .main__bonus p {
    line-height: 120%;
  }
  .main__bonus .small {
    font-size: 22px;
  }
  .main__bonus .big {
    font-size: 90px;
    font-weight: 600;
  }
  .main__bonus .big span {
    color: #f8612b;
  }
  .main__bonus .middle {
    font-size: 30px;
  }
  .main__bonus .big-btn {
    font-size: 20px;
    border-radius: 50px;
    width: auto;
  }
  .main .slots .slot {
    width: 150px;
    height: 100px;
  }
  .footer__body {
    padding: 20px 0;
  }
  .footer .payments img {
    max-width: 80px;
  }
  .footer .icons .icon {
    width: 50px;
  }
}
/* SVG animations */
@keyframes color_anim {
  0% {
    fill: white;
  }
  50% {
    fill: #ff135a;
  }
  100% {
    fill: white;
  }
}
/* Button animations */
@keyframes btn-content {
  0% {
    outline: 0.2em solid #ff0000;
    outline-offset: 0;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 1px 0 1px #473e12, 0 1px 1px #39ffa4, -1px 0 1px #473e12, 0 -1px 1px #ffdf39;
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
@keyframes pulse-mobile {
  0% {
    transform: scale(1);
    box-shadow: 1px 0 1px #473e12, 0 1px 1px #39ffa4, -1px 0 1px #473e12, 0 -1px 1px #ffdf39;
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
@keyframes stopsignal {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}