@import url("https://fonts.cdnfonts.com/css/gilroy-bold");
*,
*::before,
*::after {
  box-sizing: border-box;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  font-family: "Gilroy-Regular", sans-serif;
}

:root {
  --branded-violet: #7655a3;
  --branded-purple: #eb2490;
  --branded-bark-violet: #3a3554;
  --branded-white: #fff;
  --branded-dark-blue: #35363a;
  --branded-light-violet: #902ff2;
  --branded-black: #000;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

.mob {
  display: none !important;
}

@media (max-width: 768px) {
  .desk {
    display: none !important;
  }
  .mob {
    display: initial !important;
  }
}
html,
body {
  height: 100%;
}

.main {
  min-width: 100vw;
  min-height: 100vh;
  height: 100%;
  background: #1e032e;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0px 30px;
}
@media (max-width: 768px) {
  .main {
    padding: 30px 0px 20px;
  }
}
.main__wrapper {
  background: url(../images/bg.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: absolute;
  inset: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  .main__wrapper {
    background: url(../images/bg-mob.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
  }
}
@media (max-width: 450px) {
  .main__wrapper {
    background-position: top;
    background-size: contain;
  }
}
.main__container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .main__logo svg {
    width: 33px;
    height: 30px;
  }
}
.main__info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .main__info img {
    width: 169px;
    height: 156px;
  }
}
.main__info h1 {
  font-weight: 500;
  font-size: 25px;
  line-height: 110%;
  text-align: center;
  color: #ffffff;
  margin: 40px 0px 35px;
}
@media (max-width: 768px) {
  .main__info h1 {
    font-size: 20px;
    margin: 30px 0px 25px;
  }
}
.main__info button {
  border-radius: 20px 0 20px 20px;
  padding: 12px 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #a72af6 0%, #ff0094 100%, #ff0094 100.01%);
  font-weight: 500;
  font-size: 28px;
  line-height: 120%;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 768px) {
  .main__info button {
    border-radius: 22px 0 22px 22px;
    padding: 15px 30px;
    font-size: 22px;
  }
}
.main__policy {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  max-width: 245px;
}
.main__policy img {
  width: 32px;
  height: 32px;
}
.main__policy p {
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  color: #ffffff;
}

footer {
  margin-bottom: 64px;
}

.main__container {
  width: 100%;
}
.main {
  padding-bottom: 0;
}

body {
  overflow-x: hidden;
}

.policy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 5;
  width: 100%;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  padding: 15px 0px;
  margin: 0px -20px;
  color: #fff;
  background: #000;
  text-decoration: none;
}
@media (max-width: 768px) {
  .policy {
    font-size: 12px;
    padding: 10px 0px;
  }
  footer {
    gap: 6px;
  }
}
body.white .policy {
  color: #ff0090;
}
