@font-face {
  font-family: AlbertSans;
  src: url("AlbertSans-VariableFont_wght.ttf");
}
body {
  margin: 0;
  font-family: AlbertSans;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1100px) {
  .desktop {
    display: none;
  }
}
@media screen and (min-width: 1101px) {
  .mobile {
    display: none;
  }
}
.info {
  width: 24px;
  min-width: 24px;
  height: 24px;
  background-image: url("img/icon-info.svg");
  background-size: contain;
  position: relative;
}

.tooltip {
  display: none;
  background-color: #5a677a;
  padding: 14px;
  width: fit-content;
  z-index: 999;
  position: absolute;
  left: -150px;
  width: 300px;
  bottom: 35px;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  --arrow-left: 156px;
}
.tooltip::after {
  position: absolute;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  bottom: -4px;
  left: var(--arrow-left);
  background-color: #5a677a;
  transform: rotate(45deg);
}
@media screen and (max-width: 1635px) {
  .tooltip {
    /*  font-size: 12px;
      left: -280px;
      &::after {
        left: 282px;
      } */
  }
}
.tooltip ul {
  margin: 0;
  padding-left: 12px;
}

.info:hover .tooltip {
  display: block;
}

header {
  background-color: #f2f2f2;
  padding: 80px max((100% - 1600px) / 2, 24px);
}
header strong {
  color: #4541de;
  font-size: 22px;
}
header h1 {
  color: #222222;
  font-size: 52px;
  line-height: 68px;
  margin: 0;
}
@media screen and (max-width: 1635px) {
  header h1 {
    font-size: 42px;
    line-height: 42px;
    margin: 16px 0;
  }
}
header p {
  color: #5a677a;
  font-size: 16px;
  margin: 0;
  margin-bottom: 24px;
}
header section {
  gap: 16px;
}
@media screen and (max-width: 767px) {
  header section {
    flex-direction: column;
  }
}
header section > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1100px) {
  header section > div {
    max-width: 50%;
  }
}

#logo {
  width: 172px;
  margin-bottom: 130px;
}

section {
  display: flex;
  flex-direction: row;
  max-width: 1600px;
  margin: 0 auto;
}

.btn {
  background-color: #2cb96d;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  padding: 14px;
  line-height: 16px;
  width: fit-content;
  font-weight: bold;
  border: none;
}

.btn-right {
  position: relative;
  padding-right: 48px;
}
.btn-right::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("img/icon-arrow-right.svg");
  right: 14px;
  top: 10px;
}

.btn-down {
  position: relative;
  padding-right: 48px;
}
.btn-down::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("img/icon-arrow-down.svg");
  right: 14px;
  top: 10px;
}

