@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*Variables*/
* {
  font-family: "Poppins", sans-serif;
  scrollbar-color: #ffffff #000000;
  scrollbar-width: thin;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif !important;
  margin: 0.3rem 0;
}
@media (min-width: 992px) {
  h1, h2, h3, h4, h5, h6 {
    margin: 0.5rem 0 !important;
  }
}

nav > ol > li, nav > ul > li, nav > ol > li > a, nav > ul > li > a {
  padding: 0 !important;
  margin: 0 !important;
}

p, span, li, li > ul, li > ol, a {
  font-weight: 400;
  margin: 0.5rem 0;
}
@media (min-width: 992px) {
  p, span, li, li > ul, li > ol, a {
    margin: 0.8rem 0;
  }
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

strong {
  font-weight: 600 !important;
}

/*FORM*/
#otra_linea {
  display: none;
  margin-top: 10px;
}

/*END FORM*/
/*POP UP*/
/* Estilos principales del Popup */
.popup-inferior {
  position: fixed;
  bottom: -600px; /* Inicia oculto debajo de la pantalla */
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90%;
  max-width: 650px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px -5px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0px -5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 12px 12px 0 0;
  z-index: 9999;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  -webkit-transition: bottom 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: bottom 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Clase que se activa con Javascript para mostrar el popup */
.popup-inferior.mostrar {
  bottom: 0;
}

/* Encabezado */
.popup-header {
  background-color: #E4142C; /* Color granate referencial UPCH, ajustable */
  color: white;
  padding: 15px 20px;
  border-radius: 12px 12px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.popup-header h2 {
  margin: 0;
  font-size: 16px !important;
  font-weight: 600;
}

.btn-cerrar {
  background: none;
  border: none;
  color: white;
  font-size: 24px !important;
  cursor: pointer;
  line-height: 1;
}

.btn-cerrar:hover {
  color: #f1f1f1;
}

/* Cuerpo del popup */
.popup-body {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 992px) {
  .popup-body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.overlay-blur {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4); /* Fondo ligeramente oscuro */
  backdrop-filter: blur(8px); /* Nivel de desenfoque del fondo */
  -webkit-backdrop-filter: blur(8px); /* Soporte para Safari */
  z-index: 9998; /* Debe estar por debajo del popup (9999) */
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.overlay-blur.mostrar {
  opacity: 1;
  visibility: visible;
}

.info-texto {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  min-width: 250px;
}

.info-texto h3 {
  margin: 0 0 5px 0;
  font-size: 15px !important;
  color: #444;
}

.info-texto ul {
  margin: 0 0 15px 0;
  padding-left: 20px;
  font-size: 14px !important;
}

.info-texto p {
  margin: 0 0 15px 0;
  font-size: 14px !important;
}

.certificacion {
  background-color: #f9f9f9;
  padding: 10px;
  border-left: 4px solid #E4142C;
  font-size: 13px !important;
}

.certificacion p {
  margin-bottom: 5px;
}

.contacto {
  font-size: 15px !important;
  color: #d32f2f;
}

.fotos-expositores {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 15px;
  min-width: 120px;
}
@media (min-width: 992px) {
  .fotos-expositores {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.foto-box img {
  width: 100%;
  max-width: 120px;
  height: auto;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

/*END POP UP*/
/*WORDPRESS*/
.wp-block-buttons {
  margin: 1rem 0;
}

body .is-layout-flow > * + * {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}

.wp-site-blocks > * + * {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}

.wp-block-button > a {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 1rem 1rem;
}

.wp-block-upch-container:last-child {
  -webkit-margin-after: 0 !important;
          margin-block-end: 0 !important;
}

.wp-block-getwid-counter__number {
  font-weight: 600;
}

.wp-block-button > a {
  padding: 0.4rem 0.8rem !important;
  margin: 0.8rem 0;
  font-size: 0.8rem !important;
  font-weight: 600;
}

span.wp-block-cover__background {
  margin: 0;
}

/*________________*/
h2.title-page {
  font-size: 1.2rem !important;
  font-weight: 600;
}
@media (min-width: 992px) {
  h2.title-page {
    font-size: 2.5rem !important;
  }
}

h3.subtitle-page {
  font-size: 1.2rem !important;
  font-weight: 500;
}
@media (min-width: 992px) {
  h3.subtitle-page {
    font-size: 1.8rem !important;
    margin-bottom: 1.2rem;
  }
}

h3.title-slide {
  font-size: 1.2rem !important;
  font-weight: 600;
}
@media (min-width: 992px) {
  h3.title-slide {
    font-size: 2rem !important;
  }
}

.hr_left {
  margin: 1rem;
  margin: auto 0;
  height: 7px !important;
}

/*MENU*/
.custom-logo {
  width: 150px;
  height: auto;
}

.menu_footer > ul > li, .menu_footer > ul > li > a {
  margin: 0;
}

.menu_footer > ul > li {
  width: 42%;
}

.menu_footer > ul > li::after {
  font-family: "fontello-icons";
  position: absolute;
  right: 0;
  white-space: pre;
  content: "\e81e";
}

.menu_footer > ul > li > a, .menu_footer > ul > li {
  font-size: 0.8rem;
}

.main_nav > div > div > div > div > .wp-block-navigation__container > li > a, .main_nav > div > div > div > div > .wp-block-navigation__container > li > a > span, .main_nav > div > div > div > div > .wp-block-navigation__container > li > button, .main_nav > div > div > div > div > .wp-block-navigation__container > li > button > span {
  font-weight: 500;
  margin: 0;
}

.main_nav > div > div > div > div > .wp-block-navigation__container > li:hover, .main_nav > div > div > div > div > .wp-block-navigation__container > li.current-menu-item {
  border-bottom: 1px solid #ffffff;
  margin: 0;
}

.main_nav > div > div > div > div > ul > li.wp-block-navigation-item {
  margin: 0;
}

.main_nav > div > div > div > div > ul > li.wp-block-navigation-item > ul.wp-block-navigation__submenu-container {
  padding: 0.5rem 1rem;
}

.main_nav > div > div > div > div > ul > li.wp-block-navigation-item > ul.wp-block-navigation__submenu-container > li {
  margin: 0;
}

.main_nav > div > div > div > div > ul > li.wp-block-navigation-item > ul.wp-block-navigation__submenu-container > li > a, .main_nav > div > div > div > div > ul > li.wp-block-navigation-item > ul.wp-block-navigation__submenu-container > li > a > span {
  margin: 0;
  padding: 0;
}

.main_nav > div > div > div > div > ul > li.wp-block-navigation-item > ul.wp-block-navigation__submenu-container > li > a > span {
  margin: 0.3rem;
}

/*END MENU*/
/*BREADCRUM*/
.cont-bread {
  background-color: #f1f1f1;
}

.cont-bread > div {
  padding: 0.5rem 0 !important;
}

.wp-block-upch-breadcrumb > ol > li > span[aria-hidden=true] {
  font-size: 0;
}

.wp-block-upch-breadcrumb > ol > li > span::before {
  content: ">";
  font-size: 1rem;
}

/*END BREADCRUM*/
/*TRANSLATE*/
button.upch-translate-lang-button > span {
  font-size: 1rem;
  font-weight: 500;
}

button.upch-translate-lang-button > img {
  width: 30px;
  height: auto;
}

.upch-translate-switcher {
  backdrop-filter: none;
  background-color: transparent;
  color: inherit;
  padding: 0;
}

#upch-translate-options > .upch-translate-lang-button {
  padding: 0;
  background-color: transparent;
}

#upch-translate-options > .upch-translate-lang-button > span {
  font-size: 0.9rem;
  font-weight: 600;
}

/*END TRANSLATE*/
/*MARGINS*/
.my-0 {
  -webkit-margin-before: 0 !important;
          margin-block-start: 0 !important;
  -webkit-margin-after: 0 !important;
          margin-block-end: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/*END MARGINS*/
/*BACKGROUND*/
.bg-duotone {
  background-image: url("https://tst02-imagen.cayetano.edu.pe/wp-content/uploads/sites/82/2026/06/simulacion_neonatal_grises-optimizado_web.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

/*FIN BACKGROUNDS*/
/*HEADER*/
.header-fixed {
  width: 100%;
  position: fixed;
  padding: 0;
}
/*FIN HEADER*/
/*
Modernizar el slider, responsive y con contenido
*/
.slider-custom > div > div > div > div > div.wp-block-getwid-media-text-slider-slide {
  max-height: 42vh;
  height: 42vh;
}
@media (min-width: 992px) {
  .slider-custom > div > div > div > div > div.wp-block-getwid-media-text-slider-slide {
    min-height: 75vh;
    max-height: 75vh;
    height: 75vh;
  }
}

.slider-custom > div > div > div > div > div > div.wp-block-getwid-media-text-slider-slide__content {
  min-height: auto !important;
  height: 100%;
}

.slider-custom > div > div > div > div > div > div > div > div.wp-block-getwid-media-text-slider-slide-content__content {
  bottom: 0;
  top: 2rem;
  padding: 1rem;
}
@media (min-width: 992px) {
  .slider-custom > div > div > div > div > div > div > div > div.wp-block-getwid-media-text-slider-slide-content__content {
    bottom: 0;
    padding: 1rem 12rem;
  }
}

/*
.wp-block-getwid-media-text-slider .slick-slider .slick-arrow{
  bottom: 12rem !important;
}
*/
.slider-custom > div > div > ul.slick-dots, .slider-custom > div > div > ul.slick-dots > li.slick-active button {
  background-color: #ffffff;
  color: #ffffff;
}

.slider-custom > div > div > ul > li.slick-active > button {
  font-size: 0 !important;
  width: 15px !important;
  height: 15px !important;
}

.slider-custom > div > div > div > div > div > div > div > figure > div.wp-block-getwid-media-text-slider-slide-content__media-overlay {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.65)), color-stop(50%, rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0) 100%);
  opacity: 1 !important;
}

/*--------------------------------*/
/*CARD OVERLAY*/
.grid-card_overlay {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 28px !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
  -ms-flex-line-pack: center;
      align-content: center;
  justify-items: center;
  margin-bottom: 1.8rem;
}

.card_overlay {
  max-width: 360px;
  aspect-ratio: 1/1;
  border-radius: 0.4rem;
  background-color: #E4142C;
}
.card_overlay > figure > img {
  border-radius: 0.4rem;
  background-color: #E4142C;
  -webkit-transition: all ease-out 1s;
  transition: all ease-out 1s;
}

.card_overlay:hover > figure > img {
  opacity: 0.5;
}

.card_overlay-info_container {
  height: 0;
  padding: 0;
  margin: 0 auto;
  position: relative;
  bottom: 47%;
}

.card_overlay-info {
  max-width: 94%;
  height: auto;
  padding: 1rem;
  border-radius: 0.4rem;
  margin: 0 auto;
}
.card_overlay-info > .card_overlay-title {
  font-size: 0.8rem;
  font-weight: 500;
}

.card_overlay-button > a {
  padding: 0.4rem 0.8rem !important;
  margin: 0.8rem 0;
  font-size: 0.8rem !important;
  font-weight: 600;
}

/*FIN CARD OVERLAY*/
/*SHAPE COMENTARY*/
.shape-comentary_container {
  padding: 1.3rem 0.8rem;
  background-image: url("https://mailing.caye-tano.net/mail/comillas-left.png");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 40px;
  -webkit-transition: all ease-out 0.8s;
  transition: all ease-out 0.8s;
}

.shape-comentary_info {
  background-color: rgba(0, 0, 0, 0.3490196078);
  padding: 0.7rem 1.5rem;
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .shape-comentary_info {
    padding: 1.4rem 3rem;
  }
}

.shape-comentary_container:hover {
  background-image: url("https://mailing.caye-tano.net/mail/comillas-right.png");
  background-position: bottom right;
}
.shape-comentary_container:hover > .shape-comentary_info {
  background-color: rgba(0, 0, 0, 0.3137254902);
}

/*END SHAE OVERLAY*/
/*CARD COUNTER*/
.grid-card_counter {
  grid-template-columns: repeat(auto-fill, minmax(min(150px, 100%), 2fr)) !important;
  gap: 16px !important;
}
@media (min-width: 992px) {
  .grid-card_counter {
    grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr)) !important;
    gap: 28px !important;
  }
}

.icon_figures {
  gap: 0;
}

.icon_figures > .icon-plus-counter > div {
  padding: 0;
}

.card_counter {
  padding: 1rem;
}

.number-counter > div > span {
  font-size: 1.5rem !important;
}
@media (min-width: 992px) {
  .number-counter > div > span {
    font-size: 3rem !important;
  }
}

/*FIN CARD COUNTER*/
/*CARD CAREERS AND ICONS*/
.container-icon_careers {
  position: relative;
  height: 0;
  bottom: 8rem;
}
@media (min-width: 992px) {
  .container-icon_careers {
    bottom: 6.5rem;
  }
}

.row-icon_careers {
  padding: 0.6rem;
  gap: 20px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  background: #f5f5f5;
  overflow-x: scroll;
  overflow-y: hidden;
}
@media (min-width: 992px) {
  .row-icon_careers {
    padding: 1rem;
    gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #f5f5f5;
    overflow: hidden;
  }
}

.container-icon_careers > .first_row {
  border-radius: 4rem 0 0 0;
}

.container-icon_careers > .custom_row {
  background-color: #FFD622;
}

.container-icon_careers > .last_row {
  border-radius: 0 0 4rem 0;
}

.item-career {
  max-width: 200px;
  padding: 0.4rem;
  -webkit-animation: move-right-to-left 6s linear 1;
          animation: move-right-to-left 6s linear 1;
}
@media (min-width: 992px) {
  .item-career {
    max-width: 292px;
    -webkit-animation: none;
            animation: none;
  }
}

.row-icon_careers:hover .item-career {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.career_icon {
  aspect-ratio: 1/1;
  padding: 0.7rem;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 4rem;
}

.career_icon-image > img {
  aspect-ratio: 1/1;
  max-width: 24px;
  width: 24px;
  height: auto;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 992px) {
  .career_icon-image > img {
    max-width: 36px;
    width: 36px;
  }
}

.career_name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #231F1F !important;
}
@media (min-width: 992px) {
  .career_name {
    font-size: 1rem;
  }
}

@-webkit-keyframes move-right-to-left {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); /* Empieza justo fuera del borde derecho */
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); /* Termina justo fuera del borde izquierdo */
  }
}

