/* Custom Scroll Bar */
body::-webkit-scrollbar-thumb {
  background: linear-gradient(#1d4fb3, #538cfd);
}

/* Contact */
.contact {
  width: 100%;
  height: 150vh;
  margin-top: 30rem;
}

.contact-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.contact-circle {
  width: 90rem;
  height: 90rem;
  border-radius: 50%;
  background: linear-gradient(to right, #65b1ff, transparent 30%);
  position: absolute;
  bottom: 12%;
  left: 20%;
  opacity: 0.2;
}

.contact-header {
  text-align: center;
}

.contact-header h1 {
  font-family: 'Mooli', cursive;
  font-size: 6rem;
  letter-spacing: 0.2rem;
  color: #263b53;
}

.contact-header h3 {
  font-size: 3rem;
  font-weight: 300;
  color: #567599;
  margin: 2rem 0 15rem 0;
}

.contact-content {
  display: flex;
}

.contact-form-wrapper {
  width: 45rem;
  height: 78rem;
  background-color: #fff;
  box-shadow: 0 1rem 10rem rgba(130, 162, 235, 0.6);
  z-index: 10;
  padding: 4rem 2rem;
  border-radius: 1rem;
  margin: 0 3rem;
  text-align: center;
}

.contact-form-wrapper span {
  font-size: 8rem;
  color: #8f42ec;
}

.contact-form-wrapper h4 {
  font-family: 'Mooli', cursive;
  font-size: 1.6rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #8f42ec;
  letter-spacing: 0.1rem;
  margin: 3rem 0 1rem 0;
}

.contact-form-wrapper p {
  font-size: 1.8rem;
  font-weight: 300;
  color: #5c646d;
  margin-bottom: 7rem;
}

.contact-form-wrapper form {
  display: flex;
  flex-direction: column;
}

.contact-form-wrapper input, .contact-form-wrapper textarea {
  width: 100%;
  margin: 2rem 0;
  background-color: #f0f2f4;
  padding: 1rem 1rem 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  font-weight: 300;
}

.contact-form-wrapper input {
  height: 5rem;
}

.contact-form-wrapper textarea {
  height: 10rem;
  resize: none;
}

.contact-form-wrapper input::placeholder, .contact-form-wrapper textarea::placeholder {
  color: #0d335f;
}

.contact-form-wrapper button {
  height: 5rem;
  background: linear-gradient(to right, #ac40ec, #852dea);
  border: none;
  border-radius: 5rem;
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: #fff;
  cursor: pointer;
}

.contact-support-wrapper {
  width: 45rem;
  height: 67rem;
  background-color: #fff;
  box-shadow: 0 1rem 10rem rgba(130, 162, 235, 0.4);
  border-radius: 1rem;
  margin: 0 3rem;
  text-align: center;
  padding: 4rem 2rem;
  z-index: 10;
}

.contact-support-wrapper span {
  font-size: 8rem;
  color: #6797ff;
}

.contact-support-wrapper h4 {
  font-family: 'Mooli', cursive;
  font-size: 1.6rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #6797ff;
  letter-spacing: 0.1rem;
  margin: 3rem 0 1rem 0;
}

.contact-support-wrapper p {
  font-size: 1.8rem;
  font-weight: 300;
  color: #5c646d;
  margin-bottom: 4rem;
}

.chat-btn {
  width: 100%;
  height: 5rem;
  background: linear-gradient(to right, #65b1ff, #4f8aff);
  border: none;
  border-radius: 5rem;
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .1rem;
  color: #fff;
  margin-bottom: 5rem;
  cursor: pointer;

}


.support-list {
  display: flex;
  flex-direction: column;
}

.support-list button {
  height: 4.5rem;
  margin: 1rem 0;
  background-color: #f2f4f5;
  border: none;
  border-radius: 4rem;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #4f8aff;
  letter-spacing: 0.1rem;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 820px) {
  .contact {
    height: 110vh;
  }

  .contact-header h3 {
    width: 70%;
    margin: 2rem auto 15rem auto;
  }

  .contact-circle {
    width: 70rem;
    height: 70rem;
    bottom: 25%;
    left: 2%;
  }

  .contact-form-wrapper {
    width: 35rem;
    height: 78rem;
  }

  .contact-support-form-wrapper {
    width: 35rem;
    height: 67rem;
  }
}

@media (max-width: 430px) {
  .contact {
    height: 180vh;
  }

  .contact-header h1 {
    font-size: 4rem;
  }

  .contact-header h3 {
    font-size: 2.5rem;
    width: 80%;
    margin: 2rem auto 15rem auto;
  }

  .contact-content {
    flex-direction: column;
    align-items: center;
  }

  .contact-form-wrapper {
    margin: 0 3rem 10rem 3rem;
  }


  .contact-circle {
    bottom: 30%;
    left: 3%;
  }
}

@media (max-width: 375px) {
  .contact {
    height: 220vh;
  }
}
