@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&display=swap");
@import url("https://api.fontshare.com/v2/css?f[]=satoshi@1,900,700,500,301,701,300,501,401,901,400,2&amp;display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 0.6944vw;
}
@media (max-width: 480px) {
  * {
    font-size: 2.66vw;
  }
}

body {
  font-size: 1.6rem;
  overflow-x: hidden;
  font-family: "Satoshi", sans-serif;
}

p {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6rem;
  letter-spacing: 0em;
  text-align: left;
}

h1 {
  font-family: "Fredoka", sans-serif;
  font-size: 9.6rem;
  font-weight: 400;
  line-height: 11.6rem;
  letter-spacing: 0em;
}
@media (max-width: 480px) {
  h1 {
    font-size: 3.72rem;
    line-height: 4.5rem;
  }
}

h2 {
  font-family: "Fredoka", sans-serif;
  font-size: 5.6rem;
  font-weight: 600;
  line-height: toRem(60);
  letter-spacing: 0em;
}
@media (max-width: 480px) {
  h2 {
    font-size: 3rem;
  }
}

h4 {
  color: #202020;
  font-family: "Fredoka", sans-serif;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.6rem;
}
.invalid-feedback{
  color: #F00;
}
.subtitle--1 {
  font-family: inherit;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 3rem;
  letter-spacing: 0em;
}
@media (max-width: 480px) {
  .subtitle--1 {
    font-size: 1.5rem;
  }
}

.paragraph--1 {
  font-family: inherit;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: toRem(20);
  letter-spacing: 0em;
}

.paragraph--2 {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6rem;
  letter-spacing: 0em;
}
@media (max-width: 480px) {
  .paragraph--2 {
    font-size: 1.5rem;
    line-height: 1.7rem;
  }
}

.paragraph--3 {
  color: rgba(32, 32, 32, 0.7);
  font-family: inherit;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6rem;
}

.subtitle--2 {
  font-family: inherit;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 3.6rem;
  letter-spacing: 0em;
}
@media (max-width: 480px) {
  .subtitle--2 {
    font-size: 2rem;
    line-height: 3rem;
  }
}

.swiper-pagination {
  margin-top: 7rem;
}
@media (max-width: 480px) {
  .swiper-pagination {
    margin-top: 2.5rem;
  }
}

.swiper-pagination-bullet-active {
  width: 7rem;
}

.paragraph--5 {
  color: #202020;
  font-family: inherit;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.4rem;
}
@media (max-width: 480px) {
  .paragraph--5 {
    font-size: 1.4rem;
    line-height: 0.5rem;
  }
}

.subtitle--3 {
  color: #202020;
  font-family: inherit;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 900;
  line-height: 2.4rem;
}
@media (max-width: 480px) {
  .subtitle--3 {
    font-size: 1.3rem;
    line-height: 1.7rem;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background-color: transparent;
  color: inherit;
  border: none;
}

ul {
  list-style: none;
}

.nav {
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 30;
  background-color: white;
  top: 0;
  left: 0;
  padding: 1.6rem 6.5rem;
  width: 100vw;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .nav {
    padding: 0.62rem 2.52rem;
  }
}
.nav .logo {
  width: 9.4rem;
  height: 4.8rem;
}
@media (max-width: 480px) {
  .nav .logo {
    width: 7rem;
  }
}
.nav-item {
  display: flex;
  align-items: center;
}
@media (max-width: 480px) {
  .nav-item {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
    justify-content: center;
    flex-direction: column-reverse;
    width: 100vw;
    transform: translateY(-110%);
    height: 45vh;
    transition: transform 0.5s ease-out;
    background-color: white;
  }
}
.nav-item .nav-link {
  padding: 1rem;
  cursor: pointer;
  margin-right: 1.2rem;
}
.nav-item .nav-link li {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.nav-item .nav-link li .drop-down {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  margin-left: 1.2rem;
}
.nav .nav-btn {
  background-color: #FF0000;
  padding: 1.6rem 4.3rem;
  color: #FFFFFF;
  border-radius: 8px;
}
@media (max-width: 480px) {
  .nav .nav-btn {
    display: none;
  }
}
.nav .hamburger {
  align-items: flex-end;
  display: none;
  flex-direction: column;
  gap: 0;
  justify-content: space-between;
  height: 1.7rem;
  overflow: hidden;
  transition: all 0.5s ease-out;
  width: 2.5rem;
  z-index: 2;
}
@media (max-width: 480px) {
  .nav .hamburger {
    display: flex;
  }
}
.nav .hamburger__line {
  background-color: black;
  height: 0.18rem;
  transform-origin: center right;
  transition: all 0.5s ease-out;
  width: 100%;
}
.nav .hamburger[data-open=true] .hamburger_line--one {
  transform: rotate(-45deg);
  width: 2.7rem;
}
.nav .hamburger[data-open=true] .hamburger_line--two {
  transform: translate(8rem);
}
.nav .hamburger[data-open=true] .hamburger_line--three {
  max-width: 2.7rem;
  transform: rotate(45deg);
  width: 2.7rem;
}
.nav .hamburger[data-open=true] .hamburger_line {
  background-color: #7d8487;
}

.about-menu {
  position: absolute;
  display: flex;
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 1rem;
  width: 20rem;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  overflow-y: visible;
  z-index: 25;
  transition: opacity 0.2s ease-in;
  box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15), 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
}
.about-menu-item li {
  border-bottom: 1px solid #E9E9E9;
  margin-bottom: 0.5;
  padding: 1rem;
}
.about-menu-item li:hover {
  background-color: #E9E9E9;
  transition: background-color 0.3s ease-in-out;
  border-radius: 0.3rem;
}
.about-menu-item li p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6rem;
  letter-spacing: 0em;
  text-align: left;
}

