@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+KR:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
* {
  font-family: "Montserrat", "Helvetica", sans-serif;
  box-sizing: border-box;
}

html {
  font-size: clamp(14px, 0.8vw, 16px);
}

body {
  max-width: 100vw;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #1a1a1a;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body.no-scroll {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
body.no-scroll:before {
  content: "";
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(5px);
  z-index: 995;
  position: fixed;
}

main {
  padding: min(15vh, 150px) 0 0 0;
  max-width: 100vw;
  overflow-x: clip;
}
main.scrolled {
  padding: min(10vh, 120px) 0 0 0 !important;
}

img {
  width: auto;
  height: auto;
}

button {
  border: none;
  background: #B72CB8;
  padding: 10px;
  font-size: 1rem;
  color: white;
  border-radius: 50px;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: #1a1a1a;
}
a:visited {
  color: inherit;
  text-decoration: none;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2rem;
}

p {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

.no-drag {
  user-select: none;
  -webkit-user-drag: none;
}

.section-title {
  margin: 75px 0;
  position: relative;
  text-align: center;
}
.section-title:after {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 4px solid #e82cc7;
  width: 50%;
  content: "";
  border-radius: 25px;
}
.section-title.green:after {
  border-color: #3abc04;
}

main .page-title {
  height: 25vh;
  display: flex;
  padding: 0 15px;
  align-items: center;
  justify-content: center;
  background: url("../svg/bg-blob1.svg") center no-repeat;
  background-size: cover;
  position: relative;
  color: #f1f1f1;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 450px) {
  main .page-title {
    height: 40vh;
  }
}
main .page-title:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  backdrop-filter: blur(2px);
  content: "";
  z-index: 1;
}
main .page-title h1 {
  z-index: 2;
}

.modal {
  position: fixed;
  width: min(350px, 95%);
  min-height: min(150px, 50vh);
  display: flex;
  justify-content: center;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: #f3f3f3;
  border-radius: 25px;
  padding: 25px;
  color: #1a1a1a;
  box-shadow: 7px 8px 19px -7px rgba(0, 0, 0, 0.49);
  -webkit-box-shadow: 7px 8px 19px -7px rgba(0, 0, 0, 0.49);
  -moz-box-shadow: 7px 8px 19px -7px rgba(0, 0, 0, 0.49);
}
@media screen and (max-width: 500px) {
  .modal {
    padding: 32px 15px 25px 15px;
  }
  .modal .form {
    padding: 50px 0 25px 0 !important;
  }
}
.modal#formModal, .modal#efitness-modal {
  width: min(650px, 95%) !important;
  min-height: min(500px, 50vh) !important;
}
.modal.image {
  padding: 10px;
  height: auto;
  width: auto;
  overflow: hidden;
}
.modal.image .modal-content {
  width: auto;
  height: auto;
}
.modal.image .modal-content img {
  display: block;
  max-height: 95vh;
  max-width: 95vw;
  object-fit: contain;
  height: auto;
  width: auto;
  user-select: none;
  -webkit-user-drag: none;
  border-radius: 15px;
}
.modal .modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.modal .modal-content.application-stores {
  padding-top: 50px;
  gap: 25px;
}
.modal .modal-content.application-stores p {
  font-size: 1.2rem;
}
.modal .modal-content.application-stores .icons {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.modal .modal-content.application-stores .qr-code {
  width: min-content;
  aspect-ratio: 1;
  padding: 10px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal .modal-content.application-stores .qr-code img {
  height: 82px;
  width: 82px;
}
.modal .modal-content #modalMessage {
  font-size: 1.1rem;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.modal .modal-content .section-title {
  margin: 15px 0;
}
.modal .modal-content .form {
  padding: 50px 25px 25px 25px;
}
.modal .modal-content .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 32px;
  width: 32px;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: all 0.1s ease-out;
}
.modal .modal-content .closeModal:hover {
  scale: 1.05;
  transition: all 0.1s ease-in;
}
.modal .modal-content .closeModal img {
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  padding: 2px;
  border-radius: 25px;
  filter: invert(1);
}
.modal.hidden {
  display: none;
}

.form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
  border-radius: 25px;
  padding: 50px 25px;
}
.form .form-row {
  position: relative;
  width: 100%;
  display: flex;
}
.form .form-row input, .form .form-row textarea {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  border: 2px solid #b959ba;
  outline: none;
  padding: 10px 15px;
}
.form .form-row input.invalid, .form .form-row textarea.invalid {
  border-color: #fb4646;
}
.form .form-row input.invalid + label, .form .form-row textarea.invalid + label {
  color: #fb4646 !important;
}
.form .form-row input:focus + label, .form .form-row input:not(:placeholder-shown) + label, .form .form-row textarea:focus + label, .form .form-row textarea:not(:placeholder-shown) + label {
  top: 0;
  font-size: 0.75rem;
  color: #b959ba;
  transform: translateY(-100%);
  transition: all 0.15s ease;
}
.form .form-row input:not(:placeholder-shown):invalid + label, .form .form-row input:not(:placeholder-shown):user-invalid + label, .form .form-row textarea:not(:placeholder-shown):invalid + label, .form .form-row textarea:not(:placeholder-shown):user-invalid + label {
  color: #fb4646;
}
.form .form-row label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem;
  left: 15px;
  cursor: text;
  transition: all 0.1s ease-in;
  color: rgba(26, 26, 26, 0.75);
}
.form .form-row.textarea textarea {
  border-radius: 15px;
  resize: vertical;
  min-height: 100px;
  height: 150px;
  max-height: 200px;
}
.form .form-row.textarea label {
  top: 20px !important;
}
.form .form-row .submit {
  margin: 15px auto 0 auto;
  padding: 12px 30px;
  background: transparent;
  border: 2px solid #B72CB8;
  color: #1a1a1a;
  transition: all 0.1s ease-in;
}
.form .form-row .submit:hover {
  color: #f1f1f1;
  background: #B72CB8;
  transition: all 0.1s ease-in;
}

/*# sourceMappingURL=global.css.map */
