@font-face {
  font-family: "Archivo-Thin";
  /* Nombre de la fuente que usarás en CSS */
  src: url("./fonts/Archivo-Thin.ttf") format("truetype");
  /* Ruta al archivo .ttf */
  font-weight: normal;
  /* Puedes especificar el peso de la fuente si es necesario */
  font-style: normal;
  /* Puedes especificar el estilo de la fuente si es necesario */
}

@font-face {
  font-family: "Archivo-Light";
  /* Nombre de la fuente que usarás en CSS */
  src: url("./fonts/Archivo-Light.ttf") format("truetype");
  /* Ruta al archivo .ttf */
  font-weight: normal;
  /* Puedes especificar el peso de la fuente si es necesario */
  font-style: normal;
  /* Puedes especificar el estilo de la fuente si es necesario */
}

@font-face {
  font-family: "Archivo-SemiBold";
  /* Nombre de la fuente que usarás en CSS */
  src: url("./fonts/Archivo-SemiBold.ttf") format("truetype");
  /* Ruta al archivo .ttf */
  font-weight: normal;
  /* Puedes especificar el peso de la fuente si es necesario */
  font-style: normal;
  /* Puedes especificar el estilo de la fuente si es necesario */
}

@font-face {
  font-family: "Archivo-Bold";
  /* Nombre de la fuente que usarás en CSS */
  src: url("./fonts/Archivo-Bold.ttf") format("truetype");
  /* Ruta al archivo .ttf */
  font-weight: normal;
  /* Puedes especificar el peso de la fuente si es necesario */
  font-style: normal;
  /* Puedes especificar el estilo de la fuente si es necesario */
}

@font-face {
  font-family: "Archivo-Regular";
  /* Nombre de la fuente que usarás en CSS */
  src: url("./fonts/Archivo-Regular.ttf") format("truetype");
  /* Ruta al archivo .ttf */
  font-weight: normal;
  /* Puedes especificar el peso de la fuente si es necesario */
  font-style: normal;
  /* Puedes especificar el estilo de la fuente si es necesario */
}

@font-face {
  font-family: "Archivo-ExtraBold";
  /* Nombre de la fuente que usarás en CSS */
  src: url("./fonts/Archivo-ExtraBold.ttf") format("truetype");
  /* Ruta al archivo .ttf */
  font-weight: normal;
  /* Puedes especificar el peso de la fuente si es necesario */
  font-style: normal;
  /* Puedes especificar el estilo de la fuente si es necesario */
}

@font-face {
  font-family: "Poppins-Thin";
  /* Nombre de la fuente que usarás en CSS */
  src: url("./fonts/Poppins-Thin.ttf") format("truetype");
  /* Ruta al archivo .ttf */
  font-weight: normal;
  /* Puedes especificar el peso de la fuente si es necesario */
  font-style: normal;
  /* Puedes especificar el estilo de la fuente si es necesario */
}

@font-face {
  font-family: "Poppins-Light";
  /* Nombre de la fuente que usarás en CSS */
  src: url("./fonts/Poppins-Light.ttf") format("truetype");
  /* Ruta al archivo .ttf */
  font-weight: normal;
  /* Puedes especificar el peso de la fuente si es necesario */
  font-style: normal;
  /* Puedes especificar el estilo de la fuente si es necesario */
}

@font-face {
  font-family: "Poppins-Medium";
  /* Nombre de la fuente que usarás en CSS */
  src: url("./fonts/Poppins-Medium.ttf") format("truetype");
  /* Ruta al archivo .ttf */
  font-weight: normal;
  /* Puedes especificar el peso de la fuente si es necesario */
  font-style: normal;
  /* Puedes especificar el estilo de la fuente si es necesario */
}

@font-face {
  font-family: "Poppins-Regular";
  /* Nombre de la fuente que usarás en CSS */
  src: url("./fonts/Poppins-Regular.ttf") format("truetype");
  /* Ruta al archivo .ttf */
  font-weight: normal;
  /* Puedes especificar el peso de la fuente si es necesario */
  font-style: normal;
  /* Puedes especificar el estilo de la fuente si es necesario */
}

