@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Thin.ttf") format("truetype");
  font-style: normal;
  font-weight: 100;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-ExtraLight.ttf") format("truetype");
  font-style: normal;
  font-weight: 200;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background: #741981;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

header, footer {
  flex: 0 0 auto;
}

main {
  flex: 1 0 auto;
}

.container {
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

.header {
  margin-top: 20px;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-height: 650px) {
  .header__logo, .header__age {
    max-height: 20px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.header__right {
  width: 40px;
}
@media (max-height: 650px) {
  .header__right {
    width: 20px;
  }
}

.main {
  background: url("../image/main_bg.png") no-repeat center;
  background-size: contain;
}
.main__content {
  height: 100%;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-height: 750px) {
  .main__content {
    padding-bottom: 5px;
  }
}
.main__content img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
@media (max-height: 750px) {
  .main__content img {
    max-height: 250px;
  }
}
.main__title {
  text-transform: uppercase;
  margin-top: 15px;
  color: #FFFFFF;
  font-size: 25px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  margin-bottom: 15px;
  text-shadow: 0px 0px 20px #000000;
}
@media (max-width: 380px) {
  .main__title {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-height: 650px) {
  .main__title {
    margin-bottom: 5px;
  }
}
.main__description {
  color: #FFFFFF;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  margin-bottom: 10px;
}
.main__description span {
  color: #00B956;
}
@media (max-width: 360px) {
  .main__description {
    font-size: 20px;
  }
}
.main__normal {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.main__agree {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main__agree .main__button {
  text-align: center;
  background: #6271FF;
}
.main__price {
  font-size: 16px;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  font-weight: 300;
}
.main__price span {
  position: relative;
  z-index: 2;
  text-shadow: 1px 1px 3px #9c9c9c;
  font-size: 14px;
}
.main__button {
  color: #FFFFFF;
  background: #00B956;
  border: none;
  padding: 23px 23px;
  border-radius: 5px;
  box-shadow: 0 5px 25px #000000;
  font-size: 24px;
  max-width: 300px;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
}
@media (max-height: 750px) {
  .main__button {
    padding: 15px;
    font-size: 18px;
  }
}
.main__prev {
  display: block;
  color: #FFFFFF;
  opacity: 0.7;
  text-decoration: none;
  width: 100%;
  font-size: 17px;
  text-align: center;
}

.footer__container {
  padding: 5px 10px;
}
.footer__container p {
  color: #FFFFFF;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.6;
}
.footer__container p a {
  color: inherit;
  text-decoration-line: underline;
}
.footer__agree {
  display: none;
}/*# sourceMappingURL=main.css.map */