@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: #00B956;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: "";
  width: 100%;
  margin: 0 auto;
  background: url("../image/footer-bg.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 270px;
}

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__age {
  width: 41px;
  height: 41px;
}
.header__logo {
  max-width: 155px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__right {
  width: 21px;
}
.header__right img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.header__agree {
  display: none;
}

.main {
  position: relative;
}
.main:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 322px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  background: url("../image/main_bg.png") no-repeat center;
  background-size: contain;
  z-index: 1;
}
.main__content {
  height: 100%;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}
.main__content img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.main__title {
  padding: 50px 0;
  text-align: center;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  max-width: 360px;
  margin: 0 auto;
}
.main__title--normal {
  display: block;
}
.main__title--agree {
  display: none;
}
.main__normal {
  z-index: 2;
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.main__agree {
  display: none;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  justify-content: space-between;
}
.main__agree .main__button {
  margin-bottom: 8px;
}
.main__price {
  font-size: 14px;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}
.main__price::before {
  content: "";
  left: -15px;
  right: -15px;
  top: 0;
  bottom: 0;
  z-index: 1;
  position: absolute;
  background: rgba(185, 183, 183, 0.3);
  height: 100%;
}
.main__price span {
  position: relative;
  z-index: 2;
  opacity: 0.6;
}
.main__button {
  color: #FFFFFF;
  position: relative;
  border: none;
  padding: 20px 5px;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1.92px;
  max-width: 290px;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  display: block;
  text-align: center;
  border-radius: 27px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  background: linear-gradient(180deg, #751984 0%, #af29c6 100%);
}
.main__buttonAbsolute {
  position: absolute;
  top: 0;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: normal;
}
.main__buttonPrice {
  position: absolute;
  top: calc(100% + 5px);
  font-size: 14px;
  right: 0;
  letter-spacing: normal;
  color: #828282;
}
.main__promo {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 40px;
  margin-top: auto;
}
.main__promo p {
  font-size: 20px;
  line-height: 24px;
}
.main__promo h2 {
  width: 411px;
  height: 45px;
  top: 523px;
  left: 0px;
  font-size: 32px;
  color: #FFFFFF;
  line-height: 38.4px;
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.main__slug {
  color: #000000;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 30px;
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
}

.footer {
  height: 150px;
}
.footer__normal {
  margin-top: 40px;
}
.footer__agree {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer__container {
  padding: 5px 10px;
  position: relative;
  z-index: 2;
}
.footer__text {
  color: #828282;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.footer__text a {
  color: inherit;
  text-decoration-line: underline;
}
.footer__agree {
  display: none;
}

body.agree .header .header__normal {
  display: none;
}
body.agree .header .header__agree {
  display: block;
}
body.agree .main .main__normal {
  display: none;
}
body.agree .main .main__agree {
  display: flex;
}
body.agree .main__title--normal {
  display: none;
}
body.agree .main__title--agree {
  display: block;
}
body.agree .footer .footer__normal {
  display: none;
}
body.agree .footer .footer__agree {
  display: flex;
}/*# sourceMappingURL=main.css.map */