@font-face {
  font-family: "Poppins-Bold";
  /* Nombre de la fuente que usarás en CSS */
  src: url("./fonts/Poppins-Bold.ttf") format("truetype");
  /* Ruta al archivo .ttf */
  font-weight: normal;
  /* Puedes especificar el peso de la fuente si es necesario */
  font-style: normal;
  /* Puedes especificar el estilo de la fuente si es necesario */
}

@font-face {
  font-family: "Poppins-SemiBold";
  /* Nombre de la fuente que usarás en CSS */
  src: url("./fonts/Poppins-SemiBold.ttf") format("truetype");
  /* Ruta al archivo .ttf */
  font-weight: normal;
  /* Puedes especificar el peso de la fuente si es necesario */
  font-style: normal;
  /* Puedes especificar el estilo de la fuente si es necesario */
}

/* Reseteo básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Diseño del cuerpo */
body {
  font-family: "Archivo-Regular", sans-serif;
  line-height: 1.6;
  background: rgba(255, 255, 255, 1);
  width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
  max-height: auto;
}

#menuMovil,
#footerMovil {
  display: none;
}

header {
  position: fixed;
  width: 100%;
  padding: 25px 80px;
  background: #fff;
  z-index: 100000;
  -webkit-box-shadow: 0px 6px 5px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 6px 5px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 6px 5px 0px rgba(0, 0, 0, 0.25);
}

.contentHeader {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}

.contentHeader > .center {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 3rem;
}

.contentHeader > .center > a > img {
  width: 140px;
}

.contentHeader > .center > p {
  font-family: Poppins-Regular;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  color: #1b1b1b;
}

.contentHeader > .center > p > a {
  text-decoration: none;
  font-family: Poppins-Regular;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  color: #1b1b1b;
}

.menuActive {
  font-family: Poppins-SemiBold !important;
}

.contentHeader > .center > button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: #2e8eff;
  font-family: Poppins-SemiBold;
  font-weight: 600;
  font-size: 16px;
  line-height: 15px;
  color: #ffffff;
  padding: 12px 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.contentHeader > .center > button > a {
  list-style: none;
  text-decoration: none;
  font-family: Poppins-SemiBold;
  font-weight: 600;
  font-size: 16px;
  line-height: 15px;
  color: #ffffff;
}

.contentHeader > .center > button > img {
  width: 12px;
  height: 8px;
  margin-left: 8px;
}

.modal {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 10000000000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 211, 211, 0.404);
}

.modal > .contenidoModal {
  width: 40%;
  /* overflow-y: scroll; */
  height: auto;
  padding: 48px 64px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 2rem;
  border-radius: 32px;
  background: #fff;
}

