@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: linear-gradient(161deg, #1e032e 0%, #902ff2 100%);
  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: center;
  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: center;
    background-repeat: no-repeat;
  }
}
@media (max-width: 450px) {
  .main__wrapper {
    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: 97px;
    height: 35px;
  }
}
.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;
}
@media (max-width: 768px) {
  .main__info h1 {
    font-size: 20px;
    margin: 40px 0px 20px;
  }
}
.main__info button {
  border-radius: 50px;
  padding: 15px 75px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #a72af6 0%, #ff0094 100%, #ff0094 100.01%);
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 768px) {
  .main__info button {
    max-width: 220px;
    border-radius: 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;
}