.opacity1 {
  opacity: 1;
  visibility: visible;
}

.footer {
  display: flex;
  padding: 6.4rem 9.6rem;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .footer {
    flex-direction: column;
    padding: 2.48rem 1.5rem;
  }
}
.footer .col-1 .footer-logo {
  width: 9.4rem;
  height: 4.8rem;
}
@media (max-width: 480px) {
  .footer .col-1 .footer-logo {
    width: 7rem;
  }
}
.footer .col-1 ul .footer-item {
  margin-top: 2.4rem;
}
@media (max-width: 480px) {
  .footer .col-1 ul .footer-item {
    margin-top: 0.3rem;
  }
}
@media (max-width: 480px) {
  .footer .col-1 ul .footer-item .copy-right {
    margin-top: 0.4rem;
  }
}
.footer .col-1 ul .social-item {
  margin-top: 1.6rem;
  display: flex;
  gap: 2rem;
}
@media (max-width: 480px) {
  .footer .col-1 ul .social-item {
    margin-top: 0.7rem;
  }
}
.footer .col-2 .footer-header {
  margin-bottom: 2.3rem;
}
@media (max-width: 480px) {
  .footer .col-2 .footer-header {
    margin-bottom: 0.4rem;
    margin-top: 2.5rem;
  }
}
.footer .col-2 .col-2-item {
  display: flex;
  flex-direction: column;
  gap: 0.8;
}
.footer .col-2 .col-2-link {
  padding: 1rem 1rem 1rem 0;
}
@media (max-width: 480px) {
  .footer .col-2 .col-2-link {
    padding: 0.2rem 0.7rem 0.2rem 0;
  }
}
@media (max-width: 480px) {
  .footer .col-2 .col-2-link li p {
    font-size: 1.4rem;
    line-height: 1.7rem;
  }
}
@media (max-width: 480px) {
  .footer .col-3 {
    margin-top: 2rem;
  }
}
.footer .col-3 .footer-header {
  margin-bottom: 2.3rem;
}
@media (max-width: 480px) {
  .footer .col-3 .footer-header {
    margin-bottom: 0.89rem;
  }
}
.footer .col-3 li {
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
@media (max-width: 480px) {
  .footer .col-3 li {
    margin-bottom: 0.3rem;
    gap: 0.5rem;
  }
}
.footer .col-3 li .icon svg {
  width: 2rem;
  height: 2rem;
}
@media (max-width: 480px) {
  .footer .col-3 li .icon svg {
    width: 1.8rem;
    height: 1.8rem;
  }
}

.login-back-drop {
  position: fixed;
  width: 100vw;
  height: 1000vh;
  visibility: hidden;
  z-index: 30;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.login {
  position: fixed;
  visibility: hidden;
  top: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 4.8rem;
  left: 50%;
  border-radius: 2.4rem;
  background: #FFF;
  transform: translate(-50%, -50%);
  z-index: 35;
}
@media (max-width: 480px) {
  .login {
    padding: 2rem;
  }
}
.login-header .welcome {
  color: #202020;
  font-family: "Fredoka", sans-serif;
  font-size: 4rem;
  font-style: normal;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.6rem;
  line-height: 4.4rem;
}
@media (max-width: 480px) {
  .login-header .welcome {
    font-size: 2.5rem;
    line-height: 2rem;
    margin-top: 1rem;
  }
}
.login-header .login-p {
  color: rgba(32, 32, 32, 0.7);
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.4rem;
}
@media (max-width: 480px) {
  .login-header .login-p {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}
.login .middle {
  width: 100%;
  margin-top: 4rem;
}
@media (max-width: 480px) {
  .login .middle {
    margin-top: 2rem;
  }
}
.login .middle .login-option {
  margin-bottom: 2.4rem;
  display: flex;
  width: 54rem;
  align-items: center;
  text-align: center;
  border-radius: 2.4rem;
  padding: 1.2rem 2.4rem;
  border: 1px solid #E2E2E2;
  background: #FFF;
}
@media (max-width: 480px) {
  .login .middle .login-option {
    width: 30rem;
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
.login .middle .login-option p {
  color: #202020;
  text-align: center;
  font-size: 1.6rem;
  width: 100%;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6rem;
}
@media (max-width: 480px) {
  .login .middle .login-option p {
    font-size: 1.4rem;
    line-height: 1.4rem;
  }
}
.login .middle .guest {
  text-align: center;
  color: #202020;
  margin-top: 0.8rem;
  margin-bottom: 2.4rem;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6rem;
}
.login .middle .check-out-btn {
  width: 100%;
  display: flex;
  padding: 1.2rem 3.2rem;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  background: #F00;
}
.login .middle .check-out-btn p {
  color: #FFF;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6rem;
}
@media (max-width: 480px) {
  .login .middle .check-out-btn p {
    font-size: 1.4rem;
    line-height: 1.4rem;
  }
}
.login .paragraph {
  color: #202020;
  text-align: center;
  margin-top: 4.8rem;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 500;
  width: 38.1rem;
  line-height: 1.6rem;
}
@media (max-width: 480px) {
  .login .paragraph {
    width: 25rem;
    margin-top: 2rem;
    font-size: 0.8rem;
    line-height: 1.4rem;
  }
}

.hero {
  background-image: url("../images/contact.png");
  margin-top: 7rem;
  width: 100%;
  background-size: contain;
  height: 40rem;
}
@media (max-width: 480px) {
  .hero {
    height: 15.52rem;
    background-repeat: no-repeat;
  }
}

.contact-content {
  display: flex;
  width: 100%;
  justify-content: space-between;
  display: flex;
  padding: 8rem 9.6rem 12.1rem 9.6rem;
}
@media (max-width: 480px) {
  .contact-content {
    flex-direction: column;
    gap: 3rem;
    padding: 2rem;
  }
}
.contact-content-left {
  border-radius: 8px;
  border: 1px solid #E9E9E9;
  background: #F6F6F6;
  display: flex;
  width: 50.8rem;
  height: -moz-fit-content;
  height: fit-content;
  padding: 3.2rem 2.4rem;
  flex-direction: column;
  align-items: flex-start;
}
.content-center {
  display: flex;
  width: 75.8rem;
  height: -moz-fit-content;
  height: fit-content;
  padding: 3.2rem 2.4rem;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 480px) {
  .contact-content-left {
    width: 33rem;
    padding: 2rem;
  }
}
@media (max-width: 480px) {
  .content-center {
    width: 33rem;
    padding: 2rem;
  }
}
.contact-content-left-h {
  color: #300;
  font-family: "Fredoka", sans-serif;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.8rem;
}
.contact-content-left ul {
  margin-top: 4rem;
}
@media (max-width: 480px) {
  .contact-content-left ul {
    margin-top: 2rem;
  }
}
.contact-content-left ul li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 3.2rem;
}
@media (max-width: 480px) {
  .contact-content-left ul li {
    margin-bottom: 2rem;
  }
}
.contact-content-left ul li ul {
  display: flex;
  align-items: center;
}
.contact-content-left ul li ul li {
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 1.6rem;
  flex-shrink: 0;
}
.contact-content-right {
  display: flex;
  width: 70rem;
  height: -moz-fit-content;
  height: fit-content;
  padding: 3.2rem 4.8rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.4rem;
  border: 1px solid red;
  border-radius: 8px;
  border: 1px solid #E9E9E9;
  background: #FFF;
}
@media (max-width: 480px) {
  .contact-content-right {
    width: 33rem;
    padding: 2.8rem 1.5rem;
  }
}
.contact-header {
  color: #202020;
  font-family: "Fredoka", sans-serif;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.8rem;
  /* 116.667% */
}
.content-text {
  width: 59.5rem;
  color: rgba(32, 32, 32, 0.7);
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.4rem;
}
@media (max-width: 480px) {
  .contact-content-right .content-text {
    width: 30rem;
    font-size: 1.2rem;
    line-height: 1.2rem;
  }
}
.form-group {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.form-group .input-wrapper {
  border-radius: 8px;
  border: 1px solid #E2E2E2;
  background: #FFF;
  width: 100%;
  padding: 0.8rem 1.6rem;
  align-items: center;
  height: 4rem;
  display: flex;
}
.form-group .input-wrapper .form-input {
  width: 100%;
  border: none;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.4rem;
}
.form-group .input-wrapper .form-input::-moz-placeholder {
  color: #8D8D8D;
}
.form-group .input-wrapper .form-input::placeholder {
  color: #8D8D8D;
}
.form-group .input-wrapper .form-input:focus {
  outline: none;
}
.form-group .form-input--textarea {
  min-height: 10.4rem;
  border: 1px solid #E2E2E2;
  padding: 1rem 0 0 1rem;
  resize: none;
  width: 100%;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.4rem;
}
.form-group .form-input--textarea::-moz-placeholder {
  color: #8D8D8D;
}
.form-group .form-input--textarea::placeholder {
  color: #8D8D8D;
}
.form-submit {
  align-self: center;
  color: #fff;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1.2rem 1.6rem;
  border-radius: 8px;
  border: 1px solid #F00;
  background: #F00;
  box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15), 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
}/*# sourceMappingURL=contact.css.map */