/********************************************************************************************/
/******************************************  HOME  ******************************************/
/********************************************************************************************/


/****************************************** Navbar ******************************************/
.navbar {
  background-color: rgba(248, 249, 250, 0) !important;
  position: absolute;
  top: 1rem;
  left: 3rem;
  right: 3rem;
  z-index: 999;
}

@media screen and (max-width: 1023px) {
  .navbar {
    background: #fff;
    position: initial;
    top: 0rem;
  }

  .navbar .navbar-collapse {
    height: 10rem;
  }

  .navbar .collapse ul {
    text-align: center;
  }

  .navbar .collapse ul li .nav-link {
    color: #000;
  }

  .navbar .collapse ul button {
    color: #C90D75;
    border: 2px solid #C90D75;
    border-radius: 5rem;
  }
  .navbar .collapse ul button:hover {
    color: #fff;
    border: 2px solid #C90D75;
    background: #C90D75;
    border-radius: 5rem;
  }
}

.navbar .nav-item .nav-link {
  color: #fff;
  /* font-weight: bold; */
  position: relative;
  display: inline-block;
  /* padding-bottom: 20px; */
}

.navbar .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #C90D75;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: scaleX(0);
}

.navbar .nav-item .nav-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}


.navbar .collapse ul {
  gap: 1rem;
  height: 40px;
}

.navbar .collapse button {
  border-radius: 5rem;
  padding: 0.5rem 3rem;
  height: 40px;
}

.navbar .collapse button:hover {
  border-radius: 5rem;
  padding: 0.5rem 3rem;
  height: 40px;
  border: 1.5px solid #C90D75;
  background: transparent;
  color: #C90D75;
}

.navbar img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 1023px) {
  .navbar img {
    max-width: 100%;
    height: auto;
    width: 10rem;
  }
}




/****************************************** Estilos del Carousel ******************************************/
.carousel .carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.carousel .carousel-controls button {
  background-color: #C90D75;
  border: none;
  border-radius: 5rem;
  margin-bottom: 10rem;
  margin-left: 22px;
  font-size: 1rem;
  height: 40px;
  width: 40px;
}

.carousel .carousel-indicators {
  list-style: none;
  padding: 0;
  margin-left: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel .carousel-indicators li {
  background-color: white;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0.5rem 0;
  cursor: pointer;
}

.carousel .carousel-inner video {
  height: 600px;
  object-fit: cover;
}

@media screen and (max-width: 1023px) {
  .carousel .carousel-inner video {
    height: 650px;
    object-fit: cover;
  }

  .carousel .carousel-caption {
    top: 15rem;
    width: 15rem;
  }

  .carousel .carousel-caption p {
    font-size: 20px !important;
    margin-top: -110px;
  }

  .carousel .carousel-caption .btn-primary {
    background: #C90D75;
    border: 1px solid #C90D75;
    color: #fff;
    font-size: 15px;
    border-radius: 5rem;
    padding: 0.5rem 1rem !important;
    transition: ease all 0.5s;
  }

  .carousel .carousel-caption .btn-primary:hover {
    background: #830051;
    border: 1px solid #830051;
    font-size: 15px;
    border-radius: 5rem;
    padding: 0.5rem 1rem !important;
    transition: ease all 0.5s;
  }
}

.carousel .carousel-caption {
  position: absolute;
  bottom: 20%;
  left: 50%;
  right: 0%;
  transform: translateX(-50%);
  text-align: center;
}

.carousel .carousel-caption h1 {
  font-size: 3rem;
  font-weight: bold;
}

.carousel .carousel-caption p {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5rem;
}

.carousel .carousel-caption a {
  padding: 10px 20px;
}

.carousel .carousel-caption .btn-primary {
  background: #C90D75;
  border: 1px solid #C90D75;
  color: #fff;
  border-radius: 5rem;
  padding: 0.5rem 5rem;
  transition: ease all 0.5s;
  font-weight: bold;
}

.carousel .carousel-caption .btn-primary:hover {
  background: #830051;
  border: 1px solid #830051;
  border-radius: 5rem;
  padding: 0.5rem 5rem;
  transition: ease all 0.5s;
}


/****************************************** Estilos del Carousel ******************************************/
  /* Estilo general del popup */
  .popup {
      display: none; /* Inicialmente oculto */
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9); /* Fondo oscuro */
      justify-content: center;
      align-items: center;
      z-index: 1000;
  }
  
  /* Contenido del popup */
  .popup-content {
      position: fixed;
      top: 20px;
      background-color: white;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
  }
  
  /* Botón para cerrar el popup */
  .close-popup {
      position: absolute;
      top: -10px;
      right: 8px;
      font-size: 40px;
      color: white;
      cursor: pointer;
  }
  
  /* Efecto visual para el botón de cierre */
  .close-popup:hover {
      color: red;
  }
  
  /* Estilo del video-popup */
  #video-popup {
      max-width: 100%;
      /* max-height: 500px; */
  }

  @media screen and (max-width: 1023px) {
    .popup-content {
      top: 150px;
    }
  }



