@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');


/* Start General CSS */

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
  
  body {
    font-family: "Open Sans", sans-serif;
    color: #333;
    line-height: 1.6;
  }

  /* Header */

  .header {
    background-color: #edfbff;
    padding: 4.8rem 0 7.1rem 0;
    background: linear-gradient( 75.17deg, rgba(255, 255, 255, 0.0001) -65.71%, #c9f0ff 125.65% ), url(../images/bg-hero-desktop.svg) top center/cover no-repeat;
    /*margin-bottom: 16.1rem; */
  }

  img {
      width: 100%;
  }

  .logo {
    width: 17.4%;
  }

  .navbar .flex {
      justify-content: space-between;
  }

  a {
    text-decoration: none;
  }

  /* Showcase */
  .showcase {
      height: 400px;
      padding: 100px;
      position: relative;
  }

  .showcase h1 {
      font-size: 40px;
  }

  .showcase p {
      margin: 20px 0;
  }

  .pink {
    display: inline-block;
    border-radius: 2.8rem;
    background-color: #ff52c1;
    color: #fff;
    box-shadow: 2px 3px 6px 1px rgb(255 82 193 / 17%);
  }

  .about-img {
    width: 40%;
  }

  /*Cards */

  .card {
    padding: 2.3rem 6.5rem 4rem 8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 3.5rem 0;
  }

  .card-community {
    width: 50%;
    position: absolute;
    right: 29.5rem;
    background-color: #fff;
    flex-direction: column;
    margin: 40px auto;
    padding: 5.6rem 0 5.2rem 0;
    border-radius: 1.5rem;
    box-shadow: 0px 0px 14px rgb(0 0 0 / 7%);
    text-align: center;
  }

  .cards-main {
    margin: 7.5rem 0;
  }

  .card-one, .card-two, .card-three {
    width: 50%;
  }

  .text {
    color: #808e9a;
  }

  .heading {
    margin: 0 0 10px;
  }

  /* Footer */
.footer {
  background-color: #00252e;
  color: #fff;
  padding: 16.4rem 0 0.4rem 0;
}

.logo-footer {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
  width: 50%;
  margin-bottom: 3.2rem;
}

.footer-flex {
    width: 90%;
    max-width: 124.2rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.info-section {
  display: flex;
  flex-direction: column;
  width: 30.6%;
}

.location-img, .phone-img, .mail-img {
    align-self: flex-start;
    height: auto;
    width: 1.4rem;
}

.location-box, .phone-box, .mail-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.6rem;
    margin-bottom: 1.6rem;
}

.fa-facebook, .fa-twitter, .fa-instagram {
  color: #edfbff;
  margin: 5px;
  margin-bottom: 70px;
}

ul {
  list-style: none;
}

ul li {
  margin: 0 0 10px
}

ul li a {
  color: #edfbff;
}

.location-description, .phone-description, .mail-description {
  color: #edfbff;
}

.copyright {
  text-align: end;
  margin: 55px;
  font-size: 12px;
}

p a {
  color: #edfbff;
}

.links-page {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
}