@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;
}

img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
figure img {
  border-radius: 14px;
  margin: 20px auto;
}

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

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

.colortext {
  color: #ffdb00;
}

/* 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;
}

a {
  color: #11d961;
}

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 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 16px;
}

.header {
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background: #182034;
  background-color: #182034;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  max-width: 90vw;
  margin: 0 auto;
  gap: 20px;
}

.header nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  padding: 0;
}

.header nav ul img {
  width: 50px;
}

.header nav ul a {
  color: #fff;
}

.header__logo img:first-child {
  max-width: 30px;
}

.header__logo img:last-child {
  max-width: 120px;
}

.header__item {
  justify-content: center;
}

.header__buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__buttons .btn {
  color: #fff;
  text-transform: uppercase;
}

.header__buttons .orange {
  background: #2124d4;
  box-shadow: 0 10px 30px rgb(22, 8, 150);
}

.header__buttons .orange:hover {
  background-image: linear-gradient(180deg, #0a2aaa 0, #3144ef 97%, #160bab);
  box-shadow: 0 20px 30px rgb(24, 7, 182);
}

.header__buttons .blue {
  background: #2124d4;
  box-shadow: 0 10px 30px rgba(0, 67, 250, 0.4);
}

.header__buttons .blue:hover {
  background: linear-gradient(180deg, #0a2aaa 0, #3144ef 97%, #160bab);
}

.btn {
  display: flex;
  justify-content: center;
  width: 160px;
  font-size: 16px;
  padding: 10px 0;
  border-radius: 50px;
}

.main {
  min-height: 100vh;
  flex: 1 1 auto;
  background-color: #182034;
}

.main__bonus {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url('../img//bg.jpg') 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(14, 13, 13, 0.85);
}

.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: 60px;
}

.main__bonus .big {
  font-size: 50px;
  font-weight: 600;
}

.main__bonus .big span {
  color: #21d45a;
}

.main__bonus .middle {
  font-size: 20px;
}

.main__bonus .big-btn {
  background-color: #19306a;
  font-size: 35px;
  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;
  color: #fff;
}

.main__bonus #particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.main__body {
  padding: 80px 0;
}

.main__body img {
  max-width: 600px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.main__body p {
  margin: 12px 0;
}

.footer {
  background-color: #182034;
  text-align: center;
  font-size: 14px;
}

.footer .container {
  background: linear-gradient(0deg,
      rgba(0, 50, 102, 0) 0,
      #04264b 73%,
      #003266 98%);
}

.footer__body {
  max-width: 90vw;
  margin: 0 auto;
  padding: 30px 16px;
  color: #fff;
}

.footer .nav {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid #cacaca;
}

.footer .nav ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.footer .nav ul a {
  color: #fff;
}

.footer .partners {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid #cacaca;
  gap: 30px;
}

.footer .partners img {
  max-width: 50px;
}

.footer .payment {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
}

.footer .payment .icon {
  height: 1em;
  font-size: 19px;
}

@media (max-width: 1199px) {
  .header {
    padding: 16px;
  }

  .header .container {
    flex-direction: column;
    gap: 20px;
    height: auto;
  }

  .header .header__logo.header__item {
    justify-content: center;
  }

  .header__logo img:last-child {
    max-width: 120px;
  }

  .btn {
    font-size: 16px;
  }

  .btn-content,
  .btn-content-green {
    font-size: 16px;
  }

  .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;
  }

  .header nav ul {
    gap: 15px;
  }

  .header .container {
    gap: 15px;
  }

  .main__bonus .container {
    max-width: 100%;
    margin-top: -30%;
  }

  .main__bonus p {
    line-height: 120%;
  }

  .main__bonus .small {
    font-size: 22px;
  }

  .main__bonus .big {
    font-size: 30px;
    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;
  }

  .footer__body {
    padding: 20px 0;
  }
}

/* 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;
  }
}