@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Noto Sans", sans-serif;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

nav {
  background: white;
  z-index: 5;
}
nav .nav_container {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1100px;
  margin: 0 auto;
}
nav .nav_container .nav_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
}
nav .nav_container .logo img {
  height: 3.5rem;
  cursor: pointer;
}
nav .nav_container .nav_toggle {
  display: none;
}
nav .nav_container .nav_links ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
nav .nav_container .nav_links ul li {
  list-style: none;
  font-size: 1.125rem;
  font-weight: 700;
}
nav .nav_container .nav_links ul li a {
  text-decoration: none;
  color: #101010;
  transition: all 300ms;
}
nav .nav_container .nav_links ul li a:hover {
  color: #560bad;
}

.nav_active {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  background: linear-gradient(to right, rgba(251, 194, 235, 0.8) 0%, rgba(166, 193, 238, 0.8) 100%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0px 10px 20px 0px rgba(27, 24, 47, 0.1);
  -webkit-animation: slideIn 500ms ease forwards;
          animation: slideIn 500ms ease forwards;
}
@-webkit-keyframes slideIn {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes slideIn {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}

.header {
  min-height: calc(100vh - 90px);
  border: 1px solid transparent;
}
.header .header_content {
  width: calc(1100px - 10%);
  margin: 0 auto;
  margin-top: 12.5rem;
  text-align: center;
}
.header .header_content h1 {
  color: #101010;
  font-size: 4.375rem;
}
.header .header_content h1 strong {
  color: #560bad;
}
.header .header_content p {
  color: #777777;
  font-size: 1.063rem;
  line-height: 1.875rem;
  margin: 0.625rem 0;
}
.header .header_content .header_btn {
  margin-top: 2.5rem;
}
.header .header_content .header_btn .btn {
  width: 10rem;
  padding: 0.625rem 0;
}
.header .header_content .header_btn .btn:nth-of-type(1) {
  margin-right: 1.25rem;
}

.btn {
  background-color: #560bad;
  color: white;
  font-size: 1.125rem;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  outline: transparent;
  padding: 0.625rem 1.25rem;
  text-align: center;
  border: 2px solid #560bad;
  transition: all 200ms;
}
.btn:hover, .btn:focus {
  background-color: #6806d8;
  border: 2px solid #6806d8;
}

.btn_sec {
  background-color: transparent;
  color: #101010;
  font-weight: 600;
  width: auto;
  border: none;
  transition: all 300ms;
}
.btn_sec:hover, .btn_sec:focus {
  color: #560bad;
  background-color: transparent;
  border: none;
}

.btn_alt {
  border: 2px solid #560bad;
  background-color: transparent;
  color: #560bad;
  font-weight: 600;
  transition: all 300ms;
}
.btn_alt:hover, .btn_alt:focus {
  background-color: #560bad;
  color: white;
}

.title_text {
  text-align: center;
}
.title_text h1 {
  color: #101010;
  font-size: 2.125rem;
  margin: 20px 0;
}
.title_text span {
  color: white;
  border-radius: 30px;
  background: -webkit-linear-gradient(180deg, #41a0ea, #f18e95 100%);
  padding: 3px 2.813rem;
  font-weight: 500;
  font-size: 1.25rem;
  display: inline-block;
}

.about {
  background-color: #e9d6fd;
  padding: 8rem 0;
  --mask:
      radial-gradient(134.16px at 50% 180.00px, #000 99%, #0000 101%) calc(50% - 120px) 0/240px 100%,
      radial-gradient(134.16px at 50% -120px, #0000 99%, #000 101%) 50% 60px/240px 100% repeat-x;
  -webkit-mask: var(--mask);
  mask: var(--mask);
}
.about .about_content {
  width: 1100px;
  margin: 0 auto;
  margin-top: 3.75rem;
  background-color: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0px 10px 20px 0px rgba(27, 24, 47, 0.1);
}
.about .about_content p {
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #101010;
}

.contact {
  background: url(../images/contact-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 5rem 0;
}
.contact .title_text h1 {
  color: white;
}
.contact .contact_form {
  max-width: 400px;
  margin: 0 auto;
  margin-top: 3rem;
  background: rgba(86, 11, 173, 0.23);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4.8px);
  -webkit-backdrop-filter: blur(4.8px);
  padding: 1.8rem 0;
}
.contact .contact_form .input_field {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 1.2rem;
}
.contact .contact_form .input_field span {
  display: block;
  color: white;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.contact .contact_form .input_field input,
.contact .contact_form .input_field textarea {
  width: 100%;
  border: none;
  outline: none;
  padding: 0.7rem;
  transition: border 200ms;
  background-color: transparent;
  border: 2px solid white;
  color: white;
  font-size: 1.125rem;
}
.contact .contact_form .input_field textarea {
  resize: none;
}
.contact .contact_form .btn {
  width: 80%;
  margin: 0 auto;
  display: block;
}

footer {
  background: linear-gradient(to right, #fbc2eb 0%, #a6c1ee 100%);
  padding: 1rem 0;
  text-align: center;
  width: 100%;
}
footer .upper_footer {
  background-image: linear-gradient(to top, #3f51b1 0%, #5a55ae 13%, #7b5fac 25%, #8f6aae 38%, #a86aa4 50%, #cc6b8e 62%, #f18271 75%, #f3a469 87%, #f7c978 100%);
  text-align: center;
  width: 50%;
  margin: 0 auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
footer .upper_footer p {
  font-size: 2rem;
  cursor: pointer;
  font-weight: 700;
}
footer .lower_footer {
  font-size: 1rem;
  font-weight: 500;
  color: #101010;
}

@media (max-width: 1200px) {
  html {
    font-size: 90%;
  }
  nav .nav_container {
    width: 950px;
  }
  .about .about_content {
    width: 950px;
  }
}
@media (max-width: 1000px) {
  html {
    font-size: 85%;
    scroll-padding-top: 70px;
  }
  nav .nav_container {
    width: 700px;
    height: 70px;
  }
  nav .nav_container .nav_btn {
    gap: 0.5rem;
  }
  nav .nav_container .logo img {
    height: 3rem;
    cursor: pointer;
  }
  nav .nav_container .nav_links ul {
    gap: 2rem;
  }
  .header {
    min-height: calc(100vh - 70px);
  }
  .header .header_content {
    width: 700px;
  }
  .header .header_content h1 {
    font-size: 3.5rem;
  }
  .about .about_content {
    width: 700px;
  }
  .contact .contact_form {
    max-width: 340px;
  }
}
@media (max-width: 770px) {
  html {
    font-size: 85%;
  }
  nav .nav_container {
    width: 90%;
    height: 70px;
    justify-content: space-between;
  }
  nav .nav_container .nav_toggle {
    display: block;
    height: 21px;
    width: 17px;
  }
  nav .nav_container .nav_toggle i {
    font-size: 1.5rem;
    padding-left: 1px;
  }
  nav .nav_container .nav_links ul {
    flex-direction: column;
    gap: 2rem;
    position: absolute;
    top: 70px;
    left: 0;
    background: linear-gradient(to right, rgba(251, 194, 235, 0.8) 0%, rgba(166, 193, 238, 0.8) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0px 10px 20px 0px rgba(27, 24, 47, 0.1);
    width: 100%;
    padding: 20px 0;
    display: none;
    z-index: -1;
  }
  nav .nav_container .nav_links .ul_active {
    -webkit-animation: UlslideIn 500ms ease forwards;
            animation: UlslideIn 500ms ease forwards;
    display: flex;
  }
  @-webkit-keyframes UlslideIn {
    0% {
      transform: translateY(-100%);
    }
    100% {
      transform: translateY(0%);
    }
  }
  @keyframes UlslideIn {
    0% {
      transform: translateY(-100%);
    }
    100% {
      transform: translateY(0%);
    }
  }
  .header {
    min-height: calc(100vh - 70px);
    border: 1px solid transparent;
  }
  .header .header_content {
    width: 90%;
  }
  .header .header_content h1 {
    font-size: 3.5rem;
  }
  .about .about_content {
    width: 90%;
  }
  .contact .contact_form {
    max-width: 340px;
  }
}
@media (max-width: 490px) {
  html {
    font-size: 70%;
  }
  nav .nav_container .logo img {
    height: 3rem;
  }
  nav .nav_container .nav_btn .btn {
    padding: 0.4rem 0.8rem;
  }
  .header .header_content h1 {
    font-size: 2.8rem;
  }
  .about {
    --mask:
        radial-gradient(38.59px at 50% 53.00px, #000 99%, #0000 101%) calc(50% - 40px) 0/80px 100%,
        radial-gradient(38.59px at 50% -33px, #0000 99%, #000 101%) 50% 20px/80px 100% repeat-x;
    -webkit-mask: var(--mask);
    mask: var(--mask);
  }
  .contact .contact_form {
    max-width: 300px;
  }
}
::-webkit-scrollbar {
  width: 8px;
  background-color: rgba(166, 193, 238, 0.8);
}

::-webkit-scrollbar-thumb {
  background: rgb(255, 86, 207);
  border-radius: 6px;
}/*# sourceMappingURL=lp_style.css.map */