@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
}

:root {
  --primary: #99e5fd;
  --secondary: #011e4a;
}
.home {
  position: relative;
  width: 100%;
  height: 800px;
  background-color: var(--primary);
  overflow-x: clip;
}
.home_wrapper {
  position: relative;
  max-width: 1200px;
  padding-left: 10px;
  padding-right: 10px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.elipse_left {
  position: absolute;
  width: 534px;
  height: 534px;
  left: -80px;
  top: 30px;
  background: #1a30ff;
  opacity: 0.5;
  filter: blur(250px);
  animation: ellipse_left 20s ease infinite;
}
@keyframes ellipse_left {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(180%);
  }
  50% {
    transform: translateX(180%) translateY(100%);
  }
  75% {
    transform: translateX(0%) translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.elipse_right {
  position: absolute;
  width: 534px;
  height: 534px;
  right: -250px;
  top: 400px;
  background: #0dda94;
  opacity: 0.5;
  filter: blur(250px);
  animation: ellipse_right 20s ease infinite;
}
@keyframes ellipse_right {
  0% {
    transform: translateX(0%);
  }
  25% {
    transform: translateX(-220%);
  }
  50% {
    transform: translateX(-220%) translateY(-100%);
  }
  75% {
    transform: translateX(0%) translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}

.faq {
  position: relative;
  width: 100%;
  background-color: var(--secondary);
  overflow-x: clip;
  padding-bottom: 100px;
}

.faq::after {
  position: absolute;
  content: "";
  width: 486px;
  height: 166px;
  top: 170px;
  left: -350px;
  background: #d225ac;
  filter: blur(250px);
  z-index: 1;
}

.faq::before {
  position: absolute;
  content: "";
  width: 486px;
  height: 166px;
  right: -350px;
  bottom: -150px;
  background: #0dda93;
  filter: blur(250px);
}

.faq_wrapper {
  position: relative;
  max-width: 1200px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
}
.faq_wrapper_title {
  padding: 20px 0px;
  text-align: center;
}
.faq_wrapper_title > h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 2rem;
  line-height: 44px;
  color: #ffffff;
}

.faq_wrapper_title > p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  color: #e9e9e9;
}

.faq_wrapper_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 100%;
}
.faq_wrapper_content_box {
  max-width: 700px;
  padding: 10px;
  border-bottom: 1px solid #123d80;
}
.faq_wrapper_content_box_question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.faq_wrapper_content_box_question > h3 {
  font-weight: 500;
  font-size: 1rem;
  line-height: 28px;
  color: #ffffff;
}

.faq_icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 3px;
  border: 1.5px solid var(--primary);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--primary);
}
.faq_icon::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background-color: var(--primary);
  transition: 0.3s ease;
}
.faq_icon::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 10px;
  background-color: var(--primary);
  transition: 0.3s ease;
}

.faq_wrapper_content_box_answer {
  padding-right: 50px;
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.faq_wrapper_content_box_answer > p {
  font-weight: 300;
  font-size: 0.8rem;
  color: #e9e9e9;
}

/* Faq Active  */

.faq_wrapper_content_box.active .faq_wrapper_content_box_answer {
  max-height: 300px;
  transition: max-height 1.4s ease;
  animation: fade 1s ease-in-out;
}
.faq_wrapper_content_box.active .faq_icon::after {
  scale: 0;
}
.faq_wrapper_content_box.active .faq_icon::before {
  transform: rotate(90deg);
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Us */
.contactUs {
  width: 100%;
  background-color: var(--secondary);
  padding: 60px 0px 120px;
  overflow-x: clip;
}
.contactUs_wrapper {
  position: relative;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
.contactUs_title {
  padding: 20px 0px;
  text-align: center;
}
.contactUs_title > h5 {
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 24px;
  color: #ffd678;
  margin-bottom: 10px;
}
.contactUs_title > h1 {
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 44px;
  color: #ffffff;
  margin-bottom: 16px;
}
.contactUs_title > p {
  font-weight: 300;
  font-size: 14px;
  line-height: 30px;
  color: #e9e9e9;
}
.contactUs_content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contactUs_form {
  width: 600px;
  padding: 20px 0px;
}
.contactUs_content_input {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 21px;
}
.contactUs_content_input > label {
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 20px;
  color: #ffffff;
}

.contactUs_content_input > input {
  background: #123162;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  border-radius: 6px;
  border: none;
  padding: 12px 16px;
  outline: none;
  color: #fff;
  font-size: 0.9rem;
}

.contactUs_content_input > textarea {
  background: #123162;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  border-radius: 6px;
  border: none;
  padding: 12px 16px;
  outline: none;
  color: #fff;
  font-size: 0.9rem;
  min-height: 120px;
  resize: vertical;
}
.contactUs_content_input > input::placeholder,
.contactUs_content_input > textarea::placeholder {
  color: #7f91b4;
  font-size: 0.9rem;
}
.contactUs_content_checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0px 3px;
  margin-bottom: 50px;
}
.contactUs_content_checkbox > input {
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  background-color: #fff;
}
.contactUs_content_checkbox > span {
  color: #fff;
  font-size: 0.9rem;
}
.contactUs_action {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contactUs_action > button {
  padding: 12px 120px;
  background: #0dda93;
  border: 1px solid #0dda93;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  border-radius: 6px;
  color: #111;
  font-weight: 500;
  cursor: pointer;
}

/* Footer */
.footer {
  width: 100%;
  background-color: var(--secondary);
  overflow-x: clip;
}
.footer_wrapper {
  position: relative;
  max-width: 1200px;
  padding: 40px 15px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer_left {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
}
.footer_logo {
  width: 110px;
  height: 40px;
}
.footer_logo > img {
  width: 100%;
  height: 100%;
}
.footer_right {
  flex: 3;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  gap: 80px;
  padding: 2px 0px;
}
.footer_content > h6 {
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 17px;
  color: #ffffff;
}
.footer_content > span {
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 17px;
  color: #ffffff;
}
.footer_icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer_icon {
  transition: 0.3s ease;
}
.footer_icon:hover {
  cursor: pointer;
  transform: translateY(-3px) scale(1.1);
}

/* Media Qyery */
@media screen and (max-width: 600px) {
  .contactUs_title {
    text-align: left;
  }
  .faq_wrapper_title{
    text-align: left;

  }
  .footer_wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .footer_logo {
    width: 180px;
    height: 70px;
  }
  .footer_right {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 450px) {
  .contactUs_title > h1 {
    font-size: 1.8rem;
  }
  .contactUs_title > h5 {
    font-size: 0.8rem;
  }
  .contactUs_title > p {
    font-size: 0.8rem;
  }
  .contactUs_action > button {
    padding: 12px 80px;
    white-space: nowrap;
  }
  .contactUs_form {
    width: 100%;
  }
}