.headerModalEmergencia {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.headerModalEmergencia > img {
  width: 380px;
  height: 280px;
}

.canalesAtencionInfoBox {
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-top: 20px;
}

.canalesAtencionInfoBox > h1 {
  color: #2e8eff;
  font-size: 24px;
  font-family: Archivo-Regular;
  margin-bottom: 20px;
}

.canalesAtencionInfoBox > div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.canalesAtencionInfoBox > div > p {
  color: #10217d;
  font-family: Poppins-Light;
  font-size: 18px;
  margin: 0;
  margin-bottom: 16px;
}

.canalesAtencionInfoBox > div > p > span {
  color: #10217d;
  font-family: Poppins-Bold;
}

.canalesAtencionInfoBox > div > button {
  width: 80%;
  margin-top: 10px;
  background: #2e8eff;
  padding: 10px 0px;
  border-radius: 6px;
  font-family: Poppins-Bold;
  font-size: 16px;
  color: #ffffff;
  border: none;
}

footer {
  width: 100%;
  padding: 40px 80px;
  display: flex;
  background: #252525;
  flex-direction: column;
}

.footerBoxImg {
  display: flex;
  flex-direction: column;
  align-items: start;
  align-self: start;
  justify-content: start;
  width: auto;
}

.footerBoxImg > img {
  width: 150px;
  margin-left: -10px;
  margin-bottom: 20px;
}

.footerBoxImg > .linea {
  width: 60px;
  border-bottom: 1.5px solid #ffffff54;
}

.footerInfoContact {
  width: 100%;
  padding: 15px 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  /* border-bottom:  1.5px solid #ffffff54; */
}

.footerInfoContact > .boxMoreInfo {
  display: flex;
  flex-direction: column;
}

.footerInfoContact > .boxMoreInfo > p {
  font-family: Poppins-Regular;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff7a;
  margin: 0;
  margin-bottom: 15px;
}

.footerInfoContact > .boxMoreInfo > p > a {
  text-decoration: none;
  color: #ffffff7a !important;
  cursor: pointer;
}

.footerInfoContact > .boxMoreInfo > h5 {
  font-family: Poppins-Regular;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff7a !important;
  margin: 0;
  margin-bottom: 16px;
}

.footerInfoContact > .boxMoreInfo > .rowFooter {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
}

.footerInfoContact > .boxMoreInfo > .rowFooter > img {
  width: 15px;
  height: 15px;
  margin-right: 8px;
}

.footerInfoContact > .boxMoreInfo > .rowFooter > p {
  font-family: Poppins-Regular;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff7a !important;
  margin: 0;
}

.footerFinalInfo {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footerFinalInfo > .boxMoreExtra {
  display: flex;
  flex-direction: column;
  border-bottom: 1.5px solid #ffffff54;
  width: 100%;
}

.footerFinalInfo > .boxMoreExtra > .rowFooter {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
}

.footerFinalInfo > .boxMoreExtra > .rowFooter > img {
  width: 15px;
  height: 15px;
  margin-right: 8px;
}

.footerFinalInfo > .boxMoreExtra > .rowFooter > p {
  font-family: Poppins-Regular;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff7a !important;
  margin: 0;
}

.footerFinalInfo > .boxMoreExtra > .rowFooter > p > a {
  color: #ffffff7a !important;
  text-decoration: none;
}

.copyRight {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}

.copyRight > div > p {
  font-family: Poppins-Regular;
  font-size: 10px;
  font-weight: 500;
  color: #ffffff7a !important;
}

.copyRight > .boxFlecha {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #ffffff54;
  border-radius: 100%;
  width: 50px;
  height: 50px;
}

.content {
  width: 100%;
  min-height: 85vh;
  padding: 40px 60px;
  display: flex;
  align-items: star;
  flex-direction: column;
  justify-content: start;
}

.mt {
  margin-top: 120px;
}

.hero-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 30px;
}

.left-column {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  gap: 1rem;
  width: 70%;
}

.right-column {
  width: 30%;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.badges {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-bottom: 10px;
}

.badge {
  width: fit-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #f5f9fe;
  color: #252525;
  font-family: Poppins-Regular;
  padding: 5px 10px;
  border-radius: 20px;
  margin-right: 5px;
  font-size: 14px;
}

.puntoClaro {
  background: #c0ddff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin-right: 10px;
}

.puntoOscuro {
  background: #2e8eff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin-right: 10px;
}

.left-column h1 {
  font-size: 60px;
  font-family: Archivo-Thin;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 200;
  color: #1e1e1e;
}

.left-column h1 span {
  font-family: Archivo-Regular;
  font-weight: 400;
}

.left-column > img {
  width: 55%;
  height: auto;
  z-index: -1;
  position: absolute;
  right: 0;
}

.left-column > .pInfoBox {
  width: 36%;
  margin-top: 40px;
}

.left-column p {
  font-size: 16px;
  font-family: Poppins-Regular;
  color: #525252;
  margin-bottom: 20px;
}

.cta {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.cta > img {
  width: 110px;
  height: auto;
}

.cta > p {
  font-family: Poppins-Regular;
  font-size: 14px;
  margin: 0;
  line-height: 20px;
}

.cta > p > span {
  font-family: Poppins-Bold;
}

.cta-button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-family: Poppins-SemiBold;
  margin-right: 15px;
}

.cta-button > a {
  text-decoration: none;
  color: white;
}

.clients {
  font-size: 1.1em;
  color: #007bff;
}

.image-container img {
  width: 70%;
  border-radius: 10px;
}

.medical-staff h2 {
  font-family: Poppins-Medium;
  font-weight: 400;
  font-size: 16px;
  color: #252525;
}

.medical-staff h2 > span {
  color: #007bff;
  margin-bottom: 10px;
  font-family: Poppins-Bold;
  font-size: 16px;
}

.medical-staff p {
  font-size: 16px;
  font-family: Poppins-Regular;
  color: #525252;
  margin-bottom: 15px;
}

.staff-images img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 5px;
}

.staff-images img:last-child {
  margin-right: 0;
}

.info-section {
  display: flex;
  /* grid-template-columns: minmax(0, 380px) auto;
  column-gap: 6rem; */
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid #c2c2c2;
}

.info-section > .iasalud,
.especialistas {
  display: flex;
  flex-direction: column;
}

.info-section > .iasalud h2 {
  font-size: 32px;
  font-family: Poppins-Medium;
  color: #10217d;
  font-weight: 400;
  margin-bottom: 15px;
}

.info-section > .iasalud p {
  font-size: 18px;
  text-align: justify;
  color: #252525;
  line-height: 1.6;
}

.info-section > .especialistas h2 {
  color: #10217d;
  font-size: 32px;
  font-family: Poppins-Medium;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 20px;
}

.info-section > .especialistas > ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-left: 10px;
  line-height: 20px;
}