@keyframes move-right-to-left {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); /* Empieza justo fuera del borde derecho */
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); /* Termina justo fuera del borde izquierdo */
  }
}
/*FIN CAREERS AND ICONS*/
/*COLLAGE IMAGES*/
.collage_group > figure.collage_foto > a > img {
  border-radius: 0.4rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

figure.format-h > a > img {
  aspect-ratio: 5/3;
}

figure.format-v > a > img {
  aspect-ratio: 3/4;
}

figure.format-s > a > img {
  aspect-ratio: 1/1;
}

/*END COLLAGE IMAGES*/
/*NOTICES CARDS*/
.card-main_notice {
  border-radius: 2rem;
  -webkit-box-shadow: 0 0 13px -2px #000000;
          box-shadow: 0 0 13px -2px #000000;
}
.card-main_notice:hover {
  background-color: #FFD622;
}

.card-mini_notice {
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 0 13px -2px #000000;
          box-shadow: 0 0 13px -2px #000000;
}
.card-mini_notice:hover {
  background-color: #FFD622;
}

.main_notice-image > img {
  aspect-ratio: 5/4;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 2rem;
}

.main_notice-image {
  -webkit-transition: all ease-out 0.8s;
  transition: all ease-out 0.8s;
}

.card-main_notice:hover > .main_notice-image {
  opacity: 0.5;
}

.mini_notice-image > img {
  aspect-ratio: 4/3;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 1.5rem;
}

.mini_notice-image {
  -webkit-transition: all ease-out 0.8s;
  transition: all ease-out 0.8s;
}

.card-mini_notice:hover > .mini_notice-image {
  opacity: 0.5;
}

.main_notice-container-info {
  max-width: 90%;
  position: relative;
  height: 0;
  bottom: 13.4rem;
  margin-left: auto;
  -webkit-margin-before: 0 !important;
          margin-block-start: 0 !important;
}

.mini_notice-container-info {
  max-width: 96%;
  position: relative;
  height: 0;
  bottom: 6.4rem;
  margin-left: auto;
  -webkit-margin-before: 0 !important;
          margin-block-start: 0 !important;
}

.main_notice-container-info > div {
  padding: 1.3rem;
  border-radius: 2rem 0 2rem 0;
}

.mini_notice-container-info > div {
  padding: 0.7rem;
  border-radius: 1.5rem 0 1.5rem 0;
}

.main_notice-date {
  font-size: 0.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0.8;
}

.mini_notice-date {
  font-size: 0.7rem;
}

.main_notice-title > a {
  font-weight: 500;
  font-size: 1.2rem;
}

.mini_notice-title {
  margin: 0.3rem 0 !important;
}

.mini_notice-title > a {
  font-weight: 500;
  font-size: 0.8rem;
}

.box-notice_event_more {
  aspect-ratio: 4/3;
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  padding: 1rem;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 0 13px -2px #000000;
          box-shadow: 0 0 13px -2px #000000;
}

/*END NOTICES CARDS*/
/*SLIDER RESOURCES*/
.slides_resources > div > div > div > div > div.wp-block-getwid-content-slider-slide__wrapper {
  outline: none;
  padding: 0;
  margin: 0;
}

.slides_resources > div.wp-block-getwid-content-slider__wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slides_resources > div > .slick-arrow {
  padding: 0.5rem 1.9rem;
  bottom: -10px !important;
}
@media (min-width: 992px) {
  .slides_resources > div > .slick-arrow {
    bottom: 0 !important;
  }
}

.slides_resources > div > .slick-arrow::before {
  font-size: 2rem;
}

.card_resource {
  padding: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 0;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 992px) {
  .card_resource {
    height: auto;
    -webkit-box-orient: inherit;
    -webkit-box-direction: inherit;
        -ms-flex-direction: inherit;
            flex-direction: inherit;
    padding: 1rem;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.column {
  -webkit-box-flex: inherit;
      -ms-flex: inherit;
          flex: inherit;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
@media (min-width: 992px) {
  .column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.card_resource-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  border-radius: 0.4rem 0 0 0.4rem;
}
@media (min-width: 992px) {
  .card_resource-info {
    height: auto;
  }
}

.card_resource-info > .card_resource-info_topic {
  padding: 0.2rem 1rem;
  border-left: 2px #ffffff solid;
  font-weight: 500;
}

.card_resource-info > .card_resource-info_title {
  padding: 1rem 0;
  font-size: 1.3rem !important;
  font-weight: 600;
}
@media (min-width: 992px) {
  .card_resource-info > .card_resource-info_title {
    padding: 0;
  }
}

.card_resource-info > .card_resource-info_text {
  font-size: 0.9rem;
}

.card_resource-image > figure > img {
  aspect-ratio: 2/1;
  width: 100%;
  height: auto;
  border-radius: 0 0.4rem 0.4rem 0;
}

/*END SLIDER RESOURCE*/
/*GALLERY IMGS*/
.gallery > figure {
  overflow: hidden;
  border-radius: 8px;
}

.gallery > figure > a > img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

.gallery > figure:hover > a > img {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

/*END GALLERY IMGS*/
/*CARD TEAM CISA*/
.card_team_cisa {
  max-width: 360px;
  border-radius: 0.5rem;
}
.card_team_cisa > .image {
  width: 100%;
}
.card_team_cisa > .image > img {
  border-radius: 0.5rem 0.5rem 0 0;
}
.card_team_cisa > .info {
  padding: 1rem;
  border-radius: 0 0 0.5rem 0.5rem;
  min-height: 160px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
.card_team_cisa > .info > .name {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.5rem 0;
  padding-left: 0.8rem;
  border-left: 2px solid white;
}
.card_team_cisa > .info > .role {
  font-style: italic;
  font-size: 0.9rem;
  padding-left: 0.8rem;
}

/*END CARD TEAM CISA*/
/*card-new*/
.card-new-image > a > img {
  aspect-ratio: 5/3;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/*END card-new*/