@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=Poppins: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 {
  height: 100%;
  font-family: "Poppins", sans-serif;
  color: #333;
}

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

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

h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 20px 0;
}

h3 {
  font-size: 28px;
  font-weight: 600;
  margin: 15px 0;
}

ol {
  list-style: decimal;
}

ul {
  list-style: disc;
}

p {
  text-align: justify;
}

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: #834adb;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
table tr td:hover {
  background-color: #e3e3e3;
}

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

.header {
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background: #fafafa00;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  height: 140px;
}
.header .container a {
  flex: 0 0 200px;
}

.main {
  min-height: 100vh;
  flex: 1 1 auto;
  padding-top: 40px;
  padding-bottom: 100px;
}
.main img {
  max-width: 100%;
  display: block;
  margin: 20px auto;
}
.main .cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}
.main .cards .card {
  background-color: #f5f5f5;
  padding: 10px 17px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 65vw;
  margin: 0 auto;
}
.main .cards .card .top {
  display: grid;
  align-items: center;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 50px;
}
.main .cards .card__img {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main .cards .card img {
  margin: 0;
}
.main .cards .card .img {
  position: relative;
  width: 147px;
  height: 106px;
}
.main .cards .card .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 12px;
}
.main .cards .card .content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.main .cards .card .content .title {
  font-weight: 600;
  font-size: 18px;
}
.main .cards .card .content .subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  border-radius: 12px;
  padding: 10px;
}
.main .cards .card .content .subtitle .stars {
  display: flex;
  align-items: center;
}
.main .cards .card .content .subtitle .number span {
  font-weight: 600;
}
.main .cards .card__bonus {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.main .cards .card__bonus .title {
  display: flex;
  align-items: center;
  gap: 5px;
}
.main .cards .card__bonus .title span {
  font-size: 14px;
  font-weight: 300;
}
.main .cards .card__bonus .subtitle {
  font-weight: 600;
  font-size: 18px;
}
.main .cards .card__button {
  display: flex;
  justify-content: center;
}
.main .cards .card__button .btn {
  background-color: #834adb;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  padding: 15px 20px;
  border-radius: 12px;
  min-width: 190px;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  white-space: nowrap;
}
.main .cards .card__button .btn:hover {
  background-color: #6427c4;
}
.main .cards .card .bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main .cards .card .bottom .list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
}
.main .cards .card .bottom .list li {
  background-color: #fff;
  border-radius: 12px;
  text-align: center;
  flex: 1 1 33.333%;
}
.main .cards .card .bottom .list li a {
  width: 100%;
  display: block;
  height: 100%;
  padding: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.main .cards .card .bottom .list li a:hover {
  color: #f59227;
}
.main .cards .card .bottom .list li a .text {
  width: 100%;
}
.main .cards .card .bottom .list li a .arrow {
  transition: transform 0.3s ease;
}
.main .cards .card .bottom .list li a.active .arrow {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.main .cards .card .bottom .tab-content {
  background-color: #fff;
  padding: 20px 15px;
  display: none;
}
.main .cards .card .bottom .tab-content .tab {
  display: none;
}
.main .cards .card .bottom .tab-content .tab.active {
  display: block;
}
.main .cards .card .bottom .tab-content.active {
  display: block;
}
.main .cards .card .bottom .copyright {
  font-size: 10px;
  font-weight: 300;
  text-align: center;
}
.main .cards .card .bottom .flex-items {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.main .cards .card .bottom .flex-items .flex-item {
  background-color: #f5f5f5;
  flex: 1;
  padding: 12px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
}
.main .cards .card .bottom .tab-content-2 .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.main .cards .card .bottom .tab-content-2 .title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
}
.main .cards .card .bottom .tab-content-2 .flex-item.center {
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.main .cards .card .bottom .tab-content-2 .start {
  justify-content: flex-start;
}
.main .cards .card .bottom .tab-content-2 .start .flex-item {
  flex: 0 1 100px;
}
.main .cards .card .bottom .tab-content-3 .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.main .cards .card .bottom .tab-content-3 .flex-item {
  flex-direction: column;
  justify-content: flex-start;
  gap: 15px;
}
.main .cards .card .bottom .tab-content-3 .flex-item:first-child li {
  list-style-image: url("../img/small-plus.png");
}
.main .cards .card .bottom .tab-content-3 .flex-item:last-child li {
  list-style-image: url("../img/small-minus.png");
}
.main .cards .card .bottom .tab-content-3 .title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
}
.main .cards .card .bottom .tab-content-3 ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 20px;
}
.main .cards .card .bottom .tab-content-3 ul li {
  font-size: 14px;
  font-weight: 300;
  padding-left: 10px;
}
.main .cards .card .bottom-mobile {
  display: none;
}

.footer {
  text-align: center;
  font-size: 14px;
  background-color: #fafafa;
  padding: 20px 0;
}

@media (max-width: 1199px) {
  .container {
    max-width: 100%;
  }
  h1 {
    margin: 20px 0;
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
    margin: 15px 0;
  }
  h3 {
    font-size: 20px;
    margin: 10px 0;
  }
  .header .container {
    height: 70px;
  }
  .header .container a {
    flex: 0 0 180px;
  }
  .main {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .main .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .main .cards .card {
    max-width: 100%;
    margin: 0 auto;
    gap: 30px;
    flex: 0 0 40%;
  }
  .main .cards .card .top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .main .cards .card__button {
    margin: 0 auto;
  }
  .main .cards .card .bottom {
    display: none;
  }
  .main .cards .card .bottom.bottom-mobile {
    display: block;
  }
  .main .cards .card .bottom.bottom-mobile .list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .main .cards .card .bottom.bottom-mobile .list .tab {
    padding: 16px;
  }
  .main .cards .card .bottom.bottom-mobile .flex-items {
    flex-direction: column;
    align-items: stretch;
  }
  .main .cards .card .bottom.bottom-mobile .flex-items.mobile {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .main .cards .card .bottom.bottom-mobile .tab-content-2 .start {
    justify-content: flex-start;
  }
  .main .cards .card .bottom.bottom-mobile .tab-content-2 .start .flex-item {
    flex: 0 1 50px;
  }
  .main .cards .card .bottom.bottom-mobile .tab-content-3 ul li {
    background-color: #f5f5f5;
    text-align: left;
  }
  .main .cards .card .bottom.bottom-mobile .tab {
    display: none;
  }
  .main .cards .card .bottom.bottom-mobile .tab.active {
    display: block;
  }
  .main .cards .card .bottom.bottom-mobile .copyright {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .main .cards .card {
    flex: 0 0 auto;
  }
  .main .cards .card__img {
    flex-wrap: wrap;
  }
}