.info-section > .especialistas > ul > li {
  font-size: 18px;
  font-family: Poppins-Regular;
  font-weight: 200;
  margin-bottom: 10px;
  color: #252525;
}

.service-section {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 60px;
}

.service-section > h2 {
  text-align: start;
  font-family: Archivo-Light;
  font-size: 44px;
  color: #10217d;
  font-weight: 400;
}

.service-section > .presencia {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  text-align: start;
  width: 100%;
  margin-top: 20px;
  padding: 0px;
}

.service-section > .presencia > h3 {
  font-size: 48px;
  font-family: Archivo-Light;
  font-weight: 200;
  margin-bottom: 20px;
}

.service-section > .presencia > div > p {
  font-size: 18px;
  font-family: Poppins-Regular;
  color: #252525;
  line-height: 1.5;
  text-align: start;
}

.service-section > .presencia > p > strong {
  font-family: Poppins-SemiBold;
}

.solutions-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 3rem;
}

.solutions-section > .solution {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  text-align: center;
}

.solutions-section > .solution > .solution-icon > img {
  width: 90px;
  margin-bottom: 15px;
}

.solutions-section > .solution h4 {
  font-size: 28px;
  font-family: Poppins-Medium;
  color: #10217d;
  font-weight: 400;
  margin-bottom: 15px;
}

.solutions-section > .solution ul {
  list-style-type: none;
}

.solutions-section > .solution ul li {
  font-size: 18px;
  color: #525252;
  margin-bottom: 10px;
  text-align: left;
  padding-left: 20px;
  position: relative;
}

.solutions-section > .solution ul li > img {
  width: 15px;
  margin-right: 8px;
}

.section {
  width: 100%;
  margin: 40px auto;
  padding: 20px;
}

.section__title {
  font-size: 48px;
  font-family: Archivo-Light;
  line-height: 1;
  font-weight: 400;
  color: #1e1e1e;
  margin-bottom: 30px;
}

.section__list {
  /* list-style-type: none; */
  padding: 0;
  margin: 0 0 20px;
}

.section__list li::marker {
  color: #2e8eff;
}

.section__item {
  margin: 20px 0px;
}

.section__item > strong {
  display: block;
  font-family: Poppins-Medium;
  font-size: 24px;
  font-weight: 200;
  color: #2e8eff;
  margin-bottom: 5px;
}

.section__list p {
  font-size: 18px;
  font-family: Poppins-Regular;
  color: #525252;
}

.section__list p > strong {
  font-family: Poppins-SemiBold;
}

.section__list p > a {
  font-family: Poppins-SemiBold;
  color: #10217d;
  text-decoration: underline;
}

