@charset "UTF-8";

:root {
  --c1: #002913;
  --c2: #254412;
  --c3: #3d6a20;
  --c4: #7ca732;
  --c5: #ed4c1d;
  --txt-light: #ffffff;
  --txt-dark: #282828;
  --tit-h1: #254412;
  --txt-btn-c1: #ed4c1d;
  --txt-btn-c2: #ffffff;
  --color-btn: #ed4c1d;
  --bg-color-light: #ffffff;
  --bg-color-dark: #002913;
  --font-quicksans: "Quicksand", sans-serif;
  --font-oswald: "Oswald", sans-serif;
}

* {
  -webkit-font-smoothing: antialiazed;
  font-family: "Work Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

p {
  line-height: 1.3;
}

.center {
  padding: 0 20px;
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

header {
  background: url("../images/diseno/1-home/bg_header.png");
  background-size: cover;
  background-position: left center;
  position: fixed;
  width: 100%;
  min-height: 70px;
  z-index: 50;
}

header .header {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

header .header .c_logo_header {
  background-color: var(--bg-color-light);
  padding: 10px 20px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2509803922);
  border-radius: 0px 0px 8px 8px;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 230px;
}

header .header .c_logo_header img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

header .header .navbar_desk {
  grid-column: 2/3;
  display: grid;
  align-items: baseline;
  gap: 20px;
  align-content: center;
  height: 100%;
}

header .header .navbar_desk .cont_btn_menu_mobile {
  display: none;
  justify-content: flex-end;
  padding-right: 10px;
  box-sizing: border-box;
}

header .header .navbar_desk .cont_btn_menu_mobile a {
  cursor: pointer;
  color: var(--txt-btn-c2);
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

header .header .navbar_desk .cont_btn_menu_mobile a span {
  font-size: 26px;
}

header .header .navbar_desk>ul {
  display: flex;
  align-items: center;
  list-style: none;
  justify-content: flex-end;
  gap: 8px;
  padding: 0;
  margin: 0;
  height: 100%;
}

header .header .navbar_desk>ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  height: 100%;
}

header .header .navbar_desk ul>li>a {
  color: var(--txt-light);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  height: 100%;
  padding: 0px 8px;
  box-sizing: border-box;
  position: relative;
  text-align: center;
  max-width: 120px;
  display: flex;
  align-items: center;
}

header .header .navbar_desk ul>li>a::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 8px;
  right: 0;
  height: 3px;
  width: 0%;
  margin: auto;
  background: linear-gradient(90deg,
      rgba(124, 167, 50, 0) 0%,
      #7ca732 52.6%,
      rgba(255, 255, 255, 0) 100%,
      #7ca732 100%);
  border-radius: 100px;
  transition: 300ms ease-out;
  opacity: 0;
}

header .header .navbar_desk ul>li>a.active_link::before {
  width: 90%;
  opacity: 1;
}

header .header .navbar_desk ul>li>a:hover::before {
  width: 90%;
  opacity: 1;
}

header .header .navbar_desk ul .c_lenguajes {
  border-left: 1px solid #e5e5e5;
  padding-left: 20px;
  gap: 6px;
}

header .header .navbar_desk ul .c_lenguajes a {
  padding: 4px;
  box-sizing: border-box;
  border-radius: 4px;
  transition: 300ms ease;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

header .header .navbar_desk ul .c_lenguajes a::before {
  display: none;
}

header .header .navbar_desk ul .c_lenguajes a:hover {
  background-color: rgba(255, 255, 255, 0.2745098039);
}

header .header .navbar_desk ul .c_lenguajes a.active {
  background-color: var(--bg-color-light);
  color: var(--c1);
}

.spacer {
  display: block;
  width: 100%;
  height: 70px;
}

.al_center {
  text-align: center;
}

.al_left {
  text-align: left;
}

.al_right {
  text-align: right;
}

.flx_al_left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.flx_al_center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flx_al_right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.subtitle {
  letter-spacing: 0.335em;
  text-transform: uppercase;
  color: var(--tit-h1);
  font-size: 20px;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
  position: relative;
}

.subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 10%;
  height: 4px;
  border-radius: 100px;
  background-color: var(--c3);
}

.s_contador .subtitle::before {
  display: none;
}

.close_mobile {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
}

.close_mobile span {
  display: inline-block;
  color: #fafafa;
}

.btn_link {
  color: var(--color-btn);
  text-decoration: none;
  cursor: point;
}

.btn_link:hover {
  text-decoration: underline;
}

.btn_fill,
.btn_outline {
  background-color: var(--color-btn);
  color: var(--txt-btn-c2);
  font-weight: 700;
  text-decoration: none;
  padding: 10px 24px;
  box-sizing: border-box;
  border-radius: 100px;
  display: inline-block;
  font-size: 15px;
  text-transform: uppercase;
  text-align: center;
  outline: 0;
}

.btn_fill span,
.btn_outline span {
  margin-left: 10px;
}

.btn_outline {
  background-color: transparent;
  border: 1px solid var(--color-btn);
  color: var(--txt-btn-c1);
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

footer {
  width: 100%;
  color: var(--txt-light);
}

.c_footer {
  background: #162f07;
  padding: 60px 0;
  box-sizing: border-box;
}

.c_sub_footer {
  background: var(--c4);
  padding: 10px 0;
  box-sizing: border-box;
  text-align: center;
  font-size: 12px;
  color: #fafafa;
}

.c_sub_footer a {
  color: #fafafa;
  text-decoration: none;
}

.c_sub_footer a:hover {
  text-decoration: underline;
}

.cont_gen_footer {
  display: grid;
  grid-template-columns: 170px 2fr 1fr;
  gap: 60px;
  align-items: flex-start;
  justify-content: center;
}

.cont_gen_footer .cont_logo a {
  display: inline-block;
}

.cont_gen_footer .cont_logo a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.cont_gen_footer h4 {
  margin: 0 0 14px;
  color: var(--txt-light);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-quicksans);
}

.cont_gen_footer .desc_seo,
.cont_gen_footer .direccion,
.cont_gen_footer .contactos {
  margin: 0 0 10px;
  font-weight: 400;
  opacity: 0.7;
  font-size: 14px;
}

.cont_gen_footer .contactos a {
  color: var(--txt-light);
  text-decoration: none;
}

.cont_gen_footer .contactos a:hover {
  text-decoration: underline;
  color: var(--c4);
}

.cont_gen_footer .contactos span {
  padding: 0 10px;
  margin: 0 10px;
  box-sizing: border-box;
  border-left: 1px solid rgba(255, 255, 255, 0.4705882353);
  border-right: 1px solid rgba(255, 255, 255, 0.4705882353);
}

.cont_gen_footer .direccion span {
  padding: 0 10px;
  margin: 0 10px;
  box-sizing: border-box;
  border-left: 1px solid rgba(255, 255, 255, 0.4705882353);
}

.hastag {
  font-weight: 500;
  font-size: 13px;
  font-family: var(--font-quicksans);
}

.c_items_redes_footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding-top: 10px;
}

.c_items_redes_footer a {
  border-radius: 100px;
  border: 1px solid #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  color: var(--txt-btn-c2);
  text-decoration: none;
  transition: 300ms ease;
}

.c_items_redes_footer a:hover {
  background-color: var(--bg-color-light);
  color: var(--c3);
}

.s_hero {
  position: relative;
  min-height: 480px;
  border-radius: 0 0 80px 80px;
  overflow: hidden;
  z-index: 10;
}

.cont_gen_hero {
  max-height: 480px;
  height: 100vh;
}

.sliderHero .swiper-slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 200px;
  box-sizing: border-box;
}

.sliderHero .swiper-slide .img_bg_slider_hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: inline-block;
}

.sliderHero .swiper-slide .img_bg_slider_hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 0%),
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.9607843137) 30%,
      rgba(255, 255, 255, 0) 80.31%);
}

.sliderHero .swiper-slide .img_bg_slider_hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sliderHero .swiper-slide .cont_desc_hero_txt {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 680px;
}

.sliderHero .swiper-slide .cont_desc_hero_txt h2 {
  font-size: 2.5em;
  text-transform: uppercase;
  color: var(--c2);
  margin: 0 0 20px;
}

.sliderHero .swiper-slide .cont_desc_hero_txt .desc_txt {
  margin-bottom: 20px;
  line-height: 1.4;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev,
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: var(--c4);
  border-radius: 100px;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  font-size: 24px;
  font-weight: 800;
  color: var(--txt-light);
}

.cont_gen_hero .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 80px;
}

.cont_gen_hero .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 80px;
}

.cont_bg_sections,
.s_form_conference,
.s_beneficios {
  background: url("../images/diseno/1-home/bg_sections.png");
  background-size: cover;
  background-position: center top;
}

.s_contador {
  margin-top: -64px;
  padding: 90px 0 60px;
}

.s_patrocinadores {
  background: #f8f7f3;
  padding: 30px 0 70px;
  box-sizing: border-box;
}

.swiperPatrocinadores .swiper-slide {
  border-radius: 100px;
  background-color: var(--bg-color-light);
  border: 1px solid #e2e2e2;
  height: 130px;
}

.swiperPatrocinadores .swiper-slide picture {
  display: inline-block;
  width: 80%;
}

.swiperPatrocinadores .swiper-slide picture img {
  width: 90%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  margin: auto;
}

.cont_gen_patrocinadores {
  /* padding: 0 40px; */
  box-sizing: border-box;
}

.cont_gen_patrocinadores .swiper-button-next,
.cont_gen_patrocinadores .swiper-button-prev {
  top: auto;
  bottom: 18%;
}

.tit_section h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--c2);
  font-size: 40px;
  margin: 30px 0 50px;
  text-align: center;
}

.tit_section h3 img {
  margin-right: 10px;
}

.s_banner_visitas {
  background-color: var(--c5);
  padding: 20px 0;
  box-sizing: border-box;
}

.cont_gen_banner_visitas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.cont_gen_banner_visitas .txt_banner_1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--txt-light);
  text-align: center;
}

.cont_visitas_banner {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.cont_visitas_banner span {
  font-weight: 800;
  color: var(--txt-light);
  font-size: 60px;
  justify-content: center;
}

.cont_visitas_banner .cont_txt_visitas {
  display: flex;
  align-items: center;
}

.cont_visitas_banner .cont_txt_visitas div {
  font-size: 28px;
  text-transform: uppercase;
  color: var(--txt-light);
  margin-left: 20px;
  letter-spacing: 0.335em;
}

.cont_gen_contador {
  max-width: 523px;
  padding: 20px;
  box-sizing: border-box;
  background: url("../images/diseno/1-home/bg_hoja.png"), #254412;
  background-blend-mode: multiply, normal;
  background-size: cover;
  border-radius: 14px;
  margin: auto;
  margin-top: -68px;
  position: relative;
  z-index: 20;
}

.cont_gen_contador .subtitle {
  color: var(--txt-light);
}

.item_contador {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 10px;
  width: 100%;
  padding: 0 30px;
  box-sizing: border-box;
  border-right: 1px solid rgba(255, 255, 255, 0.321);
}

.item_contador:last-child {
  border-right: 0px;
}

.item_contador span {
  font-family: var(--font-oswald);
  font-size: 40px;
  color: var(--txt-light);
  font-weight: 700;
  text-transform: uppercase;
}

.item_contador .label_contador {
  font-family: var(--font-oswald);
  color: var(--txt-light);
  font-size: 19px;
  font-weight: 400;
  text-transform: uppercase;
}

.c_contador_datos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0px;
}

.col_pic_event picture {
  display: inline-block;
  max-width: 413px;
  max-height: 282px;
  overflow: hidden;
  border-radius: 80px 4px;
}

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