/****************************************** Section world ******************************************/
.world {
  padding: 2rem 0;
}

.world .cont-w video {
  max-width: 100%;
}

.world .cont-text-w .section-logo {
  display: inline-flex;
}

.world .cont-text-w .section-logo .Logo-catalyst {
  max-width: 100%;
  height: auto;
  width: 3rem;
  margin-right: 10px;
}

.world .cont-text-w .section-logo .descrip strong {
  color: #830051;
}

.world .section-btn .w-btn {
  color: #C90D75;
  border: 2px solid #C90D75;
  border-radius: 3rem;
  padding: 0.5rem 5rem;
  transition: ease all 0.5s;
  font-weight: bold;
}

.world .section-btn .w-btn:hover {
  color: #fff;
  border: 2px solid #fff;
  background: #830051;
  border-radius: 3rem;
  padding: 0.5rem 5rem;
  transition: ease all 0.5s;
}




/****************************************** vision ******************************************/
.vision {
  padding: 8rem 0;
  background: url('../img/bg-vision.jpg');
  object-fit: cover;
}

.vision .content {
  color: #fff;
  text-align: center;
}

.vision h3 {
  color: #fff;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.vision h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #C90D75;
}



/****************************************** Impacto ******************************************/
.impacto {
  padding: 5rem 0;
  text-align: center;
}

.impacto .content {
  margin-bottom: 3rem;
}

.impacto .content h3 {
  font-weight: bold;
  margin-bottom: 1rem;
  color: #140056;
}

/* .impacto .cards-impact .group {
  width: 30vh;
} */

.impacto .cards-impact .group .ci-img {
  width: 5vh;
  height: 5vh;
  border-radius: 50%;
  border: 2px solid #C90D75;
  padding: 8px;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.impacto .cards-impact .group .ci-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 50%;
}

.impacto .cards-impact .group .ci-img:hover img {
  transform: scale(0.9);
}

.impacto .cards-impact .group .ci-title {
  margin-top: 1rem;
}

.impacto .cards-impact .group .ci-title h4 {
  color: #C90D75;
  font-weight: bold;
}




/****************************************** Proyectos ******************************************/
.proyectos {
  padding: 5rem 0;
  background: #140056;
}

.proyectos .content {
  color: #fff;
  text-align: center;
}

.proyectos h3 {
  color: #fff;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.proyectos h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #C90D75;
}

.proyectos .card {
  position: relative;
  width: 100%;
  height: 300px;
  perspective: 1000px;
}

.proyectos .card-front,
.proyectos .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease;
}

.proyectos .card-front {
  background-color: #140056;
  color: white;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  font-size: 1.2rem;
  border-radius: 10px;
  border: 1px solid #ffffff30;
  padding: 1rem;
}


.proyectos .card-back {
  background-color: #fff;
  color: #000;
  transform: rotateY(180deg);
  padding: 1rem;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #140056;
  align-content: center;
}

.proyectos .card-back img {
  max-width: 100%;
  height: auto;
  width: 8rem;
  margin-bottom: 1rem;
}

.proyectos .card-back .logo8 {
  max-width: 100%;
  height: auto;
  width: 13rem;
  margin-bottom: 1rem;
}

.proyectos .card-back .logo9 {
  max-width: 100%;
  height: auto;
  width: 15rem;
  margin-bottom: 1rem;
}

.proyectos .card:hover .card-front {
  transform: rotateY(180deg);
}

.proyectos .card:hover .card-back {
  transform: rotateY(0deg);
}

.proyectos .card-back .btn {
  display: inline-block;
  padding: 0.3rem 6rem;
  text-decoration: none;
  border-radius: 5rem;
  margin-top: 15px;
}

.proyectos .card-back .btn:hover {
  border-color: #C90D75;
  color: #C90D75;
  background-color: #fff;
  font-weight: 500;
}

@media (min-width: 768px) and (max-width: 992px) {
  .proyectos .card-back .btn {
    padding: 0.3rem 3rem;
  }
}




/****************************************** Main Form ******************************************/
.main-form {
  padding: 5rem 0;
}

.main-form .descrip {
  text-align: center;
}

.main-form .descrip h3 {
  color: #140056;
}

