@charset "UTF-8";
@import "normalize.css";
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.ttf");
  font-weight: 700;
}
a, a:visited {
  color: #ffffff;
  text-decoration: none;
}

body {
  background: #181717;
  color: #ffffff;
  padding: 1.389vw;
  font-family: "Gilroy", sans-serif;
}

.pack-top {
  margin: 0 auto;
  width: 302px;
  height: 63px;
  background: url("../images/pack-top.svg") no-repeat;
}

.pack {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(99.4deg, #C74BCA 0%, #ED7580 49.48%, #FFBA53 100%);
  border-radius: 30px;
}

.button-signin {
  display: flex;
  box-sizing: border-box;
  padding: 16px 43px;
  background: linear-gradient(99.03deg, #9F52E9 0%, #421189 100%);
  box-shadow: 0px 2px 10px rgba(123, 60, 193, 0.5);
  border-radius: 10px;
  font-size: 20px;
  font-weight: 600;
  transition: 0.3s;
  cursor: pointer;
}
.button-signin:hover {
  opacity: 0.9;
  transform: scale(0.99);
}
.button-signin:active {
  opacity: 0.8;
  transform: scale(0.96);
}

.header {
  display: flex;
  flex-direction: column;
  min-height: 680px;
}
.header-menu {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: end;
  box-sizing: border-box;
  padding: 25px 43px;
  gap: 25px;
  z-index: 2;
}
.header-menu_item {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
}
.header-main {
  display: flex;
  position: relative;
  flex-direction: row;
  padding: 40px;
  margin-top: -80px;
}
.header-main_image {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  top: 50px;
  right: 120px;
  min-width: 570px;
  min-height: 482px;
  max-width: 570px;
  max-height: 482px;
}
.header-main_image img {
  object-fit: contain;
}
.header-main_image__cash {
  position: absolute;
  max-height: 366px;
  max-width: 511px;
  top: 100px;
  right: 60px;
  animation: 10s cash-animation linear infinite;
}
.header-main_image__eggplant {
  position: absolute;
  right: 0;
  max-width: 440px;
  max-height: 440px;
  animation: 10s eggplant-animation linear infinite;
}
.header-main_content {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-width: 70%;
}
.header-main_content_logo {
  width: 284px;
  margin: 40px 0 40px 111px;
}

@media (max-width: 600px) {
    .header-main_content_logo {
        display: none;
    }
}

.header-main_content_title {
  font-size: 60px;
  font-weight: 700;
}
.header-main_content_subtitle {
  font-size: 37px;
  font-weight: 500;
  margin: 25px 0;
}

.main-block {
  display: flex;
  flex-direction: row;
}

.main-image {
  position: absolute;
  right: 430px;
  top: 90px;
}

.eggplant {
  position: absolute;
  max-width: 440px;
  max-height: 440px;
  animation: 10s eggplant-animation linear infinite;
}

.eggplant-bg {
  position: absolute;
  max-width: 512px;
  max-height: 356px;
  top: 115px;
  left: -130px;
  animation: 10s cash-animation linear infinite !important;
}

.advantage {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  box-sizing: border-box;
  padding: 40px;
}
.advantage-item {
  display: flex;
  background: rgba(246, 246, 246, 0.2);
  width: 100%;
  min-height: 441px;
  border-radius: 30px;
  align-items: center;
  box-sizing: border-box;
  padding: 30px;
}
.advantage-item:hover > .advantage-image {
  transform: scale(1.1);
}
.advantage-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 25px;
}
.advantage-title {
  align-items: center;
  font-size: 62px;
  font-weight: 700;
  text-align: center;
}
.advantage-text {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}
.advantage-image {
  max-width: 416px;
  max-height: 416px;
  transition: 0.5s;
}
.advantage-item:nth-child(2n) {
  flex-direction: row-reverse;
}

.note {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  padding: 0 40px;
}
.note-item {
  display: flex;
  background: rgba(246, 246, 246, 0.2);
  width: 49%;
  min-height: 233px;
  border-radius: 30px;
  align-items: center;
  box-sizing: border-box;
  padding: 20px;
}
.note-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}
.note-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}
.note-text {
  font-size: 17px;
  font-weight: 500;
  text-align: center;
}
.note-image {
  max-width: 160px;
  max-height: 160px;
}