.cont_gen_ini_evento {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.cont_ctas {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cont_ctas a {
  padding: 10px;
  font-size: 13px;
}

.s_incitacion_evento .tit_section h3 {
  margin-top: 30px;
}

.s_incitacion_evento .tit_section h3 p {
  margin: 0;
}

.s_incitacion_evento {
  padding: 20px 0 100px;
}

.cont_galeria_event .swiper-button-next,
.cont_galeria_event .swiper-button-prev {
  bottom: 30%;
  top: auto;
}

.s_galeria_e {
  padding: 100px 0;
}

.cont_galeria_event {
  margin-top: 60px;
  padding: 0 50px;
  box-sizing: border-box;
}

.swiperGaleriaEvent .swiper-slide {
  border-radius: 60px 8px 60px 8px;
  overflow: hidden;
  max-height: 220px;
}

.swiperGaleriaEvent .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.s_agenda {
  background: linear-gradient(0deg, #254412, #35601a),
    linear-gradient(0deg, #0e7b41, #034220),
    url("../images/diseno/1-home/img_agenda_bg.png");
  background-blend-mode: multiply, color, normal;
  background-size: cover;
  overflow: hidden;
}

.cont_gen_agenda {
  padding: 60px 0;
  box-sizing: border-box;
}

.cont_gen_agenda .tit_section {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: var(--txt-light);
  gap: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4078431373);
  margin-bottom: 10px;
}

.cont_gen_agenda .tit_section h3 {
  color: var(--txt-light);
  margin: 30px 0;
}

.cont_gen_agenda .tit_section .tit_agenda_fecha {
  letter-spacing: 0.335em;
  text-transform: uppercase;
  font-size: 20px;
  display: none;
}

.cont_gen_agenda .tit_section .tit_agenda_fecha.mobl {
  display: none;
}

.cont_gen_agenda .tit_section .tit_agenda_fecha.mobl p {
  margin: 0;
}

.c_agenda {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: stretch;
}

.c_agenda nav ul {
  padding: 0;
  list-style: none;
}

.c_agenda nav ul li {
  border-radius: 8px;
  background-color: var(--bg-color-light);
  text-align: center;
  color: var(--tit-h1);
  margin-bottom: 14px;
  cursor: pointer;
  width: 90%;
  display: inline-block;
  font-weight: 700;
  padding: 10px 4px;
  box-sizing: border-box;
  transition: 300ms ease-out;
}

.c_agenda nav ul li.active_dia {
  width: 101%;
  border-radius: 8px 0 0 8px;
  position: relative;
}

.c_agenda nav ul li.active_dia:first-child::before {
  display: none;
}

.c_agenda nav ul li.active_dia::before {
  content: "";
  position: absolute;
  background: url("../images/diseno/1-home/v1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  top: -9px;
  width: 8px;
  height: 9px;
}

.c_agenda nav ul li.active_dia::after {
  content: "";
  position: absolute;
  background: url("../images/diseno/1-home/v2.svg");
  background-size: 10px;
  background-repeat: no-repeat;
  right: 0;
  bottom: -9px;
  width: 8px;
  height: 9px;
}

.c_agenda nav ul li .auditorias_aside {
  display: none;
}

.c_agenda nav ul li .auditorias_aside a {
  display: block;
  width: 100%;
  padding: 4px;
  box-sizing: border-box;
  margin: 14px 0;
  cursor: pointer;
  max-width: 190px;
}

.col_agenda_info {
  background: #fff;
  margin-top: 16px;
  border-radius: 0 8px 8px 8px;
  padding: 20px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  justify-items: center;
  align-content: flex-start;
}

.col_agenda_info .tit_agenda_info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.335em;
  text-transform: uppercase;
  color: #162615;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.col_agenda_info .title_modulo {
  font-size: 26px;
  color: var(--c1);
  margin: 0;
  max-width: 680px;
  text-align: center;
}

.col_agenda_info .title_modulo a{
  color: #fc7a3d;
}

.active_audt {
  color: var(--txt-btn-c1);
}

.col_gen_modulos {
  overflow-y: scroll;
  width: 100%;
  max-height: 500px;
}

.divisor_info_modulo {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 10px;
  position: relative;
  margin-bottom: 14px;
}

.divisor_info_modulo div {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  z-index: 2;
  gap: 10px;
  cursor: pointer;
}

.divisor_info_modulo::before {
  content: "";
  position: absolute;
  bottom: 50%;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.05);
  width: 100%;
  z-index: 1;
}

.divisor_info_modulo::after {
  content: "";
  position: absolute;
  bottom: 50%;
  height: 2px;
  background-color: rgb(255, 255, 255);
  width: 50%;
  z-index: 1;
}

.divisor_info_modulo span {
  background-color: #dadada;
  font-size: 16px;
  border-radius: 100px;
  padding: 2px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--txt-dark);
  transform: rotate(0deg);
  transition: 300ms ease;
}

.divisor_info_modulo.active span {
  transform: rotate(180deg);
  background-color: var(--color-btn);
  color: var(--txt-light);
}

.displayGrid {
  display: grid !important;
}

.cont_cards_modulos {
  padding: 20px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  display: none;
}

.cont_cards_modulos .card_modulo {
  background: var(--c4);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 3fr;
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.cont_cards_modulos .card_modulo.intermedio {
  background: #f0f0f0;
  border: 1px solid #dbdbdb;
  box-sizing: border-box;
  border-radius: 20px;
  grid-template-columns: 1.5fr 2fr;
}

.cont_cards_modulos .card_modulo.intermedio .card_horario {
  color: var(--c1);
  border-right: 1px solid var(--c1);
}

.cont_cards_modulos .card_modulo.intermedio .card_datos {
  color: var(--c1);
}

.cont_cards_modulos .card_modulo .card_horario {
  font-size: 24px;
  font-weight: 700;
  padding-right: 30px;
  margin-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.452);
  text-align: left;
  color: var(--txt-light);
  display: flex;
  align-items: center;
}

.cont_cards_modulos .card_modulo .card_datos {
  color: var(--txt-light);
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.cont_cards_modulos .card_modulo .card_datos .tags_add {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  font-size: 12px;
}

.cont_cards_modulos .card_modulo .card_datos .name_conferencia {
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-quicksans);
}

.cont_cards_modulos .card_modulo .card_datos .name_speaker {
  background: var(--bg-color-light);
  padding: 4px 8px;
  box-sizing: border-box;
  border-radius: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--tit-h1);
  font-weight: 400;
  font-size: 12px;
  color: var(--c2);
}

.audt_aside {
  position: relative;
}

.audt_aside span {
  position: absolute;
  top: 20%;
  bottom: 0;
  right: 10px;
  margin: auto;
  color: var(--c5);
}

.audt_aside.active_audt {
  display: block;
}

