@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: 100vh;
  overflow-x: hidden;
}

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;
}
.header__right {
  width: 40px;
}
.header__agree {
  display: none;
}

.main {
  position: relative;
}
.main:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("../image/main_bg.png") no-repeat center;
  background-size: contain;
  filter: blur(4px);
  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: 24px;
  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%;
  margin: auto 0;
}
.main__agree {
  display: none;
  height: 100%;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  justify-content: space-between;
}
.main__agree--btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}
.main__agree--btn .main__button {
  padding: 10px;
  border-radius: 15px;
}
.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;
  background: #00B956;
  border: none;
  padding: 20px 10px;
  border-radius: 15px;
  box-shadow: 0 5px 25px #000000;
  font-size: 24px;
  max-width: 200px;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  display: block;
  text-align: center;
}

.footer {
  background: rgba(185, 183, 183, 0.5);
}
.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;
}
.footer__container p a {
  color: inherit;
  text-decoration-line: underline;
}
.footer__agree {
  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: block;
}/*# sourceMappingURL=main.css.map */