.support {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  padding: 40px;
}
.support-item {
  display: flex;
  position: relative;
  background: rgba(246, 246, 246, 0.2);
  width: 49%;
  min-height: 376px;
  border-radius: 30px;
  box-sizing: border-box;
}
.support-item:nth-child(2) .support-bubble {
  margin-left: 20px;
}
.support-item:hover .support-bubble {
  transform: scale(1.02);
}
.support-item img {
  max-height: 376px;
}
.support-content {
  display: flex;
  position: absolute;
  left: 236px;
  top: 43px;
  flex-direction: column;
  align-items: end;
  gap: 60px;
}
.support-bubble {
  display: flex;
  position: relative;
  flex-direction: column;
  max-width: 329px;
  background: rgb(18, 130, 233);
  backdrop-filter: blur(47px);
  border-radius: 10px;
  box-sizing: border-box;
  padding: 15px 12px;
  transition: 0.3s;
}
.support-bubble_name {
  font-size: 22px;
  font-weight: 600;
}
.support-bubble_message {
  font-size: 18px;
  font-weight: 400;
  margin-top: 7px;
}
.support-bubble:after {
  content: "";
  position: absolute; /* Абсолютное позиционирование */
  left: -16px;
  bottom: 10px; /* Положение треугольника */
  border: 8px solid transparent;
  border-right: 8px solid rgb(18, 130, 233);
}
.support-bubble_pink {
  background: #F245AD;
}
.support-bubble_pink:after {
  content: "";
  position: absolute; /* Абсолютное позиционирование */
  left: -16px;
  bottom: 10px; /* Положение треугольника */
  border: 8px solid transparent;
  border-right: 8px solid #F245AD;
}

.light {
  display: flex;
  width: 340px;
  height: 340px;
  background: #FFFFFF;
  filter: blur(117px);
}

.button-main {
  margin-left: 149px;
}

.button-black {
  display: flex;
  flex-direction: row;
  align-items: center;
  box-sizing: border-box;
  padding: 23px 25px;
  font-weight: 600;
  font-size: 20px;
  background: rgba(0, 0, 0, 0.55);
  max-width: max-content;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
}
.button-black:hover {
  background: rgba(0, 0, 0, 0.65);
  transform: scale(0.99);
}
.button-black:active {
  background: rgba(0, 0, 0, 0.75);
  transform: scale(0.96);
}

.button-white {
  display: flex;
  flex-direction: row;
  align-items: center;
  box-sizing: border-box;
  padding: 19px 26px;
  font-weight: 600;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  max-width: max-content;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
}
.button-white:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(0.99);
}
.button-white:active {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0.96);
}
.button-white_narrow {
  padding: 15px 20px;
}
.button-white_outline {
  padding: 16px 24px;
  background: none;
  border: 1px solid #FFFFFF;
  border-radius: 10px;
}

.telegram-btn {
  display: flex;
  width: 28px;
  height: 28px;
  margin-left: 5px;
  background: url("../images/telegram.svg") no-repeat;
  background-size: cover;
}
.telegram-btn_big {
  width: 46px;
  height: 46px;
}

footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 40px;
  margin-top: 60px;
}

.footer-logo {
  max-width: 284px;
}
.footer-mark {
  width: 96px;
  height: 96px;
}
.footer-ask {
  display: flex;
  flex-direction: column;
}
.footer-ask p {
  font-size: 18px;
  font-weight: 500;
}
.footer-barcode {
  display: flex;
  width: 280px;
  max-width: 100%;
  border-radius: 13px;
}