.s_gracias {
  width: 100%;
  background: url("../images/diseno/1-home/bg_sections.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding: 100px 0;
}

.c_gracias {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.c_gracias picture {
  max-width: 350px;
  display: block;
  margin: 0 auto 30px;
}

.c_gracias picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.c_gracias h3 {
  font-size: 2.5em;
  text-transform: uppercase;
  margin: 0;
  color: var(--c1);
  text-align: center;
}

.c_gracias h4 {
  margin: 10px 0 30px;
  color: var(--c1);
  font-size: 1.5em;
  text-align: center;
}

.s_header_int {
  width: 100%;
  position: relative;
  max-height: 200px;
  height: 100vh;
  border-radius: 0px 0px 40px 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.s_header_int::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      #f4f4f4 50%,
      rgba(255, 255, 255, 0) 81.77%);
  z-index: 1;
}

.s_header_int picture {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  margin: auto;
  width: 50%;
  height: 100%;
}

.s_header_int picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.s_header_int .center {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  color: var(--c2);
}

.s_header_int .center h1 {
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 44px;
  margin: 0;
}

.cont_miga {
  position: absolute;
  left: 30%;
  top: 24px;
  z-index: 2;
}

.cont_miga a {
  text-decoration: none;
  font-size: 13px;
  list-style: none;
  color: var(--c1);
}

.cont_miga a:hover {
  text-decoration: underline;
}

.cont_miga span {
  font-size: 13px;
}

.s_beneficios_int {
  padding: 60px 0;
  box-sizing: border-box;
}

.div_cols_bene {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.div_cols_bene .d_col_btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.div_cols_bene .d_col_btns a {
  width: 100%;
  max-width: 243px;
  text-align: center;
}

.div_cols_bene .d_col ul {
  padding: 0;
  margin: 0;
}

.div_cols_bene .d_col ul li {
  margin-bottom: 20px;
  position: relative;
  list-style: none;
}

.div_cols_bene .d_col ul li::before {
  content: "";
  background: url("../images/diseno/arrow.svg") no-repeat center;
  background-size: contain;
  left: -20px;
  top: 2px;
  border-radius: 100px;
  position: absolute;
  width: 12px;
  height: 12px;
}

.c_banner_inscripcion {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 60px;
}

.grand_container_line {
  background: linear-gradient(0deg, #427226 28.6%, rgba(34, 63, 17, 0) 73.73%);
  padding: 4px;
  box-sizing: border-box;
  border-radius: 45px;
  width: 100%;
  max-width: 750px;
  height: 100vh;
  max-height: 213px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.grand_container_line .container_b {
  width: 100%;
  height: 205px;
  max-height: 213px;
  position: relative;
  padding: 20px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 2fr 1fr;
}

.grand_container_line .container_b::before {
  background: linear-gradient(90deg,
      #223f11 28.6%,
      rgba(34, 63, 17, 0.31) 73.73%);
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 3;
  border-radius: 43px;
}

.grand_container_line .container_b picture {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  border-radius: 45px;
  overflow: hidden;
  display: inline-block;
}

.grand_container_line .container_b picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.grand_container_line .container_b .txts_b {
  position: relative;
  z-index: 5;
}

.grand_container_line .container_b .txts_b h6 {
  margin: 10px 0 0;
  color: var(--c4);
  font-size: 18px;
  font-weight: 400;
}

.grand_container_line .container_b .txts_b h6+h3 {
  margin: 0px 0 10px;
}

.grand_container_line .container_b .txts_b .btn_fill {
  text-transform: initial;
  font-size: 18px;
}

.grand_container_line .container_b .txts_b h3 {
  color: var(--txt-light);
  text-transform: uppercase;
  font-size: 2em;
  margin: 20px 0 10px;
  max-width: 320px;
}

.btn_filter_agenda {
  display: none;
}

.btn_filter_agenda span {
  margin-right: 4px;
}

.c_agenda aside {
  transition: 300ms ease-out;
}

.subfilter_active {
  transform: translateX(0%) !important;
}

.s_txt_desc_section {
  padding: 60px 0;
  box-sizing: border-box;
}

.s_txt_desc_section .c_txt_desc_s {
  text-align: center;
  max-width: 750px;
  margin: auto;
}

.c_info_contact {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  justify-items: center;
}

.c_info_contact .card_info_contact {
  border-radius: 8px;
  background: #f3f3f3;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 365px;
  min-height: 258px;
  overflow: hidden;
  width: 100%;
}

.c_info_contact .card_info_contact:hover picture {
  opacity: 1;
}

.c_info_contact .card_info_contact:hover h5,
.c_info_contact .card_info_contact:hover h2 {
  color: var(--txt-light);
}

.c_info_contact .card_info_contact:hover .datos_info a {
  color: var(--txt-light);
}

.c_info_contact .card_info_contact picture {
  position: absolute;
  width: 100%;
  height: 100%;
  display: inline-block;
  z-index: 1;
  opacity: 0;
  transition: 300ms ease;
}

.c_info_contact .card_info_contact picture::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg,
      rgba(57, 81, 17, 0.8274509804) 0%,
      rgba(124, 167, 50, 0.613) 100%),
    rgba(124, 167, 50, 0.6078431373);
  background-blend-mode: normal, color;
}

.c_info_contact .card_info_contact picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c_info_contact .card_info_contact h5 {
  margin: 0 0 10px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  z-index: 5;
  font-size: 15px;
  font-weight: 400;
}

.c_info_contact .card_info_contact h2 {
  position: relative;
  z-index: 5;
  text-align: center;
  margin: 10px 0 40px;
  font-size: 22px;
  text-transform: uppercase;
}

.c_info_contact .card_info_contact .datos_info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 5;
  width: 100%;
  gap: 8px;
  word-break: break-all;
}

.c_info_contact .card_info_contact .datos_info a {
  text-decoration: none;
  text-align: left;
  color: var(--txt-dark);
  display: block;
  font-size: 14px;
}

.c_info_contact .card_info_contact .datos_info a:hover {
  text-decoration: underline;
}

.c_info_contact .card_info_contact .datos_info a span {
  font-weight: 400;
  margin-right: 4px;
}

.info_contact {
  padding: 0 0 60px;
  box-sizing: border-box;
}

.s_form_contact {
  background: url("../images/diseno/1-home/bg_sections.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
  box-sizing: border-box;
}

.s_form_contact .subtitle::before {
  display: none;
}

.c_form_contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.formulario_c {
  padding: 20px 30px 40px;
  box-sizing: border-box;
  background: #ffffff;
  box-shadow: 0px 20px 39px -15px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  max-width: 700px;
  width: 100%;
  margin: auto;
}

.formulario_c .c_step_form {
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
  border-bottom: 1px solid #dedede;
}

.cont_input_x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.cont_input {
  position: relative;
  width: 100%;
  margin-bottom: 14px;
}

.cont_input input,
.cont_input select,
.cont_input textarea {
  width: 100%;
  border: 1px solid #bbbbbb;
  box-sizing: border-box;
  border-radius: 6px;
  outline: 0;
  font-size: 14px;
  height: 35px;
  padding: 4px 12px;
  transition: 300ms ease;
  color: #969696;
}

.cont_input.radio {
  border: 1px solid #bbbbbb;
  box-sizing: border-box;
  border-radius: 6px;
  outline: 0;
  font-size: 14px;
  transition: 300ms ease;
  color: #969696;
  padding: 4px 4px 4px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cont_input.radio .option_radio {
  display: flex;
  gap: 10px;
}

.cont_input.radio .option_radio input[type="radio"] {
  display: none;
}

.cont_input.radio .option_radio input[type="radio"]:checked+label {
  background-color: var(--color-btn);
  color: var(--txt-light);
}

.cont_input.radio .option_radio label {
  position: static;
  background: #eaeaea;
  border-radius: 3px;
  box-sizing: border-box;
  padding: 8px 16px;
  font-weight: 700;
  cursor: pointer;
}

.cont_input select {
  cursor: pointer;
}

.cont_input input:not(:-moz-placeholder-shown)+label,
.cont_input select:not(:-moz-placeholder-shown)+label,
.cont_input textarea:not(:-moz-placeholder-shown)+label {
  top: -7px;
  font-size: 12px;
  color: var(--c1);
}

.cont_input input:not(:-ms-input-placeholder)+label,
.cont_input select:not(:-ms-input-placeholder)+label,
.cont_input textarea:not(:-ms-input-placeholder)+label {
  top: -7px;
  font-size: 12px;
  color: var(--c1);
}

.cont_input input:not(:placeholder-shown)+label,
.cont_input select:not(:placeholder-shown)+label,
.cont_input textarea:not(:placeholder-shown)+label {
  top: -7px;
  font-size: 12px;
  color: var(--c1);
}

.cont_input label {
  position: absolute;
  top: 9px;
  left: 10px;
  font-size: 14px;
  background-color: #ffffff;
  padding: 0 4px;
  box-sizing: border-box;
  color: #969696;
  transition: 300ms ease;
  cursor: text;
}

.cont_input.file {
  border: 1px solid #bbbbbb;
  box-sizing: border-box;
  border-radius: 6px;
}

.cont_input.file:focus-within label {
  position: static;
  margin: 10px;
  display: block;
  color: #969696;
  font-size: 14px;
}

.cont_input.file label {
  position: static;
  margin: 10px;
  display: block;
  color: #969696;
  font-size: 14px;
}

.cont_input.file label strong {
  display: block;
  color: #5c5c5c;
}

.cont_input.file input[type="file"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  outline: 0;
  border: 0;
  display: block;
  padding: 0 15px;
  margin: 0 0 7px;
}

.cont_input.file input[type="file"]::-webkit-file-upload-button {
  background-color: var(--color-btn);
  border-radius: 4px;
  outline: 0;
  border: 0;
  cursor: pointer;
  padding: 8px 24px;
  box-sizing: border-box;
  color: var(--txt-light);
}

.cont_input.terminos {
  background-color: #eeeeee;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 8px;
  color: #5c5c5c;
}

.cont_input.terminos .tit_terminos {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cont_input.terminos .txt_terminos {
  font-size: 12px;
  line-height: 1.2;
}

.cont_input.acepto_terminos .tit_terminos {
  font-size: 14px;
  color: #5c5c5c;
}

.cont_input.radio_large {
  margin: 10px 0 0 !important;
}

.cont_input.radio_large input {
  display: none;
}

.cont_input.radio_large input:checked+label {
  background-color: var(--color-btn) !important;
  color: var(--txt-btn-c2) !important;
}

.cont_input.radio_large label {
  background-color: #e8e8e8 !important;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 4px;
  text-align: left;
  font-weight: 600 !important;
  font-size: 14px !important;
  position: static;
  background-color: transparent;
  width: 100%;
  display: inline-block;
  color: #5c5c5c !important;
  cursor: pointer;
}

.cont_input:focus-within input {
  border: 1px solid var(--c1);
}

.cont_input:focus-within label {
  top: -7px;
  font-size: 12px;
  color: var(--c1);
}

.cont_input:focus-within .btn_acuerdo_ok {
  top: initial;
  font-size: 14px;
  color: #b2b2b2;
}

.cont_input .btn_acuerdo_ok {
  max-width: 140px;
  border-radius: 100px;
  border: 1px solid var(--color-btn);
  padding: 4px 8px;
  box-sizing: border-box;
  position: static;
  font-size: 14px;
  color: #b2b2b2;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 20px 0 10px;
}

.cont_input .btn_acuerdo_ok input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  border-radius: 100px;
  height: 20px;
  width: 20px;
  border: 0;
  background-color: #e9e9e9;
  padding: 0;
  cursor: pointer;
}

.cont_input .btn_acuerdo_ok input[type="checkbox"]:checked {
  background-color: var(--color-btn);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cont_input .btn_acuerdo_ok input[type="checkbox"]:checked::before {
  position: absolute;
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  color: var(--txt-btn-c2);
  font-size: 13px;
  padding-top: 3px;
}

.cont_input .formError {
  left: 0 !important;
}

.c_modulo_options {
  display: none;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 0 0 4px 4px;
  border: 1px solid #c7c7c7;
}

.c_modulo_options .op_modulo {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  width: 100%;
  gap: 16px;
  margin-bottom: 12px;
}

.c_modulo_options .op_modulo:last-child {
  margin: 0;
}

.c_modulo_options .op_modulo input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #f2f2f2;
  border: 2px solid #e0e0e0;
  box-sizing: border-box;
  transition: 300ms ease;
  border-radius: 100px;
  cursor: pointer;
}

.c_modulo_options .op_modulo input[type="radio"]:checked {
  background: #ed4c1d;
  border: 2px solid #d8d8d8;
  box-sizing: border-box;
}

.c_modulo_options .op_modulo label {
  cursor: pointer;
}

#paso2,
#paso3,
#paso4,
#paso5 {
  display: none;
}

#paso5 {
  border-bottom: 0px;
  padding-bottom: 0;
}

.c_btn_steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0 0;
  box-sizing: border-box;
}

.c_btn_steps .btn_fill {
  grid-column: 2/3;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  justify-self: flex-end;
  cursor: pointer;
}

.c_btn_steps .btn_link {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  justify-self: flex-start;
  cursor: pointer;
}

.c_btn_steps button {
  outline: 0;
  border: 0;
}

.texto_desc_f {
  font-size: 14px;
  color: #5c5c5c;
  margin-bottom: 20px;
}

.texto_desc_f a {
  color: #5c5c5c;
  text-decoration: underline;
  cursor: pointer;
}

.cont_chk {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cont_chk input[type="checkbox"] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  outline: 0;
  background-color: #dadada;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cont_chk input[type="checkbox"]:checked {
  background-color: var(--color-btn);
}

.cont_chk input[type="checkbox"]:checked:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  color: var(--txt-light);
}

.cont_chk label {
  font-size: 14px;
}

.cont_btn_submit {
  display: flex;
  justify-content: flex-end;
}

.cont_btn_submit button {
  outline: 0;
  border: 0;
  cursor: pointer;
}

.cont_input textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #bbbbbb;
  border-radius: 8px;
  height: initial;
}

.cont_divider {
  width: 100%;
  height: 1px;
  background-color: #bbbbbb;
  margin: 10px 0 20px;
  box-sizing: border-box;
}

.s_form_conference {
  padding: 40px 0 100px;
  box-sizing: border-box;
}

.c_slider_documentos {
  position: relative;
  padding: 40px;
  box-sizing: border-box;
}

.s_documentos {
  padding: 30px 0;
}

.c_documentos .tit_section h3 {
  margin: 30px 0 20px;
}

.c_documentos .tit_section div {
  max-width: 700px;
}

.calendar_x1,
.calendar_x2 {
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 5;
}

.calendar_x1 h3,
.calendar_x2 h3 {
  text-align: center;
  color: var(--txt-light);
  font-size: 32px;
  margin: 0 20px 20px;
}

.calendar_x1 div p,
.calendar_x2 div p {
  text-align: center;
  color: var(--txt-light);
  font-size: 15px;
  margin: 0;
}

.calendar_x2 {
  flex-direction: row;
  gap: 10px;
  padding-bottom: 0;
  position: relative;
}

.calendar_x2::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 60%;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.4509803922);
}

.calendar_x2::after {
  content: "al";
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--c1);
  border: 6px solid var(--c2);
}

.swiperCalendar .swiper-slide {
  flex-direction: column;
  background-color: var(--c2);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: 300ms ease;
}

.swiperCalendar .swiper-slide:hover {
  background-color: var(--c3);
}

.swiperCalendar .swiper-slide:hover picture {
  opacity: 0.2;
}

.swiperCalendar .swiper-slide>div:last-child:not(.calendar_x1) {
  color: var(--txt-light);
  font-size: 13px;
  padding: 0 20px 20px;
  box-sizing: border-box;
}

.c_calendar_slider {
  padding: 0 65px;
  box-sizing: border-box;
  position: relative;
}

.c_calendar_slider picture {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg,
      rgba(124, 167, 50, 0.8),
      rgba(124, 167, 50, 0.8)),
    linear-gradient(0deg, #7ca732, #7ca732),
    url("../images/diseno/05-convocatorias_conf/mic_bg.png");
  background-blend-mode: normal, color, normal;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: 300ms ease;
}

.sub_txt_x2 {
  position: relative;
  z-index: 5;
}

.sub_txt_x2 p {
  margin: 0;
  font-size: 16px;
}

.s_reserva_stand {
  padding: 60px 0 0;
  box-sizing: border-box;
}

.c_reserva_stand {
  padding-bottom: 60px;
  box-sizing: border-box;
  border-bottom: 1px solid #dadada;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: auto;
  width: 100%;
  max-width: 960px;
  align-items: flex-start;
}

.c_reserva_stand h2 {
  font-size: 44px;
  color: var(--c1);
  margin: 0 0 20px;
}

.c_slider_mapa {
  padding: 0 60px;
  box-sizing: border-box;
  max-width: 1000px;
  margin: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.c_slider_mapa .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.c_slider_mapa .swiper-slide {
  height: 100%;
  max-height: 500px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #cdcdcd;
  box-sizing: border-box;
}

.c_slider_mapa .mySwiper {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
}

.c_slider_mapa .swiper-button-next,
.c_slider_mapa .swiper-button-prev {
  top: 40%;
}

.c_mapa {
  padding-bottom: 60px;
  box-sizing: border-box;
}

.s_beneficios {
  padding: 60px 0;
  box-sizing: border-box;
}

.c_cards_beneficios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  max-width: 850px;
  margin: auto;
  margin-bottom: 60px;
}

.c_cards_beneficios .card_beneficio {
  padding: 30px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  justify-items: center;
  background: var(--c2);
  border-radius: 8px;
  color: var(--txt-light);
  max-width: 415px;
  width: 100%;
}

.c_cards_beneficios .card_beneficio.white {
  background-color: var(--bg-color-light);
  color: var(--c1);
}

.c_cards_beneficios .txt_bene ul {
  padding: 0 0 0 10px;
  margin: 0;
}

.c_cards_beneficios .txt_bene li {
  margin-bottom: 10px;
  line-height: 1.3;
  font-weight: 300;
}

.c_cards_beneficios .txt_bene li span {
  font-weight: 600;
}

.cont_btn {
  display: flex;
  justify-content: center;
}

.c_txt_patrocinadores {
  max-width: 700px;
  margin: auto;
  padding: 90px 0;
  box-sizing: border-box;
}

.c_txt_patrocinadores h3 {
  margin: 0 0 30px;
}

.c_txt_patrocinadores .txt_patro {
  margin-bottom: 30px;
}

.c_txt_patrocinadores .cont_doble_btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.swiperDocumentos .btn_outline {
  min-height: 56px;
  display: flex;
  align-items: center;
}

