* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Vidaloka", serif;
  overflow-x: hidden;
}

h1 {
  font-size: 8rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.5rem;
}

h4 {
  font-size: 1.5rem;
}

a,
li {
  font-size: 1.5rem;
  text-decoration: none;
}

h5 {
  font-size: 1.2rem;
  font-family: "Poppins", sans-serif;
}

p {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
}

@media screen and (max-width: 1440px) {
  h1 {
    font-size: 6rem;
  }
}

@media screen and (max-width: 1024px) {
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1rem;
  }
  a,
  li {
    font-size: 1rem;
    text-decoration: none;
  }
  h5 {
    font-size: 0.9rem;
  }
  p {
    font-size: 0.8rem;
    font-family: "Poppins", sans-serif;
  }
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Vidaloka", serif;
  overflow-x: hidden;
}

h1 {
  font-size: 8rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.5rem;
}

h4 {
  font-size: 1.5rem;
}

a,
li {
  font-size: 1.5rem;
  text-decoration: none;
}

h5 {
  font-size: 1.2rem;
  font-family: "Poppins", sans-serif;
}

p {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
}

@media screen and (max-width: 1440px) {
  h1 {
    font-size: 6rem;
  }
}

@media screen and (max-width: 1024px) {
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1rem;
  }
  a,
  li {
    font-size: 1rem;
    text-decoration: none;
  }
  h5 {
    font-size: 0.9rem;
  }
  p {
    font-size: 0.8rem;
    font-family: "Poppins", sans-serif;
  }
}

