@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,600;0,700;0,800;1,200&display=swap");
:root {
  --navLink: #7A4E37;
  --primaryColor: #D6885D;
  --primaryTitleColor: #3D3A3B;
  --primaryBodyTextColor: #707070;
}

body {
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  margin: 0;
  overflow-x: hidden;
}

.hide-desktop {
  display: block;
}

.full-beige {
  background-color: #EFEDE8;
}

.nav-list {
  display: none;
  flex-direction: column;
}

.nav-list.show-mobile {
  display: flex;
  width: 100%;
  position: fixed;
  top: -1rem;
  background-color: #ffffff;
  padding-left: 0;
  z-index: 10;
}
.nav-list.show-mobile li {
  text-align: center;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
  list-style-type: none;
}
.nav-list.show-mobile li img {
  cursor: pointer;
  background-color: #707070;
}
.nav-list.show-mobile li a {
  text-decoration: none;
  color: var(--navLink);
}
.nav-list.show-mobile #exit-btn {
  text-align: end;
  padding: 1rem 3rem;
}

.heroBG-mobile {
  width: 100%;
  height: 45rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-bottom: -0.25rem;
}

.heroBG-desktop {
  display: none;
}

.heroBG-tablet {
  display: none;
}

.hero-container {
  width: 100vw;
  margin: 0 auto;
  position: absolute;
  top: 1rem;
}

header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
header nav .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin: auto;
}
header nav .logo img {
  height: 2.1rem;
  padding-right: 0.7rem;
}
header nav .logo .logo-text {
  line-height: 95%;
  color: #474746;
  font-size: 1.2rem;
}
header nav .logo span {
  color: #621B1B;
  font-weight: 600;
}
header nav .menu-toggle {
  cursor: pointer;
  margin: auto;
}

.hero {
  margin-top: 2rem;
  text-align: center;
}
.hero .main-text {
  padding-top: 0;
}
.hero .main-text .hero-title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 3rem;
  color: var(--primaryTitleColor);
  margin-bottom: 1rem;
}
.hero .main-text .hero-title span {
  color: #34A0A4;
  font-weight: 600;
}
.hero .main-text .subtitle {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--primaryBodyTextColor);
}
.hero .main-text .cta {
  display: flex;
  margin: 0 auto;
  width: 10rem;
  padding: 0rem 1.2rem;
  border-radius: 0.6rem;
  font-size: 1.1rem;
  color: #3D3A3B;
  font-weight: 600;
  justify-content: space-between;
  background: #D8E2DC;
  text-decoration: none;
}
.hero .main-text .cta .buttonText {
  margin: 0.75rem 0;
}
.hero .main-text .cta .email-icon {
  width: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.benefit-text {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 3rem 0;
}
.benefit-text .benefit-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.benefit-text .microscope {
  width: 10rem;
}
.benefit-text .header-text {
  width: 40%;
  color: var(--primaryBodyTextColor);
}
.benefit-text .benefits-cards {
  padding: 2rem;
  border: 1px solid var(--primaryBodyTextColor);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.benefit-text .benefits-cards .benefit-card {
  padding: 0;
}
.benefit-text .benefits-cards .benefit-card .icon-circle {
  border-radius: 1rem;
  padding: 1rem;
}
.benefit-text .benefits-cards .benefit-card .icon-circle img {
  width: 4rem;
}
.benefit-text .benefits-cards .benefit-card .icon-1 {
  background-color: #FFD5C0;
}
.benefit-text .benefits-cards .benefit-card .icon-2 {
  background-color: #FFC8C5;
}
.benefit-text .benefits-cards .benefit-card .icon-3 {
  background-color: #FEE1D2;
}
.benefit-text .benefits-cards .benefit-card .icon-4 {
  background-color: #E6F4DF;
}

.additional-benefits {
  width: 85vw;
  padding: 2rem 3rem;
}
.additional-benefits .section-title {
  color: #1A759F;
}
.additional-benefits .benefits-list {
  margin: 2rem 1rem 2rem 0;
}
.additional-benefits .benefits-list .benefit-item {
  display: flex;
  flex-direction: row;
  margin: 1rem 0;
  gap: 1rem;
}
.additional-benefits .benefits-list .benefit-item .benefit-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.5rem;
  height: 0.5rem;
  background-color: white;
  padding: 1.5rem;
  border-radius: 50%;
}
.additional-benefits .benefits-list .benefit-item .benefit-content .benefit-header {
  margin: 0;
  color: var(--primaryTitleColor);
}
.additional-benefits .benefits-list .benefit-item .benefit-content .benefit-description {
  margin-top: 0.5rem;
  color: var(--primaryBodyTextColor);
}

.preparation-tips {
  width: 85vw;
  padding: 2rem 3rem;
}
.preparation-tips .section-title {
  color: #574000;
}
.preparation-tips .tips-list {
  list-style-type: circle;
  color: var(--primaryBodyTextColor);
}

.addresses {
  width: 100vw;
  padding: 2rem 3rem;
  margin-bottom: -1rem;
  padding: 2rem 1rem;
  background-color: var(--primaryTitleColor);
  display: flex;
  flex-direction: column;
  text-align: center;
  color: white;
}
.addresses .address .name {
  font-size: 1.2rem;
  font-weight: 700;
}
.addresses .address .address-body span {
  font-size: 1.1rem;
  font-weight: 600;
}
.addresses .right-footer div, .addresses .right-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
  text-decoration: none;
  color: white;
}
.addresses .right-footer .legal-content {
  flex-direction: column;
  padding-bottom: 1.5rem;
}
.addresses img {
  width: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 0 1rem 0 0;
}

