@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=Work+Sans:100,200,300,regular,500,600,700,800,900&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-weight: 400;
  font-family: "Work Sans", sans-serif;
  color: #333;
}

body.lock {
  overflow-y: hidden;
}

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

p {
  line-height: 150%;
}

strong {
  font-weight: 600;
}

h1 {
  font-size: 38px;
  font-weight: 600;
  margin: 25px 0;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  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%;
}

ul li::marker {
  color: pink;
}

table {
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  overflow: auto;
}
table tr td,
table tr th {
  padding: 15px;
}
table tr th {
  color: #333;
  font-size: 18px;
  text-align: center;
}
table tr td:hover {
  background-color: #e3e3e3;
}

.header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
  padding: 10px 0;
}
.header .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header .container .logo {
  flex: 0 0 150px;
}
.header .container .logo a {
  display: flex;
  gap: 15px;
  align-items: center;
}
.header .container .logo a img {
  max-width: 150px;
}
.header .container .logo a span {
  font-size: 30px;
  font-weight: 700;
  white-space: nowrap;
}
.header .container .logo a span .green {
  background-color: rgb(97, 177, 159);
  padding: 0 5px;
  color: #fff;
  border-radius: 10px;
}
.header .container .auth {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header .container .auth .btn {
  display: flex;
  justify-content: center;
  width: 150px;
  border-radius: 15px;
  padding: 12px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.2s ease-in-out;
}
.header .container .auth .btn-1 {
  background-color: #4732d7;
  color: #fff;
}
.header .container .auth .btn-1:hover {
  background-color: #5f51bc;
}
.header .container .auth .btn-2 {
  background-color: greenyellow;
  color: #111;
}
.header .container .auth .btn-2:hover {
  background-color: rgb(66, 104, 9);
  color: #fff;
}

.main {
  height: 100%;
  flex: 1 1 auto;
  padding: 0 0 50px 0;
}
.main .banner {
  background-color: pink;
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.main .banner p {
  font-size: 20px;
  font-weight: 500;
}
.main .cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 30px;
}
.main .cards .card {
  position: relative;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  padding: 2.5rem 0 1rem;
  overflow: hidden;
}
.main .cards .card__header {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.5fr;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #dee2e6;
  padding: 0 1rem 1rem;
}
.main .cards .card__header .card__title {
  position: absolute;
  top: 0;
  left: 0;
  background-color: gold;
  padding: 0.3rem;
  font-weight: 600;
}
.main .cards .card__header .card__img {
  display: flex;
  gap: 1rem;
}
.main .cards .card__header .card__img .img {
  background-color: rgb(237, 237, 237);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  padding: 0.5rem;
  width: auto;
  width: 150px;
  height: 95px;
}
.main .cards .card__header .card__img .img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #266e51;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}
.main .cards .card__header .card__img .rate {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.main .cards .card__header .card__img .rate .num {
  background-color: rgb(243, 243, 243);
  display: flex;
  justify-content: center;
  padding: 0.2rem;
  font-weight: 600;
}
.main .cards .card__header .card__img .rate .num-text {
  font-weight: 600;
}
.main .cards .card__header .card__bonus {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: 28px;
  font-weight: 600;
}
.main .cards .card__header .card__bonus .bonus-title {
  font-size: 12px;
  background-color: rgb(247, 247, 247);
  color: gray;
  text-transform: uppercase;
  padding: 0.3rem;
  border-radius: 5px;
}
.main .cards .card__header .card__list {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.main .cards .card__header .card__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.main .cards .card__header .card__btn .btn {
  display: flex;
  justify-content: center;
  padding: 12px;
  border-radius: 10px;
  background-color: pink;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.main .cards .card__header .card__btn .btn:hover {
  background-color: rgb(226, 141, 155);
}
.main .cards .card__footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 1rem 1rem 0;
  gap: 1rem;
}
.main .cards .card__footer .pros {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.main .cards .card__footer .pros p {
  font-weight: 600;
}
.main .cards .card__footer .pros ul {
  list-style: none;
  padding: 0;
}
.main .cards .card__footer .pros ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.main .cards .card__footer .payments {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.main .cards .card__footer .payments p {
  font-weight: 600;
}
.main .cards .card__footer .payments .icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.main .cards .card__footer .payments .icons .icon {
  border-radius: 3px;
  border: 1px solid #ececf3;
  padding: 0.2rem;
  width: 42px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main .cards .card__footer .payments .icons .icon img {
  width: 100%;
}
.main .cards .card:nth-child(1) .card__header .card__img .img::before {
  content: "1";
}
.main .cards .card:nth-child(2) .card__header .card__img .img::before {
  content: "2";
}
.main .cards .card:nth-child(3) .card__header .card__img .img::before {
  content: "3";
}
.main .cards .card:nth-child(4) .card__header .card__img .img::before {
  content: "4";
}
.main .cards .card:nth-child(5) .card__header .card__img .img::before {
  content: "5";
}
.main .cards .card:nth-child(6) .card__header .card__img .img::before {
  content: "6";
}
.main .cards .card:nth-child(7) .card__header .card__img .img::before {
  content: "7";
}
.main .cards .card:nth-child(8) .card__header .card__img .img::before {
  content: "8";
}
.main .cards .card:nth-child(9) .card__header .card__img .img::before {
  content: "9";
}
.main .cards .card:nth-child(10) .card__header .card__img .img::before {
  content: "10";
}
.main .cards .card:nth-child(11) .card__header .card__img .img::before {
  content: "11";
}
.main .cards .card:nth-child(12) .card__header .card__img .img::before {
  content: "12";
}
.main .cards .card:nth-child(13) .card__header .card__img .img::before {
  content: "13";
}
.main .cards .card:nth-child(14) .card__header .card__img .img::before {
  content: "14";
}
.main .cards .card:nth-child(15) .card__header .card__img .img::before {
  content: "15";
}
.main .cards .card:nth-child(16) .card__header .card__img .img::before {
  content: "16";
}
.main .cards .card:nth-child(17) .card__header .card__img .img::before {
  content: "17";
}
.main .cards .card:nth-child(18) .card__header .card__img .img::before {
  content: "18";
}
.main .cards .card:nth-child(19) .card__header .card__img .img::before {
  content: "19";
}
.main .cards .card:nth-child(20) .card__header .card__img .img::before {
  content: "20";
}
.main .table-box {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  background: #fff;
  padding: 10px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin: 20px 0;
}
.main .table-box thead {
  background: #fff;
  border-bottom: 4px solid pink;
}
.main .table-box th {
  font-weight: 700;
  padding: 10px 15px;
  text-align: left;
  font-size: 15px;
}
.main .table-box td {
  padding: 10px 15px;
  border: none;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
  font-size: 14px;
}
.main .table-box tbody tr:nth-child(even) {
  background-color: #fafafa;
}
.main blockquote {
  margin: 10px 0;
  color: #231e28;
  padding: 15px 15px 15px 55px;
  position: relative;
  background: #fff;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
  font-weight: 300;
  border-radius: 5px;
}
.main blockquote::before {
  content: "“";
  color: pink;
  font-size: 48px;
  position: absolute;
  left: 15px;
  top: 0;
}
.main blockquote p {
  font-style: italic;
  font-size: 16px;
  font-weight: 700;
  color: #4e4e4e;
  margin: 0;
  padding: 0;
}
.main .content {
  padding: 30px 0 0 0;
}
.main .content p {
  margin: 15px 0;
}
.main .content ul,
.main .content ol {
  padding: 1rem 2rem;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
  margin: 1rem 0;
}
.main .content img {
  display: flex;
  margin: 0 auto;
  max-width: 500px;
}

.footer {
  box-shadow: 0 0 15px #a8a8a8;
  color: #fff;
}
.footer__icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.footer__icons img {
  width: 80px;
}
.footer .container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

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

.footer {
  padding: 30px 0;
}

@media (max-width: 1199px) {
  .main {
    padding: 30px 0;
  }
}
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
  }
  .header .container .logo {
    position: relative;
    z-index: 3;
    flex: auto;
  }
  .header .container .logo img {
    max-width: 120px;
  }
  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 .banner {
    min-height: 10vh;
  }
  .main .cards .card__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .main .cards .card__header .card__list {
    align-items: flex-start;
    gap: 0.3rem;
  }
  .main .cards .card__header .card__btn {
    width: 100%;
  }
  .main .cards .card__header .card__bonus {
    align-items: flex-start;
  }
  .main .cards .card__footer {
    gap: 0.5rem;
    font-size: 14px;
  }
  .content {
    padding: 30px 0 0 0;
  }
  .content img {
    max-width: 100%;
  }
}