.section__button {
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  margin: 20px auto;
  font-family: Poppins-SemiBold;
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  background-color: #2e8eff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.section__button > img {
  width: 8px;
  margin-left: 5px;
}

.moreInfo {
  gap: 3rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  margin: 30px 0px;
  margin-top: 0px;
}

.moreInfo > .imgUtilityBox {
  width: 45%;
  border-radius: 20px;
  margin-top: 30px;
}

.moreInfo > .imgUtilityBox > img {
  width: 100%;
}

.moreInfo > .box50 {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.moreInfo > .box50 > h4 {
  font-size: 48px;
  font-weight: 200;
  font-family: Archivo-Light;
  line-height: 1.2;
}

.moreInfo > .box50 > h4 > .bordado {
  display: inline-block;
  background: #00a3df;
  height: 20px;
  width: 250px;
  border-radius: 20px;
  margin-left: 10px;
}

.moreInfo > .box50 > .gridUtility {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  row-gap: 1rem;
}

.moreInfo > .box50 > .gridUtility > div > h5 {
  font-size: 20px;
  color: #252525;
  margin-bottom: 20px;
  font-weight: 200;
  font-family: Poppins-Medium;
}

.moreInfo > .box50 > .gridUtility > div > p {
  font-size: 18px;
  color: #8e8e8e;
  margin-bottom: 20px;
  font-weight: 200;
  font-family: Poppins-Regular;
  margin: 0;
}

.barra {
  width: 100%;
  display: flex;
  height: 120px;
  flex-direction: row;
  align-items: center;
  background-color: #2e8eff;
  justify-content: space-between;
  border-radius: 20px;
}

.barra > .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%;
  height: 100%;
  background: url("./images/Ellipse.png");
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.barra > div {
  margin-left: 40px;
}

.barra > div > h5 {
  font-family: Poppins-Medium;
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
}

.barra > div > p {
  font-family: Poppins-Regular;
  font-weight: 200;
  font-size: 18px;
  color: #ffffff;
}

.barra > .circle > p {
  font-family: Poppins-Medium;
  font-size: 20px;
  color: #ffffff;
}

.barra > .circle > p > a {
  text-decoration: none;
  color: #ffffff;
  margin-right: 5px;
}

#utilityWeb {
  display: block;
}

#heroWeb {
  display: flex;
}

#utilityMovil,
#heroMovil {
  display: none;
}

.hidden {
  display: none;
}

/* Estilos para el menú */
.menu {
  display: none;
  background-color: white;
  width: 100%;
  padding: 20px 0px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 79px;
  left: 0;
  right: 0;
  z-index: 9999999;
}

.menu > div {
  width: 100%;
  border-bottom: 2px solid #2e8eff;
}

.menu > div > .boxMenu {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 20px;
  justify-content: space-between;
}

.menu > div > .boxMenu > p {
  font-size: 16px;
  font-family: Archivo-Regular;
  margin: 0;
  color: #1b1b1b;
}

/* Estilos para los elementos dentro del menú */
.menu h3 {
  margin: 0;
  font-size: 14px;
  font-family: Poppins-Regular;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: center;
  color: #1b1b1b;
}

.menu p {
  text-align: center;
  font-size: 14px;
  font-family: Poppins-Regular;
  margin-bottom: 15px;
  color: #1b1b1b;
}

.menu p > a {
  text-decoration: none;
  color: #1b1b1b;
}

.menu .login-button {
  display: block;
  width: 90%;
  padding: 10px;
  background-color: #2e8eff;
  font-family: Poppins-SemiBold;
  font-size: 14px;
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
}