.inicio_mbl {
  display: none;
}

.dia_aside {
  width: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.tit_mobile_auditorio {
  display: none;
  color: var(--txt-light);
  font-size: 15px;
  text-transform: uppercase;
}

.banner_publicidad picture,
.c_banner_publicidad {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.banner_publicidad picture label,
.c_banner_publicidad label {
  margin: 0 auto 6px;
  display: inline-block;
  font-size: 14px;
  color: #a2a2a2;
  text-align: center;
}

.c_banner_publicidad label {
  margin: 6px auto;
}

.banner_publicidad picture img,
.c_banner_publicidad img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.c_banner_publicidad img {
  max-width: 1024px;
  max-height: 120px;
  margin: 0 auto;
}

.formfile {
  visibility: hidden;
  height: 0 !important;
}

.cta_txt_file label {
  display: inline-block;
}

.cta_txt_file {
  padding: 0 10px 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}

.txt_file_chosen {
  width: 100%;
  text-align: center;
  font-size: 12px !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 20px;
  text-align: left;
}

.btn_fill_label {
  width: 100%;
  max-width: 182px;
  content: "Select files";
  background-color: var(--color-btn) !important;
  color: var(--txt-btn-c2) !important;
  font-weight: 400;
  text-decoration: none;
  padding: 10px 24px !important;
  box-sizing: border-box;
  border-radius: 4px;
  display: flex !important;
  align-items: center;
  font-size: 14px !important;
  text-align: center;
  outline: 0;
  cursor: pointer !important;
  height: 35px;
  justify-content: center;
  margin: 0 !important;
}

/* INTERNA DE LOGISTICA */
.reverse_bg {
  background: url("../images/diseno/1-home/bg_sections-reverse.png") no-repeat center top;
  background-size: cover;
}

.ajustebg {
  background-position: center bottom;
}

.s_logistica {
  margin: 0 0 60px;
}

.c_slider_pri_logistica {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 30px;
  box-sizing: border-box;
  height: 100vh;
  max-height: 390px;
  align-items: center;
}

.desc_stiky {
  position: relative;
  z-index: 2;
  background: linear-gradient(0deg,
      rgba(255, 255, 255, 0.22),
      rgba(255, 255, 255, 0.25));
  background-blend-mode: multiply, normal;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: 25px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-height: 281px;
  height: 100%;
}

.desc_stiky .fas {
  font-size: 20px;
  margin-right: 10px;
  color: var(--txt-light);
}

.desc_stiky h2 {
  margin: 10px 0 0px;
  padding: 0 0 20px;
  text-transform: uppercase;
  color: var(--txt-light);
  position: relative;
}

/* .desc_stiky h2::before {
  content: "";
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100px;
  background-color: var(--bg-color-light);
  position: absolute;
  border-radius: 100px;
} */
.desc_stiky h5 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 300;
  color: var(--txt-light);
}

.desc_stiky .cont_fecha {
  color: var(--txt-light);
  padding: 8px 12px;
  box-sizing: border-box;
  background-color: var(--c2);
  border-radius: 4px;
  margin: 0 0 30px;
  font-weight: 700;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 18px;
}

.desc_stiky .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: var(--bg-color-light);
}

.desc_stiky .swiper-pagination-bullet-active {
  background-color: var(--color-btn);
}

.swiperPriLogistica {
  position: absolute;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
}

.swiperPriLogistica::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(58, 58, 58, 0.7490196078) 0%,
      rgba(217, 217, 217, 0) 62.86%);
  mix-blend-mode: multiply;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}

.swiperComoLlegar {
  padding: 0 0 20px;
}

.swiperComoLlegar .swiper-slide {
  flex-direction: column;
  gap: 20px;
  background-color: transparent;
}

.swiperComoLlegar .swiper-slide .pri_swipe_cont {
  padding: 30px;
  box-sizing: border-box;
  background-color: var(--bg-color-light);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  box-shadow: 0px 0px 27px -21px rgba(0, 0, 0, 0.2509803922);
  transition: 300ms ease;
  background-color: #fff !important;
}

.swiperComoLlegar .swiper-slide .pri_swipe_cont picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: 40px;
  display: block;
  margin: 0 auto;
}

.swiperComoLlegar .swiper-slide .pri_swipe_cont:hover {
  box-shadow: 0px 18px 27px -21px rgba(0, 0, 0, 0.2509803922);
}

.swiperComoLlegar .txt_comoLlegar {
  line-height: 1.8;
  color: #828282;
  font-size: 15px;
  margin: 0 0 20px;
}

.cont_cta_logistica {
  position: relative;
  width: 100%;
}

.cont_cta_logistica::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #e9e9e9;
  left: 0;
  right: 0;
  top: 50%;
  margin: 0 auto;
  z-index: 1;
}

.cont_cta_logistica a {
  position: relative;
  text-decoration: none;
  color: #858585;
  background-color: #ececec;
  padding: 6px 16px;
  border-radius: 100px;
  box-sizing: border-box;
  z-index: 2;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  transition: 300ms ease;
  cursor: pointer;
}

.cont_cta_logistica a:hover {
  background-color: #d0d0d0;
}

.cont_cta_logistica a span {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 300ms ease-out;
}

.cont_cta_logistica a.active {
  background-color: var(--color-btn);
  color: var(--txt-light);
}

.cont_cta_logistica a.active span {
  transform: rotate(180deg);
}

.datos_contacto_l_card {
  padding: 10px;
  box-sizing: border-box;
  background-color: var(--bg-color-light);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 8px;
}

.datos_contacto_l_card picture {
  width: 70px;
  display: inline-block;
  height: 70px;
  border-radius: 100px;
  background-color: red;
  overflow: hidden;
  min-width: 70px;
}

.datos_contacto_l_card picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.datos_contacto_l_card .dcl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 70%;
}

.datos_contacto_l_card h4 {
  margin: 0;
  text-align: left;
}

.datos_contacto_l_card a {
  text-align: left;
  color: var(--txt-dark);
  text-decoration: none;
  font-size: 15px;
  word-wrap: break-word;
  width: 100%;
}

.datos_contacto_l_card a:hover {
  text-decoration: underline;
}

.datos_contacto_l_card.active {
  display: flex !important;
}

.s_como_llegar_logistica {
  padding: 0 0 40px;
}

.c_donde_llegar_logistica {
  padding: 0 20px;
  box-sizing: border-box;
  position: relative;
}

.c_donde_llegar_logistica .swiper-button-next,
.c_donde_llegar_logistica .swiper-button-prev {
  top: 240px;
}

.c_donde_llegar_logistica .swiper-button-prev,
.c_donde_llegar_logistica .swiper-rtl .swiper-button-next {
  left: 0;
}

.c_donde_llegar_logistica .swiper-button-next,
.c_donde_llegar_logistica .swiper-rtl .swiper-button-prev {
  right: 0px;
}

.swiperDondeLlegar .swiper-slide {
  flex-direction: column;
  gap: 20px;
  background-color: transparent;
}

.swiperDondeLlegar .swiper-slide .pri_swipe_cont {
  background-color: #fff;
  border-radius: 8px;
  padding: 0 0 20px;
}

.swiperDondeLlegar picture {
  max-height: 178px;
  position: relative;
  display: flex;
}

.swiperDondeLlegar picture img {
  max-height: 178px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.swiperDondeLlegar picture .nombre_hotel {
  position: absolute;
  bottom: -16px;
  background-color: var(--color-btn);
  padding: 8px;
  box-sizing: border-box;
  border-radius: 4px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--txt-light);
  font-size: 13px;
  z-index: 1;
  top: initial;
}

.descripcion_h {
  padding: 20px 20px 0;
  box-sizing: border-box;
}

.cont_web a {
  display: flex;
  gap: 10px;
  justify-content: center;
  color: var(--txt-dark);
  text-decoration: none;
  margin: 16px 0;
}

.cont_web a:hover {
  text-decoration: underline;
}

.cont_web a img {
  max-width: 20px;
  display: inline-block;
}

.distancia_h {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 10px;
  color: var(--c1);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 20px 10px;
}

.distancia_h span {
  color: var(--c1);
  font-size: 20px;
}

.solo_precios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.c_precios2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: flex-start;
  background: var(--c2);
  border-radius: 14px;
  padding: 10px;
  box-sizing: border-box;
  position: relative;
  margin: 0 0 20px;
}

.c_precios2::before {
  content: "";
  position: absolute;
  height: 30%;
  top: 10px;
  width: 1px;
  background-color: #3c6423;
  left: 0;
  right: 0;
  margin: auto;
}

.c_precios2 .precio_h {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  gap: 0px;
  font-weight: 700;
  font-size: 20px;
  color: var(--txt-light);
}

.c_precios2 .precio_h span {
  font-weight: 400;
  font-size: 15px;
}

.tit_x_noche {
  font-size: 15px;
  color: var(--txt-light);
}

.s_que_hacer_logistica {
  padding: 60px 0 100px;
}

.c_que_hacer_logistica,
.c_como_llegar_logistica {
  padding: 0 30px;
  box-sizing: border-box;
  position: relative;
}

.swiperQueHacer .swiper-slide,
.sliderVT .swiper-slide {
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-height: 380px;
  border-radius: 18px;
  overflow: hidden;
  transition: 300ms ease;
}

.sliderVT .swiper-slide {
  min-height: 460px;
}

.c_sliders_workshop {
  position: relative;
}

.swiperQueHacer .swiper-slide picture,
.sliderVT .swiper-slide picture {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.swiperQueHacer .swiper-slide picture img,
.sliderVT .swiper-slide picture img {
  transition: 300ms ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.swiperQueHacer .swiper-slide .tit_quehacer,
.swiperQueHacer .swiper-slide .cta_quehacer,
.sliderVT .swiper-slide .tit_quehacer,
.sliderVT .swiper-slide .cta_quehacer {
  position: relative;
  z-index: 2;
}

.swiperQueHacer .swiper-slide .tit_quehacer,
.sliderVT .swiper-slide .tit_quehacer {
  color: var(--txt-light);
  text-transform: uppercase;
  width: 100%;
  text-align: left;
  font-size: 32px;
  padding: 10px 20px 0;
  box-sizing: border-box;
  margin: 0;
  text-shadow: 0px 2px 1px rgba(0, 0, 0, 0.46);
  line-height: 1;
  pointer-events: none;
}

.swiperQueHacer .swiper-slide .tit_quehacer span,
.sliderVT .swiper-slide .tit_quehacer span {
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
}

.swiperQueHacer .swiper-slide summary,
.sliderVT .swiper-slide summary {
  position: relative;
  z-index: 3;
  padding: 0 20px;
  box-sizing: border-box;
  font-size: 15px;
  color: var(--txt-light);
  opacity: 0;
  font-weight: 300;
  transition: 300ms ease;
  pointer-events: none;
}

.swiperQueHacer .swiper-slide .cta_quehacer,
.sliderVT .swiper-slide .cta_quehacer {
  color: #fff;
  width: 100%;
  position: relative;
  padding: 0 0 10px;
  font-size: 16px;
  margin: 0 0 -50px;
  transition: 300ms ease;
}

.swiperQueHacer .swiper-slide .cta_quehacer a,
.sliderVT .swiper-slide .cta_quehacer a {
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  color: #fff;
}

.swiperQueHacer .swiper-slide .cta_quehacer a:hover,
.sliderVT .swiper-slide .cta_quehacer a:hover {
  text-decoration: underline;
}

.swiperQueHacer .swiper-slide .cta_quehacer::before,
.sliderVT .swiper-slide .cta_quehacer::before {
  content: "";
  position: absolute;
  left: calc(50% - 200px);
  margin: 0 auto;
  top: -20px;
  width: 400px;
  height: 180px;
  border-radius: 100%;
  background-color: var(--color-btn);
  z-index: -1;
}

.swiperQueHacer .swiper-slide::before,
.sliderVT .swiper-slide::before {
  content: "";
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.4588235294) 38.16%),
    linear-gradient(0deg,
      rgba(188, 188, 188, 0.9294117647),
      rgba(68, 68, 68, 0.5294117647));
  opacity: 0.2;
  width: 100%;
  height: 100%;
  position: absolute;
  mix-blend-mode: multiply;
  z-index: 2;
  transition: 300ms ease;
  pointer-events: none;
}

.swiperQueHacer .swiper-slide:hover picture img,
.sliderVT .swiper-slide:hover picture img {
  width: 108%;
  height: 108%;
}