.main-form .descrip span {
  color: #C90D75;
  font-size: 1.3rem;
}

.ib--form-container{
  padding: 3rem 0 1rem !important;
}

.ib--submit-button_wrapper {
  direction: rtl;
  margin-top: 2rem;
}

.ib--submit-button {
  background: #C90D75 !important;
  color: #fff !important;
  border: 1px solid #C90D75 !important;
  border-radius: 5rem !important;
  padding: 0.7rem 6rem !important;
  margin-top: 1rem !important;
  transition: ease all 0.5s !important;
  font-weight: bold !important;
  width:auto !important;
  max-width: 100%;
}

.ib--submit-button:hover {
  background: #140056 !important;
  border: 1px solid #140056 !important;
  transition: ease all 0.5s !important;
}

.main-form form .form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #830051;
  outline: 0;
  box-shadow: 0 0 0 .25rem #83005126;
}



/**************************************************************************************************/
/******************************************  RED GLOBAL  ******************************************/
/**************************************************************************************************/

/****************************************** main-gb ******************************************/
.main-bg {
  padding: 10rem 0rem;
  background: url(../img/bg-Red-Global.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.main-bg h2 {
  color: #fff;
  font-size: 6rem;
}

@media screen and (max-width: 1023px) {
  .main-bg h2 {
    color: #fff;
    font-size: 2rem;
  }
}





/****************************************** objetivo ******************************************/
.objetivo {
  padding: 5rem 0;
  background: #140056;
  object-fit: cover;
}

.objetivo .content {
  text-align: center;
}

.objetivo .content p {
  color: #fff;
  font-size: 1.4rem;
}





/****************************************** Hubs ******************************************/
.hubs {
  padding: 8rem 0;
  background: linear-gradient(0deg, #140056, transparent), url('../img/bg-mundo.jpg');
  background-size: cover;
  object-fit: cover;
}

.hubs .content {
  color: #fff;
  text-align: center;
}

.hubs .content h3 {
  color: #fff;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.hubs .content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #C90D75;
}

.hubs .content img {
  max-width: 100%;
  height: auto;
}

.hubs .continentes .col-2 {
  color: #fff;
  display: flex;
  align-items: center;
}

.hubs .continentes .col-2 p {
  margin: 0;
  padding-left: 1rem;
}

.hubs .continentes .col-2 .circle-asia {
  background: #003865;
  border: 1px solid #fff;
  border-radius: 10rem;
  height: 0.9vh;
  width: 0.9vh;
}

.hubs .continentes .col-2 .circle-america {
  background: #D0016F;
  border: 1px solid #fff;
  border-radius: 10rem;
  height: 0.9vh;
  width: 0.9vh;
}

.hubs .continentes .col-2 .circle-europa {
  background: #67D2DF;
  border: 1px solid #fff;
  border-radius: 10rem;
  height: 0.9vh;
  width: 0.9vh;
}

.hubs .continentes .col-2 .circle-africa {
  background: #C4D600;
  border: 1px solid #fff;
  border-radius: 10rem;
  height: 0.9vh;
  width: 0.9vh;
}

.hubs .continentes .col-2 .circle-oceania {
  background: #F0AD00;
  border: 1px solid #fff;
  border-radius: 10rem;
  height: 0.9vh;
  width: 0.9vh;
}

@media screen and (max-width: 992px) {
  .hubs .continentes .col-2 {
    flex: 1 0 50%;
    padding-bottom: 1rem;
  }
}

/****************************************** Aliados ******************************************/
.aliados {
  padding: 5rem 0;
}

.aliados .content {
  text-align: center;
}

.aliados .content h3 {
  color: #140056;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.aliados .content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #C90D75;
}

.aliados .col-img {
  align-self: center;
  text-align: center;
  margin: 2rem 0;
}

.aliados .col-img img {
  max-width: 100%;
  height: auto;
  width: 20rem;
  transition: ease all 0.5s;
}

.aliados .col-img img:hover {
  max-width: 100%;
  height: auto;
  width: 22rem;
  transition: ease all 0.5s;
}

.center_alone{
  flex: 1 0 auto;
}



/*************************************************************************************************/
/******************************************  PROYECTOS  ******************************************/
/*************************************************************************************************/

.proy-bg {
  padding: 10rem 0rem;
  background: url('../img/bg-Proyectos.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.proy-bg h2 {
  color: #fff;
  font-size: 6rem;
}

@media screen and (max-width: 1023px) {
  .proy-bg h2 {
    color: #fff;
    font-size: 2rem;
  }
}



/*************************************************************************************************/
/******************************************  CONTACTENOS  ******************************************/
/*************************************************************************************************/

.contacto-bg {
  padding: 10rem 0rem;
  background: url('../img/Contactenos.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.contacto-bg h2 {
  color: #fff;
  font-size: 6rem;
}

@media screen and (max-width: 1023px) {
  .contacto-bg h2 {
    color: #fff;
    font-size: 2rem;
  }
}

.typ {
  padding: 10rem 0;
}

.typ .col-12 {
  text-align: center;
}

.typ h2 {
  color: #140056;
}

.typ p {
  color: #C90D75;
  font-weight: bold;
  font-size: 1.2rem;
}



/*********************************************************************************************************/
/******************************************  PAGINAS PROYECTOS  ******************************************/
/*********************************************************************************************************/



.cont-proy {
  padding: 5rem 0rem;
}

.cont-proy .btn-back a {
  text-decoration: none;
}

.cont-proy .btn-back i {
  color: #C90D75;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cont-proy .btn-back i:hover {
  background: #C90D75;
  color: #fff;
  font-size: 2rem;
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cont-proy .text,
.cont-proy .text3 {
  text-align: center;
}

.cont-proy .text h3 {
  color: #140056;
}

.cont-proy .text .azsalud {
  max-width: 100%;
  height: auto;
  width: 20rem;
  margin-bottom: 3rem;
}

.cont-proy .text .id-me {
  max-width: 100%;
  height: auto;
  width: 10rem;
  margin-bottom: 3rem;
}

.cont-proy .text h3.title-grey {
  color: #3F4444;
  font-weight: 700;
}

.cont-proy .text h3.title-blue {
  color: #114F76;
  font-weight: 700;
}

.cont-proy .text .test-epoc {
  max-width: 100%;
  height: auto;
  width: 10rem;
  margin-bottom: 3rem;
}

.cont-proy .text p.referencia {
  font-size: 0.8rem;
  line-height: 1;
  text-align: center;
  margin: 0 auto 3rem auto;
}

.cont-proy .text .referencia a,
.cont-proy .text .referencia a:hover,
.cont-proy .text .referencia a:active,
.cont-proy .text .referencia a:focus {
  color: #3F4444;
  font-weight: 400;
  text-decoration: none;
}

/*PM CODE*/
.pm-code {
  background-color: #3F4444;
  color: #ffffff;
  padding: 10px;
  text-align: center;
  margin: 3rem auto 0 auto;
}
/**/

.cont-proy .text .pheno-express-logo {
  max-width: 100%;
  height: auto;
  width: 15rem;
  margin-bottom: 3rem;
}

.cont-proy .text .azacademy {
  max-width: 100%;
  height: auto;
  width: 50rem;
}

.cont-proy .text .qure-ai {
  max-width: 100%;
  height: auto;
  width: 25rem;
}

.video-qureai{
  text-align: center;
}

.video-qureai iframe{
  max-width: 100%;
  margin: 3rem 0;
}

@media screen and (max-width: 1023px) {
  .video-qureai iframe{
    width: 100% !important;
    height: 300px !important;
  }
}

.cont-proy .text .Hispasat {
  max-width: 100%;
  height: auto;
  width: 15rem;
}

.cont-proy .text .test-riñones  {
  max-width: 100%;
  height: auto;
  width: 30rem;
}

.cont-proy .text .Hispasat-text {
  text-align: center;
}

.cont-proy .show-phenoexp {
  max-width: 100%;
  height: auto;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3)
}

.cont-proy .show-diabetes {
  max-width: 100%;
  height: auto;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3)
}

.cont-proy .show-riñon {
  max-width: 100%;
  height: auto;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3)
}

.cont-proy .logos-qureai {
  text-align: center;
}

.cont-proy .logos-qureai img {
  max-width: 100%;
  height: auto;
  width: 50rem;
}

.cont-proy .row-icons-group {
  margin-top: 6rem;
}
@media screen and (max-width: 992px) {
  .cont-proy .row-icons-group {
    margin-top: 26rem;
  }
}

.cont-proy .row-icons-group .group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cont-proy .row-icons-group .group .head {
  background: #fff;
  box-shadow: 0px 1px 8px -3px;
  height: 8rem;
  width: 8rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cont-proy .row-icons-group .group .head img {
  max-width: 100%;
  height: auto;
  width: 3rem;
}

.cont-proy .row-icons-group .group .text {
  margin-top: 1rem;
  text-align: center;
}

.cont-proy .row-icons-group .group .text h4 {
  color: #C90D75;
}

.cont-proy .text p {
  text-align: justify;
}

.cont-proy .text ul {
  text-align: justify;
}

.cont-proy .text .sect-img {
  background: #140056;
  padding: 0rem 8rem 0rem 5rem;
  border-radius: 20rem 0 0 20rem;
  position: absolute;
  right: 0;
}

@media (max-width: 1470px) and (min-width: 1250px) {
  .cont-proy .text .sect-img {
    padding: 0;
  }
}

@media (max-width: 1250px) and (min-width: 993px) {
  .cont-proy .text .sect-img {
    padding: 0;
  }

  .cont-proy .text .row .col-lg-9{
    width: 50%;
  }
}

@media screen and (max-width: 992px) {
  .cont-proy .text .sect-img {
    background: #140056;
    padding: 1rem 3rem;
    margin-left: 1rem;
    border-radius: 20rem 0 0 20rem;
    position: absolute;
    right: 0;
  }
}

.col-lg-9 .world{
  padding: 0;
  padding-bottom: 1rem;
  text-align: left;
}

.cont-proy .text .sect-img img {
  max-width: 100%;
  height: auto;
}

.cont-proy .text .icons-azacad p {
  text-align: center;
}

.cont-proy .text2 p {
  text-align: justify;
}

.cont-proy .text3 .qr {
  display: inline-flex;
  gap: 2rem;
}

.cont-proy .text .btns {
  display: inline-flex;
  gap: 2rem;
}

.cont-proy .text .msj p {
  text-align: center;
}

.cont-proy .text .btns .btn-ar,
.cont-proy .text .btns .btn-cl {
  font-weight: bold;
  color: #000;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  height: 3rem;
  width: 15rem;
  border: 3px solid #000;
  border-radius: 5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cont-proy .text .btns .btn-ar:hover,
.cont-proy .text .btns .btn-cl:hover {
  border-color: #C90D75;
  color: #C90D75;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cont-proy .text .btns .btn-ar p,
.cont-proy .text .btns .btn-cl p {
  margin: 0;
}

.cont-proy .text .btns .btn-ar:hover p,
.cont-proy .text .btns .btn-cl:hover p {
  color: #C90D75;
  transition: all 0.3s ease;
}

.cont-proy .text .btns .btn-ar img,
.cont-proy .text .btns .btn-cl img {
  max-width: 100%;
  height: auto;
  width: 2rem;
}

.cont-proy .text .show img {
  max-width: 100%;
  height: auto;
  width: 60rem;
}

.cont-proy .text3 .qr img {
  max-width: 100%;
  height: auto;
}

.cont-proy .text2 .btn-pheno button {
  font-weight: bold;
  border: 3px solid #C90D75;
  color: #C90D75;
  border-radius: 5rem;
  width: 15rem;
  transition: all 0.3s ease;
}

.cont-proy .text2 .btn-pheno button:hover {
  border: 3px solid #000;
  color: #000;
  background: none;
  border-radius: 5rem;
  width: 15rem;
  transition: all 0.3s ease;
}

.cont-proy .text3 .btn-diabetes .logo-IFD {
  max-width: 100%;
  height: auto;
  width: 15rem;
}


.cont-proy .text3 .btn-diabetes button {
  font-weight: bold;
  border: 3px solid #C90D75;
  color: #C90D75;
  border-radius: 5rem;
  width: 15rem;
  transition: all 0.3s ease;
}

.cont-proy .text3 .btn-diabetes button:hover {
  border: 3px solid #000;
  color: #000;
  background: none;
  border-radius: 5rem;
  width: 15rem;
  transition: all 0.3s ease;
}

.cont-proy .text3 .btn-riñon .logo-isn {
  max-width: 100%;
  height: auto;
  width: 15rem;
}


.cont-proy .text3 .btn-riñon button {
  font-weight: bold;
  border: 3px solid #C90D75;
  color: #C90D75;
  border-radius: 5rem;
  width: 15rem;
  transition: all 0.3s ease;
}

.cont-proy .text3 .btn-riñon button:hover {
  border: 3px solid #000;
  color: #000;
  background: none;
  border-radius: 5rem;
  width: 15rem;
  transition: all 0.3s ease;
}


@media screen and (max-width: 1023px) {
  .cont-proy .text3 .qr {
    display: inline-flex;
    flex-direction: column;
    gap: 2rem;
  }

  .cont-proy .text .btns {
    display: inline-flex;
    flex-direction: column;
    gap: 2rem;
  }

  .cont-proy .text3 .btn-diabetes .logo-IFD {
    max-width: 100%;
    height: auto;
    width: 15rem;
    margin-top: 3rem;
  }

  .cont-proy .text3 .btn-riñon .logo-isn {
    max-width: 100%;
    height: auto;
    width: 15rem;
    margin-top: 3rem;
  }
}