/*
Full screen Modal 
*/
.fullscreen-modal .modal-dialog {
    margin: 0;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }
  @media (min-width: 768px) {
    .fullscreen-modal .modal-dialog {
      width: 750px;
    }
  }
  @media (min-width: 992px) {
    .fullscreen-modal .modal-dialog {
      width: 970px;
    }
  }
  @media (min-width: 1200px) {
    .fullscreen-modal .modal-dialog {
       width: 1170px;
    }
  }

  /* From uiverse.io by @satyamchaudharydev */
.card_ayun {
  --bg: #f7f7f8;
  --hover-bg: #FFE5F4;
  --hover-text: #E50087;
  max-width: 23ch;
  text-align: center;
  background: var(--bg);
  padding: 1.5em;
  padding-block: 1.8em;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  transition: .3s cubic-bezier(.6,.4,0,1),transform .15s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
}

.card__body_ayun {
  color: #464853;
  line-height: 1.5em;
  font-size: 1em;
}

.card_ayun > :not(span) {
  transition: .3s cubic-bezier(.6,.4,0,1);
}

.card_ayun > strong {
  display: block;
  font-size: 1.4rem;
  letter-spacing: -.035em;
}

.card_ayun span {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--hover-text);
  border-radius: 5px;
  font-weight: bold;
  top: 100%;
  transition: all .3s cubic-bezier(.6,.4,0,1);
}

.card_ayun:hover span {
  top: 0;
  font-size: 1.2em;
}

.card_ayun:hover {
  background: var(--hover-bg);
}

.card_ayun:hover>div,.card_ayun:hover>strong {
  opacity: 0;
}

/* From uiverse.io by @fanishah */
.foto_presi {
  width: 15rem;
  height: 17rem;
  background-image:url('../../imgs/foto\ PRESI.jpg');
  border-radius: 1rem;
  border: #b7bcbd 0.2rem solid;
  transition: all 0.4s ease-in;
  box-shadow: 0.4rem 0.4rem 0.6rem #00000040;
  
 }
 
 .foto_presi:hover {
  transform: translateY(-1.5rem);
  border: #b7bcbd 0.2em solid;
  border-radius: 2.5rem 0 2.5rem 0;
 }

 /*infografias*/
 /* From uiverse.io by @alexruix */
.card_info {
  width: 100%;
  height: 350px;
  border-radius: 1em;
  padding: 1.9rem;
  background: #f5f5f5;
  position: relative;
  display: flex;
  align-items: flex-end;
  transition: 0.4s ease-out;
  box-shadow: 0px 7px 20px rgba(43, 8, 37, 0.2);
 }
 
 .card_info:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: 0.5s;
 }
 
 .card-info_info {
  position: absolute;
  right: 0;
  padding: 0.6rem;
  z-index: 3;
  color: #f5f5f5;
  opacity: 0;
  transform: translateY(20%);
  transition: 0.5s;
  background-blend-mode: darken;
 }
 
 /*Text*/
 .text-title_info {
  font-size: 1.5rem;
  font-weight: 500;
 }
 
 .text-body_info {
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin: 5px 0 15px 0;
 }
 
 /*Button*/
 .card-button_info {
  padding: 0.6rem;
  outline: none;
  border: none;
  border-radius: 4px;
  background: #9b566f;
  color: white;
  font-weight: bold;
  transition: 0.4s ease;
 }
 
 /*Image*/
 .card-img_info {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #A62D59;
  background: linear-gradient(to bottom, #f5f5f5, #f5f5f5);
 }
 
 /*Hover*/
 .card_info:hover {
  transform: translateY(5%);
 }
 
 .card_info:hover:before {
  opacity: 1;
 }
 
 .card_info:hover .card-info_info {
  opacity: 1;
  transform: translateY(0);
 }
 
 .card-button_info:hover {
  background: rgba(218, 77, 77, 0.4);
  color: #f5f5f5;
 }
 /*Mision y Vision*/
 /* From uiverse.io by @alexruix */
/*Card */
.card_mv {
  height: 50vh;
  background: #f5f5f5;
  position: relative;
  box-shadow: 0px 2px 5px rgba(35,35,35,0.3);
  transition: box-shadow .3s ease-in-out;
  border-radius: 10px;
 }
 @media(max-width:450px){
     .card_mv {
  height: 20vh;
  background: #f5f5f5;
  position: relative;
  box-shadow: 0px 2px 5px rgba(35,35,35,0.3);
  transition: box-shadow .3s ease-in-out;
  border-radius: 10px;
 }
 }
 
 .card-info_mv {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  text-align: center;
  
 }
 
 /*Image*/
 .card-img_mv {
  height: 100%;
  width: 100%;
  position: absolute;
  transition: transform .3s ease-in-out;
  z-index: 2;
  border-radius: 10px;
 }
 
 /*Buttons*/
 .social-media_mv {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 1rem;
  transform: translateY(-200%);
  z-index: 3;
 }
 
 .social-media_mv li {
  background: #f5f5f5;
  padding: 10px 12px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: all .3s ease-in;
 }
 
 /*Text*/
 .title_mv {
  font-size: 1.5em;
  font-weight: 500;
 }
 
 .subtitle_mv {
  letter-spacing: 1px;
  font-size: 0.8em;
 }
  
 /* Hover */
 .card_mv:hover {
  box-shadow: 1px 2px 10px rgba(35,35,35,0.5);
 }
 
 .card_mv:hover .card-img_mv {
  transform: translateY(-30%);
 }
 
 @media(max-width:450px){
     .card_mv:hover .card-img_mv {
  transform: translateY(-100%);
 }
 }
 
 .card_mv:hover .social-media_mv li {
  transform: translateY(-5%);
  opacity: 1;
 }
 
 .card_mv:hover .social-media_mv li:nth-child(1) {
  transition-delay: 0s;
 }
 
 .card_mv:hover .social-media_mv li:nth-child(2) {
  transition-delay: .1s;
 }
 
 .card_mv:hover .social-media_mv li:nth-child(3) {
  transition-delay: .2s;
 }