.swiperQueHacer .swiper-slide:hover .cta_quehacer,
.sliderVT .swiper-slide:hover .cta_quehacer {
  margin: 0;
}

.swiperQueHacer .swiper-slide:hover summary,
.sliderVT .swiper-slide:hover {
  opacity: 1;
}

.swiperQueHacer .swiper-slide:hover::before,
.sliderVT .swiper-slide:hover::before {
  opacity: 1;
}

.s_donde_llegar_logistica,
.s_que_hacer_logistica {
  background-color: #f5f5f5;
}

/* ESTILOS INTERNA EXPOSITORES */
.c_cont1_expo {
  padding: 40px 0;
}

.txt_desc_section {
  max-width: 850px;
  margin: 0 auto;
}

.c_paginador {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 60px 0;
}

.c_paginador a {
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  text-decoration: none;
}

.c_paginador .pagearrow {
  color: #fff;
  background-color: var(--c4);
}

.c_paginador .page {
  color: #555555;
  background-color: #d9d9d9;
  font-size: 18px;
  transition: 300ms ease;
}

.c_paginador .page:hover {
  background-color: #cdcdcd;
}

.c_paginador .page.active {
  background-color: var(--color-btn);
  color: var(--txt-light);
}

.c_cards_marcas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-items: center;
  justify-content: center;
  gap: 20px;
}

.c_cards_marcas .card_marca {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 20px 10px;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.c_cards_marcas .card_marca h5,
.c_cards_marcas .card_marca h4 {
  margin: 0;
  color: var(--c2);
}

.c_cards_marcas .card_marca h5 {
  font-weight: 400;
}

.c_cards_marcas .card_marca h4 {
  font-size: 20px;
  margin: 0 0 20px;
  min-height: 50px;
}

.c_cards_marcas .card_marca picture {
  width: 100%;
  background: #f4f4f4;
  border: 1px solid #ededed;
  border-radius: 8px;
  max-height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.c_cards_marcas .card_marca picture img {
  mix-blend-mode: multiply;
  max-height: 120px;
  width: 90%;
  height: 90%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  margin: auto;
}

.c_cards_marcas .card_marca .datos_marca {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin: 20px 0;
  font-size: 14px;
  min-height: 157px;
  text-align: left;

  overflow-y:auto;
  max-height: 250px;
  flex-grow: 1;
}
.c_cards_marcas .card_marca .datos_marca::-webkit-scrollbar {
  width: 6px;
}
.c_cards_marcas .card_marca .datos_marca::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background: #0e7b41;
}

.c_cards_marcas .card_marca .datos_marca a {
  text-decoration: none;
  color: #282828;
  width: 100%;
  word-break: break-all;
}

.c_cards_marcas .card_marca .datos_marca a:hover {
  text-decoration: underline;
}

.c_cards_marcas .card_marca .social_marca {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-top: 1px solid #d4d4d4;
  padding: 10px 0 0;
}

.c_cards_marcas .card_marca .social_marca a {
  width: 30px;
  display: inline-block;
  height: 30px;
  font-size: 20px;
  border-radius: 100px;
  color: #bebebe;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 300ms ease;
}

.c_cards_marcas .card_marca .social_marca a:hover {
  color: var(--c3);
}

.s_filtro {
  padding: 40px 0 0;
  display: none;
}

.s_cont1_expo,
.s_banner_inscripcion,
.s_filtro,
.s_cards_marcas,
.s_paginador {
  background-color: #f2f2f2;
}

.c_filtro {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 0 0 30px;
  flex-wrap: wrap;
}

.cont_filtro input,
.cont_filtro select {
  width: 100%;
  min-width: 240px;
  max-width: 300px;
  border-radius: 6px;
  outline: 0;
  border: 1px solid #d4d4d4;
  padding: 8px;
  box-sizing: border-box;
  font-size: 14px;
  color: #767676;
  background: transparent;
  height: 37px;
}

.cont_filtro input::-moz-placeholder,
.cont_filtro select::-moz-placeholder {
  font-size: 14px;
  opacity: 0.5;
}

.cont_filtro input:-ms-input-placeholder,
.cont_filtro select:-ms-input-placeholder {
  font-size: 14px;
  opacity: 0.5;
}

.cont_filtro input::placeholder,
.cont_filtro select::placeholder {
  font-size: 14px;
  opacity: 0.5;
}

.btn_fill.search {
  border-radius: 6px;
}

.int_agenda {
  background: #f2f2f2;
  padding-top: 70px;
}

.int_agenda .cont_gen_agenda {
  padding: 0 0 40px;
}

.int_agenda .col_gen_modulos {
  overflow-y: initial;
  max-height: initial;
}

/* ESTILOS DE INSCRIPOCIONES SEGUNDA PARTE */
.cont_bg_sections {
  padding: 80px 0;
  box-sizing: border-box;
  background-color: #f0f0f0;
}

.s_sliders_workshops {
  padding: 0 0 60px;
  box-sizing: border-box;
}

.s_sliders_workshops .c_sliders_workshop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.s_sliders_workshops .container_sliders_insc {
  max-width: 300px;
  margin: 0 auto;
  position: relative;
}

.svt1 .swiper-button-next,
.svt1.swiper-rtl .swiper-button-prev {
  right: -20px;
}

.svt1 .swiper-button-prev,
.svt1 .swiper-rtl .swiper-button-next {
  left: -20px;
}

.svt2 .swiper-button-next,
.svt2.swiper-rtl .swiper-button-prev {
  right: -20px;
}

.svt2 .swiper-button-prev,
.svt2 .swiper-rtl .swiper-button-next {
  left: -20px;
}

.svt2 .swiper-button-next,
.svt2 .swiper-button-prev,
.svt1 .swiper-button-next,
.svt1 .swiper-button-prev {
  top: 60%;
}

.img_quehacer a {
  width: 100%;
  height: 100%;
  margin: auto;
}

.s_bene2 {
  padding: 80px 0;
  box-sizing: border-box;
}

.c_bene2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.c_bene2 picture {
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
  max-height: 305px;
}

.c_bene2 picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin: auto;
  display: block;
}

.c_bene2 .col_bene2 .btn_fill {
  background-color: #e6e6e6;
  color: #5f5f5f;
}

.c_bene2 .col_bene2 .btn_fill.active {
  color: #ffffff;
  background-color: var(--c3);
}

.nav_bene2 {
  display: flex;
  align-items: center;
  gap: 30px;
}

.cont_desc_bene2 {
  padding: 30px 0;
}

.cont_desc_bene2 ul {
  margin: 0;
}

.cont_desc_bene2 ul li {
  list-style: none;
  margin: 0 0 20px;
  position: relative;
}

.cont_desc_bene2 ul li::before {
  content: "";
  background: url(../images/diseno/arrow.svg) no-repeat center;
  background-size: contain;
  left: -20px;
  top: 2px;
  border-radius: 100px;
  position: absolute;
  width: 12px;
  height: 12px;
}

.container_sliders_insc h3 {
  font-size: 32px;
}

.submenu {
  font-size: 11px;
  position: absolute;
  left: calc(50% - 45px);
  top: 25px;
  background-color: #fff;
  border-radius: 4px;
  max-width: 300px;
  margin: 0 auto;
  display: none;
  padding: 10px 2px;
  box-sizing: border-box;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.134);
  z-index: 1;
}

.navbar_desk .submenu a {
  color: #002913 !important;
  width: 100%;
  margin: 0 auto;
}

.navbar_desk ul>li:hover .submenu {
  display: block;
}

/* BANNER OCULTOP POR ESTILOS */
.s_beneficios_int+.s_banner_inscripcion {
  display: none;
}

.menu_int_agenda_mobile {
  display: none;
}

.ccbmm {
  display: flex;
  justify-content: flex-end;
}

.pb-0 {
  padding-bottom: 0;
}

.pt-0 {
  padding-top: 0;
}

.location {
  background: white;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transform: translateX(-20px);
  padding: 8px 8px 8px 12px;
  border-left: 5px solid #ed4c1d;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
  border-radius: 0 6px 6px 0;
  text-decoration: none;
  margin: 0 0 13px;
  color: #464646;
  transition: 300ms ease;
}

.location:hover {
  opacity: 1;
}

.location span.fas {
  color: #ed4c1d;
}

/* INTERNA EVENTOS */
.cc_slider {
  position: relative;
}

.c_event_sliders {
  padding: 0 0 40px;
}

.c_event_sliders .tit_section h3 {
  text-align: left;
  justify-content: flex-start;
}

.c_event_sliders .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: -20px;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: -20px;
}

.c_event_sliders .tit_section h3 {
  margin: 80px 0 30px;
}

.cont_gen_patrocinadores .swiper-button-prev {
  left: 10px;
}

/* AJUSTE INTERNA AGENDA */
.s_agenda.int_agenda .tit_agenda_fecha {
  display: none;
}

.tit_agenda_fecha.mobl small {
  font-size: 1em;
  width: 100%;
  text-align: right;
}

.i_arrow span {
  margin: 0 0 0 8px;
}

/* ESTILOS INTERNA CONFERENCISTAS */
.s_multitab_modulos {
  margin: 40px 0;
}

.c_sesiones_speakers {
  margin: 0 0 40px;
}

.container_desc_multitab {
  padding: 30px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.c_multitab_modulos {
  background-color: var(--c2);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1050px;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  max-height: 230px;
}

.c_multitab_modulos picture {
  display: inline-block;
  position: relative;
  max-width: 400px;
}

.c_multitab_modulos picture::before,
.c_multitab_modulos picture::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4px;
  height: 100%;
  background-color: var(--c4);
}

.c_multitab_modulos picture::after {
  height: 40%;
  background-color: var(--c5);
  bottom: 0;
}

.c_multitab_modulos picture img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.tabs_modulos_conf {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border-radius: 20px;
  gap: 10px;
}

.tabs_modulos_conf a {
  cursor: pointer;
}

.tabs_modulos_conf a.active {
  color: var(--color-btn);
  font-weight: 600;
}

.desc_modulo_conf {
  color: var(--txt-light);
}

.desc_modulo_conf h3 {
  margin: 0 0 10px;
}

.desc_modulo_conf div {
  font-weight: 300;
}

.heading_sesion {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
}

.heading_sesion::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #eaeaea;
  margin: 0 auto;
  position: absolute;
}

.heading_sesion h4 {
  margin: 0;
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding: 0 20px 0 0;
  box-sizing: border-box;
}

.heading_sesion .arrows {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 35px;
  z-index: 1;
  background-color: #fff;
  padding: 0 0 0 20px;
  box-sizing: border-box;
}

.heading_sesion .arrows div {
  position: initial;
  width: 35px;
  height: 35px;
  font-weight: 800;
  margin: 0;
}

.heading_sesion .arrows div:after {
  font-size: 16px;
}

.s_sesiones_speakers {
  position: relative;
}

.s_sesiones_speakers .swiper-slide {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #ffffff;
  box-shadow: 0px 4px 21px -8px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  overflow: hidden;
}

.s_sesiones_speakers picture {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 5;
}

.s_sesiones_speakers picture a {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  background-color: var(--color-btn);
  color: var(--txt-light);
  font-weight: 600;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  text-decoration: none;
  border-radius: 100px;
  padding: 8px 16px;
  box-sizing: border-box;
  margin: 0 auto;
}

.s_sesiones_speakers picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 200px;
}

.txt_tema_speaker,
.txt_profile_speaker {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 20px 10px;
  box-sizing: border-box;
  min-height: 140px;
}

.txt_tema_speaker h5,
.txt_profile_speaker h5 {
  font-size: 16px;
  color: #666666;
  margin: 0;
}

.txt_tema_speaker .txt_speaker,
.txt_profile_speaker .txt_speaker {
  font-size: 16px;
  color: #666666;
  font-weight: 400;
}

.txt_tema_speaker .btn_link,
.txt_profile_speaker .btn_link {
  text-align: right;
  width: 100%;
  font-size: 14px;
  color: var(--c3);
  cursor: pointer;
}

.txt_profile_speaker {
  display: none;
  font-size: 15px;
  color: #666666;
  background-color: var(--c2);
  z-index: 1;
}

.txt_profile_speaker div:first-child {
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 0 0 20px;
}

.ctas_profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ctas_profile a {
  text-decoration: none;
  color: #666;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
}

.ctas_profile .div2 a {
  color: var(--txt-light);
  font-weight: 500;
  text-decoration: underline;
  font-size: 14px;
}