.adv {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 40px;
}
.adv-item {
  display: flex;
  flex-direction: row;
  background: rgba(255, 255, 255, 0.2);
  align-items: center;
  box-sizing: border-box;
  border-radius: 190px;
  padding: 10px 20px 10px 10px;
}
.adv-item_image {
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.adv-item_image img {
  max-width: 42px;
  max-height: 42px;
}
.adv-item p {
  display: flex;
  margin-left: 10px;
  font-size: 16px;
  font-weight: 500;
}

@keyframes eggplant-animation {
  0% {
    transform: rotate(4deg) translate(0, 0);
  }
  50% {
    transform: rotate(-4deg) translate(1.7vw, -1.736vw);
  }
  100% {
    transform: rotate(4deg) translate(0, 0);
  }
}
@keyframes cash-animation {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 1.181vw);
  }
  100% {
    transform: translate(0, 0);
  }
}
.emoji {
  margin-left: 6px;
}
.emoji-small {
  width: 24px;
  height: 24px;
}
.emoji-medium {
  width: 32px;
  height: 32px;
}
.emoji-large {
  width: 56px;
  height: 56px;
}

@media screen and (min-width: 1500px) {
  .pack {
    max-width: 1440px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 800px) {
  .note {
    flex-direction: column;
    gap: 30px;
    padding: 15px;
  }
  .note-item {
    flex-direction: column;
    width: 100%;
  }
  .advantage-item, .advantage-item:nth-child(2n) {
    flex-direction: column-reverse;
  }
  .advantage-image {
    max-width: 92%;
  }
  .advantage-title {
    font-size: 38px;
  }
  .advantage-text {
    font-size: 18px;
  }
  .button-black {
    font-size: 16px;
  }
  .advantage {
    padding: 15px;
  }
  .support {
    flex-direction: column;
    gap: 30px;
    padding: 15px;
  }
  .support-item {
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
  }
  .support-item img {
    max-width: 351px;
    object-fit: cover;
  }
  .support-content {
    position: relative;
    align-items: center;
    left: auto;
    top: auto;
    flex-direction: column-reverse;
    gap: 20px;
    margin-top: 20px;
  }
  .support-bubble {
    margin-left: 0;
  }
  .support-bubble:after {
    left: 190px;
    bottom: -16px; /* Положение треугольника */
    border: 8px solid transparent;
    border-top: 8px solid rgb(18, 130, 233);
  }
  .support-bubble_pink:after {
    left: 190px;
    bottom: -16px; /* Положение треугольника */
    border: 8px solid transparent;
    border-top: 8px solid #F245AD;
  }
  .header-menu {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: center;
    width: 80%;
    gap: 10px;
  }
  .header-menu_item {
    justify-content: center;
    width: 100%;
  }
  .button-signin {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .button-white_outline {
    justify-content: center;
    width: 100% !important;
    max-width: 100%;
  }
  .header-main {
    flex-direction: column-reverse;
    margin-top: 0;
  }
  .header-main_image {
    display: none;
  }
  .header-main_image__eggplant {
    width: 260px;
    height: 260px;
    left: 40px;
    top: 0;
    margin: 0 auto;
  }
  .header-main_image__cash {
    width: 320px;
    height: 260px;
    left: 0;
    top: 60px;
    margin: 0 auto;
  }
  .button-main {
    margin: 0 auto;
  }
  .header-main_content_logo {
    margin: 0 auto;
  }
  .header-main_content_title,
  .header-main_content_subtitle {
    text-align: center;
  }
  .header-main_content_title {
    margin-top: 15px;
    font-size: 48px;
  }
  .header-main_content_subtitle {
    font-size: 32px;
  }
  .adv {
    flex-direction: column;
    gap: 10px;
  }
  .adv-item {
    margin: 0 auto;
  }
  footer {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }
}



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