@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: 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 wrapper1 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;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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;
  background-color: #6b9944;
}
table tr th {
  background-color: #f2ce74;
  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: url("../img/1.png") center/cover no-repeat;
  color: #f9e000;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgb(0, 0, 1);
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background-color: #333;
  opacity: 0.7;
  z-index: -1;
}
.header .container {
  display: flex;
  justify-content: center;
}
.header .logo {
  font-size: 32px;
  -webkit-text-stroke: 1px #111;
  animation: pulse 2s infinite;
  text-align: left;
}
.header .container .logo .img {
  max-inline-size: 50%;
  max-block-size: 50%;
   position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  min-width: 40%;
  
}
.main {
  height: 100%;
  flex: 1 1 auto;
  padding: 120px 0 50px;
  background-color: #ece5ed;
}
.main .cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 50px 0;
}
.main .cards .card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 0 30px;
  width: 70%;
  margin: 0 auto;
  border-radius: 5px;
  box-shadow: rgba(72, 72, 72, 0.1) 0px 0px 5px 3px;
  background-color: #fff;
  position: relative;
}
.main .cards .card::before {
  content: "";
  position: absolute;
  top: 15px;
  left: -8px;
  width: 38px;
  height: 25px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  background-color: #130d38;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  color: #fff;
}
.main .cards .card:first-child {
  border: 1.5px solid #fc466b;
}
.main .cards .card:first-child::before {
  background-color: #fc466b;
}
.main .cards .card__img {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main .cards .card__img .img {
  width: 120px;
  height: 120px;
  border-radius: 5px;
  position: relative;
  border: 1px solid #c2c2c2;
  background-color: #fff;
  top: -10px;
}
.main .cards .card__img .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 0 5px;
}
.main .cards .card__img .title {
  font-size: 20px;
  font-weight: 600;
}
.main .cards .card__bonus {
  font-size: 24px;
  color: #fc466b;
  text-align: center;
  animation: 1s steps(2) infinite stopsignal;
}
.main .cards .card__btn a {
  background-color: #02891a;
  color: #fff;
  width: 160px;
  display: flex;
  justify-content: center;
  padding: 12px 0;
  border-radius: 5px;
  animation: glowing 1300ms infinite;
}
.main .cards .card__btn a:hover {
  filter: brightness(1.18);
}
.main .cards .card:nth-child(1)::before {
  content: "#1";
}
.main .cards .card:nth-child(2)::before {
  content: "#2";
}
.main .cards .card:nth-child(3)::before {
  content: "#3";
}
.main .cards .card:nth-child(4)::before {
  content: "#4";
}
.main .cards .card:nth-child(5)::before {
  content: "#5";
}
.main .cards .card:nth-child(6)::before {
  content: "#6";
}
.main .cards .card:nth-child(7)::before {
  content: "#7";
}
.main .cards .card:nth-child(8)::before {
  content: "#8";
}
.main .cards .card:nth-child(9)::before {
  content: "#9";
}
.main .cards .card:nth-child(10)::before {
  content: "#10";
}
.main .cards .card:nth-child(11)::before {
  content: "#11";
}
.main .cards .card:nth-child(12)::before {
  content: "#12";
}
.main .cards .card:nth-child(13)::before {
  content: "#13";
}
.main .cards .card:nth-child(14)::before {
  content: "#14";
}
.main .cards .card:nth-child(15)::before {
  content: "#15";
}
.main .cards .card:nth-child(16)::before {
  content: "#16";
}
.main .cards .card:nth-child(17)::before {
  content: "#17";
}
.main .cards .card:nth-child(18)::before {
  content: "#18";
}
.main .cards .card:nth-child(19)::before {
  content: "#19";
}
.main .cards .card:nth-child(20)::before {
  content: "#20";
}
.main .wrapper1 {
  background: #201f1f;
  padding: 30px 0;
  border-radius: 5px;
}
.main .wrapper1 .content img {
  max-width: 500px;
  display: flex;
  margin: 0 auto;
}
.main .wrapper1 .content p {
  margin: 15px 0;
  color: #e3e3e3;
}
.main .wrapper1 .content h2 {
  color: #ece5ed;
}
.main .wrapper1 .content h3 {
  color: #ece5ed;
}
.main .wrapper1 .content h4 {
  color: #ece5ed;
}
.main .wrapper1 .content ul {
  color: #ece5ed;
}
.main .wrapper1 .content dt {
  color: #ece5ed;
}
.main .wrapper1 .content dd {
  color: #ece5ed;
}
.footer {
  background: #266618;
  background: linear-gradient(315deg, #2f3926, #0d0a1b);
  color: #fff;
  padding: 30px 0;
}
.footer .container {
  display: flex;
  justify-content: center;
}

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

@media (max-width: 1199px) {
  .header .logo {
    font-size: 26px;
  }
  .main {
    padding: 140px 0 30px;
  }
  .main .cards .card {
    width: 100%;
    flex-direction: column;
    padding: 0 16px 25px;
    gap: 20px;
  }
  .main .cards .card::before {
    left: 0;
    top: 0;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 0;
  }
  .main .cards .card__btn {
    margin: 0 auto;
  }
}
@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%;
  }
}
@keyframes pulse {
  0% {
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
  50% {
    text-shadow: 0 0 10px rgb(255, 255, 255);
  }
  100% {
    text-shadow: 0 0 0 rgba(255, 255, 255, 0.5);
  }
}
@keyframes stopsignal {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes glowing {
  0% {
    box-shadow: 0 0 5px #4d4d4d;
  }
  50% {
    box-shadow: 0 0 20px #02891a;
  }
  100% {
    box-shadow: 0 0 5px #02891a;
  }
}