.ctas_profile .div2 a:hover {
  color: var(--txt-btn-c1);
}

.swiper.swiperSesion1,
.swiper.swiperSesion2,
.swiper.swiperSesion3,
.swiper.swiperSesion4 {
  padding: 30px 0;
  box-sizing: border-box;
}

/* ESTILOS INTERNA BLOG */
main {
  position: relative;
}

main>.cont_miga {
  top: initial;
  margin: 10px 0 0;
}

.s_boletines_blog {
  padding: 100px 0 0;
}

.c_boletines_blog .heading_sesion {
  margin: 0 0 30px;
}

.c_boletines_blog .heading_sesion h4 {
  font-size: 2rem;
  color: #254412;
}

.swiperBoletinesBlog a {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  transition: 300ms ease-out;
}

.swiperBoletinesBlog a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 300ms ease-out;
}

.swiperBoletinesBlog a:hover img {
  transform: scale(1.1);
}

.swiperBoletinesBlog a:before {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, #4a4a4a 100%);
  mix-blend-mode: multiply;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.swiperBoletinesBlog a h6 {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
  font-size: 13px;
  padding: 10px;
  box-sizing: border-box;
  color: #fff;
  font-weight: 400;
}

.c_header_blog {
  background: linear-gradient(180deg, #254412 0%, #1e390d 100%),
    linear-gradient(0deg, #ffffff, #ffffff),
    url("https://web.fedepalma.org/conferenciainternacional/wp-content/uploads/2022/08/bg_blog.jpg") no-repeat center;
  background-size: cover;
  background-blend-mode: multiply, color, normal;
  border-radius: 39px;
  padding: 80px 100px;
  box-sizing: border-box;
  margin: 100px 0 0;
}

.c_header_blog h1 {
  margin: 0 0 30px;
  color: #fff;
}

.h_notas_pri {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  align-items: stretch;
  justify-items: center;
}

.h_nota_sec {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.h_nota1 {
  position: relative;
  text-decoration: none;
}

.h_nota1:hover img {
  transform: scale(1.1);
}

.h_nota1 picture {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  max-height: 626px;
}

.h_nota1 picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 300ms ease-out;
}

.desc_h_nota_pri {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 20px;
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid #dadada;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.desc_h_nota_pri h4 {
  margin: 0;
  color: #666;
  font-size: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.desc_h_nota_pri .dates_nota_pri {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.desc_h_nota_pri .dates_nota_pri .cat_nota {
  position: initial;
}

.item_nota_h_sec {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-decoration: none;
}

.item_nota_h_sec:hover img {
  transform: scale(1.1);
}

.item_nota_h_sec picture {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  width: 100%;
}

.item_nota_h_sec picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 300ms ease-out;
}

.item_nota_h_sec .desc_nota_sec {
  padding: 20px 0;
  box-sizing: border-box;
  color: var(--txt-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.item_nota_h_sec .desc_nota_sec h4 {
  margin: 0;
  color: #fafafa;
  font-size: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.cat_nota {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 1;
  background-color: var(--c4);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
}

.fecha_nota {
  font-size: 14px;
  color: #989898;
}

.s_notas_aleatorias {
  margin: 60px 0 0;
  padding: 60px 0;
  box-sizing: border-box;
  background-color: #fafafa;
}

.item_post {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
  text-decoration: none;
  color: var(--txt-dark);
  margin: 0 0 20px;
}

.item_post>picture {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-content: center;
  border-radius: 10px;
  position: relative;
}

.item_post>picture img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 300ms ease-out;
}

.item_post img {
  transition: 300ms ease-out;
}

.item_post:hover img {
  transform: scale(1.1);
}

.item_post:hover h3 {
  color: var(--c3);
}

.desc_item_post {
  background: #ffffff;
  box-shadow: 0px 7px 39px -3px rgba(0, 0, 0, 0.09);
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
}

.desc_item_post h3 {
  margin: 10px 0;
}

.desc_item_post .datos_post {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.desc_item_post .cat_nota {
  position: static;
}

.desc_item_post .author {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  font-size: 14px;
}

.desc_item_post .author picture {
  overflow: hidden;
  border-radius: 100px;
  width: 32px;
  height: 32px;
}

.desc_item_post .author picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c_notas_aleatorias {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.desc_nota_item {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  /* number of lines to show */
  line-clamp: 4;
  -webkit-box-orient: vertical;
  font-size: 14px;
}

.cont_paginador {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 40px 0;
  box-sizing: border-box;
}

.cont_paginador a {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #d9d9d9;
  text-decoration: none;
  color: #666666;
  border-radius: 100px;
}

.cont_paginador a.jp-current {
  background-color: var(--c5);
  color: var(--txt-light);
}

.cont_paginador a:first-child,
.cont_paginador a:last-child {
  background-color: var(--c4);
  color: var(--txt-light);
  width: 30px;
  height: 30px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cont_paginador a:first-child.jp-disabled,
.cont_paginador a:last-child.jp-disabled {
  opacity: 0.5;
}

.notas_recientes {
  background: #eaeaea;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.notas_recientes h4 {
  text-align: center;
  padding: 0 0 20px;
  border-bottom: 1px solid #b8b8b8;
  margin: 0 0 30px;
  font-size: 20px;
}

.notas_recientes .cont_notas_dest {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}

.aside_nota_dest {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
  align-items: flex-start;
  text-decoration: none;
}

.aside_nota_dest .txt_a_nota_dest {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
}

.aside_nota_dest picture {
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.aside_nota_dest picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 300ms ease-out;
}

.aside_nota_dest .title_post {
  font-size: 18px;
  font-weight: 600;
  color: var(--txt-dark);
}

.aside_nota_dest:hover img {
  transform: scale(1.1);
}

/* ESTILOS BLOG POST */
.s_post {
  padding: 120px 0 100px;
  box-sizing: border-box;
}

.s_post .center {
  max-width: 900px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: stretch;
  gap: 30px;
}

.post_interes {
  background: #fafafa;
  border: 1px solid #efefef;
  border-radius: 8px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  padding: 20px;
  box-sizing: border-box;
}

.post_interes h4 {
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.post_interes a {
  display: inline-block;
  width: 100%;
  text-align: left;
  text-decoration: none;
  color: #666666;
  font-size: 15px;
  transition: 300ms ease;
}

.post_interes a:hover {
  color: var(--c5);
  text-decoration: underline;
}

.post_interes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin: 0;
  padding: 0;
}

.c_post .catergoria_post {
  font-size: 14px;
  background-color: var(--c2);
  color: var(--txt-light);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 16px;
  border-radius: 4px;
}

.c_post .title_post {
  font-size: 33px;
  text-transform: uppercase;
  color: var(--c2);
  list-style: 1;
  margin: 10px 0;
}

.c_post .datos_post {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-content: center;
  margin: 30px 0 0;
}

.c_post .datos_post h5 {
  margin: 0;
  font-weight: 400;
  font-size: 13px;
  color: #303b27;
}

.c_post .c_author,
.c_post .c_date,
.c_post .share {
  display: flex;
  align-items: center;
  gap: 8px;
}

.c_post .c_author span,
.c_post .c_date span,
.c_post .share span {
  font-weight: 500;
  color: #303b27;
}

.c_post .share h5 {
  font-weight: 600;
  color: #303b27;
}

.c_post .share a {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c2);
  text-decoration: none;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}

.c_post .share a::before {
  content: "";
  position: absolute;
  width: 27px;
  height: 27px;
  left: 0;
  right: 0;
  bottom: -27px;
  border-radius: 100px;
  background-color: var(--c4);
  transition: 300ms ease-out;
  z-index: 1;
}

.c_post .share a:hover::before {
  bottom: 0;
}

.c_post .share a span {
  color: var(--txt-light);
  font-size: 13px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.c_post .share ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.txt_nota h2,
.txt_nota h3,
.txt_nota h4,
.txt_nota h5,
.txt_nota h6 {
  color: var(--c2);
}

.txt_nota h2 {
  font-size: 24px;
}

.txt_nota h3 {
  font-size: 20px;
}

.txt_nota h4 {
  font-size: 16px;
}

.txt_nota picture {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  max-height: 280px;
  margin: 20px 0;
}

.txt_nota picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.txt_nota p {
  line-height: 1.5;
  font-size: 16px;
  font-weight: 300;
}

.txt_nota ul {
  margin: 0;
}

.txt_nota ul li {
  margin: 0 0 10px;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 300;
}

.cta_post {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.cta_post a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 20px;
  border-radius: 100px;
  background-color: var(--c5);
  color: var(--txt-light);
  text-decoration: none;
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.1882352941);
  transition: 300ms ease-out;
}

.cta_post a:hover {
  box-shadow: 0px 14px 14px -10px rgba(0, 0, 0, 0.3098039216);
}

.s_ant_sig_post {
  background: #f0f0f0;
  position: relative;
}

.s_ant_sig_post::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 60%;
  width: 2px;
  background-color: rgba(199, 199, 199, 0.7176470588);
  margin: auto;
}

.c_ant_sig_post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.c_ant_sig_post a {
  padding: 60px 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  text-decoration: none;
  color: #888888;
}

.c_ant_sig_post a div:first-child {
  border-radius: 4px;
  text-transform: uppercase;
  padding: 4px 10px;
  box-sizing: border-box;
  font-size: 16px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  transition: 300ms ease;
}

.c_ant_sig_post a div:last-child {
  font-size: 16px;
}

.c_ant_sig_post a.rtl {
  text-align: right;
  align-items: flex-end;
}

.c_ant_sig_post a:hover div:first-child {
  background: var(--txt-btn-c1);
  color: var(--txt-light);
}

.div2 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

/* ESTILOS POSTERS */

.infoPoster {
  text-align: center;
  padding: 0 80px 0 80px;
  box-sizing: border-box;
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
}

.btnCategoriaPoster {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px 50px 0 50px;
  height: 100%;
  gap: 35px;
}

.btnCategoriaPoster button {
  background: none;
  background-image: url(../images/diseno/10-posters/btnCategoriaPoster.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  border: 0;
  cursor: pointer;
  height: 100%;
  box-sizing: border-box;
  border-radius: 8px;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 124.52%;
  color: #ffffff;
  padding: 15px 0 15px 0;
  min-height: 70px;
}

.btnCategoriaPoster button.active {
  background-image: url(../images/diseno/10-posters/btnCategoriaPosterActive.png);
}

.btn_catg {
  justify-self: center;
}

.saltoCategoriasPoster {
  border: 1px solid #dfdfdf;
  margin: 30px 0 30px 0;
}

.ctg_poster {
  display: none;
}

.ctg_poster.active {
  display: block;
  transition: all 0.3s;
}

.ctg_poster.active ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 45px;
  list-style-position: inside;
}

.ctg_poster.active ul li {
  padding: 10px 0 10px 0;
}

.ctg_poster.active ul li a {
  text-decoration: none;
  color: black;
}

.ctg_poster.active ul li a:hover {
  color: #ed4c1d;
  text-decoration: underline;
}

.cont_galeria_event .swiper-button-prev,
.cont_galeria_event .swiper-rtl .swiper-button-next {
  left: 10px;
}

.c_agenda nav ul li .auditorias_aside a h5 {
  margin: 0;
  font-size: 13px;
}

.row_btn_add_event {
  width: 100%;
}

.btn-add-event {
  border: none;
  background: var(--color-btn);
  color: #fff;
  font-size: 14px;
  padding: 6px 16px;
  border-radius: 30px;
  display: flex;
  column-gap: 12px;
  cursor: pointer;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}

.btn-add-event:hover {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
}

/*  */
/* ESTILOS MEMORIAS */
/*  */

.headerMemorias {
  height: 450px;
  position: relative;
}

.headerMemorias .pTabs {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
  padding: 0 0 115px 0;
}

.tabsHeaderMemorias {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}

.btnTabsHeader {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  color: #ffffff;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.38);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  text-decoration: none;
}

.btnTabsHeader i {
  visibility: hidden;
  font-size: 45px;
}

.btnTabsHeader p {
  text-decoration: underline;
  margin: 0;
}

.btnTabsHeader p span {
  font-weight: 700;
}

.btnTabsHeader.active i {
  visibility: visible;
}

.swiperFechasMemorias {
  height: 15%;
  border: 1px solid #f2f2f2;
  box-shadow: 0px 10px 18px -10px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  background: white;
  display: none;
  position: absolute;
  bottom: -40px;
  width: 70%;
  align-self: center;
}

.swiperFechasMemorias .swiper-wrapper .swiper-slide a {
  text-decoration: none;
  height: 100%;
  display: flex;
  align-items: center;
}

.swiperFechasMemorias.active {
  display: flex;
  align-items: center;
}

.swiperFechasMemorias .swiper-button-prev {
  left: 10px;
}

.swiperFechasMemorias .swiper-button-prev,
.swiperFechasMemorias .swiper-button-next {
  background: none;
  top: auto;
  margin: 0;
}

.swiperFechasMemorias .swiper-button-prev::after,
.swiperFechasMemorias .swiper-button-next::after {
  color: #ed4c1d;
}

.btnTabsFechasMemorias {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  color: #949494;
}

.btnTabsFechasMemorias.active {
  color: #ffffff;
  background: #7ca732;
  border-radius: 5px;
  padding: 15px;
  box-sizing: border-box;
}

.contFechas {
  padding: 80px 0 0 0;
  box-sizing: border-box;
}

.bgHojas {
  background: url(../images/diseno/11-memorias/bgHojas.png);
  background-size: cover;
  background-position: center bottom;
}

.boxMemorias {
  display: flex;
  flex-direction: row;
  gap: 45px;
}

.sec1BoxMemorias,
.sec2BoxMemorias {
  display: flex;
  flex-direction: column;
}

.sec1BoxMemorias {
  width: 60%;
  justify-content: center;
  align-items: flex-start;
}

.sec2BoxMemorias {
  width: 40%;
  background: #e5e5e5;
  border: 1px solid #ffffff;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
}

.sec1BoxMemorias a {
  color: #ed4c1d;
}

.sec1BoxMemorias span {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  color: #254412;
}

.btnsTomos {
  padding: 25px 0 0 0;
  display: flex;
  gap: 15px;
}

.btnTomo {
  background: #ed4c1d;
  border-radius: 57px;
  text-decoration: none;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
  padding: 10px 20px 10px 20px;
}

.btnTomo:hover,
.btnConferencistasMemorias button:hover {
  background: #fc7a3d;
}

.contFechasSubSec2 {
  margin: 60px 0 0 0;
  padding: 0 0 40px 0;
}

.cardGaleriaMemorias {
  position: relative;
  cursor: pointer;
}

.cardGaleriaVideos {
  position: relative;
  cursor: pointer;
}

.titleGaleriaMemorias {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  color: #254412;
  display: flex;
  justify-content: center;
  margin: 0 0 20px 0;
}

.galeriaMemorias {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.galeriaVideos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.txtGaleria {
  position: absolute;
  bottom: 0;
  background: #ed4c1d;
  border-radius: 17px 17px 0px 0px;
  padding: 10px;
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  color: #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.txtGaleria i {
  font-size: 20px;
}

.imgGaleria:hover .txtGaleria:hover {
  background: #fc7a3d;
}

.imgGaleria {
  height: 200px;
}

.imgGaleria img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}


.videoGaleria {
  height: 200px;
}

.videoGaleria iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.contFechasSubSec3 {
  background: url(../images/diseno/11-memorias/bgConferencistas.png);
  background-size: cover;
  background-position: center bottom;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.boxConferencistasMemorias {
  display: flex;
  justify-content: center;
}

.cnt_box_memorias {
  background: #ffffff;
  border-radius: 12px;
  width: 50%;
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.titleConferencistasMemorias {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  color: #254412;
}

.txtConferencistasMemorias {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}

.btnConferencistasMemorias {
  display: flex;
  justify-content: center;
}

.btnConferencistasMemorias a {
  display: block;
  text-decoration: none;
  border: 0;
  background: #ed4c1d;
  border-radius: 57px;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  color: #fafafa;
  padding: 10px 20px;
}

.contFechasSubSec4 {
  margin: 80px 0 80px 0;
}

.cnt_est_memorias {
  display: flex;
  flex-direction: row;
}

.estadisticas_memorias,
.paises_memorias {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 20px;
  align-items: center;
}

.titleEstadisticas {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  color: #254412;
}

.txtEstadisticas p {
  display: flex;
  flex-direction: column;
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  color: #000000;
  align-items: center;
}

.txtEstadisticas p span {
  font-weight: 700;
  font-size: 59px;
  color: #254412;
}

.txtPaises {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  color: #3e3e3e;
  width: 60%;
}

.galeria_memorias {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000;
  top: 0;
  left: 5000px;
  z-index: 50;
  transition: all 0.3s;
}

.galeria_memorias.active {
  left: 0;
  transition: all 0.3s;
}

.galeria_memorias i {
  position: absolute;
  z-index: 2;
  font-size: 34px;
  top: 60px;
  right: 75px;
  color: white;
  cursor: pointer;
}

.swiperGaleriaMemorias2 {
  height: 75%;
  width: 100%;
  margin: 55px 0 0 0;
  display: flex;
  align-items: center;
}

.swiperGaleriaMemorias2 .swiper-pagination {
  color: white;
  bottom: auto;
  top: 0;
  left: 40px;
  text-align: start;
}

.swiperGaleriaMemorias2 .swiper-button-next,
.swiperGaleriaMemorias2 .swiper-button-prev {
  top: auto;
  background-size: 35px !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.swiperGaleriaMemorias2 .swiper-button-next::after,
.swiperGaleriaMemorias2 .swiper-button-prev::after {
  content: none;
}

.swiperGaleriaMemorias2 .swiper-button-next {
  right: 5%;
  background: url(../images/diseno/11-memorias/right.png);
}

.swiperGaleriaMemorias2 .swiper-button-prev {
  left: 5%;
  background: url(../images/diseno/11-memorias/left.png);
}

.swiperGaleriaMemorias2 .swiper-wrapper .swiper-slide {
  background: #000;
  display: flex;
  flex-direction: column;
  height: 95%;
  gap: 20px;
}

.swiperGaleriaMemorias2 .swiper-wrapper .swiper-slide img {
  width: 70%;
}

.descripcionImgSwiperMemorias {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  color: #e3e3e3;
  text-align: center;
}

.swiperGaleriaMemorias {
  height: 15%;
  box-sizing: border-box;
  padding: 10px 0;
}

.swiperGaleriaMemorias .swiper-wrapper .swiper-slide img {
  border: 2px solid #ffffff;
  border-radius: 4px;
  cursor: pointer;
}

.swiperGaleriaMemorias .swiper-slide {
  opacity: 0.4;
}

.swiperGaleriaMemorias .swiper-slide-thumb-active {
  opacity: 1;
}

.header .lead {
  max-width: 620px;
}

/** Below CSS is completely optional **/

.gallery-item {
  width: 200px;
  padding: 5px;
}

.galeriaMuestrasMemorias {
  margin: 60px 0 0 0;
  padding: 0 0 40px 0;
}

.swiperCardsMemorias .swiper-button-prev {
  left: 10px;
}

.swiperGaleriaVideos .swiper-button-prev {
  left: 10px;
}

.row_imgs_redirect{
  width: 100%;
  display: flex;
  justify-content: center;
}
.cnt_img_redirect{
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  border-radius: 12px;  
}
.cnt_img_redirect:first-child{
  border-radius: 12px 0 0 12px;
}
.cnt_img_redirect:last-child{
  border-radius: 0 12px 12px 0;
}
.cnt_img_redirect img{
  display: block;
  max-width: 100%;
}
.row_btn_final{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 48px;
}

.img_red_1col{
    width: 100%;
    max-width: 800px;
    overflow: hidden;
    background: #f4f4f4;
    border-radius: 12px;
    text-align: center;
}
.img_red_1col img{
  max-width: 100%;
}


/* ************ */
/* RESPONSIVE */
/* ************ */
@media screen and (max-width: 1650px) {
  .sliderHero .swiper-slide {
    grid-template-columns: 1.5fr 1fr;
  }
}

@media screen and (max-width: 1200px) {
  header .header .navbar_desk ul {
    gap: 0px;
  }
  header .header .c_logo_header{
    width: 180px;
  }

  .sliderHero .swiper-slide {
    grid-template-columns: 3fr 1fr;
  }

  .sliderHero .swiper-slide .cont_desc_hero_txt h2 {
    font-size: 1.6rem;
  }

  .c_header_blog {
    padding: 40px;
  }
}

@media screen and (max-width: 1050px) {
  .close_mobile {
    display: flex;
  }

  header .header .navbar_desk ul {
    position: fixed;
    top: 0;
    left: 0%;
    background-color: var(--bg-color-dark);
    height: 100%;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    transform: translateX(100%);
    transition: 300ms ease-out;
    padding: 20px;
    box-sizing: border-box;
    margin: 0;
  }

  header .header .navbar_desk ul.active_nav_m {
    transform: translateX(0%);
  }

  .cont_btn_menu_mobile {
    display: flex !important;
  }

  header .header .navbar_desk ul>li {
    position: relative;
    gap: 10px !important;
  }

  header .header .navbar_desk ul>li>a {
    color: #fafafa;
    font-size: 1.5em;
    max-width: initial;
  }

  header .header .navbar_desk ul .c_lenguajes {
    padding: 0 20px;
    border-right: 1px solid #e5e5e5;
  }

  header .header .navbar_desk ul li {
    gap: 20px;
    height: initial;
  }

  header .header .navbar_desk ul li a {
    height: initial;
  }

  .header .navbar_desk .submenu a {
    justify-content: center;
  }

  .cont_gen_footer {
    gap: 30px;
  }

  .c_footer {
    padding: 30px 0;
  }

  .s_header_int picture {
    width: 70%;
  }

  .div_cols_bene {
    gap: 30px;
  }

  .sliderHero .swiper-slide {
    padding: 0 70px;
  }

  .cont_gen_hero .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: 10px;
  }

  .cont_gen_hero .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: 10px;
  }

  .cont_gen_banner_visitas .txt_banner_1 {
    font-size: 32px;
  }

  .cont_visitas_banner span {
    font-size: 40px;
  }

  .cont_visitas_banner .cont_txt_visitas div {
    font-size: 20px;
  }

  .cont_cards_modulos .card_modulo {
    padding: 10px;
  }

  .cont_cards_modulos .card_modulo .card_datos .name_conferencia {
    font-size: 15px;
  }

  .c_agenda nav ul li.active_dia::after,
  .c_agenda nav ul li.active_dia::before {
    display: none;
  }

  .cont_cards_modulos .card_modulo .card_datos .name_speaker {
    font-size: 10px;
  }

  .divisor_info_modulo div {
    text-align: left;
  }

  .c_agenda nav ul li {
    border-radius: 8px !important;
  }

  .c_info_contact {
    grid-template-columns: 1fr 1fr;
  }

  .c_info_contact .card_info_contact {
    max-width: initial;
    width: 100%;
  }

  .s_header_int .center h1 {
    text-align: center;
  }

  .inicio_mbl {
    display: inline-flex;
  }

  /* JUSTES MOBILE MENU */
  .navbar_desk ul li {
    flex-direction: column;
  }

  .navbar_desk ul li .fa-chevron-down {
    display: none;
  }

  .header .navbar_desk .submenu {
    position: relative;
    background: transparent;
    left: initial;
    width: 100%;
    max-width: initial;
    box-shadow: none;
    display: block;
    padding: 0 20px;
  }

  .header .navbar_desk .submenu a {
    color: var(--txt-light) !important;
  }

  .menu_int_agenda_mobile {
    display: block;
  }

  .int_agenda .tit_mobile_auditorio {
    color: #002913;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 10px;
  }

  .s_agenda.int_agenda .tit_agenda_fecha {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
    margin: 0 0 10px;
    border-bottom: 1px solid #dadada;
    padding: 0 0 20px;
    box-sizing: border-box;
  }

  /* ESTILOS CONFERENCISTAS› */
  .c_multitab_modulos picture {
    max-width: 300px;
  }

  .aside_nota_dest .title_post {
    font-size: 15px;
  }

  .post_interes a {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .cont_miga {
    display: none;
  }

  .cont_gen_footer {
    grid-template-columns: 1fr;
  }

  .cont_logo {
    display: flex;
    justify-content: center;
  }

  .cont_logo a {
    max-width: 300px;
  }

  .cont_info_footer,
  .cont_redes_footer {
    text-align: center;
  }

  .c_items_redes_footer {
    justify-content: center;
  }

  header .header .c_logo_header {
    width: 120px;
  }

  .s_header_int picture {
    width: 100%;
  }

  .s_header_int::before {
    background: linear-gradient(90deg,
        rgba(244, 244, 244, 0.8392156863) 50%,
        rgba(255, 255, 255, 0.69) 81.77%);
  }

  .s_header_int .center {
    justify-content: center;
  }

  .cont_miga {
    left: 10%;
    top: 34px;
  }

  .s_header_int .center h1 {
    font-size: 32px;
  }

  .s_header_int {
    max-height: 100px;
  }

  .div_cols_bene {
    grid-template-columns: 1fr;
  }

  .div_cols_bene .d_col ul {
    padding-left: 20px;
  }

  .grand_container_line .container_b::before {
    background: linear-gradient(90deg,
        rgba(27, 51, 13, 0.9411764706) 28.6%,
        rgba(34, 63, 17, 0.78) 73.73%);
  }

  .grand_container_line .container_b {
    grid-template-columns: 1fr;
  }

  .grand_container_line .container_b .txts_b {
    text-align: center;
  }

  .tit_section h3 {
    font-size: 28px;
  }

  .tit_section h3 img {
    width: 11%;
  }

  .s_beneficios_int {
    padding: 20px 0 60px;
  }

  .sliderHero .swiper-slide {
    grid-template-columns: 1fr;
  }

  .sliderHero .swiper-slide .cont_desc_hero_txt h2 {
    text-align: center;
  }

  .sliderHero .swiper-slide .cont_desc_hero_txt .desc_txt {
    text-align: center;
    font-size: 16px;
  }

  .sliderHero .swiper-slide .img_bg_slider_hero::before {
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.9607843137) 0%,
        rgba(255, 255, 255, 0.83) 100%),
      linear-gradient(90deg,
        rgba(255, 255, 255, 0) 50%,
        rgba(255, 255, 255, 0) 80.31%);
  }

  .sliderHero .swiper-slide .cont_desc_hero_txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .cont_gen_ini_evento {
    grid-template-columns: 1fr;
  }

  .cont_ctas {
    flex-wrap: wrap;
  }

  .col_pic_event picture {
    max-width: initial;
  }

  .cont_gen_banner_visitas {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cont_visitas_banner {
    justify-content: center;
  }

  .btn_filter_agenda {
    display: none;
  }

  .btn_filter_agenda {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    box-sizing: border-box;
    grid-column: 1/4;
    justify-content: flex-end;
  }

  .cont_gen_agenda .tit_section {
    gap: 20px;
    row-gap: 9px;
  }

  .cont_gen_agenda .tit_section .tit_agenda_fecha {
    font-size: 14px;
  }

  .cont_gen_agenda .tit_section {
    display: grid;
    grid-template-columns: 1fr 2fr 110px;
  }

  .cont_gen_agenda {
    padding: 10px 0;
  }

  .c_agenda aside {
    position: absolute;
    top: 147px;
    right: 0;
    width: 100%;
    transform: translateX(100%);
    z-index: 10;
    background: var(--c3);
    height: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    overflow-y: scroll;
  }

  .c_agenda {
    grid-template-columns: 1fr;
    min-height: 410px;
  }

  .col_agenda_info {
    border-radius: 8px;
  }

  .col_agenda_info .title_modulo {
    font-size: 22px;
  }

  .divisor_info_modulo::before {
    display: none;
  }

  .divisor_info_modulo::after {
    display: none;
  }

  .divisor_info_modulo div {
    width: 100%;
    justify-content: flex-start;
  }

  .divisor_info_modulo div {
    font-size: 14px;
  }

  .item_contador {
    padding: 0 10px;
  }

  .item_contador span {
    font-size: 30px;
  }

  .item_contador .label_contador {
    font-size: 16px;
  }

  .s_contador {
    margin-top: 0;
  }

  .subtitle {
    font-size: 12px;
  }

  .s_incitacion_evento {
    padding: 20px 0 30px;
  }

  .s_galeria_e {
    padding: 20px 0;
  }

  .cont_galeria_event {
    margin-top: 30px;
  }

  .s_agenda {
    padding-bottom: 20px;
  }

  .c_agenda nav ul li {
    width: 100%;
  }

  .cont_cards_modulos {
    padding: 0;
  }

  .cont_cards_modulos .card_modulo {
    width: 100%;
    display: flex;
    flex-flow: column;
    padding: 24px;
  }

  .cont_cards_modulos .card_modulo .card_horario {
    font-size: 13px;
    margin-right: 0px;
    padding-right: 0px;
    width: 100%;
    border: none;
    box-sizing: border-box;
    padding-bottom: 8px;
  }

  .cont_cards_modulos .card_modulo.intermedio .card_horario {
    border: none;
    margin-right: 0px;
    padding-right: 0px;
    padding-bottom: 8px;
  }

  .c_cards_beneficios {
    grid-template-columns: 1fr;
  }

  .c_cards_beneficios .card_beneficio {
    max-width: initial;
  }

  .c_reserva_stand {
    grid-template-columns: 1fr;
  }

  .c_reserva_stand h2 {
    font-size: 32px;
  }

  .cont_gen_agenda .tit_section .tit_agenda_fecha {
    display: none;
  }

  .cont_gen_agenda .tit_section .tit_agenda_fecha.mobl {
    display: inline-flex;
    grid-column: 1 / 4;
    width: 100%;
    gap: 20px;
    letter-spacing: 0;
  }

  .tit_mobile_auditorio {
    display: inline-flex;
    width: 100%;
    align-items: center;
    gap: 20px;
    line-height: 1;
  }

  .cont_gen_agenda .tit_section h3 {
    margin: 0;
  }

  .datos_contacto_l_card {
    max-width: 380px;
  }

  .c_bene2 {
    flex-direction: column;
  }

  .s_sliders_workshops .c_sliders_workshop {
    grid-template-columns: 1fr;
  }

  .cont_bg_sections {
    padding: 0;
  }

  /* ESTILOS CONFERENCISTAS› */
  .c_multitab_modulos {
    flex-direction: column;
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }

  .c_multitab_modulos picture {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    max-height: 200px;
    overflow: hidden;
  }

  .c_multitab_modulos picture img {
    -o-object-position: center;
    object-position: center;
  }

  .c_multitab_modulos picture::before,
  .c_multitab_modulos picture::after {
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
    right: 0;
    bottom: initial;
  }

  .c_multitab_modulos picture::after {
    width: 30%;
  }

  .container_desc_multitab {
    padding: 20px;
    gap: 20px;
  }

  .tabs_modulos_conf {
    padding: 10px;
  }

  .tabs_modulos_conf a {
    font-size: 14px;
  }

  .desc_modulo_conf div {
    font-size: 14px;
  }

  .c_header_blog {
    padding: 20px;
  }

  .desc_h_nota_pri {
    padding: 10px;
  }

  .desc_h_nota_pri h4 {
    font-size: 16px;
  }

  .item_nota_h_sec .desc_nota_sec h4 {
    font-size: 16px;
  }

  .c_notas_aleatorias {
    grid-template-columns: 1fr;
  }

  .s_post .center {
    grid-template-columns: 1fr;
  }

  .post_interes ul {
    justify-content: center;
  }

  .post_interes ul li {
    width: 100%;
  }

  .post_interes ul a {
    text-align: center;
    width: 100%;
  }

  .post_interes ul .post_interes {
    position: static;
  }

  .post_interes ul .c_post .title_post {
    font-size: 24px;
  }

  .c_ant_sig_post a div:last-child {
    font-size: 14px;
  }

  /* ESTILOS POSTERS */

  .infoPoster {
    padding: 0;
  }

  .ctg_poster.active ul {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 45px;
  }

  .btnCategoriaPoster {
    grid-gap: 30px;
    padding: 30px 0 0 0;
  }

  .btnCategoriaPoster button {
    grid-column: 2 / 4;
    width: 100%;
  }

  .s_agenda.int_agenda .c_agenda aside {
    top: 140px;
  }

  .c_agenda nav ul li .auditorias_aside a {
    max-width: initial;
  }

  .c_agenda nav ul li .auditorias_aside a h5 {
    margin: 0;
    font-size: 13px;
  }

  /*  */
  /* ESTILOS MEMORIAS */
  /*  */

  .boxMemorias,
  .cnt_est_memorias {
    flex-direction: column;
  }

  .sec1BoxMemorias,
  .sec2BoxMemorias {
    width: 100%;
  }

  .cnt_est_memorias {
    gap: 35px;
  }

  .estadisticas_memorias,
  .paises_memorias,
  .txtPaises,
  .cnt_box_memorias {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  header .header .navbar_desk ul li a {
    font-size: 1.2em;
  }

  .tit_section h3 {
    font-size: 24px;
  }

  .sliderHero .swiper-slide {
    padding: 0px 30px;
  }

  .sliderHero .swiper-slide .cont_desc_hero_txt .desc_txt {
    font-size: 14px;
  }

  .swiper-button-next,
  .swiper-rtl .swiper-button-prev,
  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    width: 30px;
    height: 30px;
  }

  .c_info_contact {
    grid-template-columns: 1fr;
  }

  .cont_input_x2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .c_slider_mapa {
    padding: 0 25px;
  }

  .c_slider_mapa .mySwiper .swiper-wrapper {
    justify-content: center;
  }

  .s_mapa .center {
    padding: 0;
  }

  .c_txt_patrocinadores .cont_doble_btn {
    grid-template-columns: 1FR;
  }

  .c_slider_mapa .mySwiper .swiper-slide {
    border-radius: 8px;
  }

  .c_beneficios .tit_section h3 {
    margin-top: 0;
  }

  .cont_galeria_event {
    padding: 0 30px;
  }

  .cont_gen_agenda .tit_section h3 img {
    width: 24px;
  }

  .cont_gen_agenda .tit_section .tit_agenda_fecha {
    grid-column: 1/2 span;
  }

  .cont_gen_agenda .tit_section h3 {
    margin: 0;
  }

  .cont_gen_agenda .tit_section {
    gap: 12px;
  }

  .c_slider_pri_logistica {
    grid-template-columns: 1fr;
    max-height: 540px;
    padding: 14px;
  }

  .desc_stiky .cont_fecha {
    width: 100%;
  }

  .c_filtro {
    flex-direction: column;
  }

  .txt_desc_section {
    text-align: left;
  }

  .swiperPatrocinadores .swiper-slide picture img {
    width: 60%;
  }

  .cont_gen_patrocinadores .swiper-button-next,
  .cont_gen_patrocinadores .swiper-button-prev {
    bottom: 22%;
  }

  .h_nota_sec {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .desc_h_nota_pri {
    position: initial;
    margin: 4px 0 0;
  }

  .h_nota1 picture,
  .item_nota_h_sec picture {
    max-height: 220px;
  }

  .h_notas_pri {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .c_boletines_blog .heading_sesion h4 {
    font-size: 1.6rem;
  }

  .item_nota_h_sec .desc_nota_sec {
    padding: 10px 0 20px;
  }

  .c_header_blog {
    margin: 40px 0 0;
  }

  .desc_nota_item {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .desc_item_post h3 {
    font-size: 15px;
  }

  .item_post {
    grid-template-columns: 1fr;
    gap: 4px;
    margin: 0 0 30px;
  }

  .item_post>picture img {
    max-height: 180px;
  }

  .c_post .datos_post {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .c_post .datos_post h5 {
    font-size: 15px;
  }

  .c_post .datos_post {
    margin: 30px 0;
  }

  .s_post {
    padding: 60px 0;
  }

  .c_ant_sig_post a div:last-child {
    font-size: 12px;
  }

  /* ESTILOS POSTERS */

  .ctg_poster.active ul {
    grid-template-columns: repeat(1, 1fr);
    column-gap: 45px;
  }

  .btnCategoriaPoster {
    grid-template-columns: repeat(2, 1fr);
  }

  .btnCategoriaPoster button {
    grid-column: auto;
  }

  /*  */
  /* ESTILOS MEMORIAS */
  /*  */

  .cnt_box_memorias {
    padding: 40px 20px;
  }

  .btnTabsHeader {
    font-size: 17px;
    width: 25%;
  }

  .btnTabsHeader i {
    font-size: 35px;
  }

  .headerMemorias {
    height: 250px;
  }

  .pTabs {
    padding: 0 0 50px 0 !important;
  }

  .swiperFechasMemorias {
    height: 22%;
    bottom: -28px;
  }
}

/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */