@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 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;
  color: #fff;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: linear-gradient(180deg, rgb(16, 46, 91), rgb(73, 141, 235));
}

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: 30px 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;
  display: block;
  overflow: auto;
}
table tr td,
table tr th {
  border: 1px solid #333;
  padding: 15px;
}
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: #fafafa;
}

.main {
  height: 100%;
  flex: 1 1 auto;
  padding: 0 0 5rem 0;
}
.main__title {
  font-size: 35px;
  text-align: center;
}
.main .first__screen {
  background: linear-gradient(90deg, rgb(16, 46, 91), rgb(73, 141, 235));
  padding: 5rem 0;
}
.main .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-radius: 50px;
  max-width: 60%;
  margin: 0 auto;
}
.main .flex__title {
  font-size: 30px;
  font-weight: 600;
  flex: 1;
  font-style: italic;
}
.main .flex__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main .flex__item .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 100px;
  font-size: 24px;
  font-weight: 600;
  overflow: hidden;
}
.main .flex__item .btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.main .flex__item .title {
  border-radius: 50px;
  background-color: rgba(2, 171, 255, 0.76);
  width: 100%;
  text-align: center;
  padding: 12px;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.3s;
}
.main .flex__item .title:hover {
  background-color: rgba(0, 74, 111, 0.5);
}
.main .flex__item .title1 {
  border-radius: 50px;
  background-color: rgba(0, 74, 111, 0.5);
  width: 100%;
  text-align: center;
  padding: 12px;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.3s;
}
.main .flex__item .title1:hover {
  background-color: rgba(2, 171, 255, 0.5);
}
.main .flex .column {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.main .flex .column h1 {
  margin: 0;
}
.main .table {
  padding: 5rem 0;
  background: conic-gradient(from 0.5turn at 50% 0%, rgb(16, 46, 91), rgb(73, 141, 235));
}
.main .table__body {
  display: flex;
  justify-content: center;
  gap: 3px;
}
.main .table__item {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  padding: 2rem;
  font-size: 20px;
  text-align: center;
}
.main .table__item:first-child {
  border-right: none;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
.main .table__item:last-child {
  border-left: none;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}
.main .table__item:last-child {
  font-size: 24px;
  font-weight: 600;
  animation: glowing2 1500ms infinite;
}
.main .desc {
  background-color: rgba(43, 47, 49, 0.6392156863);
  padding: 3rem 0;
}
.main .desc .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 5rem;
}
.main .desc .text {
  flex: 0 0 50%;
}
.main .cards {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 50px auto;
}
.main .cards .card {
  display: grid;
  grid-template-columns: 0.5fr 1fr 0.5fr;
  align-items: center;
  gap: 20px;
  height: 200px;
  text-align: center;
  position: relative;
  background-color: rgba(43, 47, 49, 0.6392156863);
  border: 1.5px solid #fff;
  border-radius: 10px;
  padding-right: 16px;
}
.main .cards .card__img {
  background-color: #fff;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border: 2px solid #fff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}
.main .cards .card__img img {
  max-width: 120px;
}
.main .cards .card__bonus {
  font-size: 30px;
  color: #83f274;
  line-height: 100%;
}
.main .cards .card__bonus .bonus {
  animation: glowing 1500ms infinite;
}
.main .cards .card__bonus span {
  font-size: 16px;
  color: #fff;
}
.main .cards .card__text {
  font-size: 16px;
}
.main .cards .card__text .days {
  font-size: 20px;
  font-weight: 600;
}
.main .cards .card__btn .btn {
  display: inline-block;
  background-color: #83f274;
  color: #333;
  text-align: center;
  padding: 12px 20px;
  width: 150px;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.3s;
}
.main .cards .card__btn .btn:hover {
  background-color: #47883e;
  color: #fff;
}
.main .content {
  background-color: rgba(43, 47, 49, 0.6392156863);
  padding: 3rem 0;
}
.main .content p {
  margin: 15px 0;
}
.main .content img {
  display: flex;
  margin: 0 auto;
  max-width: 500px;
}
.main .fixed-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: 98;
  background-color: rgb(16, 46, 91);
  width: 100%;
  padding: 15px 0;
}
.main .fixed-buttons .btn {
  border-radius: 50px;
  background-color: rgb(2, 171, 255);
  width: 150px;
  text-align: center;
  padding: 12px;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.3s;
}

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

.footer {
  padding: 30px 0;
}

@media (max-width: 1199px) {
  h1 {
    margin: 20px 0;
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
    margin: 20px 0;
  }
  h3 {
    font-size: 20px;
    margin: 10px 0;
  }
  .container {
    max-width: 100%;
  }
  .main {
    padding: 0 0 3rem 0;
  }
  .main .first__screen {
    padding: 3rem 0;
  }
  .main .content img {
    max-width: 100%;
  }
  .main .flex {
    align-items: center;
    max-width: 100%;
    justify-content: space-around;
  }
  .main .flex__item .btn {
    width: 114px;
    height: 70px;
  }
  .main .flex__item h1 {
    margin: 0;
  }
  .main .table {
    padding: 2rem 0;
  }
  .main .table__item {
    padding: 1rem;
    font-size: 16px;
  }
  .main .table__item:last-child {
    font-size: 20px;
    font-weight: 600;
  }
  .main .desc .container {
    flex-direction: column;
    gap: 20px;
  }
  .main .cards {
    margin: 25px 0;
  }
  .main .cards .card {
    display: flex;
    flex-direction: column;
    height: auto;
    padding-right: 0;
    padding-bottom: 25px;
  }
  .main .cards .card__bonus {
    font-size: 24px;
    padding: 0 16px;
  }
  .main .cards .card__img {
    width: 100%;
    height: 120px;
  }
  .main .cards .card__text {
    font-size: 14px;
  }
  .main .cards .card .radius-top {
    border-top-right-radius: 8px;
  }
  .main .cards .card .radius-bottom {
    border-bottom-left-radius: 0;
  }
}
@keyframes glowing {
  0% {
    text-shadow: 0 0 5px #4d4d4d;
  }
  50% {
    text-shadow: 0 0 20px #83f274;
  }
  100% {
    text-shadow: 0 0 5px #4d4d4d;
  }
}
@keyframes glowing1 {
  0% {
    box-shadow: 0 0 5px #4d4d4d;
  }
  50% {
    box-shadow: 0 0 20px #fff;
  }
  100% {
    box-shadow: 0 0 5px #4d4d4d;
  }
}
@keyframes glowing2 {
  0% {
    box-shadow: 0 0 5px #4d4d4d;
  }
  50% {
    box-shadow: 0 0 20px #fff;
  }
  100% {
    box-shadow: 0 0 5px #4d4d4d;
  }
}