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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

p {
  line-height: 150%;
}

h1 {
  font-size: 38px;
  font-weight: 600;
  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;
}

strong {
  font-weight: 700;
}

table {
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
}
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;
  background: #fff;
  width: 100%;
  z-index: 99;
  box-shadow: 0 2px 10px gray;
  padding: 10px 0;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .container .logo {
  max-width: 60px;
}
.header .container .logo a {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 130px;
}
.header .container .logo .logo-title {
  font-weight: 600;
  font-size: 20px;
  white-space: nowrap;
}
.header .container .logo .logo-title span {
  background-color: #38c199;
  font-weight: 700;
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
}
.header .container .auth .btn {
  background: linear-gradient(
    to right,
    #65ca7c 0,
    #c3edbe 42%,
    #c3edbe 51%,
    #c3edbe 52%,
    #edc1b6 100%
  );
  display: flex;
  justify-content: center;
  width: 264px;
  border-radius: 30px;
  font-weight: 600;
  padding: 15px;
  transition: all 0.3s ease-in-out;
}
.header .container .auth .btn:hover {
  background: linear-gradient(
    to left,
    #65ca7c 0,
    #c3edbe 42%,
    #c3edbe 51%,
    #c3edbe 52%,
    #edc1b6 100%
  );
}
.date {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  margin-bottom: 10px;
}
.date img {
  max-width: 30px;
}
.date .updated {
  display: flex;
  flex-direction: column;
}
.date time {
  font-weight: 600;
}
.main {
  height: 100%;
  flex: 1 1 auto;
  padding: 120px 0 50px;
}
.main .purple {
  background-color: #f3f4f8;
  padding: 20px 25px;
  border-radius: 6px;
  margin: 30px auto;
}
.main .purple p {
  margin: 15px 0;
}
.main .purple .flex {
  gap: 100px;
}
.main .purple .flex__item {
  flex: 1;
}
.main .purple .white img,
.main .purple .gradient img {
  max-width: 500px;
  display: flex;
  margin: 0 auto;
}
.main .purple h2 {
  position: relative;
  padding-bottom: 20px;
  text-align: left;
}
.main .purple h2::before {
  content: "";
  position: absolute;
  height: 1.5px;
  width: 300px;
  bottom: 0;
  left: 0;
  box-shadow: 0 0 8px #0d8360;
  background-color: #0d8360;
}
.main ul {
  list-style: none;
}
.main ul li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
}
.main ul li::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: url("../img/circle.webp") no-repeat;
  background-size: cover;
  left: 0;
  top: 0;
}
.main ol {
  list-style: none;
  counter-reset: item;
}
.main ol li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
  counter-increment: item;
}
.main ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  font-size: 14px;
  display: flex;
  color: #fff;
  justify-content: center;
  align-items: center;
  background: #0d8360;
}
.main .flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main .bg {
  background: linear-gradient(
    to right,
    rgb(13, 131, 96) 0,
    rgb(13, 130, 96) 45%,
    rgb(16, 117, 91) 51%,
    rgb(26, 76, 75) 65%,
    rgb(30, 59, 69) 74%,
    rgb(32, 51, 66) 83%,
    rgb(32, 51, 66) 100%
  );
  padding: 20px 0;
  color: #fff;
}
.main .bg .flex {
  justify-content: space-around;
}
.main .bg .flex__item {
  flex: 0 0 50%;
}
.main .bg .flex .item-1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main .bg .flex .item-1 .title {
  font-size: 45px;
  font-weight: 700;
  text-align: left;
  margin: 0;
}
.main .bg .flex .item-1 .subtitle {
  font-size: 20px;
}
.main .bg .flex .item-2 {
  display: flex;
  justify-content: center;
}
.main .cards-mobile {
  display: none;
}
.main .cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px auto 50px;
}
.main .cards__header {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.5fr;
  justify-content: center;
  text-align: center;
  align-items: center;
  background-color: #e4e6f0;
  border-radius: 6px;
  padding: 15px 0;
}
.main .cards__header .header-title {
  color: rgba(0, 0, 0, 0.67);
  padding: 0 10px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .cards__header .header-title:not(:last-child) {
  border-right: 1px solid #d1d4de;
}
.main .cards__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.main .cards__body .card {
  display: grid;
  grid-template-columns: 0.5fr 0.5fr 0.8fr 0.5fr;
  gap: 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #fff;
  border-radius: 6px;
  /* padding: 10px; */
}
.main .cards__body .card__img {
  position: relative;
  border-radius: 6px;
  width: 235px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}
.main .cards__body .card__img:hover {
  transform: scale(1.1);
}
.main .cards__body .card__img:hover::before {
  opacity: 1;
}
.main .cards__body .card__list {
  display: flex;
  justify-content: flex-start;
  margin-left: 80px;
}
.main .cards__body .card__list ul li {
  text-align: left;
  font-size: 13px;
}
.main .cards__body .card__list ul li::before {
  background: url("../img/approve.png");
  background-size: 25px;
  top: 5px;
}
.main .cards__body .card__bonus {
  font-size: 22px;
  font-weight: 600;
  animation: glowing1 1500ms infinite;
}
.main .cards__body .card__bonus span {
  font-size: 28px;
  font-weight: 600;
  width: 100%;
  display: inline-block;
}
.main .cards__body .card__bonus img {
  max-width: 50px;
}
.main .cards__body .card__check img {
  max-width: 30px;
}
.main .cards__body .card__number {
  font-size: 21px;
}
.main .cards__body .card__btn .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #0d8360;
  transition: 0.15s;
  font-size: 18px;
  border-radius: 40px;
  padding: 20px 0;
  width: 80%;
  margin: 0 auto;
  transition: all 0.5s;
  animation: glowing 1500ms infinite;
}
.main .cards__body .card__btn .btn:hover {
  box-shadow: 0 0 10px #0d8360;
  background-color: transparent;
  border: 1px solid #0d8360;
  color: inherit;
  animation: none;
}
.main .gradient {
  background: linear-gradient(
    to right,
    #65ca7c 0,
    #c3edbe 42%,
    #c3edbe 51%,
    #c3edbe 52%,
    #edc1b6 100%
  );
  padding: 50px;
  border-radius: 20px;
}
.main .white {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
}
.main .content {
  border-top: 1px solid rgb(196, 196, 196);
  border-bottom: 1px solid rgb(196, 196, 196);
  padding: 50px 0;
}
.main .content p {
  margin: 15px 0;
}