main {
  background-color: #fafafa;
  padding: 48px max((100% - 1600px) / 2, 24px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  main {
    padding: 48px max((100% - 1600px) / 2, 16px);
  }
}
main > h1 {
  margin: 0;
}
main section {
  /* overflow: hidden; */
  border-radius: 8px;
  padding-top: 24px;
  width: auto;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
}
@media screen and (max-width: 1635px) {
  main section {
    gap: 16px !important;
  }
}
main section > div {
  display: flex;
}
main section > div > div {
  display: flex;
}
@media screen and (max-width: 767px) {
  main section {
    padding-top: 16px;
  }
}
main section .section-head {
  padding: 0 24px;
  position: relative;
}
@media screen and (max-width: 767px) {
  main section .section-head {
    padding: 0 16px;
  }
}
main section .section-head > p {
  min-width: fit-content;
}
main section .section-head .tags {
  margin-left: auto;
  gap: 4px;
  color: #4541de;
  line-height: 32px;
  flex-wrap: wrap;
  justify-content: end;
}
main section .section-head .tags > div {
  background-color: rgba(69, 65, 222, 0.0509803922);
  border: 1px solid #d4d4e7;
  border-radius: 4px;
  font-size: 16px;
  color: #222222;
  font-weight: 400;
  line-height: 16px;
  padding: 8px;
}
main section .section-head .rank {
  display: flex;
  align-items: center;
  color: #5a677a;
  gap: 1px;
  margin-left: 24px;
  min-width: 140px;
}
main section .section-head .rank p {
  font-weight: 700;
  font-size: 16px;
  margin-left: auto;
}
main section .section-head .rank img {
  height: 16px;
}
main section .section-head mark {
  height: 32px;
  background-color: #f2f2f2;
  color: #5a677a;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  padding: 0 12px;
  margin-right: 8px;
  width: 38px;
  text-align: center;
}
main section .section-head .logo-mobile {
  display: none;
}
main section .section-head p {
  margin: 0;
  color: #5a677a;
  font-size: 22px;
  font-weight: 600;
  line-height: 31px;
}
main section .section-head p strong {
  font-weight: 600;
  color: black;
}
@media screen and (max-width: 1100px) {
  main section .section-head p {
    font-size: 16px;
  }
}
@media screen and (max-width: 1635px) {
  main section .section-head {
    flex-direction: column;
  }
  main section .section-head .tags {
    margin-left: 0;
    justify-content: start;
    margin-top: 8px;
  }
  main section .section-head .rank {
    margin-left: 0;
    margin-top: 16px;
  }
  main section .section-head .rank > p {
    margin-left: 8px;
  }
  main section .section-head > p {
    margin-left: 70px;
    margin-top: 8px;
    margin-bottom: 8px;
    line-height: 24px;
  }
  main section .section-head .logo-mobile {
    height: 36px;
    display: block;
  }
}
main .section-body {
  padding: 0 24px;
  height: 78px;
  align-items: center;
}
main .section-body .logo {
  height: 50px;
  margin-right: auto;
  padding-right: 10px;
}
main .section-body > div {
  height: 100%;
  display: flex;
  gap: 2px;
  padding-right: 16px;
  margin-right: 16px;
  border-right: 2px solid #f2f2f2;
}
main .section-body > div .account {
  background-color: rgba(69, 65, 222, 0.0509803922);
  border: 1px solid #4541de;
}
main .section-body > div .bonus p {
  color: #2cb96d !important;
}
main .section-body > div > div {
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  gap: 16px;
}
main .section-body > div > div > img {
  height: 48px;
}
main .section-body > div > div > div {
  height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
main .section-body > div > div > div > p {
  margin: 0;
  color: #5a677a;
  font-size: 16px;
  font-weight: 400;
  line-height: 12px;
}
main .section-body > div > div > div > div {
  display: flex;
  align-items: center;
}
main .section-body > div > div > div > div > p {
  margin: 0;
  color: #222222;
  font-size: 19px;
  font-weight: 600;
  line-height: 24px;
  text-align: right;
}
main .section-body > div > div > div > div > .info {
  margin-left: 8px;
}
@media screen and (max-width: 1635px) {
  main .section-body {
    flex-direction: column;
    height: unset;
    align-items: flex-start;
  }
  main .section-body .logo {
    display: none;
  }
  main .section-body > div {
    height: 60px;
    padding-right: 0px;
    margin-right: 0px;
    border-right: 0;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 2px solid #f2f2f2;
    width: 100%;
  }
  main .section-body > div > div > img {
    height: 32px;
  }
  main .section-body > div > div > div {
    height: 32px;
  }
  main .section-body > div > div > div > p {
    font-size: 12px;
  }
  main .section-body > div > div > div > div > p {
    font-size: 22px;
  }
  main .section-body > div > div > div > div > .info {
    height: 16px;
    width: 16px;
    min-width: 16px;
  }
}
@media screen and (max-width: 1635px) and (max-width: 1100px) {
  main .section-body {
    align-items: stretch;
  }
  main .section-body > div {
    flex-direction: column;
    height: unset;
    border: 0;
  }
  main .section-body > div > div {
    height: 48px;
  }
  main .section-body > div > div > div {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex: 1;
  }
  main .section-body .btn {
    width: auto;
  }
}
main .section-details {
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
}
main .section-details .content {
  height: 0px;
  overflow: hidden;
  display: flex;
  gap: 24px;
}
main .section-details .content > div:first-child > div:first-of-type > p > span:nth-child(2) {
  color: #2cb96d;
}
main .section-details .content > div {
  flex: 1;
  background-color: white;
  border-radius: 8px;
  padding: 24px;
}
main .section-details .content > div h1 {
  color: #4541de;
  font-size: 22px;
  margin: 0 0 0 16px;
  position: relative;
}
main .section-details .content > div h1::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 4px;
  background-color: #4541de;
  top: 12px;
  left: -14px;
}
@media screen and (max-width: 767px) {
  main .section-details .content > div h1 {
    font-size: 16px;
  }
  main .section-details .content > div h1::after {
    top: 8px;
  }
}
main .section-details .content > div > div {
  padding: 16px;
  border-bottom: 1px solid #e3e3e3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
main .section-details .content > div > div p {
  font-size: 22px;
  font-weight: 600;
  color: #5a677a;
  display: flex;
  justify-content: space-between;
  margin: 0;
}
main .section-details .content > div > div p .green {
  color: #2cb96d;
}
@media screen and (max-width: 767px) {
  main .section-details .content > div > div p {
    font-size: 16px;
  }
}
main .section-details .content > div > div ul {
  margin: 0;
  font-size: 16px;
  color: #222222;
  line-height: 24px;
  padding-left: 24px;
}
@media screen and (max-width: 767px) {
  main .section-details .content > div > div ul {
    font-size: 12px;
    line-height: 16px;
  }
}
main .section-details .content > div > div:last-child {
  border: none;
}
main .section-details .content .functionalities {
  display: flex;
  justify-content: space-between;
  gap: 4px;
}
main .section-details .content .functionalities .functionality {
  display: flex;
  gap: 8px;
  align-items: center;
}
main .section-details .content .functionalities .functionality img {
  height: 24px;
}
main .section-details .content .functionalities .functionality p {
  font-size: 16px;
  font-weight: 400;
  color: #222222;
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  main .section-details .content .functionalities .functionality p {
    font-size: 12px;
    line-height: 16px;
  }
}
main .section-details .content .cardFuncs {
  display: flex;
  gap: 24px;
}
main .section-details .content .cardFuncs > div {
  display: flex;
  gap: 8px;
  align-items: center;
}
main .section-details .content .cardFuncs > div img {
  height: 24px;
}
main .section-details .content .cardFuncs > div p {
  font-size: 16px;
  font-weight: 400;
  color: #222222;
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  main .section-details .content .cardFuncs > div p {
    font-size: 12px;
    line-height: 16px;
  }
}
main .section-details .content .additions {
  display: flex;
  gap: 24px;
}
main .section-details .content .additions > div {
  display: flex;
  gap: 8px;
  align-items: center;
}
main .section-details .content .additions > div p {
  font-size: 16px;
  color: #222222;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  main .section-details .content .additions > div p {
    font-size: 12px;
    line-height: 16px;
  }
}
main .section-details .content .additions > div img {
  height: 24px;
}
main .section-details .content .cards > div {
  display: flex;
  gap: 8px;
}
main .section-details .content .cards > div p {
  font-size: 18px;
  font-weight: 400;
  color: #222222;
}
@media screen and (max-width: 767px) {
  main .section-details .content .cards > div p {
    font-size: 12px;
    line-height: 16px;
  }
}
main .section-details .content .cards > div img {
  height: 24px;
}
@media screen and (max-width: 1635px) {
  main .section-details .content {
    flex-direction: column;
  }
  main .section-details .content .functionalities,
  main .section-details .content .cardFuncs,
  main .section-details .content .additions,
  main .section-details .content .cards {
    flex-direction: column;
    gap: 8px;
  }
}
main .section-details .switch {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a677a;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}

body > section {
  flex-direction: column;
  background-color: white;
  padding: 40px max((100% - 1600px) / 2, 24px);
}
body > section h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}
body > section h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
body > section b,
body > section strong {
  font-size: 16px;
}
body > section strong {
  font-weight: 400;
}
body > section p,
body > section ul {
  font-size: 12px;
  margin: 0;
  line-height: 16px;
}
body > section ul {
  padding-left: 16px;
}