.flex {
  width: 100%;
  border-bottom: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

p a[href^="tel"] {
  color: #ffffff7a !important;
  text-decoration: none;
}

@media screen and (min-width: 280px) and (max-width: 750px) {
  #menuWeb,
  #footerWeb {
    display: none !important;
  }

  #footerMovil,
  #menuMovil {
    display: flex !important;
  }

  .modal {
    background: #1e1e1e8c;
    z-index: 10000000000;
  }

  .modal > .contenidoModal {
    width: 80%;
    border-radius: 22px;
    padding: 25px;
  }

  .headerModalEmergencia {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .headerModalEmergencia > img {
    width: 240px;
    height: 160px;
  }

  .canalesAtencionInfoBox {
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

  .contentHeader > .center > img {
    width: auto;
  }

  .contentHeader > .center > button {
    font-size: 12px;
  }

  .canalesAtencionInfoBox > h1 {
    color: #2e8eff;
    font-size: 16px;
    font-family: Archivo-Regular;
    margin-bottom: 20px;
  }

  .canalesAtencionInfoBox > div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .canalesAtencionInfoBox > div > p {
    color: #10217d;
    font-family: Poppins-Light;
    font-size: 12px;
    margin: 0;
    margin-bottom: 16px;
  }

  .canalesAtencionInfoBox > div > p > span {
    color: #10217d;
    font-family: Poppins-Bold;
  }

  .canalesAtencionInfoBox > div > button {
    width: 80%;
    margin-top: 10px;
    background: #2e8eff;
    padding: 10px 0px;
    border-radius: 6px;
    font-family: Poppins-Bold;
    font-size: 12px;
    color: #ffffff;
    border: none;
  }

  header {
    padding: 20px;
    position: relative;
  }

  .contentHeader > .center > img {
    width: auto;
  }

  .contentHeader > .center > p {
    font-family: Poppins-Regular;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    color: #1b1b1b;
  }

  footer {
    padding: 20px;
  }

  .footerBoxImg {
    display: flex;
    flex-direction: column;
    align-items: start;
    align-self: start;
    justify-content: start;
    width: auto;
  }

  .footerBoxImg > img {
    width: 130px;
    margin-left: -10px;
    margin-bottom: 20px;
  }

  .footerBoxImg > .linea {
    width: 60px;
    border-bottom: 1.5px solid #ffffff54;
  }

  .footerInfoContact {
    width: 100%;
    padding: 15px 0px;
    display: flex;
    flex-direction: column;
    border-bottom: 1.5px solid #ffffff54;
  }

  .footerInfoContact > p {
    font-family: Poppins-Regular;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff7a !important;
    margin: 0;
    margin-bottom: 15px;
  }

  .footerInfoContact > .row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .footerInfoContact > .row > .column{
    display: flex;
    flex-direction: column;
  }

  .footerInfoContact > .row > .column > .rowFooter {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
  }

  .footerInfoContact > .row > .column > h5 {
    font-family: Poppins-Regular;
    font-size: 10px;
    font-weight: 500;
    color: #ffffff7a !important;
    margin: 0;
    margin-bottom: 16px;
  }

  .footerInfoContact > .row > .column > .rowFooter > img {
    width: 15px;
    height: 15px;
    margin-right: 8px;
  }

  .footerInfoContact > .row > .column > .rowFooter > p {
    font-family: Poppins-Regular;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff7a !important;
    margin: 0;
  }

  .footerInfoContact > .row > .column > .rowFooter > p > a{
    text-decoration: none;
    color: #ffffff7a !important;
  }

  .footerMoreInfo,
  .footerFinalInfo {
    width: 100%;
    padding: 15px 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .footerMoreInfo .footerFinalInfo > .boxMoreInfo {
    display: flex;
    flex-direction: column;
  }

  .boxMoreInfo > h5 {
    font-family: Poppins-Regular;
    font-size: 10px;
    font-weight: 500;
    color: #ffffff7a !important;
    margin: 0;
    margin-bottom: 16px;
  }

  .boxMoreInfo > p {
    font-family: Poppins-Regular;
    font-size: 11px;
    font-weight: 500;
    color: #ffffff7a !important;
    margin: 0;
    margin-bottom: 9px;
  }

  .boxMoreInfo > p > a {
    text-decoration: none;
    color: #ffffff7a !important;
    cursor: pointer;
  }

  .boxMoreInfo > .emergencia {
    color: #ffffff !important;
  }

  .boxMoreInfo > .rowFooter {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 8px;
  }

  .boxMoreInfo > .rowFooter > img {
    width: 15px;
    height: 15px;
    margin-right: 16px;
  }

  .boxMoreInfo > .rowFooter > p {
    font-family: Poppins-Regular;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff7a;
    margin: 0;
  }

  .content {
    padding: 0px 20px;
  }

  .barra {
    height: 80px;
    margin-bottom: 30px;
  }

  .barra > div {
    margin-left: 10px;
  }

  .barra > div > h5 {
    font-size: 11px;
  }

  .barra > div > p {
    font-size: 10px;
  }

  .barra > .circle {
    background: url("./images/Ellipse-movil.png");
    background-size: cover;
    width: 40%;
  }

  .barra > .circle > p {
    font-size: 10px;
  }

  .barra > .circle > p > img {
    width: 12px;
  }

  .moreInfo {
    gap: 2rem;
    flex-direction: column;
  }

  .moreInfo > .imgUtilityBox {
    width: 100%;
  }

  .moreInfo > .imgUtilityBox > img {
    width: 100%;
    /* height: 235px; */
  }

  .moreInfo > .box50 {
    width: 100%;
  }

  .moreInfo > .box50 > h4 {
    font-size: 24px;
  }

  .moreInfo > .box50 > h4 > .bordado {
    height: 15px;
    width: 225px;
  }

  .moreInfo > .box50 > .gridUtility {
    gap: 1rem;
  }

  .moreInfo > .box50 > .gridUtility > div > h5 {
    font-size: 13px;
  }

  .moreInfo > .box50 > .gridUtility > div > p {
    font-size: 12px;
  }

  #utilityWeb,
  #heroWeb {
    display: none;
  }

  #utilityMovil,
  #heroMovil {
    display: block;
  }

  .solutions-section {
    grid-template-columns: repeat(1, 1fr);
  }

  .solutions-section > .solution > .solution-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .solutions-section > .solution > .solution-icon > h4 {
    font-size: 18px;
    margin-left: 12px;
  }

  .solutions-section > .solution > .solution-icon > img {
    width: 60px;
  }

  .solutions-section > .solution ul li {
    font-size: 14px;
  }

  .service-section {
    margin-bottom: 45px;
  }

  .service-section > h2 {
    font-size: 20px;
  }

  .service-section > .presencia {
    padding: 0px;
    margin-top: 20px;
  }

  .service-section > .presencia > h3 {
    font-size: 20px;
    font-weight: 600;
  }

  .service-section > .presencia > p {
    font-size: 14px;
  }

  .info-section {
    grid-template-columns: repeat(1, auto);
    gap: 2rem;
    border: none;
    margin: 0;
  }

  .info-section > .iasalud h2 {
    font-size: 16px;
  }

  .info-section > .iasalud p {
    font-size: 14px;
  }

  .info-section > .especialistas h2 {
    font-size: 16px;
    line-height: 1.2;
  }

  .info-section > .especialistas > ul > li {
    font-size: 14px;
  }

  .info-section > .especialistas > ul {
    padding-left: 0px;
    line-height: 1;
  }

  .mt {
    margin-top: 50px;
  }

  .hero-section {
    margin-bottom: 40px;
  }

  .left-column {
    width: 100%;
  }

  .left-column h1 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 0px;
  }

  .left-column > img {
    width: 58%;
    height: 95%;
  }

  .medical-staff {
    width: 40%;
  }

  .medical-staff h2 {
    font-size: 12px;
  }

  .staff-images {
    margin-top: 10px;
  }

  .staff-images img {
    width: 40px;
    height: 40px;
  }

  .medical-staff p {
    font-size: 11px;
    margin-bottom: 0;
  }

  .cta-button {
    font-size: 12px;
  }

  .section {
    padding: 0px;
    margin-bottom: 20px;
  }

  .section__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .section__list {
    padding-left: 20px;
  }

  .section__item > strong {
    font-size: 16px;
  }

  .section__list p {
    font-size: 14px;
  }

  .section__button {
    font-size: 12px;
    margin-top: 60px;
    margin-bottom: 0px;
  }

  .mtfoot{
    margin-top: 15px !important;
    margin-bottom: 5px !important;
  }
}