.footer {
  display: flex;
  justify-content: center;
  padding: 30px 0;
  background-color: #203342;
  color: #fff;
}

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

@media (max-width: 1199px) {
  .header .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .header .container .logo {
    max-width: 50px;
  }
  .header .container .logo a {
    gap: 10px;
  }
  .header .container .logo .logo-title {
    font-size: 18px;
  }
  .header .container .auth {
    display: none;
  }
}
@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%;
  }
  .main {
    padding: 70px 0 30px;
  }
  .main .bg {
    padding: 30px 0;
  }
  .main .bg .flex {
    flex-direction: column;
    gap: 20px;
  }
  .main .bg .flex .item-1 {
    gap: 10px;
  }
  .main .bg .flex .item-1 .title {
    font-size: 35px;
    text-align: center;
  }
  .main .bg .flex .item-1 .subtitle {
    display: none;
  }
  .main .cards {
    display: none;
  }
  .main .cards-mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .main .cards-mobile .card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #fff;
    border-radius: 6px;
    padding: 15px 6px;
  }
  .main .cards-mobile .card .bonus {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    width: 100%;
    background-color: #fff;
    padding: 6px;
  }
  .main .cards-mobile .card .bonus > div {
    flex: 1 0 50%;
  }
  .main .cards-mobile .card .bonus .img {
    flex: 0 0 120px;
  }
  .main .cards-mobile .card .bonus .bonus-text {
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    background-color: #fff;
  }
  .main .cards-mobile .card .bonus .bonus-text span {
    font-size: 28px;
    font-weight: 600;
    display: inline-block;
    width: 100%;
  }
  .main .cards-mobile .card__list ul li {
    text-align: left;
  }
  .main .cards-mobile .card__list ul li::before {
    background: url("../img/approve.png");
    background-size: 20px;
    top: 3px;
  }
  .main .cards-mobile .card .checklist {
    display: flex;
    justify-content: space-between;
    text-align: left;
    padding: 0 16px;
    font-weight: 600;
    font-size: 18px;
    animation: glowing1 1500ms infinite;
  }
  .main .cards-mobile .card .checklist > div {
    flex: 0 0 33.333%;
  }
  .main .cards-mobile .card .checklist .card__check {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
  }
  .main .cards-mobile .card .checklist .card__check .title {
    font-size: 14px;
  }
  .main .cards-mobile .card .checklist .card__check img {
    max-width: 20px;
  }
  .main .cards-mobile .card .card__btn .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #0d8360;
    transition: 0.15s;
    font-size: 18px;
    border-radius: 40px;
    padding: 15px 0;
    width: 80%;
    margin: 0 auto;
    transition: all 0.5s;
    animation: glowing 1500ms infinite;
  }
  .main .cards-mobile .card .card__btn .btn:hover {
    box-shadow: 0 0 10px #0d8360;
    background-color: transparent;
    border: 1px solid #0d8360;
    color: inherit;
  }
  .main .purple {
    padding: 20px 16px;
  }
  .main .purple .flex {
    flex-direction: column;
    gap: 20px;
  }
  .main .purple .gradient,
  .main .purple .white {
    padding: 20px;
  }
  .main .purple .gradient img,
  .main .purple .white img {
    max-width: 100%;
  }
  .main .content {
    padding: 30px 0;
  }
}
@keyframes glowing {
  0% {
    box-shadow: 0 0 5px #4d4d4d;
  }
  50% {
    box-shadow: 0 0 20px #0d8360;
  }
  100% {
    box-shadow: 0 0 5px #4d4d4d;
  }
}
@keyframes glowing1 {
  0% {
    text-shadow: 0 0 5px #fff;
  }
  50% {
    text-shadow: 0 0 20px #0d8360;
  }
  100% {
    text-shadow: 0 0 5px #fff;
  }
}