.horizontal-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255, 255, 255, 0.44);
  -webkit-backdrop-filter: blur(13px);
          backdrop-filter: blur(13px);
  z-index: 10;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.horizontal-navbar .logo {
  padding: 0 3rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.horizontal-navbar .logo img {
  height: 50px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.horizontal-navbar ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.horizontal-navbar ul li {
  padding: 0 2rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.horizontal-navbar ul li a {
  color: #707070;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu-container {
  position: fixed;
  top: 0;
  right: 30px;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
  z-index: 20;
}

.menu-container .hamburger-menu {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.menu-container .hamburger-menu .line {
  width: 100%;
  height: 3px;
  background-color: #4a4a4a;
  border-radius: 10px;
}

.vertical-navbar {
  position: fixed;
  top: -100%;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255, 255, 255, 0.44);
  -webkit-backdrop-filter: blur(13px);
          backdrop-filter: blur(13px);
  z-index: 15;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.vertical-navbar ul {
  list-style: none;
  text-align: center;
}

.vertical-navbar ul li {
  padding: 1rem 0;
}

.vertical-navbar ul li a {
  color: #707070;
}

.active {
  top: 0;
}

@media screen and (max-width: 960px) {
  .horizontal-navbar ul {
    display: none;
  }
}

@media screen and (max-width: 960px) {
  .menu-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.say-hello {
  position: relative;
  width: 100%;
  margin: 10rem 0;
}

.say-hello .heading {
  padding-bottom: 5rem;
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.say-hello .heading h2 {
  position: absolute;
  background-color: #fff;
  padding: 0 2rem;
}

.say-hello .heading .yellow-line {
  width: 100%;
  height: 5px;
  background-color: #fcc85f;
}

.say-hello .map {
  padding: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.say-hello .map iframe {
  width: 80%;
  aspect-ratio: 4/1;
}

.say-hello .contact {
  padding: 0 10rem;
  position: relative;
  width: 100%;
  height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.say-hello .contact .contact-text {
  width: 40%;
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.say-hello .contact .contact-text a {
  width: 80%;
  font-size: 1.2rem;
  font-family: "poppins", sans-serif;
  color: #826e4c;
}

.say-hello .contact .contact-text h4 {
  font-family: "poppins", sans-serif;
  color: #826e4c;
}

.say-hello .contact .contact-text h4 a {
  font-family: "poppins", sans-serif;
  text-decoration: none;
  color: #826e4c;
}

.say-hello .contact .social-icons {
  margin-top: 1rem;
  width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.say-hello .contact .social-icons .icon {
  width: 40px;
  height: 40px;
  border: 2px solid #826e4c;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.say-hello .contact .social-icons .icon:hover {
  background-color: #826e4c;
}

.say-hello .contact .social-icons .icon:hover svg path {
  fill: #fff;
}

.say-hello .vertical-yellow-line {
  padding: 0;
  width: 5px;
  height: 80%;
  border-radius: 5px;
  background-color: #fcc85f;
}

.say-hello .contact-form {
  position: relative;
  width: 40%;
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.say-hello .contact-form .alert {
  font-family: "poppins", sans-serif;
  padding: 10px 30px;
  font-weight: 400;
  color: #fff;
  background-color: #43a047;
  display: none;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.say-hello .contact-form .form {
  position: relative;
  height: 80%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  overflow: hidden;
}

.say-hello .contact-form .form .form-name {
  position: relative;
  width: 100%;
}

.say-hello .contact-form .form .form-name input {
  font-family: "poppins", sans-serif;
  width: 100%;
  height: 35px;
  color: #252525;
  border: none;
  outline: none;
  padding-top: 5px;
}

.say-hello .contact-form .form .form-name input::-webkit-outer-spin-button,
.say-hello .contact-form .form .form-name input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.say-hello .contact-form .form .form-name label {
  position: absolute;
  font-family: "poppins", sans-serif;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35px;
  pointer-events: none;
  border-bottom: 1px solid #bd9245;
}

.say-hello .contact-form .form .form-name label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 35px;
  width: 100%;
  border-bottom: 3px solid #fcc85f;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.say-hello .contact-form .form .form-name input:focus + .label-name .content-name,
.say-hello .contact-form .form .form-name input:valid + .label-name .content-name {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fcc85f;
}

.say-hello .contact-form .form .form-name input:focus + .label-name::after,
.say-hello .contact-form .form .form-name input:valid + .label-name::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.say-hello .contact-form .form .content-name {
  position: absolute;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: #bd9245;
  bottom: 5px;
  left: 0px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.say-hello .contact-form button {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  border: none;
  bottom: 0;
  right: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.say-hello .contact-form button svg path {
  fill: #fcc85f;
}

.say-hello .contact-form button:hover {
  width: 40px;
  height: 40px;
  background-color: #fcc85f;
}

.say-hello .contact-form button:hover svg path {
  fill: #fff;
}

footer {
  position: absolute;
  left: 0;
  width: 100%;
}

footer .links {
  width: 100%;
  height: 20vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  background-color: #f8f4e5;
}

footer .links .social-icons {
  margin-top: 1rem;
  width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .links .social-icons .icon {
  width: 40px;
  height: 40px;
  border: 2px solid #826e4c;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

footer .links .social-icons .icon:hover {
  background-color: #826e4c;
}

footer .links .social-icons .icon:hover svg path {
  fill: #fff;
}

footer .links .navigation-links {
  width: 500px;
}

footer .links .navigation-links ul {
  padding: 0;
  margin: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
}

footer .links .navigation-links ul li a {
  text-decoration: none;
  font-family: "poppins", sans-serif;
  color: #826e4c;
}

footer .copyright {
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  background-color: #cba954;
}

footer .copyright p {
  margin: auto 0;
}

@media screen and (max-width: 1024px) {
  .say-hello {
    text-align: center;
  }
  .say-hello .contact {
    padding: 0 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .say-hello .contact .contact-text {
    width: 100%;
  }
  .say-hello .contact .contact-text a {
    margin: 0 auto;
  }
  .say-hello .contact .social-icons {
    margin: 0 auto;
  }
  .say-hello .vertical-yellow-line {
    display: none;
  }
  .say-hello .contact-form {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .say-hello {
    margin: 10rem 0;
  }
  .say-hello .heading {
    padding-bottom: 2rem;
  }
}
/*# sourceMappingURL=contact.css.map */