@media screen and (min-width: 751px) and (max-width: 1199px) {
  header {
    padding: 25px;
  }

  .contentHeader > .center {
    column-gap: 1rem;
  }

  .contentHeader > .center > a > img {
    width: 120px;
  }

  .contentHeader > .center > p {
    font-size: 14px;
  }

  .contentHeader > .center > p > a {
    font-size: 14px;
  }

  .modal > .contenidoModal {
    width: 50%;
    padding: 20px;
  }

  .headerModalEmergencia > img {
   width: 55%;
   height: auto;
  }

  .canalesAtencionInfoBox{
   margin: 0px;
  }

  .canalesAtencionInfoBox > h1 {
   font-size: 20px;
  }

  .canalesAtencionInfoBox > div > p {
   font-size: 16px;
   margin-bottom: 8px;
  }

  .canalesAtencionInfoBox > div > button {
   font-size: 14px;
   width: 60%;
  }

  .contentHeader > .center > button {
   font-size: 14px;
   }

   .contentHeader > .center > button > a{
      font-size: 14px;
   }

   .content{
      padding: 0 30px;
   }

   .hero-section{
      margin-bottom: 30px;
   }

   .left-column > img {
      width: 58%;
      height: 100%;
  }

  .left-column h1 {
   font-size: 4vw;
  }

  .left-column p {
   font-size: 2vw;
  }

  .medical-staff p {
   font-size: 2vw;
  }

  .image-container img {
   width: 90%;
  }

  #img4{
   display: none;
  }

  .info-section {
   column-gap: 2rem;
   margin-bottom: 20px;
   padding-bottom: 0px;
   border-bottom: none;
  }

  .service-section > .presencia {
   margin-top: 10px;
   padding: 0px;
  } 

  .service-section > .presencia > h3 {
   margin-bottom: 10px;
  }

  .moreInfo{
   flex-direction: column;
   margin-top: 0px;
   gap: 2rem;
  }

  .moreInfo > .imgUtilityBox{
   width: 100%;
   margin-top: 0px;
   display: flex;
   align-items: center;
   justify-content: center;
  }

  .moreInfo > .imgUtilityBox > img {
   width: 80%;
  }

  #utilityWeb{
   display: none;
  }

  #utilityMovil{
   display: block;
  }

  .moreInfo > .box50{
   width: 100%;
  }

  .moreInfo > .box50 > h4 > .bordado {
   width: 100%;
   height: 15px;
  }

  .barra{
   margin-bottom: 20px;
  }

  .barra > div {
      margin-left: 15px;
   }

   .barra > div > h5 {
      font-size: 18px;
   }

   .barra > div > p {
      font-size: 16px;
   }

  .barra > .circle {
      background: url("./images/Ellipse-movil.png");
      background-size: cover;
   }

   .barra > .circle > p {
      font-size: 16px;
   }

   footer{
      padding: 30px 20px;
   }

   .copyRight{
      margin-top: 40px;
   }
}

@media screen and (min-width: 1200px) {

  .modal > .contenidoModal{
    width: 40%;
    padding: 20px;
    gap: 1rem;
  }

  .headerModalEmergencia > img{
    width: 300px;
    height: auto;
  }

  .canalesAtencionInfoBox{
    margin-top: 10px;
  }

  .canalesAtencionInfoBox > h1 {
    margin-bottom: 10px;
  }

  .canalesAtencionInfoBox > div > p {
    margin-bottom: 10px;
  }

  .left-column > img {
    width: 45%;
  }

  .info-section {
    margin-top: 10px;
  }

  .moreInfo > .imgUtilityBox > img {
    width: 100%;
    height: auto;
  }
}

@media screen and (min-width: 1200px) {

  .content-box {
    width: 30%;
  }

  .modal > .contenidoModal{
    width: 40%;
    padding: 20px;
    gap: 1rem;
  }

  .headerModalEmergencia > img{
    width: 300px;
    height: auto;
  }

  .canalesAtencionInfoBox{
    margin-top: 10px;
  }

  .canalesAtencionInfoBox > h1 {
    margin-bottom: 10px;
  }

  .canalesAtencionInfoBox > div > p {
    margin-bottom: 10px;
  }
}