footer {
  overflow: hidden;
  background-color: #5a677a;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0;
  color: white;
  font-size: 16px;
  position: relative;
  text-align: center;
  margin-top: auto;
}
footer > * {
  z-index: 1;
}
footer img {
  margin-bottom: 12px;
}
footer p {
  margin: 4px;
}
footer div {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 16px;
}
footer div a {
  color: white;
  text-decoration: none;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  footer div {
    flex-direction: column;
  }
}
footer span {
  color: #aeb4bd;
}
footer::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 400px;
  background-image: url("img/ilus-footer-1.png");
  bottom: 0;
  left: 60px;
  background-repeat: no-repeat;
  background-position: bottom left;
}
footer::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 400px;
  background-image: url("img/ilus-footer-2.png");
  bottom: 0;
  right: 60px;
  background-repeat: no-repeat;
  background-position: bottom right;
}
@media screen and (max-width: 1635px) {
  footer::before {
    bottom: -100px;
    left: -160px;
  }
  footer::after {
    bottom: -160px;
    right: -30px;
  }
}

form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
form label {
  display: flex;
  flex-direction: column;
}
form input {
  padding: 4px;
}
form input[type=submit] {
  border: none;
  margin: auto;
}
form textarea {
  resize: horizontal;
  height: 200px;
}

.label {
  background-color: #ff7a00;
  padding: 5px;
  border-radius: 4px;
  color: white;
  font-weight: 500;
  align-self: start;
  margin-bottom: 8px;
  margin-left: 70px;
  font-size: 14px;
}

@media screen and (min-width: 1636px) {
  .label {
    position: absolute;
    left: 24px;
    top: 38px;
    margin-left: 0;
  }
}
#test {
  background-color: red;
  position: fixed;
  top: 50px;
  width: 100%;
  text-align: center;
  font-size: 24px;
  color: white;
  font-weight: bold;
  padding: 4px 0;
  opacity: 80%;
  z-index: 99999;
}

/*# sourceMappingURL=style.css.map */
