@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  font-family: 'Barlow', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* SECTION 4 */
.section-4 {
  background-color: #f8fafb;
  padding-top: 81px;
}

.section-4-container {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  background: url('../assets/Mask group.svg') no-repeat center center/cover;
  background-size: cover;
  background-clip: border-box;
  overflow: hidden;
  padding-bottom: 117px;
}

.section-4-container article {
  width: 574px;
  text-align: center;
  margin: 0 auto;
}

.section-4-container article h2 {
  font-size: 38px;
  font-weight: 300;
  color: #0d343a;
}

.section-4-container article p {
  font-weight: 500;
  font-size: 22px;
  color: #607c81;
  opacity: 80%;
  margin-top: 20px;
}

.section-4-container-item {
  display: flex;
  background-color: white;
  gap: 12px;
  align-items: start;
  border-radius: 12px;
  padding: 12px;
}

.section-4-container-list {
  width: 820px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.section-4-span h2 {
  font-size: 16px;
  font-weight: 700px;
}

.section-4-span p {
  font-size: 16px;
  font-weight: 500;
  color: #395c61;
  margin-top: 10px;
}

/* Footer Section */
footer {
  background-color: #177b97;
  padding: 0px 8px 0px;
}

.footer-head {
  padding: 90px 16px 30px 16px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-bottom: 1px solid #7cbbf43d;
}

.footer-head ul {
  display: flex;
  gap: 22px;
  align-items: center;
  list-style-type: none;
}

.footer-head ul li a {
  text-decoration: none;
  color: white;
  opacity: 50%;
}

.footer-head ul li a:hover {
  opacity: 100%;
}

.multiple {
  display: flex;
  align-items: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 40px 16px 40px 16px;
  color: white;
}

.footer-bottom span {
  display: flex;
  align-items: center;
  gap: 3px;
}

/* privacy */
.privacy {
  width: 800px;
  margin: 0 auto;
  padding: 100px 120px 100px 120px;
  display: flex;
  gap: 38px;
  flex-direction: column;
}

.privacy h2 {
  font-size: 40px;
  font-weight: 300;
  color: #607c81;
}

.privacy h3 {
  font-size: 24px;
  font-weight: 600;
  color: #607c81;
  margin-top: 12px;
}

.privacy ul {
  margin-left: 30px;
  color: #607c81;
  margin-top: 10px;
}

.privacy p {
  font-size: 20px;
  font-weight: 500;
  color: #607c81;
  margin-top: 8px;
  line-height: 27px;
}

@media screen and (max-width: 768px) {
  .mobile-nav-btn {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 10px;
  }

  nav {
    flex-direction: row;
    padding: 0 20px;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 1rem 0;
  }

  .nav-list.active {
    display: flex;
  }

  nav ul li a {
    padding: 20px 0;
    text-align: center;
  }

  .hero h1,
  .hero p {
    width: 90%;
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }

  /* .hero {
    margin-bottom: 90px;
  } */

  .store-btn {
    flex-direction: column;
    margin-top: 20px;
    gap: 10px;
  }

  .section-2-head {
    text-align: center;
  }

  .section-2-holder {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-2-head h1,
  .section-2-head h2,
  .section-3-container h2,
  .section-5-container h2 {
    font-size: 22px;
  }

  .section-4-container article {
    width: 300px;
  }

  .section-4-container article h2 {
    font-size: 24px;
  }

  .section-4-container article p {
    font-size: 14px;
  }

  .section-4-container-list {
    padding-left: 20px;
    padding-right: 20px;
  }

  .phone {
    width: 300px;
  }

  .section-2-article {
    flex-direction: column;
    gap: 20px;
  }

  .section-2-content,
  .section-3-container,
  .section-4-container,
  .section-5-container {
    width: fit-content;
  }

  .privacy h2 {
    font-size: 26px;
  }

  .privacy p {
    font-size: 18px;
  }

  .section-4-container-list {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .privacy {
    width: 90%;
    padding: 50px 20px;
  }

  .footer-head {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .footer-head ul {
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px 10px;
  }

  .footer-bottom span {
    justify-content: center;
  }
}