@media only screen and (min-width: 400px) {
  .heroBG-mobile {
    width: 104%;
    height: 49rem;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 100% 10%;
       object-position: 100% 10%;
  }
  .hero {
    margin-top: 5rem;
  }
}
@media only screen and (min-width: 600px) {
  .heroBG-mobile {
    display: none;
  }
  .heroBG-tablet {
    display: block;
    width: 100%;
    height: 42rem;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center 20%;
       object-position: center 20%;
  }
  .benefit-text {
    margin: 3rem auto;
    width: 80%;
  }
  .benefit-text .benefits-cards {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .benefit-text .benefits-cards .benefit-card {
    width: 45%;
  }
}
@media only screen and (min-width: 800px) {
  .menu-toggle {
    display: none;
    cursor: pointer;
  }
  .menu-toggle i {
    font-size: 1.8em;
    color: var(--navLink);
  }
  nav ul li a.active {
    position: relative;
  }
  nav ul li a.active::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--navLink);
    border-radius: 6px;
  }
  .nav {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
  }
  .nav-list {
    display: flex;
    flex-direction: row;
    margin: auto;
  }
  .nav-list li {
    list-style-type: none;
    border-bottom: none;
    padding: 0.8rem;
  }
  .nav-list li a {
    text-decoration: none;
    color: var(--navLink);
    font-size: 0.9rem;
  }
  .nav-list li a:hover {
    font-weight: 600;
  }
  .nav-list .hide-desktop {
    display: none;
  }
  .heroBG-tablet {
    display: none;
  }
  .heroBG-desktop {
    display: block;
    max-height: 600px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  header nav .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin: 0 4rem;
  }
  header nav .logo img {
    margin: 0;
  }
  .hero {
    margin-top: 4rem;
    margin-left: 50%;
  }
  .hero .main-text {
    text-align: left;
  }
  .hero .main-text .hero-title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 3.6rem;
    margin-bottom: 1.2rem;
  }
  .hero .main-text .hero-title span {
    color: #34A0A4;
    font-weight: 700;
  }
  .hero .main-text .subtitle {
    margin-top: 0;
    margin-bottom: 3rem;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primaryBodyTextColor);
  }
  .hero .main-text .cta {
    display: flex;
    margin: 0;
    width: 10rem;
    padding: 0rem 1.2rem;
    border-radius: 0.6rem;
    font-size: 1.1rem;
    color: #3D3A3B;
    font-weight: 600;
    justify-content: space-between;
    background: #D8E2DC;
    text-decoration: none;
  }
  .hero .main-text .cta .buttonText {
    margin: 0.75rem 0;
  }
  .hero .main-text .cta .email-icon {
    width: 1.5rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .preparation-tips .section-title {
    text-align: center;
  }
  .preparation-tips .tips-list {
    margin: auto;
    width: 60%;
    font-size: 1.1rem;
  }
  .preparation-tips .tips-list li {
    margin-bottom: 1rem;
  }
  .addresses {
    margin-bottom: -1rem;
    padding: 1rem 1rem;
    background-color: var(--primaryTitleColor);
  }
  .addresses .address-content {
    display: flex;
    flex-direction: row;
    width: 85vw;
    max-width: 1500px;
    margin: auto;
    justify-content: space-between;
    padding: 1rem;
  }
  .addresses .address {
    text-align: left;
  }
  .addresses .right-footer div, .addresses .right-footer a {
    justify-content: left;
    margin: 0;
    padding: 0.5 rem;
  }
  .addresses .right-footer .legal-content {
    flex-direction: row;
    gap: 2rem;
    padding-bottom: 0.5rem;
  }
  .addresses img {
    width: 2.4rem;
    -o-object-fit: contain;
       object-fit: contain;
    padding: 0 1rem 0 0;
  }
}
@media only screen and (min-width: 1000px) {
  header nav .logo {
    margin-left: 12vw;
  }
  .nav-list li {
    padding: 1.1rem;
  }
  .nav-list li a {
    font-size: 1.1rem;
  }
  .nav-list .hide-desktop {
    display: none;
  }
  .heroBG-desktop {
    display: block;
    width: 100%;
    height: 40rem;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 100% 70%;
       object-position: 100% 70%;
  }
  .hero .main-text .hero-title {
    font-size: 3.2rem;
    line-height: 3.6rem;
  }
  .benefit-text .benefit-header {
    flex-direction: row;
    gap: 3rem;
  }
  .benefit-text .microscope {
    width: 10rem;
  }
  .benefit-text .header-text {
    width: 60%;
  }
  .benefit-text .header-text .highlighted-text {
    font-size: 1.2rem;
    margin-bottom: 0;
  }
  .benefit-text .header-text p {
    font-size: 1.1rem;
  }
  .benefit-text .benefits-cards .benefit-card {
    width: 10rem;
  }
  .benefit-text .benefits-cards .benefit-card p {
    margin-bottom: 0;
  }
  .additional-benefits {
    width: auto;
  }
  .additional-benefits .section-title {
    text-align: center;
  }
  .additional-benefits .benefits-list {
    margin: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 2rem;
  }
}
@media only screen and (min-width: 1440px) {
  .heroBG-desktop {
    height: 50rem;
  }
  header nav {
    width: 72%;
    margin: auto;
  }
  header nav .logo {
    margin-left: 5%;
  }
  header nav .nav-list {
    margin-right: 0;
  }
  .hero .main-text .hero-title {
    font-size: 4rem;
    font-weight: 500;
    line-height: 5rem;
  }
  .hero .main-text .subtitle {
    font-size: 2rem;
  }
  .benefit-text .header-text {
    width: 40%;
  }
  .benefit-text .benefits-cards {
    gap: 3rem;
    padding: 3rem;
  }
  .benefit-text .benefits-cards .benefit-card {
    width: 14rem;
  }
  .additional-benefits .section-title {
    font-size: 2rem;
  }
  .additional-benefits .benefits-list {
    width: 60%;
    margin: auto;
  }
  .preparation-tips {
    width: 60%;
    margin: auto;
  }
  .preparation-tips h2 {
    font-size: 2rem;
  }
  .preparation-tips .tips-list {
    font-size: 1.2rem;
    width: 80%;
  }
  .addresses .address-content {
    width: 60%;
  }
}
@media only screen and (min-width: 1800px) {
  .heroBG-desktop {
    height: 60rem;
  }
  header nav {
    width: 60%;
    margin: auto;
  }
  header nav .logo {
    margin-left: 5%;
  }
  header nav .nav-list {
    margin-right: 0;
  }
  header nav .nav-list li {
    padding: 1.5rem;
  }
  header nav .nav-list li a {
    font-size: 1.2rem;
  }
  .hero .main-text .hero-title {
    font-size: 4rem;
    font-weight: 500;
    line-height: 5rem;
  }
  .hero .main-text .subtitle {
    font-size: 2rem;
  }
  .benefit-text .header-text {
    width: 30%;
  }
  .benefit-text .benefits-cards {
    gap: 4rem;
    padding: 4rem;
  }
  .benefit-text .benefits-cards .benefit-card {
    width: 15rem;
  }
  .additional-benefits .benefits-list {
    width: 50%;
  }
  .preparation-tips {
    width: 60%;
    margin: auto;
  }
  .preparation-tips h2 {
    font-size: 2rem;
  }
  .preparation-tips .tips-list {
    font-size: 1.2rem;
    width: 80%;
  }
  .addresses .address-content {
    width: 60%;
  }
}/*# sourceMappingURL=health.css.map */