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

@font-face {
  font-family: "Gotham";
  src: url("../assets/fonts/GothamOffice-Regular.otf") format("woff2"),
    url("../assets/fonts/GothamOffice-Regular.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "GothamBold";
  src: url("../assets/fonts/GothamOffice-Bold.otf") format("woff2"),
    url("../assets/fonts/GothamOffice-Bold.otf") format("woff");
  font-weight: 600;
  font-style: normal;
}

body {
  font-family: "Gotham";
  overflow-x: hidden;
  background: #eaeaea;
}

.body_wrapper {
  padding: 20px 80px 70px 80px;
}

a,
p,
button,
input {
  font-family: "Gotham";
}

.logo_wrapper {
  display: flex;
  align-items: center;
  column-gap: 30px;
  margin-bottom: 20px;
}

.header_title {
  font-size: 18px;
  font-family: "GothamBold";
}

.main_wrapper {
  padding: 110px;
  border-radius: 20px;
  background: #fff;
}

.data_title {
  font-weight: 700;
}

.data_description {
  padding: 24px 0;
}

.main_title {
  font-size: 24px;
}

.description {
  color: #323232;
  padding: 24px 0 32px 0;
  font-weight: 600;
  line-height: 24px;
}

.hygiene_lottie_logo {
  width: 200px;
  height: 200px;
  margin: -40px 0;
}

.vertical_line {
  width: 1px;
  height: 50px;
  background: #000;
}

.gradient_text {
  background: linear-gradient(
    92deg,
    #d3438b -51.86%,
    #df347f 3.97%,
    #f1625c 30.35%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* FAQs */
.faq_wrapper {
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 24px;
}

.faq_wrapper:not(:first-child) {
  padding-top: 24px;
  width: 100%;
}

.faq_qtn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
  font-family: "GothamBold";
  font-weight: 600;
}

.faq_qtn p:not(.faq_icon) {
  width: 80%;
  line-height: 36px;
}

.faq_icon_wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    78deg,
    #d3438b -78.59%,
    #df347f -23.42%,
    #f1625c 101.46%
  );
  border-radius: 100%;
}

.faq_icon {
  font-size: 32px;
  color: #fff;
}

.faq_ans {
  font-size: 16px;
  line-height: 26px;
  max-width: 560px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq_wrapper.active .faq_ans {
  max-height: 300px;
  padding-top: 24px;
}

@media screen and (max-width: 1024px) {
  .body_wrapper {
    padding: 20px 40px 70px 40px;
  }

  .main_wrapper {
    padding: 80px;
    margin-top: 40px;
  }

  .faq_qtn {
    font-size: 16px;
  }

  .faq_icon_wrapper {
    width: 40px;
    height: 40px;
  }

  .faq_icon {
    font-size: 28px;
  }
}

@media screen and (max-width: 820px) {
  .main_wrapper {
    padding: 24px;
  }

  .body_wrapper {
    padding: 32px;
  }

  .hygiene_lottie_logo {
    margin: -80px 0;
  }

  .description {
    font-size: 14px;
    padding: 24px 0 24px 0;
  }

  .main_title {
    font-size: 20px;
  }

  .faq_icon_wrapper {
    width: 30px;
    height: 30px;
  }

  .faq_icon {
    font-size: 20px;
  }

  .faq_wrapper:not(:first-child) {
    padding-top: 28px;
  }

  .faq_qtn p:not(.faq_icon) {
    line-height: 28px;
  }

  .faq_wrapper.active .faq_ans {
    padding-top: 8px;
    line-height: 24px;
  }

  .faq_ans {
    font-size: 14px;
  }
}
