.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 9%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  height: 55px;
  width: 150px;
}
.header .logo img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.header .navbar {
  margin-left: 30px;
}
.header .navbar a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #626262;
  display: inline-block;
  margin: 0 1rem;
  transition: all 0.3s ease;
}
.header .navbar a:hover {
  color: #d93ed9;
}
.header .btn__health {
  font-size: 1.5rem;
  font-weight: bold;
  width: 150px;
  height: 40px;
  color: #0823af;
  background-color: white;
  border-radius: 25px;
  border: 2px solid #9be5aa;
  margin-right: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header .btn__health a {
  color: #0823af;
  transition: all 0.3s ease;
}
.header .btn__health:hover {
  border: #0823af 2px solid;
}
.header .btn__health:hover a {
  color: #d93ed9;
}

#menu-btn {
  font-size: 2.5rem;
  color: #626262;
  cursor: pointer;
  display: none;
}

.home {
  width: 100%;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.home .content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.home .content .content-logo {
  height: auto;
  max-width: 700px;
  width: 100%;
  margin-top: 15rem;
}
.home .content .front__services__wrapper {
  margin-left: 0;
  max-width: 500px;
  width: 100%;
  height: auto;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #0823af;
}
.home .content .front__services__wrapper .front__services__item {
  width: 75px;
  height: 112px;
  margin: 20px 12px;
}
.home
  .content
  .front__services__wrapper
  .front__services__item
  .front__service__name {
  color: #626262;
  font-size: 1.2rem;
  margin-top: 10px;
  font-weight: 600;
  text-align: center;
}
.home .content .img2 {
  width: 100%;
  height: 100%;
}

.plan {
  width: 80%;
  margin: 0 auto;
  background-color: #9be5aa;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(17, 17, 17, 0.7);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
.plan .plan-title {
  color: #0823af;
  font-size: 3rem;
  text-align: center;
}
.plan .btn {
  text-align: center;
}
.plan .btn-reverse {
  width: 250px;
  height: 50px;
  font-size: 2rem;
  font-weight: bold;
  color: #0823af;
  border-radius: 25px;
  border: 2px solid #0823af;
  background-color: white;
  transition: all 0.3s ease;
}
.plan .btn-reverse a {
  color: #0823af;
  transition: all 0.3s ease;
}
.plan .btn-reverse:hover {
  background-color: white;
}
.plan .btn-reverse:hover a {
  color: #d93ed9;
}

.about {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 10rem 0;
}
.about .img-container {
  flex: 1 1 42rem;
}
.about .img-container img {
  border-radius: 1rem;
  width: 100%;
}
.about .content {
  flex: 1 1 42rem;
  color: #0823af;
}
.about .content h3 {
  font-size: 4rem;
}
.about .content p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: #626262;
  line-height: 2;
}

.infraestructure .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
  gap: 1.5rem;
}
.infraestructure .box-container .box {
  border-radius: 1rem;
  overflow: hidden;
  background: white;
}
.infraestructure .box-container .box:hover img {
  transform: scale(1.1);
}
.infraestructure .box-container .box .image {
  height: 20rem;
  overflow: hidden;
  width: 100%;
}
.infraestructure .box-container .box .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.infraestructure .box-container .box .content {
  padding: 2rem;
  text-align: center;
}
.infraestructure .box-container .box .content h3 {
  font-size: 2rem;
  color: #0823af;
}
.infraestructure .box-container .box .content p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: #626262;
  line-height: 2;
  text-align: left;
}
.infraestructure .box-container .box .content a {
  font-size: 1.7rem;
}
.infraestructure .box-container .box .content a:hover i {
  padding-left: 1rem;
}
.infraestructure .box-container .box .content a i {
  padding-right: 0.5rem;
}

.gallery .box-container {
  columns: 3 25rem;
  column-gap: 1.5rem;
}
.gallery .box-container .box {
  margin-bottom: 1rem;
  break-inside: avoid;
}
.gallery .box-container .box img {
  width: 100%;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.banner {
  background: linear-gradient(
      360deg,
      rgba(255, 255, 255, 0.9),
      rgba(238, 79, 156, 0.8) 100%
    ),
    #ee4f9c url("../assets/images/disney.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding: 3rem 0;
  background-attachment: fixed;
  text-align-last: center;
}
.banner .content span {
  font-size: 2rem;
  color: #2b568e;
}
.banner .content h3 {
  font-size: 4rem;
  color: #ee4f9c;
  margin-top: 1rem;
}
.banner .content p {
  max-width: 60rem;
  margin: 1rem auto;
  font-size: 1.4rem;
  color: #1a1a1a;
  line-height: 2;
}

.health__content {
  margin-top: 2rem;
}
.health__content .health__title {
  font-size: 4rem;
  color: #d93ed9;
  text-align: center;
  margin-bottom: 2rem;
}
.health__content .health__info {
  max-width: 800px;
  font-size: 1.7rem;
  text-align: left;
  text-transform: none;
  color: #626262;
  line-height: 35px;
}

.column {
  flex-direction: column;
}
.column p {
  margin-top: 2rem;
  font-size: 2rem;
  text-transform: none;
  font-weight: bold;
  color: #d93ed9;
}
.column .btn__container {
  margin-top: 3rem;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.column .btn__container .btn__health {
  font-size: 1.5rem;
  font-weight: bold;
  width: 150px;
  height: 40px;
  background-color: #25d366;
  border-radius: 25px;
  border: 2px solid #128c7e;
  margin-right: 10px;
  transition: transform 0.3s ease;
}
.column .btn__container .btn__health a {
  color: white;
  width: 100%;
  cursor: pointer;
}
.column .btn__container .btn__health:hover {
  transform: scale(1.1);
}
.column .btn__container .btn__mail {
  font-size: 1.5rem;
  font-weight: bold;
  width: 150px;
  height: 40px;
  background-color: #34b7f1;
  border-radius: 25px;
  border: 2px solid #00a4ef;
  margin-right: 10px;
  transition: transform 0.3s ease;
}
.column .btn__container .btn__mail a {
  color: white;
  width: 100%;
  cursor: pointer;
}
.column .btn__container .btn__mail:hover {
  transform: scale(1.1);
}

.footer {
  background-color: #626262;
}
.footer .logo img {
  object-fit: contain;
  height: 60px;
  width: 250px;
}
.footer .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
  gap: 1.5rem;
}
.footer .box-container .box {
  padding: 1rem 0;
}
.footer .box-container .box h3 {
  font-size: 2.2rem;
  color: white;
  padding: 1rem 0;
}
.footer .box-container .box p {
  font-size: 1.4rem;
  color: white;
  padding: 1rem 0;
  line-height: 2;
}
.footer .box-container .box p i {
  color: #0823af;
}
.footer .box-container .share {
  padding-top: 1rem;
  padding-left: 3rem;
}
.footer .box-container .share a {
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4rem;
  font-size: 2rem;
  border-radius: 50%;
  border: 0.2rem solid #ee4f9c;
  color: #d93ed9;
  margin-right: 0.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
.footer .box-container .share a:hover {
  background: #d93ed9;
  color: white;
}
.footer .box-container .links {
  font-size: 1.4rem;
  color: white;
  padding: 1rem 0;
  display: block;
  transition: all 0.3s ease;
}
.footer .box-container .links i {
  padding-right: 0.5rem;
  color: #d93ed9;
  transition: padding-right 0.3s ease;
}
.footer .box-container .links:hover {
  color: #0823af;
}
.footer .box-container .links:hover i {
  padding-right: 2rem;
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  .header {
    padding: 1.5rem 2rem;
  }
  section {
    padding: 3rem 2rem;
  }

  #menu-btn {
    display: inline-block;
  }
  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: white;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
  }
  .header .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .header .navbar a {
    margin: 2rem;
    font-size: 2rem;
    display: block;
  }

  .home .content {
    margin-top: 104px;
    flex-direction: column;
    text-align: center;
  }
  .home .content .content-logo {
    margin-top: 8rem;
    max-width: 500px;
    width: 90%;
  }

  .home .content .img2 {
    width: 80%;
  }

  .header .btn__health {
    display: none;
  }

  .plan {
    margin-top: 6rem;
    width: 85%;
  }

  .footer .box-container {
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  }
}

@media (max-width: 768px) {
  html {
    font-size: 50%;
  }

  .header .btns-container {
    display: none;
  }
  .home {
    margin-bottom: 0;
  }
  .home .content .front__services__wrapper {
    padding: 0 1rem;
    margin-left: 0;
    justify-content: center;
  }
  .home .content .front__services__wrapper .front__services__item {
    margin: 10px;
  }
  .home .content {
    gap: 0;
  }
  .home .content img {
    width: 350px;
    height: 80px;
  }

  .home .content .img2 {
    width: 75%;
    height: 100%;
  }
  .home .whatsapp__icon {
    width: 50px;
    height: 50px;
  }
  .plan {
    width: 85%;
  }
  .plan .plan-title {
    font-size: 2.5rem;
  }
  .plan .btn-reverse {
    margin-top: 1.5rem;
    font-size: 1.7rem;
  }
  .footer {
    gap: 1rem;
  }
  .footer .logo img {
    height: 60px;
    width: 200px;
  }
  .footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 450px) {
  html {
    font-size: 55%;
  }
  .infraestructure .heading h1 {
    font-size: 3rem;
  }
  .whatsapp__icon a img {
    top: 80vh;
    right: 10px;
    width: 80px;
    height: 80px;
  }
  .header {
    padding: 1rem 1rem;
  }

  .home {
    max-height: 750px;
    margin-top: 75px;
    margin-bottom: 0;
  }
  .home .content {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .home .content .content-logo {
    width: 90%;
    height: auto;
    margin-left: 0;
    margin-top: 5rem;
  }
  .home .content .front__services__wrapper {
    padding: 0 1rem;
    width: 100%;
    justify-content: center;
  }
  .home .content .front__services__wrapper .front__services__item {
    width: 80px;
    height: auto;
    margin: 10px;
  }
  .home
    .content
    .front__services__wrapper
    .front__services__item
    .front__service__name {
    color: #626262;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
  }
  .home .content .img2 {
    display: none;
  }
  .home.plan {
    margin-top: 4rem;
    width: 85%;
  }

  .home .plan .plan-title {
    font-size: 1.7rem;
  }
  .home .plan .btn-reverse {
    margin-top: 1rem;
    font-size: 1.3rem;
  }
  .home .about .content h3 {
    font-size: 3rem;
  }
  .home .footer {
    padding: 3rem 25%;
  }
  .column {
    font-size: 1rem;
  }
  .column .health__content {
    margin-top: 20rem;
  }
  .column .health__content .health__title {
    font-size: 3rem;
  }
  .column .health__content .health__title img {
    width: 400px;
  }
  .column p {
    font-size: 1.7rem;
  }
  .column .btn__container {
    flex-direction: column;
    gap: 2rem;
  }
}
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 9rem;
}

body {
  overflow-x: visible;
}

section {
  padding: 3rem 9%;
}

.heading {
  text-align: center;
  margin-bottom: 2rem;
}
.heading span {
  color: #d93ed9;
  font-size: 2rem;
}
.heading h1 {
  color: #0823af;
  font-size: 4rem;
}

.btn {
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.7rem;
  color: #d93ed9;
  border: 0.2rem solid #ee4f9c;
  border-radius: 5rem;
  cursor: pointer;
  background: none;
  transition: all 0.3s ease;
}
.btn:hover {
  background-color: #d93ed9;
  color: #626262;
  border: 0.2rem solid #0823af;
}

.lower {
  text-transform: none;
}

.whatsapp__icon {
  width: 90px;
  height: 90px;
  position: fixed;
  top: 85vh;
  right: 0;
  z-index: 9999;
}
.whatsapp__icon img {
  width: 100%;
  height: 100%;
} /*# sourceMappingURL=main.css.map */
