@charset "UTF-8";
@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: 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: "Open Sans", sans-serif;
  font-weight: 400;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  margin: 0;
  font-weight: 100;
  background: radial-gradient(#fff, #3e3838);
  animation: fadeIn 1 1s ease-out;
  color: #000000;
}

p {
  line-height: 150%;
  text-align: justify;
}

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: left;
}

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

ol li::marker {
  font-weight: 600;
  font-size: 18px;
}

.table_dark {
  width: 100%;
  overflow-x: auto;
  text-align: left;
  border-collapse: collapse;
  background: #a39a9a;
  margin: 15px 0;
  z-index: 1;
  position: relative;
}

.table_dark th {
  color: #ff0000;
  border-bottom: 1px solid #ff0000;
  padding: 12px 17px;
  font-weight: 600;
  text-align: center;
  font-weight: bolder;
}

.table_dark td {
  color: #000000;
  border-bottom: 1px solid #ff0000;
  border-right: 1px solid #ff0000;
  padding: 7px 17px;
  text-align: center;
}

.table_dark tr:last-child td {
  border-bottom: none;
}

.table_dark td:last-child {
  border-right: none;
}

.header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 15px 0;
  background: #424242;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 10px; */
}
.header .container .logo {
  flex: 0 0 100px;
}
.header .container .auth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.header .container .auth .btn {
  display: flex;
  gap: 10px;
  align-items: center;
}
.header .container .auth .btn img {
  height: 20px;
}
.header .container .auth .btn-1 {
  border: 1px solid #ff2400;
  color: #ff2400;
}
.header .container .auth .btn-1:hover {
  border: 1px solid #fff;
  color: #fff;
}
.header .container .auth .btn-2 {
  background-color: #ff2400;
  color: #fff;
}
.header .container .auth .btn-2:hover {
  background-color: #ff4c00;
}

.btn {
  display: flex;
  justify-content: center;
  padding: 10px 12px;
  font-weight: 600;
  font-size: 18px;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
}

.main {
  height: 100%;
  flex: 1 1 auto;
}
.main .cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px 0;
}
.main .cards .card {
  flex: 1;
  border-radius: 2vw;
  padding: 2.7083333333vw;
  color: #fff;
}
.main .cards .card::before {
  content: "";
  padding-top: 50%;
}
.main .cards .card:nth-child(1) {
  background: url("../img/fon1.png") center/cover no-repeat;
}
.main .cards .card:nth-child(2) {
  background: url("../img/fon2.png") center/cover no-repeat;
}
.main .cards .card__content {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.main .cards .card__title {
  font-size: 30px;
  font-weight: 600;
}
.main .cards .card__title .bold {
  font-weight: 800;
  font-size: 40px;
}
.main .cards .card__title .gold {
  background: linear-gradient(180deg, #ffc700 26.48%, #ff8a00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 25px;
  font-weight: 800;
}
.main .cards .card__btn {
  background-color: #ff2400;
  color: #fff;
  animation: glowing 1300ms infinite;
}
.main .cards .card__btn:hover {
  background-color: #ff4c00;
}
.main .content {
  padding-bottom: 30px;
}
.main .content p {
  margin: 15px 0;
}
.main .content img {
  display: flex;
  margin: 0 auto;
  max-width: 500px;
}

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

.footer {
  padding: 30px 0;
  background-color: #424242;
}
.footer .payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  border-top: 1px solid rgb(230, 230, 230);
  padding: 20px 0;
}
.footer .payments img {
  max-width: 100px;
  height: 42px;
}
.footer .nav {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px 0;
}
.footer .nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}
.footer .copyright {
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgb(230, 230, 230);
  font-size: 12px;
}

@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;
  }
  h3 {
    font-size: 24px;
  }
  .table_dark {
    display: block;
  }
  .container {
    max-width: 100%;
  }
  .header {
    padding: 10px 0;
  }
  .header .container {
    flex-direction: column;
    /* gap: 15px; */
  }
  .header .container .logo {
    flex: auto;
  }
  .header .container .logo img {
    max-width: 100px;
  }
  .main .cards {
    flex-direction: column;
  }
  .main .cards .card {
    padding: 4px;
  }
  .main .cards .card__content {
    max-width: 100%;
    text-align: center;
  }
  .main .cards .card__title {
    font-size: 16px;
  }
  .main .cards .card__desc {
    font-size: 14px;
  }
  .main .content img {
    max-width: 100%;
  }
  .footer {
    padding: 20px 0;
  }
  .footer .payments {
    gap: 10px;
  }
  .footer .payments img {
    max-width: 50px;
  }
  .footer .copyright {
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }
  .footer .copyright .img {
    max-width: 80px;
  }
}
.light {
  position: absolute;
  width: 0px;
  opacity: 0.75;
  background-color: #ff2400;
  box-shadow: #ff2400 0px 0px 20px 2px;
  opacity: 0;
  top: 100vh;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
}

.x1 {
  animation: floatUp 4s infinite linear;
  transform: scale(1);
}

.x2 {
  animation: floatUp 7s infinite linear;
  transform: scale(1.6);
  left: 15%;
}

.x3 {
  animation: floatUp 2.5s infinite linear;
  transform: scale(0.5);
  left: -15%;
}

.x4 {
  animation: floatUp 4.5s infinite linear;
  transform: scale(1.2);
  left: -34%;
}

.x5 {
  animation: floatUp 8s infinite linear;
  transform: scale(2.2);
  left: -57%;
}

.x6 {
  animation: floatUp 3s infinite linear;
  transform: scale(0.8);
  left: -81%;
}

.x7 {
  animation: floatUp 5.3s infinite linear;
  transform: scale(3.2);
  left: 37%;
}

.x8 {
  animation: floatUp 4.7s infinite linear;
  transform: scale(1.7);
  left: 62%;
}

.x9 {
  animation: floatUp 4.1s infinite linear;
  transform: scale(0.9);
  left: 85%;
}

@keyframes glowing {
  0% {
    box-shadow: 0 0 5px #363636;
  }
  50% {
    box-shadow: 0 0 20px #ff2400;
  }
  100% {
    box-shadow: 0 0 5px #363636;
  }
}
@keyframes floatUp {
  0% {
    top: 100vh;
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    top: 0vh;
    opacity: 0.8;
  }
  75% {
    opacity: 1;
  }
  100% {
    top: -100vh;
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes finalFade {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}
