body {
  position: relative;
  min-height: 100vh;
  min-width: 320px; }
  body.no-scroll {
    overflow-y: hidden; }

* {
  margin: 0;
  padding: 0;
  outline: none;
  text-decoration: none;
  font-size: 14px;
  font-family: "Open Sans", serif;
  font-weight: 400;
  color: #272A2D;
  box-sizing: border-box; }

a, button, input[type="submit"] {
  box-shadow: none;
  border: none;
  background: none;
  border-radius: 0;
  cursor: pointer; }

h1 {
  font-size: 18px; }

h2 {
  margin: 15px 0 10px;
  padding-top: 15px;
  color: #B1B2BC; }

hr {
  background: #EAEBF4;
  margin: 20px 0;
  height: 1px;
  border: none; }

.wrap {
  max-width: 500px;
  width: 100%;
  min-width: 290px;
  padding: 0 15px;
  margin: 0 auto; }

footer {
  margin: 30px auto 130px;
  text-align: center; }
  footer p {
    margin-bottom: 5px;
    font-size: 11px;
    color: #B1B2BC; }
  footer .logo {
    display: inline-block;
    width: 100px; }
    footer .logo img {
      width: 100%; }

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px 25px;
  min-height: 45px;
  border-radius: 100px;
  background: #482A7F;
  color: #fff;
  cursor: pointer;
  transition: .2s; }
  .button * {
    color: inherit; }
  .button i {
    margin-right: 7px; }
  .button:hover {
    background: #613da4; }
  .button.border {
    background: none;
    border: 1px solid #482A7F;
    color: #482A7F; }
    .button.border:hover {
      background: #EAEBF4; }
  .button.telegram, .button.viber, .button.whatsapp {
    padding: 10px 0; }
    .button.telegram i, .button.viber i, .button.whatsapp i {
      font-size: 22px; }
  .button.telegram {
    background: #0088CC; }
    .button.telegram:hover {
      background: #099be3; }
  .button.viber {
    background: #7360F2; }
    .button.viber:hover {
      background: #816ef7; }
  .button.whatsapp {
    background: #25D368; }
    .button.whatsapp:hover {
      background: #2ce071; }
  .button.instagram, .button.facebook, .button.youtube {
    padding: 10px 0; }
    .button.instagram i, .button.facebook i, .button.youtube i {
      font-size: 18px; }
  .button.instagram {
    border-color: #DD2A7B;
    color: #DD2A7B; }
    .button.instagram:hover {
      background: #DD2A7B;
      color: #fff; }
  .button.facebook {
    border-color: #1778F2;
    color: #1778F2; }
    .button.facebook:hover {
      background: #1778F2;
      color: #fff; }
  .button.youtube {
    border-color: #FF0002;
    color: #FF0002; }
    .button.youtube:hover {
      background: #FF0002;
      color: #fff; }

.menu {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 30px);
  max-width: 470px;
  padding: 7px;
  border-radius: 15px;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  display: flex; }
  .menu a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    width: 100%;
    border-radius: 10px;
    transition: .2s; }
    .menu a * {
      color: #B1B2BC;
      transition: .2s; }
    .menu a i {
      margin-bottom: 5px;
      font-size: 20px; }
    .menu a span {
      color: #B1B2BC;
      text-align: center; }
    .menu a.active {
      background: #482A7F; }
      .menu a.active * {
        color: #fff; }

@media (min-width: 500px) {
  .menu a:hover {
    background: #EAEBF4; }
    .menu a:hover * {
      color: #482A7F; } }
.modal {
  display: none;
  align-items: start;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  transition: .2s;
  z-index: 11;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }
  .modal.open .modal-content {
    transform: translateY(0px);
    opacity: 1; }
  .modal .modal-content {
    transform: translateY(50px);
    opacity: 0;
    margin: 30px auto;
    padding: 15px 20px 30px;
    max-width: 470px;
    width: 100%;
    height: fit-content;
    background: #fff;
    transition: .3s;
    border-radius: 12px; }
  .modal .title, .modal .item-pay {
    display: flex; }
    .modal .title .content, .modal .item-pay .content {
      width: 100%; }
    .modal .title p, .modal .item-pay p {
      font-size: 12px;
      color: #B1B2BC; }
    .modal .title strong, .modal .item-pay strong {
      display: block; }
  .modal .title {
    padding-bottom: 15px;
    border-bottom: 1px solid #EAEBF4; }
    .modal .title p {
      font-size: 14px; }
    .modal .title strong {
      font-size: 16px;
      font-weight: 600; }
  .modal .item-pay {
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #EAEBF4;
    position: relative; }
    .modal .item-pay strong {
      margin-top: 5px; }
  .modal .close, .modal .copy {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    transition: .2s;
    cursor: pointer; }
    .modal .close i, .modal .copy i {
      font-size: 20px;
      color: #B1B2BC;
      transition: .2s; }
  .modal .close:hover {
    background: #EAEBF4; }
    .modal .close:hover i {
      color: #B1B2BC; }
  .modal .notify {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 35px;
    top: calc(50% - 12px);
    display: inline-block;
    padding: 3px 7px;
    border-radius: 5px;
    background: #272A2D;
    color: #fff;
    transition: .2s; }
    .modal .notify.show {
      opacity: 1; }
  .modal .button {
    margin-top: 20px;
    position: relative; }
    .modal .button .notify {
      top: 0;
      right: 50%;
      transform: translate(50%, -8px); }
  .modal .qr {
    text-align: center;
    border-radius: 10px;
    border: 1px solid #EAEBF4;
    margin-top: 25px;
    padding: 15px; }
    .modal .qr p {
      margin-bottom: 10px; }
    .modal .qr img {
      width: 80%; }

@media (min-width: 500px) {
  .modal .copy:hover i {
    color: #482A7F; } }
@media (max-width: 500px) {
  .modal {
    align-items: stretch;
    background: none; }
    .modal .modal-content {
      margin: 0;
      max-width: 100%;
      border-radius: 0; } }
.banner {
  background: #482A7F; }
  .banner .wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0 80px;
    min-height: 335px;
    height: 100%;
    z-index: -1; }
  .banner .logo {
    width: 200px; }
  .banner .info {
    display: inherit;
    display: none;
    flex-direction: column;
    align-items: inherit; }
    .banner .info .avatar {
      margin-bottom: 10px;
      width: 100px;
      height: 100px;
      border-radius: 100%;
      background: #fff;
      position: relative;
      overflow: hidden; }
      .banner .info .avatar img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        max-width: calc(100% - 20px);
        max-height: calc(100% - 20px); }
    .banner .info strong {
      display: block;
      font-size: 25px;
      text-align: center;
      font-weight: 600;
      color: #fff; }

.about {
  margin-top: -40px;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
  background: #fff; }
  .about h1 {
    margin-bottom: 10px; }
  .about p {
    margin-top: 5px; }
  .about ul {
    margin: 5px 0;
    padding-left: 17px; }
  .about strong {
    font-weight: 600; }
  .about a {
    color: #469EF2; }
    .about a:hover {
      text-decoration: underline; }

.contact {
  display: flex;
  margin-top: 20px; }
  .contact:nth-child(1) {
    margin-top: 0; }
  .contact i {
    margin-right: 10px;
    padding-top: 3px;
    width: 18px;
    color: #B1B2BC; }
  .contact .content > * {
    margin-bottom: 10px; }
  .contact a {
    color: #469EF2; }
    .contact a:first-child {
      margin-top: 0; }
    .contact a:hover {
      text-decoration: underline; }

.messangers .button {
  margin-top: 10px; }
  .messangers .button:first-child {
    margin-top: 0; }

.social {
  display: flex; }
  .social .button {
    margin-left: 10px;
    width: 100%; }
    .social .button:first-child {
      margin-left: 0; }

.pay {
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 15px;
  border: 1px solid #EAEBF4; }
  .pay:last-child {
    margin-bottom: 0; }
  .pay .type {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    color: #B1B2BC; }
  .pay strong {
    display: block;
    margin-bottom: 10px;
    font-size: 16px; }
  .pay .info {
    display: flex;
    align-items: center;
    margin-bottom: 5px; }
    .pay .info * {
      color: #B1B2BC; }
    .pay .info i {
      margin-right: 10px; }
  .pay .action {
    display: flex;
    justify-content: right;
    margin-top: 20px; }
    .pay .action .button {
      margin-left: 15px; }
      .pay .action .button:first-child {
        margin: 0; }
  .pay .notify {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    left: 0;
    transform: translateX(calc(-100% - 10px));
    top: calc(50% - 12px);
    display: inline-block;
    padding: 3px 7px;
    border-radius: 5px;
    background: #272A2D;
    color: #fff;
    transition: .2s; }
    .pay .notify.show {
      opacity: 1; }

/*# sourceMappingURL=main.css.map */
