@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
.header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 112px;
  padding: 30px 48px;
  background: white;
  position: relative;
  z-index: 999;
}

@media only screen and (max-width: 1150px) {
  .header {
    height: 80px;
    padding: 0 20px;
  }
}

.header__logo {
  margin: 0 auto 0 0;
  height: 24px;
}

.header__nav {
  margin: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 68px;
}

@media only screen and (max-width: 1500px) {
  .header__nav {
    gap: 30px;
  }
}

@media only screen and (max-width: 1150px) {
  .header__nav {
    position: absolute;
    background: white;
    width: 100%;
    height: calc(100vh - 80px);
    top: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: safe center;
        -ms-flex-align: safe center;
            align-items: safe center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 30px 0;
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .header__nav--open {
    -webkit-transform: translateX(0vw);
            transform: translateX(0vw);
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
}

.header__link {
  font-weight: 500;
  font-size: 18px;
  color: #6C7A84;
  outline: none;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header__link:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.8;
}

@media only screen and (max-width: 1300px) {
  .header__link {
    font-size: 14px;
  }
}

.header__button {
  margin: 0 0 0 auto;
  outline: none;
  text-decoration: none;
  border: 2px solid #DFF8FE;
  background: #DFF8FE;
  font-weight: 500;
  font-size: 16px;
  color: #001524;
  padding: 12px 20px;
  border-radius: 120px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header__button:hover {
  background: transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media only screen and (max-width: 1300px) {
  .header__button {
    font-size: 14px;
  }
}

@media only screen and (max-width: 600px) {
  .header__button {
    padding: 6px 10px;
    font-size: 13px;
  }
}

.header__hamburger {
  width: 40px;
  height: 40px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  background: none;
  outline: none;
  display: none;
  margin: 0 0 0 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media only screen and (max-width: 1150px) {
  .header__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.header__hamburger:hover {
  cursor: pointer;
  opacity: 0.6;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header__hamburger span {
  width: 24px;
  height: 2px;
  background: black;
  position: absolute;
}

.header__hamburger .first {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}

.header__hamburger .second {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 1;
}

.header__hamburger .third {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}

.header__hamburger .first--open {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header__hamburger .second--open {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
}

.header__hamburger .third--open {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.footer {
  width: 100%;
  background: white;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 1000px) {
  .footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media only screen and (max-width: 660px) {
  .footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 240px 0 0;
}

@media only screen and (max-width: 1200px) {
  .footer__info {
    margin: 0 160px 0 0;
  }
}

@media only screen and (max-width: 1000px) {
  .footer__info {
    margin: 40px 0 0 0;
  }
}

@media only screen and (max-width: 660px) {
  .footer__info {
    margin: 0 0 40px 0;
  }
}

.footer__logo {
  height: 24px;
}

.footer__copyright {
  font-weight: 500;
  font-size: 14px;
  color: #6C7A84;
  margin: 34px 0 18px 0;
}

.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 13px;
}

.footer__social {
  width: 40px;
  height: 40px;
  border: 2px solid #E9F2F4;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  outline: none;
}

.footer__social i {
  color: #001524;
  font-size: 18px;
  line-height: 16px;
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 170px;
}

@media only screen and (max-width: 1200px) {
  .footer__container {
    gap: 100px;
  }
}

@media only screen and (max-width: 660px) {
  .footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
  }
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.footer__navTitle {
  font-weight: 500;
  font-size: 18px;
  color: #001524;
  margin: 0 0 38px 0;
}

.footer__link {
  outline: none;
  text-decoration: none;
  color: #6C7A84;
  font-weight: 500;
  font-size: 14px;
  margin: 0 0 12px 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.footer__link:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.5;
}

.cookies {
  z-index: 10;
  width: 100%;
  padding: 36px 20px;
  border-top: 1px solid #E9F2F4;
  position: fixed;
  bottom: 0;
  left: 0;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 830px) {
  .cookies {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 20px 10px;
  }
}

.cookies__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cookies__cookie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 48px;
  width: 48px;
  min-height: 48px;
  min-width: 48px;
  background: #E9F2F4;
  border-radius: 12px;
}

.cookies__cookie img {
  height: 32px;
}

@media only screen and (max-width: 550px) {
  .cookies__cookie {
    height: 38px;
    width: 38px;
    min-height: 38px;
    min-width: 38px;
  }
  .cookies__cookie img {
    height: 24px;
  }
}

.cookies__text {
  color: #6C7A84;
  max-width: 970px;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  display: block;
  margin: 0 24px;
}

.cookies__text a {
  display: inline;
  text-decoration: none;
  outline: none;
  color: #F01159;
}

@media only screen and (max-width: 550px) {
  .cookies__text {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    margin: 0 10px;
  }
}

.cookies__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}

@media only screen and (max-width: 830px) {
  .cookies__buttons {
    margin: 20px 0 0 0;
  }
}

.cookies__button {
  padding: 16px 32px;
  font-weight: 600;
  font-size: 16px;
  color: #6C7A84;
  border: 1.5px solid #E9F2F4;
  border-radius: 16px;
  text-decoration: none;
  outline: none;
  background: white;
  font-family: inherit;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.cookies__button:hover {
  background: #E9F2F4;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
}

.cookies__button--red {
  background: #F01159;
  border: 1.5px solid #F01159;
  color: white;
}

.cookies__button--red:hover {
  color: #F01159;
  background: white;
}

@media only screen and (max-width: 550px) {
  .cookies__button {
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 10px;
  }
}

.logins {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100vh;
}

@media only screen and (max-width: 1020px) {
  .logins {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.logins__left {
  height: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 68px 20px 190px;
  background: #E9F2F4;
}

@media only screen and (max-width: 1780px) {
  .logins__left {
    padding: 20px 50px 20px 100px;
  }
}

@media only screen and (max-width: 1650px) {
  .logins__left {
    padding: 20px 40px 20px 60px;
  }
}

@media only screen and (max-width: 1180px) {
  .logins__left {
    padding: 20px 30px 20px 40px;
  }
}

@media only screen and (max-width: 1020px) {
  .logins__left {
    min-height: -webkit-fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 20px 10px;
    width: 100%;
  }
}

.logins__image {
  width: 500px;
}

@media only screen and (max-width: 1650px) {
  .logins__image {
    width: 400px;
  }
}

@media only screen and (max-width: 520px) {
  .logins__image {
    width: 250px;
  }
}

.logins__backLink {
  outline: none;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #6C7A84;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.logins__backLink span {
  background: white;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 12px 0 0;
}

.logins__backLink span i {
  font-size: 13px;
  color: #6C7A84;
  line-height: 13px;
}

.logins__backLink:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.6;
}

.logins__h1 {
  margin: 49px 0 0 0;
  color: #001524;
  font-weight: 500;
  font-size: 48px;
  line-height: 64px;
}

@media only screen and (max-width: 1020px) {
  .logins__h1 {
    margin: 20px 0 0 0;
    font-size: 38px;
    line-height: 48px;
  }
}

.logins__right {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  padding: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 1020px) {
  .logins__right {
    min-height: -webkit-fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
    padding: 20px 10px;
  }
}

.logins__rightLink {
  color: #6C7A84;
  font-size: 14px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 auto auto;
}

.logins__rightLink a {
  outline: none;
  text-decoration: none;
  margin: 0 0 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #F01159;
}

.logins__rightLink a span {
  background: white;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 0 12px;
}

.logins__rightLink a span i {
  font-size: 13px;
  color: #6C7A84;
  line-height: 13px;
}

@media only screen and (max-width: 1020px) {
  .logins__rightLink {
    margin: 0 0 20px auto;
  }
}

.logins__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 auto auto 160px;
}

@media only screen and (max-width: 1380px) {
  .logins__form {
    margin: 0 auto auto 50px;
  }
}

@media only screen and (max-width: 1180px) {
  .logins__form {
    margin: 0 auto auto 10px;
  }
}

@media only screen and (max-width: 1020px) {
  .logins__form {
    width: 100%;
    margin: 10px 0;
  }
}

.logins__label {
  color: #001524;
  margin: 0 0 6px 0;
  font-weight: 500;
  font-size: 14px;
}

@media only screen and (max-width: 520px) {
  .logins__label {
    font-size: 12px;
  }
}

.logins__input {
  padding: 16px 24px;
  border: 1px solid #E9F2F4;
  border-radius: 8px;
  width: 500px;
  color: #BEC5CA;
  font-weight: 500;
  font-size: 14px;
  outline: none;
  margin: 0 0 22px 0;
}

.logins__input::-webkit-input-placeholder {
  color: #BEC5CA;
}

.logins__input:-ms-input-placeholder {
  color: #BEC5CA;
}

.logins__input::-ms-input-placeholder {
  color: #BEC5CA;
}

.logins__input::placeholder {
  color: #BEC5CA;
}

@media only screen and (max-width: 1120px) {
  .logins__input {
    width: 400px;
  }
}

@media only screen and (max-width: 1020px) {
  .logins__input {
    width: 100%;
  }
}

@media only screen and (max-width: 520px) {
  .logins__input {
    font-size: 12px;
    padding: 10px 12px;
  }
}

.logins__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.logins__forgot {
  font-weight: 500;
  font-size: 14px;
  outline: none;
  text-decoration: none;
  color: #F01159;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.logins__forgot:hover {
  opacity: 0.6;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media only screen and (max-width: 520px) {
  .logins__forgot {
    font-size: 12px;
  }
}

.logins__submit {
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  background: #F01159;
  border: 2px solid #F01159;
  outline: none;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-family: inherit;
  border-radius: 16px;
  margin: 0 0 0 auto;
}

.logins__submit:hover {
  cursor: pointer;
  color: #F01159;
  background: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media only screen and (max-width: 520px) {
  .logins__submit {
    font-size: 12px;
    padding: 10px 16px;
  }
}

.logins__p {
  color: #001524;
  max-width: 520px;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  margin: 0 0 38px 0;
}

@media only screen and (max-width: 620px) {
  .logins__p {
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 20px 0;
  }
}

.contact {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 100px 20px;
}

@media only screen and (max-width: 880px) {
  .contact {
    padding: 50px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.contact__info {
  background: #E9F2F4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  height: 640px;
  width: 430px;
  padding: 0 32px;
  border-radius: 20px;
  gap: 20px;
}

@media only screen and (max-width: 1250px) {
  .contact__info {
    width: 380px;
  }
}

@media only screen and (max-width: 880px) {
  .contact__info {
    width: 100%;
    margin: 80px 0 0 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 120px 20px 60px 20px;
  }
}

.contact__img {
  position: absolute;
  top: -70px;
  height: 150px;
}

.contact__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: white;
  width: 100%;
  border-radius: 32px;
  padding: 12px;
}

.contact__icon {
  width: 70px;
  height: 70px;
  border: 1px solid #E9F2F4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 25px 0 0;
  border-radius: 20px;
}

.contact__icon i {
  color: #001524;
  font-size: 24px;
}

@media only screen and (max-width: 1250px) {
  .contact__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    margin: 0 20px 0 0;
    border-radius: 10px;
  }
  .contact__icon i {
    font-size: 16px;
  }
}

.contact__infoTitle {
  font-weight: 400;
  font-size: 14px;
  margin: 0 12px 0 0;
  color: #6C7A84;
  white-space: nowrap;
}

@media only screen and (max-width: 1250px) {
  .contact__infoTitle {
    font-size: 12px;
  }
}

.contact__value {
  color: #001524;
  outline: none;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  margin: 0 12px 0 0;
  white-space: nowrap;
}

@media only screen and (max-width: 1250px) {
  .contact__value {
    font-size: 12px;
  }
}

.contact__button {
  font-weight: 600;
  font-size: 14px;
  color: #F01159;
  padding: 8px 16px;
  outline: none;
  text-decoration: none;
  background: white;
  margin: 0 0 0 13px;
  border: 2px solid #F01159;
  border-radius: 12px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  white-space: nowrap;
}

.contact__button:hover {
  cursor: pointer;
  color: white;
  background: #F01159;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media only screen and (max-width: 1250px) {
  .contact__button {
    font-size: 12px;
  }
}

.contact__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 240px 0 0;
}

@media only screen and (max-width: 1250px) {
  .contact__container {
    margin: 0 100px 0 0;
  }
}

@media only screen and (max-width: 880px) {
  .contact__container {
    width: 100%;
    margin: 0 0 40px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.contact__h1 {
  font-weight: 500;
  font-size: 14px;
  color: #003458;
}

.contact__h3 {
  font-weight: 500;
  font-size: 48px;
  line-height: 64px;
  margin: 48px 0;
  color: #001524;
}

@media only screen and (max-width: 880px) {
  .contact__h3 {
    font-size: 30px;
    text-align: center;
    line-height: normal;
    margin: 10px 0 30px 0;
  }
  .contact__h3 br {
    display: none;
  }
}

.contact__label {
  margin: 0 0 6px 0;
  color: #001524;
  font-weight: 500;
  font-size: 14px;
}

.contact__input {
  outline: none;
  background: white;
  padding: 16px 24px;
  border: 1px solid #E9F2F4;
  border-radius: 8px;
  width: 500px;
  font-weight: 500;
  font-size: 14px;
  color: #BEC5CA;
  margin: 0 0 22px 0;
}

.contact__input::-webkit-input-placeholder {
  color: #BEC5CA;
}

.contact__input:-ms-input-placeholder {
  color: #BEC5CA;
}

.contact__input::-ms-input-placeholder {
  color: #BEC5CA;
}

.contact__input::placeholder {
  color: #BEC5CA;
}

@media only screen and (max-width: 1250px) {
  .contact__input {
    width: 350px;
  }
}

@media only screen and (max-width: 880px) {
  .contact__input {
    width: 90%;
  }
}

.contact__textarea {
  outline: none;
  background: white;
  padding: 16px 24px;
  border: 1px solid #E9F2F4;
  border-radius: 8px;
  width: 500px;
  height: 160px;
  font-weight: 500;
  font-size: 14px;
  color: #BEC5CA;
  margin: 0 0 22px 0;
  resize: none;
}

.contact__textarea::-webkit-input-placeholder {
  color: #BEC5CA;
}

.contact__textarea:-ms-input-placeholder {
  color: #BEC5CA;
}

.contact__textarea::-ms-input-placeholder {
  color: #BEC5CA;
}

.contact__textarea::placeholder {
  color: #BEC5CA;
}

@media only screen and (max-width: 1250px) {
  .contact__textarea {
    width: 350px;
  }
}

@media only screen and (max-width: 880px) {
  .contact__textarea {
    width: 90%;
  }
}

.contact__submit {
  padding: 16px 32px;
  color: white;
  background: #F01159;
  border: 2px solid #F01159;
  font-weight: 600;
  font-size: 16px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-family: inherit;
  border-radius: 16px;
  margin: 0 0 0 auto;
}

.contact__submit:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #F01159;
  background: white;
  cursor: pointer;
}

@media only screen and (max-width: 880px) {
  .contact__submit {
    padding: 8px 20px;
    border-radius: 10px;
    margin: 0;
  }
}

.my-account {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: white;
  padding: 120px 20px;
}

@media only screen and (max-width: 1070px) {
  .my-account {
    padding: 50px 20px;
  }
}

@media only screen and (max-width: 1070px) {
  .my-account {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.my-account__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 140px 0 0;
}

@media only screen and (max-width: 1360px) {
  .my-account__menu {
    margin: 0 100px 0 0;
  }
}

@media only screen and (max-width: 1070px) {
  .my-account__menu {
    margin: 0 0 20px 0;
    width: 100%;
    padding: 0 10px;
  }
}

.my-account__welcome {
  font-weight: 400;
  font-size: 14px;
  color: #6C7A84;
  margin: 0 0 6px 0;
}

.my-account__username {
  font-weight: 500;
  font-size: 28px;
  line-height: 28px;
  color: #001524;
  margin: 0 0 78px 0;
}

@media only screen and (max-width: 1070px) {
  .my-account__username {
    margin: 0 0 50px 0;
    font-size: 24px;
  }
}

.my-account__gridContainer {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  width: 290px;
}

@media only screen and (max-width: 1360px) {
  .my-account__gridContainer {
    width: 200px;
  }
}

@media only screen and (max-width: 1070px) {
  .my-account__gridContainer {
    width: 100%;
  }
}

.my-account__menuElement {
  width: 100%;
  border-bottom: 1px solid #E9F2F4;
  padding: 0 0 20px 0;
  outline: hidden;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 0 22px 0;
}

.my-account__menuElement:hover .my-account__menuTitle {
  color: #F01159;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.my-account__icon {
  margin: 0 24px 0 0;
  width: 24px;
  height: 24px;
}

.my-account__menuTitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #001524;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.my-account__menuTitle--active {
  color: #F01159;
}

.my-account__infoContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media only screen and (max-width: 1070px) {
  .my-account__infoContainer {
    width: 100%;
  }
}

.my-account__h1 {
  font-weight: 400;
  font-size: 26px;
  color: #001524;
}

@media only screen and (max-width: 730px) {
  .my-account__h1 {
    font-size: 20px;
  }
}

.my-account__orders {
  margin: 63px 0 54px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 20px;
  width: 840px;
}

@media only screen and (max-width: 1360px) {
  .my-account__orders {
    width: 700px;
  }
}

@media only screen and (max-width: 1070px) {
  .my-account__orders {
    width: 100%;
  }
}

@media only screen and (max-width: 730px) {
  .my-account__orders {
    margin: 30px 0 40px 0;
    gap: 10px;
  }
}

.my-account__orderElement {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 12px;
  border-radius: 12px;
  border: 1px solid #E9F2F4;
  padding: 16px 24px;
}

.my-account__orderElement .row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 730px) {
  .my-account__orderElement .row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media only screen and (max-width: 500px) {
  .my-account__orderElement {
    padding: 10px 12px;
  }
}

.my-account__orderTitle {
  font-weight: 500;
  font-size: 22px;
  color: #001524;
  margin: 0 auto 0 0;
}

@media only screen and (max-width: 730px) {
  .my-account__orderTitle {
    font-size: 16px;
  }
}

.my-account__dots {
  border: none;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  outline: none;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 100%;
}

.my-account__dots:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
  background: #E9F2F4;
}

.my-account__dots i {
  color: #001524;
  font-size: 17px;
}

.my-account__invoiceDropdown {
  width: 150px;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #001524;
  -webkit-box-shadow: 0px 12px 32px rgba(0, 21, 36, 0.12);
          box-shadow: 0px 12px 32px rgba(0, 21, 36, 0.12);
  border-radius: 12px;
  color: white;
  font-family: "Poppins", sans-serif !important;
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
  outline: none;
  position: absolute;
  right: -30px;
  top: calc(100% + 7px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: none;
}

.my-account__invoiceDropdown img {
  width: 24px;
  margin: 0 18px 0 0;
}

.my-account__invoiceDropdown:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.8;
}

.my-account__invoiceDropdown::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent #001524 transparent;
  content: " ";
  position: absolute;
  top: -8px;
  right: 42px;
}

.my-account__invoiceDropdown--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.my-account__coinIcon {
  width: 30px;
  height: 30px;
  border: 1px solid #E9F2F4;
  border-radius: 100%;
  margin: 0 16px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.my-account__coinIcon img {
  height: 30px;
}

@media only screen and (max-width: 730px) {
  .my-account__coinIcon {
    margin: 0 10px 0 0;
  }
}

.my-account__priceWrapper {
  margin: 0 auto 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.my-account__priceWrapper .bigPrice {
  margin: 0 8px 0 0;
  font-weight: 500;
  font-size: 16px;
  color: #001524;
}

@media only screen and (max-width: 730px) {
  .my-account__priceWrapper .bigPrice {
    font-size: 14px;
  }
}

.my-account__priceWrapper .smallPrice {
  color: #6C7A84;
  font-weight: 400;
  font-size: 14px;
}

@media only screen and (max-width: 730px) {
  .my-account__priceWrapper .smallPrice {
    font-size: 12px;
  }
}

.my-account__date {
  margin: 0 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.my-account__date .smallText {
  font-weight: 400;
  font-size: 14px;
  margin: 0 8px 0 0;
  color: #6C7A84;
}

.my-account__date .date {
  color: #001524;
  font-weight: 500;
  font-size: 16px;
}

@media only screen and (max-width: 730px) {
  .my-account__date {
    margin: 0 auto 0 0;
  }
  .my-account__date .smallText {
    font-size: 12px;
  }
  .my-account__date .date {
    font-size: 14px;
  }
}

.my-account__help {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.my-account__h3 {
  font-weight: 400;
  font-size: 14px;
  color: #6C7A84;
  margin: 0 0 8px 8px;
}

.my-account__h3--top {
  margin: 0 auto 0 0;
}

.my-account__chatCloud {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: white;
  border: 1px solid #E9F2F4;
  padding: 12px 24px 12px 12px;
  border-radius: 32px;
}

.my-account__chatIcon {
  width: 70px;
  height: 70px;
  border: 1px solid #E9F2F4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 25px 0 0;
  border-radius: 20px;
}

.my-account__chatIcon i {
  color: #001524;
  font-size: 24px;
}

@media only screen and (max-width: 500px) {
  .my-account__chatIcon {
    width: 40px;
    height: 40px;
    margin: 0 15px 0 0;
    border-radius: 10px;
  }
  .my-account__chatIcon i {
    font-size: 14px;
  }
}

.my-account__chatInfoTitle {
  font-weight: 400;
  font-size: 14px;
  margin: 0 12px 0 0;
  color: #6C7A84;
  white-space: nowrap;
}

@media only screen and (max-width: 500px) {
  .my-account__chatInfoTitle {
    font-size: 13px;
  }
}

.my-account__chatButton {
  font-weight: 600;
  font-size: 14px;
  color: #F01159;
  padding: 8px 16px;
  outline: none;
  text-decoration: none;
  background: white;
  margin: 0 0 0 13px;
  border: 2px solid #F01159;
  border-radius: 12px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  white-space: nowrap;
}

.my-account__chatButton:hover {
  cursor: pointer;
  color: white;
  background: #F01159;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media only screen and (max-width: 500px) {
  .my-account__chatButton {
    font-size: 12px;
    padding: 6px 12px;
    margin: 0 0 0 5px;
  }
}

.my-account__titleRow {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 24px 0 70px 0;
}

@media only screen and (max-width: 630px) {
  .my-account__titleRow {
    margin: 20px 0 40px 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
}

.my-account__titleRow--settings {
  margin: 24px 0 30px 0;
}

.my-account__downloadAll {
  margin: 0 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  outline: none;
  text-decoration: none;
  color: #F01159;
  font-weight: 500;
  font-size: 14px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.my-account__downloadAll i {
  margin: 0 12px 0 0;
  font-size: 20px;
}

@media only screen and (max-width: 630px) {
  .my-account__downloadAll {
    font-size: 12px;
  }
  .my-account__downloadAll i {
    font-size: 14px;
  }
}

@media only screen and (max-width: 478px) {
  .my-account__downloadAll {
    margin: 0 auto 0 0;
  }
}

.my-account__downloadAll:hover {
  opacity: 0.5;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.my-account__payments {
  margin: 0 0 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media only screen and (max-width: 1070px) {
  .my-account__payments {
    width: 100%;
  }
}

.my-account__gridTab {
  width: 840px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
  margin: 0 0 20px 0;
}

.my-account__gridTab--border {
  padding: 0 0 10px 0;
  border-bottom: 1px solid #E9F2F4;
}

.my-account__gridTab .title {
  font-weight: 400;
  font-size: 14px;
  color: #6C7A84;
}

@media only screen and (max-width: 450px) {
  .my-account__gridTab .title {
    font-size: 12px;
  }
}

.my-account__gridTab .value {
  color: #001524;
  font-weight: 500;
  font-size: 14px;
}

@media only screen and (max-width: 450px) {
  .my-account__gridTab .value {
    font-size: 12px;
  }
}

@media only screen and (max-width: 1200px) {
  .my-account__gridTab {
    width: 700px;
  }
}

@media only screen and (max-width: 1070px) {
  .my-account__gridTab {
    width: 100%;
  }
}

@media only screen and (max-width: 630px) {
  .my-account__gridTab {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.my-account__viewInvoiceBtn {
  margin: 0 20px 0 auto;
  font-weight: 600;
  font-size: 12px;
  color: #BEC5CA;
  padding: 4px 12px;
  border: 2px solid #E9F2F4;
  border-radius: 12px;
  outline: none;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  white-space: nowrap;
  -ms-grid-column: 5;
      grid-column-start: 5;
  grid-column-end: 5;
}

.my-account__viewInvoiceBtn:hover {
  opacity: 0.6;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media only screen and (max-width: 630px) {
  .my-account__viewInvoiceBtn {
    -ms-grid-column: auto;
        grid-column-start: auto;
    grid-column-end: auto;
  }
}

@media only screen and (max-width: 450px) {
  .my-account__viewInvoiceBtn {
    margin: 0 0 0 auto;
    font-size: 10px;
  }
}

.my-account__editContainer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin: 0 0 50px 0;
}

@media only screen and (max-width: 450px) {
  .my-account__editContainer {
    margin: 0 0 30px 0;
  }
}

.my-account__editElement {
  padding: 16px 24px;
  width: 840px;
  border: 1px solid #E9F2F4;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 1200px) {
  .my-account__editElement {
    width: 700px;
  }
}

@media only screen and (max-width: 1070px) {
  .my-account__editElement {
    width: 100%;
  }
}

@media only screen and (max-width: 450px) {
  .my-account__editElement {
    padding: 12px 16px;
  }
}

.my-account__editTitle {
  width: 100%;
  font-weight: 500;
  font-size: 22px;
  color: #001524;
  margin: 0 0 20px 0;
}

@media only screen and (max-width: 450px) {
  .my-account__editTitle {
    font-size: 18px;
  }
}

.my-account__rowWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 0 0;
}

.my-account__rowWrapper .icon {
  width: 20px;
  margin: 0 16px 0 0;
}

.my-account__rowWrapper .value {
  font-weight: 500;
  font-size: 16px;
  color: #001524;
}

@media only screen and (max-width: 450px) {
  .my-account__rowWrapper .value {
    font-size: 14px;
  }
}

.my-account__editButton {
  margin: 0 0 0 auto;
  font-weight: 500;
  font-size: 14px;
  color: #F01159;
  outline: none;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.my-account__editButton:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.6;
}

@media only screen and (max-width: 450px) {
  .my-account__editButton {
    font-size: 12px;
  }
}

.my-account__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 0 32px 0;
}

.my-account__submit {
  color: white;
  background: #F01159;
  border: 2px solid red;
  padding: 16px 32px;
  border-radius: 16px;
  outline: none;
  text-decoration: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin: 16px 0 0 0;
}

.my-account__submit:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
  background: transparent;
  color: #F01159;
}

@media only screen and (max-width: 450px) {
  .my-account__submit {
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 10px;
  }
}

.my-account__inputHidden {
  display: none;
}

.my-account__inputHidden:checked + .checkbox {
  background: #F01159 !important;
  border: 1px solid #F01159 !important;
}

.my-account__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 400;
  font-size: 14px;
  color: #001524;
  margin: 0 0 16px 0;
}

.my-account__label:hover {
  cursor: pointer;
}

.my-account__label .checkbox {
  margin: 0 16px 0 0;
  border: 1px solid #BEC5CA;
  border-radius: 8px;
  width: 28px;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.my-account__label .checkbox i {
  color: white;
  font-size: 15px;
}

@media only screen and (max-width: 450px) {
  .my-account__label {
    font-size: 12px;
  }
  .my-account__label .checkbox {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    margin: 0 10px 0 0;
    border-radius: 6px;
  }
  .my-account__label .checkbox i {
    font-size: 10px;
  }
}

.about-us {
  width: calc(100% - 96px);
  margin: 0 auto 120px auto;
  background: #E9F2F4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 120px 30px;
  border-radius: 24px;
}

@media only screen and (max-width: 1450px) {
  .about-us {
    margin: 0 auto 80px auto;
    width: calc(100% - 60px);
    padding: 90px 20px;
  }
}

@media only screen and (max-width: 830px) {
  .about-us {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 40px 10px;
    width: 90%;
  }
}

.about-us__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media only screen and (max-width: 830px) {
  .about-us__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.about-us__h1 {
  font-weight: 500;
  font-size: 14px;
  color: #001524;
  margin: 0 0 32px 0;
}

@media only screen and (max-width: 1450px) {
  .about-us__h1 {
    margin: 0 0 20px 0;
  }
}

.about-us__h2 {
  font-weight: 500;
  font-size: 68px;
  line-height: 82px;
  color: #001524;
  margin: 0 0 70px 0;
  max-width: 816px;
}

@media only screen and (max-width: 1450px) {
  .about-us__h2 {
    font-size: 44px;
    line-height: 52px;
    margin: 0 0 50px 0;
  }
}

@media only screen and (max-width: 1130px) {
  .about-us__h2 {
    font-size: 30px;
    line-height: 42px;
  }
}

@media only screen and (max-width: 830px) {
  .about-us__h2 {
    width: 100%;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    margin: 0 0 20px 0;
  }
}

.about-us__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about-us__row .icon {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 20px 0 0;
}

.about-us__row .icon img {
  height: 24px;
}

@media only screen and (max-width: 830px) {
  .about-us__row .icon {
    width: 30px;
    height: 30px;
    margin: 0 10px 0 0;
  }
  .about-us__row .icon img {
    height: 18px;
  }
}

.about-us__row .text {
  font-weight: 500;
  font-size: 12px;
  color: #BEC5CA;
}

.about-us__img {
  width: 730px;
  position: relative;
}

@media only screen and (max-width: 1450px) {
  .about-us__img {
    width: 600px;
  }
}

@media only screen and (max-width: 1130px) {
  .about-us__img {
    width: 400px;
  }
}

@media only screen and (max-width: 830px) {
  .about-us__img {
    width: 90%;
    max-width: 360px;
    margin: 40px 0 0 0;
  }
}

.about-info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about-info__title {
  margin: 0 0 32px 0;
  font-weight: 500;
  font-size: 14px;
  color: #001524;
  text-align: center;
}

@media only screen and (max-width: 1330px) {
  .about-info__title {
    margin: 0 0 20px 0;
  }
}

.about-info__bigTitle {
  text-align: center;
  font-weight: 500;
  font-size: 48px;
  line-height: 64px;
  color: #001524;
  margin: 0 0 122px 0;
  max-width: 1280px;
}

@media only screen and (max-width: 1330px) {
  .about-info__bigTitle {
    font-size: 30px;
    line-height: 42px;
    margin: 0 0 80px 0;
  }
}

@media only screen and (max-width: 1100px) {
  .about-info__bigTitle {
    margin: 0 0 40px 0;
    font-size: 22px;
    line-height: 28px;
    width: 90%;
  }
}

.about-info__aboutWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 180px 0;
  gap: 140px;
}

@media only screen and (max-width: 1330px) {
  .about-info__aboutWrapper {
    margin: 0 0 100px 0;
    gap: 80px;
  }
}

@media only screen and (max-width: 1100px) {
  .about-info__aboutWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin: 0 0 60px 0;
    gap: 60px;
  }
}

.about-info__picture {
  width: 515px;
  height: 530px;
  border-radius: 32px;
  background: #E9F2F4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

@media only screen and (max-width: 1330px) {
  .about-info__picture {
    height: 480px;
    width: 420px;
  }
}

@media only screen and (max-width: 1100px) {
  .about-info__picture {
    width: 90%;
    max-width: 400px;
    height: 450px;
  }
}

.about-info__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 36px 25px;
  font-weight: 500;
  font-size: 18px;
  color: #003458;
  width: 100%;
}

.about-info__wrapper img {
  margin: 0 14px 0 0;
  width: 40px;
  height: 40px;
}

.about-info__wrapper--mission img {
  width: 68px;
  height: 68px;
}

@media only screen and (max-width: 400px) {
  .about-info__wrapper {
    padding: 26px 20px;
    font-size: 14px;
  }
  .about-info__wrapper img {
    margin: 0 10px 0 0;
    width: 30px;
    height: 30px;
  }
  .about-info__wrapper--mission img {
    width: 40px;
    height: 40px;
  }
}

.about-info__imgBackground {
  width: 100%;
  height: 100%;
  background-image: url("images/about-1.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.about-info__imgBackground--mission {
  background-image: url("images/about-2.jpg");
}

.about-info__imgBackground img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 180px;
}

.about-info__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 406px;
}

.about-info__text--mission {
  max-width: 515px;
}

@media only screen and (max-width: 1100px) {
  .about-info__text {
    width: 90%;
    max-width: 800px;
  }
  .about-info__text--mission {
    max-width: 800px;
  }
}

.about-info__h4 {
  color: #001524;
  margin: 0 0 20px 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
}

@media only screen and (max-width: 1100px) {
  .about-info__h4 {
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 13px 0;
  }
}

.about-info__p {
  color: #6C7A84;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}

@media only screen and (max-width: 1100px) {
  .about-info__p {
    font-size: 12px;
  }
}

.about-info__h3 {
  margin: 0 0 40px 0;
  font-weight: 500;
  font-size: 48px;
  line-height: 64px;
  color: #001524;
}

@media only screen and (max-width: 1100px) {
  .about-info__h3 {
    font-size: 30px;
    line-height: 42px;
  }
}

@media only screen and (max-width: 700px) {
  .about-info__h3 {
    font-size: 24px;
    line-height: 32px;
  }
}

.about-info__h5 {
  margin: 0 0 32px 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #BEC5CA;
}

.servers {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  margin: 80px auto 0 auto;
}

@media only screen and (max-width: 1200px) {
  .servers {
    margin: 40px auto 0 auto;
  }
}

@media only screen and (max-width: 880px) {
  .servers {
    width: 100%;
    padding: 20px 10px;
    margin: 20px auto 0 auto;
  }
}

.servers__back {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  outline: none;
  text-decoration: none;
  margin: 0 0 50px 0;
  font-weight: 500;
  font-size: 14px;
  color: #6C7A84;
}

.servers__back span {
  width: 24px;
  height: 24px;
  background: white;
  -webkit-box-shadow: 0px 12px 32px rgba(0, 21, 36, 0.12);
          box-shadow: 0px 12px 32px rgba(0, 21, 36, 0.12);
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 12px 0 0;
}

.servers__back span i {
  font-size: 10px;
  color: #6C7A84;
}

@media only screen and (max-width: 880px) {
  .servers__back {
    margin: 0 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.servers__h1 {
  color: #001524;
  font-weight: 500;
  font-size: 64px;
  margin: 0 0 80px 0;
}

@media only screen and (max-width: 880px) {
  .servers__h1 {
    margin: 0 0 20px 0;
    font-size: 26px;
    width: 100%;
    text-align: center;
  }
}

.servers__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 880px) {
  .servers__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.servers__menu {
  margin: 0 170px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media only screen and (max-width: 1320px) {
  .servers__menu {
    margin: 0 90px 0 0;
  }
}

@media only screen and (max-width: 880px) {
  .servers__menu {
    margin: 0 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 14px;
  }
}

.servers__inputHidden {
  display: none;
}

.servers__inputHidden:checked + .checkbox {
  background: #F01159 !important;
  border: 1px solid #F01159 !important;
}

.servers__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 400;
  font-size: 14px;
  color: #001524;
  margin: 0 0 16px 0;
}

.servers__label:hover {
  cursor: pointer;
}

.servers__label .checkbox {
  margin: 0 16px 0 0;
  border: 1px solid #BEC5CA;
  border-radius: 8px;
  width: 28px;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.servers__label .checkbox i {
  color: white;
  font-size: 15px;
}

.servers__label .number {
  margin: 0 0 0 4px;
  font-weight: 400;
  font-size: 14px;
  color: #6C7A84;
}

@media only screen and (max-width: 500px) {
  .servers__label {
    margin: 0 0 10px 0;
  }
  .servers__label .checkbox {
    margin: 0 8px 0 0;
    width: 20px;
    height: 20px;
    border-radius: 4px;
  }
  .servers__label .checkbox i {
    font-size: 10px;
  }
}

.servers__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}

@media only screen and (max-width: 1320px) {
  .servers__list {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 500px) {
  .servers__list {
    width: 100%;
    justify-items: center;
  }
}

.servers__element {
  width: 430px;
  height: 690px;
  border-radius: 20px;
  background: #E9F2F4;
  border: 1px solid #E9F2F4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

@media only screen and (max-width: 1320px) {
  .servers__element {
    width: 400px;
  }
}

@media only screen and (max-width: 500px) {
  .servers__element {
    width: 100%;
    max-width: 430px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.servers__buyBtn {
  margin: 20px 0;
  outline: none;
  text-decoration: none;
  background: #F01159;
  border: 1px solid #F01159;
  color: white;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 16px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.servers__buyBtn:hover {
  background: transparent;
  color: #F01159;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media only screen and (max-width: 500px) {
  .servers__buyBtn {
    margin: 10px 0;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 10px;
  }
}

.servers__info {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 0 0 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 32px 32px 10px 32px;
}

@media only screen and (max-width: 500px) {
  .servers__info {
    padding: 20px 12px 10px 20px;
  }
}

.servers__infoRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin: 0 0 25px 0;
}

.servers__infoRow--title {
  margin: 0 0 14px 0;
}

.servers__title {
  font-weight: 500;
  font-size: 28px;
  color: #001524;
  margin: 0 auto 0 0;
}

.servers__stock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4px 10px;
  border: 1px solid #E9F2F4;
  border-radius: 15px;
  font-weight: 500;
  font-size: 12px;
  color: #BEC5CA;
}

.servers__stock i {
  margin: 0 6px 0 0;
  color: #11F015;
  font-size: 16px;
}

.servers__coinIcon {
  width: 30px;
  height: 30px;
  border: 1px solid #E9F2F4;
  border-radius: 100%;
  margin: 0 16px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.servers__coinIcon img {
  height: 30px;
}

@media only screen and (max-width: 1320px) {
  .servers__coinIcon {
    margin: 0 10px 0 0;
  }
}

.servers__priceWrapper {
  margin: 0 auto 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.servers__priceWrapper .bigPrice {
  margin: 0 8px 0 0;
  font-weight: 500;
  font-size: 16px;
  color: #001524;
}

@media only screen and (max-width: 1320px) {
  .servers__priceWrapper .bigPrice {
    font-size: 14px;
  }
}

.servers__priceWrapper .smallPrice {
  color: #6C7A84;
  font-weight: 400;
  font-size: 14px;
}

@media only screen and (max-width: 1320px) {
  .servers__priceWrapper .smallPrice {
    font-size: 12px;
  }
}

.servers__specs {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #E9F2F4;
}

.servers__specs--last {
  border: none;
}

.servers__specTitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #6C7A84;
}

.servers__specInfo {
  color: #001524;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}

@media only screen and (max-width: 1320px) {
  .servers__specInfo {
    font-size: 12px;
    line-height: 20px;
  }
}

.servers__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 8px;
  margin: 20px 0 120px  0;
}

@media only screen and (max-width: 500px) {
  .servers__pagination {
    margin: 20px 0 60px 0;
    gap: 14px;
  }
}

.servers__page {
  width: 56px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 14px;
  color: #6C7A84;
  outline: none;
  text-decoration: none;
  border-radius: 100%;
}

.servers__page--current {
  color: #001524;
  border: 1px solid #E9F2F4;
}

@media only screen and (max-width: 500px) {
  .servers__page {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}

.servers__nextPage {
  width: 56px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 14px;
  outline: none;
  text-decoration: none;
  border-radius: 100%;
  border: 1px solid #E9F2F4;
}

.servers__nextPage i {
  color: #001524;
  font-size: 20px;
}

@media only screen and (max-width: 500px) {
  .servers__nextPage {
    height: 30px;
    width: 30px;
  }
  .servers__nextPage i {
    font-size: 12px;
  }
}

.main {
  width: calc(100% - 96px);
  margin: 30px auto 0 auto;
  border-radius: 24px;
  background: #E9F2F4;
  padding: 50px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 1560px) {
  .main {
    width: calc(100% - 20px);
  }
}

@media only screen and (max-width: 1470px) {
  .main {
    padding: 20px 0 0 0;
  }
}

.main__mainTitleRow {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 800px) {
  .main__mainTitleRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.main__hero {
  width: 100%;
  max-width: 1000px;
}

@media only screen and (max-width: 800px) {
  .main__hero {
    width: 100%;
    max-width: 300px;
  }
}

.main__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-transform: translateX(140px);
          transform: translateX(140px);
}

@media only screen and (max-width: 1560px) {
  .main__text {
    -webkit-transform: translateX(90px);
            transform: translateX(90px);
  }
}

@media only screen and (max-width: 1200px) {
  .main__text {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
}

@media only screen and (max-width: 800px) {
  .main__text {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: 100%;
    padding: 0 10px;
  }
}

.main__h2 {
  font-weight: 500;
  font-size: 14px;
  color: #003458;
  margin: 0 0 30px 0;
}

@media only screen and (max-width: 1200px) {
  .main__h2 {
    margin: 0 0 15px 0;
  }
}

@media only screen and (max-width: 800px) {
  .main__h2 {
    width: 100%;
    text-align: center;
  }
}

.main__h1 {
  font-weight: 500;
  font-size: 94px;
  line-height: 113px;
  color: #001524;
  max-width: 690px;
  min-width: 690px;
  margin: 0 0 33px 0;
}

@media only screen and (max-width: 1560px) {
  .main__h1 {
    font-size: 60px;
    line-height: 80px;
  }
}

@media only screen and (max-width: 1200px) {
  .main__h1 {
    font-size: 30px;
    line-height: 42px;
    max-width: 220px;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}

@media only screen and (max-width: 800px) {
  .main__h1 {
    font-size: 26px;
    line-height: 32px;
    text-align: center;
    max-width: 100%;
    min-width: 100%;
  }
}

.main__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
}

@media only screen and (max-width: 1200px) {
  .main__buttons {
    gap: 30px;
  }
}

@media only screen and (max-width: 800px) {
  .main__buttons {
    width: 100%;
    gap: 20px;
  }
}

@media only screen and (max-width: 470px) {
  .main__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.main__buttons .swissix {
  outline: none;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 24px;
  background: #F0F5F7;
  -webkit-box-shadow: 0px 12px 32px rgba(0, 21, 36, 0.12);
          box-shadow: 0px 12px 32px rgba(0, 21, 36, 0.12);
  border-radius: 32px;
  font-weight: 500;
  font-size: 18px;
  color: #001524;
}

.main__buttons .swissix img {
  width: 68px;
  height: 68px;
  margin: 0 14px 0 0;
}

@media only screen and (max-width: 1470px) {
  .main__buttons .swissix {
    font-size: 16px;
    padding: 10px 20px;
  }
  .main__buttons .swissix img {
    height: 48px;
    width: 48px;
    margin: 0 10px 0 0;
  }
}

@media only screen and (max-width: 1200px) {
  .main__buttons .swissix {
    font-size: 13px;
    padding: 8px 16px;
    white-space: nowrap;
  }
  .main__buttons .swissix img {
    height: 30px;
    width: 30px;
    margin: 0 10px 0 0;
  }
}

.main__buttons .livechat {
  outline: none;
  text-decoration: none;
  color: #001524;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 18px;
}

.main__buttons .livechat i {
  font-size: 30px;
  margin: 0 20px 0 0;
}

@media only screen and (max-width: 1470px) {
  .main__buttons .livechat {
    font-size: 16px;
  }
  .main__buttons .livechat i {
    font-size: 24px;
    margin: 0 15px 0 0;
  }
}

@media only screen and (max-width: 1200px) {
  .main__buttons .livechat {
    font-size: 13px;
    white-space: nowrap;
  }
  .main__buttons .livechat i {
    font-size: 16px;
    margin: 0 10px 0 0;
  }
}

.main__scrollDown {
  margin: 67px 0 57px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main__scrollDown .icon {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 20px 0 0;
}

.main__scrollDown .icon img {
  height: 24px;
}

.main__scrollDown .text {
  font-weight: 500;
  font-size: 12px;
  color: #BEC5CA;
}

@media only screen and (max-width: 800px) {
  .main__scrollDown {
    margin: 20px 0;
    width: 100%;
  }
}

.main__swiper {
  width: 100%;
  max-width: 1400px;
  padding: 0 0 46px 0 !important;
}

@media only screen and (max-width: 1470px) {
  .main__swiper {
    max-width: calc(100vw - 60px);
  }
}

@media only screen and (max-width: 800px) {
  .main__swiper {
    max-width: calc(100vw - 40px);
  }
}

.main__swiper-slide {
  width: 330px;
  height: 410px;
  padding: 16px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-radius: 24px !important;
}

.main__swiper-slide:hover {
  background: white;
  -webkit-transition: 1s background;
  transition: 1s background;
}

.main__swiper-slide:hover .main__slideLink {
  background: #F01159;
  color: white;
  -webkit-transition: 1s background;
  transition: 1s background;
}

@media only screen and (max-width: 800px) {
  .main__swiper-slide {
    width: 260px;
    height: 340px;
    padding: 16px 20px;
    border-radius: 16px;
  }
}

.main__slideTitle {
  font-weight: 500;
  font-size: 28px;
  color: #001524;
  margin: 0 0 24px 0;
}

@media only screen and (max-width: 800px) {
  .main__slideTitle {
    font-size: 18px;
    margin: 0 0 16px 0;
  }
}

.main__slideText {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #6C7A84;
  margin: 0 0 40px 0;
}

@media only screen and (max-width: 800px) {
  .main__slideText {
    font-size: 12px;
    line-height: 20px;
    margin: 0 0 20px 0;
  }
}

.main__slidePrice {
  font-weight: 600;
  font-size: 16px;
  color: #6C7A84;
  margin: 0 0 18px 0;
  width: 100%;
  text-align: center;
}

@media only screen and (max-width: 800px) {
  .main__slidePrice {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.main__slideLink {
  background: #E9F2F4;
  padding: 12px 88px;
  font-weight: 600;
  font-size: 16px;
  color: #001524;
  -webkit-box-shadow: 0px 12px 32px rgba(0, 21, 36, 0.12);
          box-shadow: 0px 12px 32px rgba(0, 21, 36, 0.12);
  border-radius: 16px;
  margin: auto 0 0 0;
  outline: none;
  text-decoration: none;
  -webkit-transition: 1s background;
  transition: 1s background;
}

@media only screen and (max-width: 800px) {
  .main__slideLink {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 8px;
    margin: auto auto 0 auto;
  }
}

.main__swiper-scrollbar {
  width: 100% !important;
}

.main .swiper-slide-active {
  background: white;
  -webkit-transition: 1s background;
  transition: 1s background;
}

.main .swiper-slide-active .main__slideLink {
  background: #F01159;
  color: white;
  -webkit-transition: 1s background;
  transition: 1s background;
}

.main .swiper-slide {
  border-radius: 24px;
  -webkit-transition: 1s background;
  transition: 1s background;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.main .swiper-scrollbar-drag {
  background: #F01159 !important;
}

.main .swiper-horizontal > .swiper-scrollbar, .main .swiper-scrollbar.swiper-scrollbar-horizontal {
  left: 0 !important;
}

.main__swiperAllLink {
  outline: none;
  text-decoration: none;
  margin: 20px 0 60px 0;
  width: 100%;
  max-width: 1400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-weight: 500;
  font-size: 14px;
  color: #6C7A84;
}

.main__swiperAllLink span {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: white;
  -webkit-box-shadow: 0px 12px 32px rgba(0, 21, 36, 0.12);
          box-shadow: 0px 12px 32px rgba(0, 21, 36, 0.12);
  border-radius: 8px;
  margin: 0 0 0 12px;
}

.main__swiperAllLink span i {
  color: #6C7A84;
  font-size: 12px;
}

@media only screen and (max-width: 1460px) {
  .main__swiperAllLink {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 800px) {
  .main__swiperAllLink {
    margin: 20px 0 30px 0;
  }
}

.main__swiper--nextBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100px;
  background: linear-gradient(89.38deg, rgba(233, 242, 244, 0) -10.21%, #E9F2F4 56.94%);
  height: calc(100% - 10px);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  cursor: pointer;
}

.main__swiper--nextBtn .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 78px;
  background: white;
  border-radius: 20px;
  -webkit-box-shadow: 0px 12px 32px rgba(0, 21, 36, 0.12);
          box-shadow: 0px 12px 32px rgba(0, 21, 36, 0.12);
  border: none;
  outline: none;
  margin: 0 0 50px 0;
  cursor: pointer;
}

.main__swiper--nextBtn .btn i {
  font-size: 24px;
  color: #001524;
}

@media only screen and (max-width: 800px) {
  .main__swiper--nextBtn {
    width: 60px;
  }
  .main__swiper--nextBtn .btn {
    width: 40px;
    height: 56px;
    border-radius: 12px;
    margin: 0 0 30px 0;
  }
  .main__swiper--nextBtn .btn i {
    font-size: 16px;
  }
}

.main__swiper--prevBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100px;
  background: linear-gradient(89.38deg, #E9F2F4 -10.21%, rgba(233, 242, 244, 0) 56.94%);
  height: calc(100% - 10px);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  cursor: pointer;
}

.main__swiper--prevBtn .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 78px;
  background: white;
  border-radius: 20px;
  -webkit-box-shadow: 0px 12px 32px rgba(0, 21, 36, 0.12);
          box-shadow: 0px 12px 32px rgba(0, 21, 36, 0.12);
  border: none;
  outline: none;
  margin: 0 0 50px 0;
  cursor: pointer;
}

.main__swiper--prevBtn .btn i {
  font-size: 24px;
  color: #001524;
}

@media only screen and (max-width: 800px) {
  .main__swiper--prevBtn {
    width: 60px;
  }
  .main__swiper--prevBtn .btn {
    width: 40px;
    height: 56px;
    border-radius: 12px;
    margin: 0 0 30px 0;
  }
  .main__swiper--prevBtn .btn i {
    font-size: 16px;
  }
}

.main .swiper-button-disabled {
  display: none;
}

.personal {
  padding: 150px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  background: white;
}

@media only screen and (max-width: 1300px) {
  .personal {
    padding: 60px 20px;
  }
}

@media only screen and (max-width: 840px) {
  .personal {
    padding: 30px 10px;
  }
}

@media only screen and (max-width: 720px) {
  .personal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.personal__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 515px;
  height: 540px;
  border-radius: 32px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("images/personal.png");
  padding: 67px 0 0 42px;
  margin: 0 250px 0 0;
}

@media only screen and (max-width: 1300px) {
  .personal__left {
    margin: 0 100px 0 0;
    padding: 50px 0 0 30px;
    width: 400px;
    height: 420px;
  }
}

@media only screen and (max-width: 840px) {
  .personal__left {
    width: 300px;
    min-width: 280px;
    height: 360px;
    margin: 0 60px 0 0;
  }
}

@media only screen and (max-width: 720px) {
  .personal__left {
    width: 100%;
    height: 150px;
    margin: 0 0 30px 0;
    border-radius: 16px;
    padding: 10px 0 0 20px;
  }
}

.personal__dataProtection {
  padding: 18px 29px;
  background: #F0F5F7;
  -webkit-box-shadow: 0px 12px 32px rgba(0, 21, 36, 0.12);
          box-shadow: 0px 12px 32px rgba(0, 21, 36, 0.12);
  border-radius: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 14px;
  color: #BEC5CA;
}

.personal__dataProtection img {
  height: 32px;
  width: 32px;
  margin: 0 23px 0 0;
}

@media only screen and (max-width: 1300px) {
  .personal__dataProtection {
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 12px;
  }
  .personal__dataProtection img {
    width: 24px;
    height: 24px;
    margin: 0 10px 0 0;
  }
}

.personal__right {
  max-width: 406px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media only screen and (max-width: 720px) {
  .personal__right {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
  }
}

.personal__smallTitle {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #BEC5CA;
  margin: 0 0 32px 0;
}

@media only screen and (max-width: 1300px) {
  .personal__smallTitle {
    margin: 0 0 16px 0;
  }
}

@media only screen and (max-width: 840px) {
  .personal__smallTitle {
    font-size: 12px;
    line-height: 19px;
    margin: 0 0 10px 0;
  }
}

.personal__bigTitle {
  font-weight: 500;
  font-size: 48px;
  line-height: 64px;
  color: #001524;
  margin: 0 0 40px 0;
}

@media only screen and (max-width: 1300px) {
  .personal__bigTitle {
    font-size: 30px;
    line-height: 42px;
    margin: 0 0 20px 0;
  }
}

@media only screen and (max-width: 840px) {
  .personal__bigTitle {
    font-size: 20px;
    line-height: 32px;
    margin: 0 0 14px 0;
  }
}

.personal__bigDescription {
  margin: 0 0 20px 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #001524;
}

@media only screen and (max-width: 1300px) {
  .personal__bigDescription {
    margin: 0 0 10px 0;
    font-size: 16px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 840px) {
  .personal__bigDescription {
    font-size: 13px;
    line-height: 21px;
  }
}

.personal__smallDescription {
  margin: 0 0 80px 0;
  color: #6C7A84;
  font-size: 13px;
  line-height: 22px;
}

@media only screen and (max-width: 1300px) {
  .personal__smallDescription {
    margin: 0 0 40px 0;
  }
}

.personal__link {
  color: white;
  border: 1px solid #F01159;
  background: #F01159;
  padding: 16px 32px;
  border-radius: 16px;
  outline: none;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  font-size: 16px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.personal__link:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: white;
  color: #F01159;
}

@media only screen and (max-width: 1300px) {
  .personal__link {
    padding: 10px 20px;
    font-size: 12px;
    border-radius: 10px;
  }
}

.whyus {
  width: 100%;
  padding: 150px 20px;
  background: #E9F2F4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 1420px) {
  .whyus {
    padding: 60px 20px;
  }
}

@media only screen and (max-width: 880px) {
  .whyus {
    padding: 30px 10px;
  }
}

@media only screen and (max-width: 820px) {
  .whyus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.whyus__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 140px 0 0;
}

@media only screen and (max-width: 1420px) {
  .whyus__left {
    margin: 0 80px 0 0;
  }
}

@media only screen and (max-width: 820px) {
  .whyus__left {
    margin: 0 0 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}

.whyus__smallTitle {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #001524;
  margin: 0 0 32px 0;
}

@media only screen and (max-width: 1420px) {
  .whyus__smallTitle {
    font-size: 12px;
    line-height: 18px;
    margin: 0 0 16px 0;
  }
}

.whyus__bigTitle {
  font-weight: 500;
  font-size: 48px;
  line-height: 64px;
  color: #001524;
  margin: 0 0 40px 0;
  max-width: 515px;
}

@media only screen and (max-width: 1420px) {
  .whyus__bigTitle {
    font-size: 30px;
    line-height: 42px;
    margin: 0 0 20px 0;
    max-width: 360px;
  }
}

@media only screen and (max-width: 820px) {
  .whyus__bigTitle {
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
}

.whyus__bigDescription {
  margin: 0 0 50px 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #001524;
  max-width: 410px;
}

@media only screen and (max-width: 1420px) {
  .whyus__bigDescription {
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 24px;
    max-width: 320px;
  }
}

@media only screen and (max-width: 820px) {
  .whyus__bigDescription {
    max-width: 600px;
    width: 100%;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
  }
}

.whyus__smallDescription {
  margin: 0 0 80px 0;
  color: #6C7A84;
  font-size: 13px;
  line-height: 22px;
  max-width: 410px;
}

@media only screen and (max-width: 1420px) {
  .whyus__smallDescription {
    margin: 0 0 30px 0;
    max-width: 320px;
  }
}

@media only screen and (max-width: 820px) {
  .whyus__smallDescription {
    max-width: 600px;
    width: 100%;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    margin: 0 0 16px 0;
  }
}

.whyus__link {
  color: white;
  border: 1px solid #F01159;
  background: #F01159;
  padding: 16px 32px;
  border-radius: 16px;
  outline: none;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  font-size: 16px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.whyus__link:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: white;
  color: #F01159;
}

@media only screen and (max-width: 1420px) {
  .whyus__link {
    padding: 10px 20px;
    font-size: 12px;
    border-radius: 10px;
  }
}

.whyus__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 660px;
}

@media only screen and (max-width: 1200px) {
  .whyus__right {
    width: 100%;
    max-width: 500px;
  }
}

@media only screen and (max-width: 980px) {
  .whyus__right {
    max-width: 400px;
  }
}

@media only screen and (max-width: 820px) {
  .whyus__right {
    max-width: calc(100vw - 40px);
  }
}

.whyus__swiper {
  width: 100%;
}

.whyus__swiper .mySwiper {
  height: 480px;
}

@media only screen and (max-width: 1200px) {
  .whyus__swiper .mySwiper {
    width: 100%;
    height: 450px;
  }
}

@media only screen and (max-width: 400px) {
  .whyus__swiper .mySwiper {
    height: 490px;
  }
}

.whyus__swiper .swiper-wrapper {
  width: 100%;
}

.whyus__swiper .swiper-slide {
  width: 660px;
  height: calc((100% - 10px) / 2);
}

.whyus__swiper .sample-slider .swiper-slide {
  height: calc((100% - 10px) / 2);
}

.whyus__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 48px 0 0 auto;
  gap: 10px;
}

.whyus__pagination .swiper-button-disabled {
  opacity: 0.4 !important;
}

.whyus__prevBtn {
  border: 1px solid #FFFFFF;
  border-radius: 32px;
  background: none;
  outline: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  height: 56px;
  cursor: pointer;
}

.whyus__prevBtn i {
  color: #001524;
  font-size: 24px;
}

@media only screen and (max-width: 1420px) {
  .whyus__prevBtn {
    width: 40px;
    height: 40px;
  }
  .whyus__prevBtn i {
    font-size: 18px;
  }
}

.whyus__nextBtn {
  border: 1px solid #FFFFFF;
  border-radius: 32px;
  background: none;
  outline: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  height: 56px;
  cursor: pointer;
}

.whyus__nextBtn i {
  color: #001524;
  font-size: 24px;
}

@media only screen and (max-width: 1420px) {
  .whyus__nextBtn {
    width: 40px;
    height: 40px;
  }
  .whyus__nextBtn i {
    font-size: 18px;
  }
}

.whyus__swiperSlide {
  width: 100%;
  height: 100%;
  padding: 40px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border: 1px solid #FFFFFF;
  border-radius: 32px;
}

.whyus__swiperSlide .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 20px 0;
}

.whyus__swiperSlide .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background: white;
  color: #001524;
  font-weight: 600;
  font-size: 16px;
  margin: 0 20px 0 0;
}

@media only screen and (max-width: 1200px) {
  .whyus__swiperSlide .number {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

.whyus__swiperSlide .title {
  font-weight: 500;
  font-size: 28px;
  color: #001524;
}

@media only screen and (max-width: 1200px) {
  .whyus__swiperSlide .title {
    font-size: 20px;
  }
}

.whyus__swiperSlide .text {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #6C7A84;
}

@media only screen and (max-width: 1200px) {
  .whyus__swiperSlide .text {
    font-size: 12px;
    line-height: 20px;
  }
}

.payments {
  width: 100%;
  background: white;
  padding: 140px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 1400px) {
  .payments {
    padding: 60px 20px;
  }
}

@media only screen and (max-width: 980px) {
  .payments {
    padding: 30px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.payments__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 50px 0 0;
}

@media only screen and (max-width: 980px) {
  .payments__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 0 30px 0;
    width: 100%;
  }
}

.payments__smallTitle {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #BEC5CA;
  margin: 0 0 32px 0;
}

@media only screen and (max-width: 1400px) {
  .payments__smallTitle {
    font-size: 12px;
    line-height: 19px;
    margin: 0 0 16px 0;
  }
}

.payments__bigTitle {
  font-weight: 500;
  font-size: 48px;
  line-height: 64px;
  color: #001524;
  margin: 0 0 40px 0;
  max-width: 515px;
}

@media only screen and (max-width: 1400px) {
  .payments__bigTitle {
    font-size: 28px;
    line-height: 38px;
    margin: 0 0 20px 0;
    max-width: 380px;
  }
}

@media only screen and (max-width: 980px) {
  .payments__bigTitle {
    font-size: 20px;
    line-height: 28px;
    margin: 0 0 10px 0;
    width: 100%;
    max-width: 600px;
    text-align: center;
  }
}

.payments__bigDescription {
  margin: 0 0 50px 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #001524;
  max-width: 410px;
}

@media only screen and (max-width: 1400px) {
  .payments__bigDescription {
    max-width: 320px;
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 980px) {
  .payments__bigDescription {
    font-size: 12px;
    line-height: 19px;
    margin: 0 0 10px 0;
    width: 100%;
    max-width: 600px;
    text-align: center;
  }
}

.payments__smallDescription {
  margin: 0 0 20px 0;
  color: #6C7A84;
  font-size: 14px;
  line-height: 22px;
  max-width: 410px;
}

@media only screen and (max-width: 1400px) {
  .payments__smallDescription {
    max-width: 320px;
    margin: 0 0 15px 0;
    font-size: 12px;
    line-height: 19px;
  }
}

@media only screen and (max-width: 980px) {
  .payments__smallDescription {
    font-size: 12px;
    line-height: 19px;
    margin: 0 0 10px 0;
    width: 100%;
    max-width: 600px;
    text-align: center;
  }
}

.payments__link {
  color: white;
  border: 1px solid #F01159;
  background: #F01159;
  padding: 16px 32px;
  border-radius: 16px;
  outline: none;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  font-size: 16px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin: 20px 0 0 0;
}

.payments__link:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: white;
  color: #F01159;
}

@media only screen and (max-width: 1400px) {
  .payments__link {
    padding: 10px 20px;
    font-size: 12px;
    border-radius: 10px;
  }
}

.payments__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 46px;
}

.payments__right .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}

@media only screen and (max-width: 1400px) {
  .payments__right {
    gap: 26px;
  }
  .payments__right .row {
    gap: 16px;
  }
}

@media only screen and (max-width: 470px) {
  .payments__right {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    width: 100%;
  }
  .payments__right .row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    width: 100%;
  }
}

.payments__element {
  background: #E9F2F4;
  padding: 12px 24px 12px 12px;
  border-radius: 32px;
  gap: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 18px;
  color: #001524;
}

.payments__element img {
  width: 70px;
  height: 70px;
}

@media only screen and (max-width: 1200px) {
  .payments__element {
    padding: 8px 16px 8px 8px;
    border-radius: 20px;
    gap: 15px;
    font-size: 14px;
  }
  .payments__element img {
    width: 50px;
    height: 50px;
  }
}

@media only screen and (max-width: 470px) {
  .payments__element {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.components {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 50px;
}

@media only screen and (max-width: 580px) {
  .components {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px;
  }
}

.components__container {
  border: 1px dashed #9747FF;
  border-radius: 5px;
  grid-gap: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  padding: 20px;
}

@media only screen and (max-width: 1500px) {
  .components__container {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 1000px) {
  .components__container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    justify-items: center;
  }
}

@media only screen and (max-width: 580px) {
  .components__container {
    width: 100%;
    padding: 10px;
  }
}

.components__component {
  width: 435px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 20px;
  border: 1px solid #E9F2F4;
  background: #E9F2F4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

@media only screen and (max-width: 580px) {
  .components__component {
    width: 100%;
  }
}

.components__info {
  width: 100%;
  padding: 32px;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0 0 20px 20px;
}

@media only screen and (max-width: 460px) {
  .components__info {
    padding: 20px 16px;
  }
}

.components__row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 10px 0;
}

.components__title {
  font-weight: 500;
  font-size: 28px;
  margin: 0 auto 0 0;
  color: #001524;
}

@media only screen and (max-width: 460px) {
  .components__title {
    font-size: 24px;
  }
}

.components__stock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4px 10px;
  border: 1px solid #E9F2F4;
  border-radius: 15px;
  font-weight: 500;
  font-size: 12px;
  color: #BEC5CA;
}

.components__stock i {
  margin: 0 6px 0 0;
  color: #11F015;
  font-size: 16px;
}

@media only screen and (max-width: 460px) {
  .components__stock {
    font-size: 10px;
  }
  .components__stock i {
    font-size: 14px;
  }
}

.components__price {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.components__coinIcon {
  border: 1px solid #E9F2F4;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  margin: 0 8px 0 0;
}

.components__coinIcon img {
  height: 30px;
}

.components__priceWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.components__priceWrapper .bigPrice {
  font-weight: 500;
  font-size: 16px;
  color: #001524;
  margin: 0 8px 0 0;
}

@media only screen and (max-width: 460px) {
  .components__priceWrapper .bigPrice {
    font-size: 14px;
  }
}

.components__priceWrapper .smallPrice {
  font-weight: 400;
  font-size: 14px;
  color: #6C7A84;
}

@media only screen and (max-width: 460px) {
  .components__priceWrapper .smallPrice {
    font-size: 12px;
  }
}

.components__specs {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #E9F2F4;
}

.components__specs--last {
  border: none;
}

@media only screen and (max-width: 460px) {
  .components__specs {
    padding: 15px 0;
  }
}

.components__specTitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #6C7A84;
}

@media only screen and (max-width: 460px) {
  .components__specTitle {
    font-size: 12px;
    line-height: 20px;
  }
}

.components__specInfo {
  color: #001524;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}

@media only screen and (max-width: 1320px) {
  .components__specInfo {
    font-size: 12px;
    line-height: 20px;
  }
}

.components__buyBtn {
  margin: 20px 0;
  outline: none;
  text-decoration: none;
  background: #F01159;
  border: 1px solid #F01159;
  color: white;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 16px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.components__buyBtn:hover {
  background: transparent;
  color: #F01159;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media only screen and (max-width: 500px) {
  .components__buyBtn {
    margin: 10px 0;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 10px;
  }
}

.components__systems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 34px;
  width: 100%;
  margin: 24px 0 0 0;
}

.components__sysItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
  color: #001524;
}

.components__sysItem img {
  width: 22px;
}

@media only screen and (max-width: 460px) {
  .components__sysItem {
    font-size: 14px;
  }
  .components__sysItem img {
    width: 20px;
  }
}

.components__text {
  color: #6C7A84;
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  margin: 15px 0 0 0;
}

@media only screen and (max-width: 460px) {
  .components__text {
    font-size: 12px;
    line-height: 19px;
  }
}

.components__titles {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  padding: 20px;
  grid-gap: 20px;
}

@media only screen and (max-width: 1320px) {
  .components__titles {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 840px) {
  .components__titles {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.components__comptitle {
  font-weight: 500;
  font-size: 32px;
  color: #001524;
  width: 435px;
}

@media only screen and (max-width: 580px) {
  .components__comptitle {
    width: 100%;
    font-size: 20px;
    text-align: center;
  }
}

* {
  border: 0;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body, html {
  scroll-behavior: smooth;
  min-width: 100%;
  margin: 0;
  padding: 0;
  background: white;
  font-family: "Poppins", sans-serif !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: safe flex-start;
      -ms-flex-align: safe flex-start;
          align-items: safe flex-start;
  -webkit-box-pack: safe flex-start;
      -ms-flex-pack: safe flex-start;
          justify-content: safe flex-start;
  position: relative;
  min-height: 100vh;
}

@media only screen and (max-width: 1170px) {
  body, html {
    overflow-x: hidden;
  }
}

.body--open {
  overflow-y: hidden !important;
}
/*# sourceMappingURL=style.css.map */