/* --------------------------------- */
/*   RESET STYLES
/* --------------------------------- */
*, *:before, *:after {
	box-sizing: border-box;
	margin: 0; padding: 0; outline: none;
}
article, aside, details, figcaption, figure, hgroup,
section, main, header, footer, menu, nav {
	display: block;
}
table { border-collapse: collapse; border-spacing: 0; }
button { cursor: pointer; } img { width: 100%; }
li { list-style: none; } ul li { list-style: initial; }
html { font-size: 62.5%; }
:root {
	--color-primario: #07314D;
	--color-secundario: #54595F;
	--color-texto: #898989;
	--color-enfasis1: #F8971F;
	--color-negro: #000000;
	--color-blanco: #FFFFFF;
	--color-enfasis-hover: #F7B43A;
	--color-azulado: #07314D;
	--color-enfasis2: #29B6C8;
	--color-enfasis3: #DE8386;
	--color-fondo1: #FFFFFF;
	--color-fondo2: #6D787F;
	--color-fondo3: #084C79;

	--fs-texto-S: min(max(1.4rem, calc(1.4rem + ((1vw - 0.32rem) * 0.125))), 1.6rem);
	--fs-texto: min(max(1.4rem, calc(1.4rem + ((1vw - 0.32rem) * 0.375))), 1.95rem);
	--fs-texto-XXL: min(max(1.4rem, calc(1.4rem + ((1vw - 0.32rem) * 0.625))), 2.4rem);
	--fs-titulo-XXL: min(max(3.6rem, calc(3.6rem + ((1vw - 0.32rem) * 4))), 10rem);
	--fs-titulo-XL2: min(max(3.2rem, calc(3.2rem + ((1vw - 0.32rem) * 2.625))), 7.4rem);
	--fs-titulo-XL: min(max(3.0rem, calc(3.0rem + ((1vw - 0.32rem) * 1.125))), 5.6rem);
	--fs-titulo-L: min(max(2.6rem, calc(2.6rem + ((1vw - 0.32rem) * 0.875))), 4.4rem);
	--fs-titulo-M3: min(max(2.6rem, calc(2.6rem + ((1vw - 0.32rem) * 0.625))), 3.6rem);
	--fs-titulo-M: min(max(2.2rem, calc(2.2rem + ((1vw - 0.32rem) * 0.625))), 3.2rem);

	--fs-titulo-PL: min(max(2.85rem, calc(2.85rem + ((1vw - 0.32rem) * 3.0937))), 7.8rem);

	--pd-17: min(max(2rem, calc(2rem + ((1vw - 0.32rem) * 9.375))), 17rem);
	--pd-14: min(max(2rem, calc(2rem + ((1vw - 0.32rem) * 7.1875))), 13.5rem);
	--pd-10: min(max(2rem, calc(2rem + ((1vw - 0.32rem) * 5))), 10rem);
	--pd-4: min(max(2rem, calc(2rem + ((1vw - 0.32rem) * 1.25))), 4rem);
	--pd-3: min(max(2rem, calc(2rem + ((1vw - 0.32rem) * 0.625))), 3rem);
	--pd-2: min(max(1rem, calc(1rem + ((1vw - 0.32rem) * 0.625))), 2rem);
	--pd-1: min(max(0.01rem, calc(0.01rem + ((1vw - 0.32rem) * 0.6188))), 1rem);
	--pd-box-L: min(max(2rem, calc(2rem + ((1vw - 0.32rem) * 5))), 10rem) min(max(2rem, calc(2rem + ((1vw - 0.32rem) * 7.1875))), 13.5rem);
	--pd-box-XL: min(max(2rem, calc(2rem + ((1vw - 0.32rem) * 9.375))), 17rem) min(max(2rem, calc(2rem + ((1vw - 0.32rem) * 7.1875))), 13.5rem);
}
/*
1.4 -  2.0 // Textos
2.2 -  3.2 // Titulo M
2.6 -  4.4 // Titulo L
3.0 -  5.6 // Titulo XL
3.6 - 10.0 // Titulo XXL
 32 - 192  // Viewport
*/
body {
	background: var(--color-blanco);
	color: var(--color-texto);
	font-family: 'Poppins', sans-serif;
	font-size: 16px;;
	line-height: normal;
	margin: auto;
}
h1,h2,h3,h4,h5,h6 {
	font-family: "Poppins", serif;
	font-weight: normal;
	font-size: var(--fs-titulo-L);
	b { font-weight: bold; }

}
p { 
	color: var(--color-primario);
	font-weight: 400;
	line-height: 1.6;
	margin-bottom: 1em;
	b { font-weight: 600; }
}

p:first-child:last-child { margin-bottom: 0px; }
p:last-child, p:last-of-type { margin-bottom: 0px; }
p, a { font-size: var(--fs-texto);}
a { color: var(--color-mostaza); text-decoration: none; }
a:hover { color: #FE0; }
i { font-size: 16px}
/* --------------------------------- */
/*   GLOBAL
/* --------------------------------- */
.container {
	margin: auto;
	max-width: 1920px;
	width: 100%;
	position: relative;
}

.bg-claro a.btn {
	background: rgba(255, 255, 255, 0.25);
	border-radius: 30px;
	border: 1px solid var(--color-enfasis2);
	color: var(--color-enfasis2);
	font-weight: 300;
	display: inline-block;
	padding: 8px var(--pd-3);
}
.bg-claro a.btn:hover {
	background: var(--color-blanco);
	color: var(--color-enfasis2);
}

.bg-oscuro a.btn {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 30px;
	border: 1px solid var(--color-blanco);
	color: var(--color-negro);
	display: inline-block;
	font-weight: 500;
	text-align: center;
	padding: 8px 30px;
	max-width: 225px;
	width: 100%;
}
.bg-oscuro a.btn:hover {
	background: var(--color-blanco);
	color: var(--color-enfasis2);
}
/* --------------------------------- */
/*   HEADER
/* --------------------------------- */
.header-main {
  max-height: 140px;
  padding: 15px 20px 5px;
  position: absolute;
  width: 100%;
  z-index: 10;
}
.header-main .grid {
  grid-template-columns: 200px 1fr;
}

.header-logo h1 {
  line-height: 0;
}
.header-logo img {
  width: 100%;
  max-width: fit-content;
}

.header-menu {
  height: 100%;
}
.header-menu ul {
  border-radius: 50px;
  gap: var(--pd-4);
  padding: 12px 32px;
  justify-content: end;
}
.header-menu ul li {
  display: flex;
  align-items: center;
  list-style: none;
  line-height: 1.2;
}
.header-menu ul li a {
  display: block;
  font-size: var(--fs-texto-S);
  color: var(--color-blanco);
  padding: 5px 0;
  text-align: center;
  transition: ease all 0.35s;
}
.header-menu ul li a:hover {
  color: #F8971F;
  text-decoration: underline;
}
.header-menu #check {
  display: none;
}
.header-menu .open-menu, .header-menu .close-menu {
  color: var(--color-blanco);
  cursor: pointer;
  display: none;
}
.header-menu .open-menu i, .header-menu .close-menu i {
  font-size: 28px;
}

@media (width < 1024px) {
	.header-menu .open-menu {
		display: block;
		position: absolute;
		top: 0.5rem;
		right: 0.5rem;
	}
	.header-menu .close-menu {
		display: block;
		position: fixed;
		top: 2rem;
		right: 2.7rem;
	}
	.header-menu ul {
		align-items: baseline;
		background: rgba(0, 0, 0, 0.75);
		border-radius: 0;
		border: 0;
		bottom: 0;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		max-width: 300px;
		padding-top: 80px;
		position: fixed;
		right: 0;
		top: 0;
		transform: translateX(100%);
		width: 100%;
		z-index: 100;
	}
	.header-menu ul li a {
		line-height: 1.2;
		font-size: var(--fs-texto);
		text-transform: uppercase;
		margin-bottom: 12px;
		padding: 12px;
	}
	.header-menu #check:checked ~ ul {
		transform: translateX(0%);
	}
}

/* --------------------------------- */
/*   ESTILOS
/* --------------------------------- */
main section {
  overflow: hidden;
  position: relative;
}

main section:not(:has(.grid)) {
  padding: 60px 0;
}
main section:not(:has(.grid)) > .container > div:has(img) {
  line-height: 0;
}

main section:not(:has(> .g-2col)) {
  padding: var(--pd-box-L);
}

main section.full-h {
  padding: 60px 0;
}

main section .container {
  /*> div.flex-col h2,h3,h4,h5,h6 { max-width: 500px; }*/
}
main section .container .full-img {
  height: 100%;
  line-height: 0;
}
main section .container .full-img > img {
  height: 100%;
  object-fit: cover;
}
main section .container > div.flex-col:has(:not(.full-img)) {
  padding: var(--pd-box-L);
}
main section .container > div.flex-col {
  gap: 20px;
  height: 100%;
  padding: 20px;
}
main section .container > div.flex-col p {
  font-weight: 200;
  margin: 0;
  max-width: 570px;
}
main section .container > div.flex-col p b {
  font-weight: 500;
}
main section .container.flex-col {
  gap: 20px;
}
main section .container.grid:not(:has(.full-img)) {
  gap: 20px;
}

@media (max-width: 768px) {
  main > section:not(#portada) {
    padding: 60px 25px 60px !important;
  }
}
#portada {
  padding: 0;
  position: relative;
}
#portada .banner-txt {
  padding: var(--pd-10);
  gap: 60px;
  position: absolute;
  top: 0;
  bottom: 0;
  padding-bottom: 300px;
  background-image: url("../img-cira/portada.jpg");
  background-size: cover;
  height: 100vh;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  z-index: 1;
}
#portada .banner-txt:before {
  content: "";
  background-color: rgba(8, 76, 121, 0.35);
  inset: 0;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
#portada .banner-txt h2 {
  font-size: var(--fs-titulo-XXL);
  line-height: 0.85;
}
#portada .banner-txt p {
  font-size: min(max(1.4rem, 1.4rem + (1vw - 0.32rem) * 1.4375), 3.7rem);
  line-height: 1.2;
}
#portada .banner-txt > .grid {
  grid-template-columns: 110px 1fr 140px;
  grid-gap: 20px;
}
#portada .banner-txt > .grid .date {
  color: var(--color-enfasis1);
  font-size: 36px;
  font-weight: 700;
  text-align: right;
  line-height: 0.8em;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column;
}
#portada .banner-txt > .grid .date:before {
  content: "";
  background: #FFF;
  height: 4px;
  width: 20px;
  margin-right: auto;
  margin-left: 3px;
  margin-bottom: 10px;
  pointer-events: none;
  width: 18px;
}
#portada .banner-txt > .grid .date span {
  color: var(--color-blanco);
  margin-right: 2px;
  font-weight: 400;
  font-size: 18px;
}
#portada .banner-txt > .grid .image img {
  max-width: 570px;
  width: 100%;
}
#portada .banner-txt > .grid .title {
  color: var(--color-blanco);
  font-weight: 300;
  line-height: 1.2em;
  position: relative;
}
#portada .banner-txt > .grid .title:before {
  content: "";
  background: var(--color-enfasis1);
  height: 4px;
  position: absolute;
  pointer-events: none;
  top: -10px;
  width: 28px;
}
#portada .banner-txt .footer {
  background: rgba(104, 195, 216, 0.8);
  height: 250px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
#portada .banner-txt .footer .container .title {
  color: #07314D;
  font-size: 27px;
  text-align: right;
  line-height: 1.2em;
  position: relative;
  text-align: center;
  z-index: 1;
}
#portada .banner-txt .footer .container .title b {
  font-weight: 700;
}
#portada .banner-txt .footer .container .title:before {
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), transparent);
  border-radius: 50%;
  position: absolute;
  top: 5%;
  left: -20%;
  height: 144px;
  width: 144px;
  z-index: -1;
  transform: translate(25%, -25%);
}
#portada .banner-txt .footer .container .content {
  font-size: 27px;
  position: relative;
}
#portada .banner-txt .footer .container .content span {
  position: relative;
  z-index: 10;
}
#portada .banner-txt .footer .header {
  background: #F8971F;
  border-radius: 0 100px 0 0;
  color: #FFF;
  margin-top: 1px;
  padding: 25px 50px;
  position: absolute;
  transform: translateY(-100%);
  top: 0;
  line-height: 1.2em;
  font-size: 24px;
  font-weight: 300;
}
.container h3.title {
  background: var(--color-primario);
  border-radius: 50px;
  color: var(--color-blanco);
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  margin: 0 auto 80px;
  max-width: max-content;
  line-height: 1.2;
  padding: 20px 32px;
}
.container h3.title span {
  color: var(--color-enfasis1);
  font-weight: 400;
}
.container h3.title2 {
  background: var(--color-enfasis1);
  border-radius: 50px;
  color: var(--color-blanco);
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  margin: 0 auto 40px;
  max-width: max-content;
  line-height: 1.2;
  padding: 20px 32px;
}
.container h3.title2 span {
  color: var(--color-blanco);
  font-weight: 400;
}
@media (max-width: 768px) {
  .container h3.title, .container h3.title2 {
    font-size: 16px;
    padding: 12px 20px;
  }
}

#ponentes {
  padding: var(--pd-14);
  text-align: center;
}
#ponentes .container:not(:first-of-type) {
  margin-top: 100px;
}
#ponentes .g-4col {
  grid-gap: var(--pd-4);
  margin: auto;
  max-width: 1140px;
}
#ponentes .slick-box {
  min-height: min(max(30rem, 30rem + (1vw - 0.32rem) * 10.625), 47rem);
}
#ponentes .slick-box .card-slick .card div:first-child {
  border-radius: var(--pd-2);
  overflow: hidden;
  position: relative;
  line-height: 0;
  margin-bottom: 10px;
}
#ponentes .slick-box .card-slick:hover img {
  transform: scale(0.99);
  filter: grayscale(0);
}
#ponentes .slick-box img {
  transition: ease-in-out all 0.4s;
  width: 100%;
  max-height: 317px;
  object-fit: contain;
}
#ponentes .slick-box h4 {
  color: var(--color-enfasis2);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 2px;
}
#ponentes .slick-box p {
  color: var(--color-secundario);
  font-size: 12px;
  line-height: 1.4em;
}
@media (max-width: 1024px) {
  #ponentes .g-3col, #ponentes .g-4col {
    grid-gap: var(--pd-3);
  }
}
@media (max-width: 768px) {
  #ponentes .container:not(:first-of-type) {
    margin-top: 100px;
  }
  #ponentes .container {
    margin-top: 45px;
  }
  #ponentes h3.title {
    margin: 0 auto 40px;
  }
  #ponentes .g-3col, #ponentes .g-4col {
    grid-template-columns: 1fr !important;
  }
  #ponentes .slick-list {
    margin: auto;
    max-width: 280px;
  }
}
#ponentes .slick-section {
  gap: min(max(2rem, 2rem + (1vw - 0.32rem) * 1.25), 4rem);
}
#ponentes .slick-prev, #ponentes .slick-next {
  margin-top: auto;
  bottom: -40px;
  z-index: 10;
}
#ponentes .slick-prev:before, #ponentes .slick-next:before {
  font-size: 34px;
}
#ponentes .slick-prev {
  left: calc(47% - 20px);
}
#ponentes .slick-next {
  right: calc(47% - 12px);
}
.finalizado{
    margin-top:25px!important;
    padding:10px 30px 10px 30px!important;
    font-family:poppins;
    font-size:25px!important;
    color:#fff!important;
    font-weight:400!important;
    background:#B2B2B2!important;
    border-radius:10px!important;
    
}
.finalizado:before{
    background:unset!important;
}
#inscripciones {
  padding-top: 40px;
  padding-bottom: 140px;
}
#inscripciones .container {
  max-width: 1080px;
}
#inscripciones p {
  font-size: var(--fs-texto);
}
#inscripciones .grid {
  margin-top: 40px;
  gap: 15px;
}
#inscripciones .box {
 
  border-radius: 18px;
  box-shadow: 0 2px 6px 0px rgba(0, 0, 0, 0.25);
  text-align: center;
  overflow: hidden;
}
#inscripciones .box .header {
  background: #B2B2B2;
  color: #FFF;
  padding: 18px;
  min-height: 150px;
}
#inscripciones .box .header span {
  display: inline-block;
  background: #FFF;
  border-radius: 4px;
  color: #B2B2B2;
  font-weight: 600;
  padding: 5px 20px;
}
#inscripciones .box .header h4 {
  font-size: 27px;
  font-weight: 500;
  margin: 8px 0 4px;
}
#inscripciones .box .header p {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
}
#inscripciones .box01 {
  border: 3px solid #B2B2B2;
}
#inscripciones .box02 {
  border: 3px solid #F8971F;
}
#inscripciones .box02 .header {
  background: #FFF;
  border-bottom: 3px solid #F8971F;
  color: #000;
}
#inscripciones .box02 .header p {
  color: #000;
}
#inscripciones .box .body {
  padding: 40px 20px 25px;
}
#inscripciones .box .body span {
  color: #000;
  font-size: 70px;
  font-weight: 700;
  line-height: 1em;
  position: relative;
}
#inscripciones .box .body span:before {
  content: "";
  background: var(--color-enfasis1);
  height: 4px;
  position: absolute;
  pointer-events: none;
  top: 4px;
  left: 4px;
  width: 26px;
}
#inscripciones .box .body p {
  font-size: 14.5px;
  font-weight: 500;
  margin-bottom: 25px;
}
#inscripciones .box .body a {
  background: #F8971F;
  border-radius: 25px;
  color: #FFF;
  font-weight: 600;
  display: block;
  max-width: 350px;
  margin: 16px auto;
  padding: 8px;
}
#inscripciones .box .body a:hover {
  opacity: 0.85;
}
#inscripciones .box .body a:last-child {
  background: #B2B2B2;
  font-weight: 400;
}
#inscripciones .box .body a:last-child i {
  font-size: 22px;
  margin-right: 10px;
  top: 2px;
  position: relative;
}
#inscripciones .large-box {
  background: gray;
  color: #FFF;
  border-radius: 20px;
  margin-top: 40px;
  padding: 0 !important;
  overflow: hidden;
  text-align: center;
}
#inscripciones .large-box .banner-bg {
  height: 100%;
  line-height: 0;
}
#inscripciones .large-box .banner-bg img {
  object-fit: cover;
  height: 100%;
}
#inscripciones .large-box .banner-content {
  background-image: url("../img-cira/portada.jpg");
  background-size: cover;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 40px;
  position: relative;
  z-index: 1;
}
#inscripciones .large-box .banner-content:before {
  content: "";
  background-color: rgba(8, 76, 121, 0.75);
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}
#inscripciones .large-box h4 {
  font-size: 27px;
  font-weight: 600;
  line-height: 1.2;
}
#inscripciones .large-box p {
  margin: auto;
  max-width: 800px;
  color: #FFF;
  font-size: var(--fs-texto);
}
#inscripciones .large-box a {
  background: #F8971F;
  border-radius: 25px;
  color: #FFF;
  font-weight: 600;
  display: block;
  max-width: 230px;
  margin: 0 auto;
  padding: 8px;
  width: 100%;
}
#inscripciones .large-box a:hover {
  background: #FFF;
  color: #F8971F;
}
@media (max-width: 768px) {
  #inscripciones .box .header {
    margin: 0;
    min-height: 94px;
    padding: 8px 15px;
  }
  #inscripciones .box .header span {
    border-radius: 15px;
    padding: 2px 10px;
    font-size: 14px;
  }
  #inscripciones .box .header h4 {
    font-size: 20px;
    margin: 0;
  }
  #inscripciones .box .header p {
    font-size: 14px;
  }
  #inscripciones .box .body {
    padding: 30px 30px 20px;
  }
  #inscripciones .box .body span {
    font-size: 40px;
  }
  #inscripciones .box .body p {
    margin-bottom: 15px;
  }
  #inscripciones .box .body a {
    margin: 10px auto;
  }
  #inscripciones .large-box {
    margin-top: 25px;
  }
  #inscripciones .large-box .banner-content {
    padding: 40px 20px;
  }
}
#se-parte {
  background-image: url("../img-cira/portada.jpg");
  background-size: cover;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 80px 40px;
  position: relative;
  z-index: 1;
}
#se-parte:before {
  content: "";
  background-color: rgba(8, 76, 121, 0.75);
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}
#se-parte h3 {
  color: #FFF;
  font-size: 26px;
  font-weight: 600;
  text-align: center;
}
#se-parte span {
  display: block;
  color: #F8971F;
  font-size: 26px;
  text-align: center;
}
#se-parte .tab-buttons {
  margin: 60px auto 20px;
  max-width: 1080px;
  text-align: center;
  gap: var(--pd-3);
}
#se-parte .tab-buttons li {
  list-style: none;
  width: 100%;
}
#se-parte .tab-buttons li a[data-target=tab01] {
  background: #6D787F;
  border: 2px solid #6D787F;
}
#se-parte .tab-buttons li a[data-target=tab02] {
  background: #F8971F;
  border: 2px solid #F8971F;
}
#se-parte .tab-buttons li a[data-target=tab03] {
  background: #29B6C8;
  border: 2px solid #29B6C8;
}
#se-parte .tab-buttons li a {
  display: block;
  border-radius: 14px;
  color: #FFF;
  padding: 15px 20px;
  transition: ease all 0.35s;
}
#se-parte .tab-buttons li a.active, #se-parte .tab-buttons li a:hover {
  opacity: 0.94;
  border: 2px solid #FFF;
}
#se-parte .tab-buttons li a span {
  background: #FFF;
  border-radius: 25px;
  color: #6D787F;
  font-size: 14px;
  font-weight: 400;
  margin: 10px auto 0;
  max-width: 120px;
  padding: 5px 20px;
  width: 100%;
}
#se-parte .tab-container {
  background: #29B6C8;
  background: rgba(41, 182, 200, 0.3);
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  margin: auto;
  max-width: 1080px;
  overflow: hidden;
  padding: 0;
  position: relative;
}
#se-parte .tab-container .grid {
  grid-template-columns: 0.7fr 0.3fr;
  min-height: 500px;
}
#se-parte .tab-container article {
  border-radius: 20px;
}
#se-parte ul {
  margin: 40px 40px 40px 50px;
}
#se-parte ul li {
  color: #FFF;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 10px;
  font-weight: 300;
}
#se-parte .side {
  background: rgba(41, 182, 200, 0.4);
  padding: 25px;
  gap: 18px;
}
#se-parte .side a:nth-child(1) {
  background: #07314D;
  border: 2px solid #07314D;
}
#se-parte .side a:nth-child(2) {
  background: #FFF;
  border: 2px solid #FFF;
  color: #07314D;
}
#se-parte .side a:nth-child(2):hover {
  border: 2px solid #07314D;
}
#se-parte .side a {
  display: inline-block;
  border: 2px solid transparent;
  border-radius: 30px;
  color: #FFF;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  max-width: 210px;
  text-align: center;
  width: 100%;
}
#se-parte .side a.active, #se-parte .side a:hover {
  opacity: 0.94;
  border: 2px solid #FFF;
}
@media (max-width: 768px) {
  #se-parte .tab-buttons {
    margin: 30px auto 0;
    flex-direction: column;
    gap: 0;
  }
}

.tab_content_wrapper {
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease-in-out 0.3s;
}

.tab_content {
  transition: all 0.6s ease-in-out;
}

.toggle_display {
  display: block;
}

.toggle_position {
  position: absolute;
}

.tab_content_wrapper {
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease-in-out 0.3s;
}

.tab_content {
  transition: all 0.6s ease-in-out;
  opacity: 0;
}

.tab_content.toggle_display {
  display: block;
}

.tab-buttons a {
  cursor: pointer;
  text-decoration: none;
}

.tab-buttons a.active {
  text-shadow: 0 0px 4px rgba(255, 255, 255, 0.6);
}

.fadeIn {
  opacity: 1;
  transition: opacity 0.6s ease-in-out 0.3s;
}

.fadeOut {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

#acerca-de {
  background-color: #F7F8F9;
  padding: 120px 40px;
}
#acerca-de .container {
  max-width: 1080px;
}
#acerca-de h3.title {
  margin: 0 auto 50px;
}
#acerca-de h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
#acerca-de p {
  color: #FFF;
  font-size: 16px;
  font-weight: 200;
}
#acerca-de .grid div {
  border-radius: 20px;
  color: #FFF;
  padding: 25px 10%;
  min-height: 330px;
}
#acerca-de .bg {
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  #acerca-de .grid div {
    padding: 25px 20px;
  }
  #acerca-de p {
    font-size: 14px;
  }
}

#objetivos h3.title {
  margin-bottom: 30px;
}
#objetivos .card {
  background: #D9D9D9;
  border-radius: 20px;
  margin-top: 70px;
  max-width: 350px;
  width: 100%;
  padding: 60px 25px 25px;
  position: relative;
  min-height: 270px;
}
#objetivos .card .icon {
  border-radius: 50%;
  margin: auto;
  padding: 20px;
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 100px;
  width: 100px;
}
#objetivos .card p {
  font-size: 14px;
}
#objetivos .flex {
  gap: 15px;
}
#objetivos .card:nth-child(1) .icon {
  background: #084C79;
}
#objetivos .card:nth-child(2) .icon {
  background: #29B6C8;
}
#objetivos .card:nth-child(3) .icon {
  background: #F8971F;
}
@media (max-width: 1024px) {
  #objetivos .flex {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  #objetivos .card {
    margin-top: 50px;
    min-height: 230px;
    padding: 50px 20px 20px;
  }
  #objetivos .card p {
    line-height: 1.4;
  }
  #objetivos .card .icon {
    padding: 10px;
    top: -35px;
    height: 70px;
    width: 70px;
  }
}

#porque-asistir {
  background-image: url("../img-cira/portada.jpg");
  background-size: cover;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  z-index: 1;
}
#porque-asistir:before {
  content: "";
  background-color: rgba(8, 76, 121, 0.75);
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}
#porque-asistir .card {
  border: 2px solid #F8971F;
  border-radius: 20px;
  min-height: 420px;
  max-width: 350px;
  width: 100%;
  padding: 50px 30px;
  position: relative;
  gap: 20px;
}
#porque-asistir .card .icon {
  border-radius: 50%;
  margin: auto;
  margin-bottom: 10px;
  height: 90px;
  width: 90px;
}
#porque-asistir .card h4 {
  font-size: 20px;
  color: #FFF;
  text-align: center;
  line-height: 1.4;
}
#porque-asistir .flex {
  margin-top: 50px;
  gap: 15px;
}
#porque-asistir p {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
}
#porque-asistir p b {
  font-weight: 500;
}
@media (max-width: 1024px) {
  #porque-asistir .flex {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  #porque-asistir .card {
    padding: 30px;
    min-height: inherit;
    gap: 15px;
  }
  #porque-asistir .card .icon {
    height: 60px;
    width: 60px;
  }
  #porque-asistir p {
    font-size: 14px;
  }
}

#info-importante {
  padding: 100px 40px 140px;
}
#info-importante .container {
  max-width: 1080px;
}
#info-importante .card-slick {
  border-left: 3px solid #084E7B;
  min-height: 300px;
  padding: 15px 3.8%;
  position: relative;
  /*&:last-child {
  	border-right: 3px solid #084E7B;
  }*/
}
#info-importante .card {
  gap: 20px;
}
#info-importante .card .icon {
  height: 55px;
  width: 55px;
}
#info-importante .card h4 {
  font-size: 21px;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
}
#info-importante .card p {
  font-size: 14px;
}
#info-importante .card a {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 14px;
}
#info-importante .card a:hover {
  color: #007FA3;
}
#info-importante .card a:hover svg {
  fill: #007FA3;
}
#info-importante .card a img {
  margin-left: 12px;
  width: 20px;
}
#info-importante .flex {
  margin-top: 80px;
}
@media (max-width: 1024px) {
  #info-importante h3.title {
    margin-bottom: 40px;
  }
  #info-importante .flex {
    margin-top: 40px;
  }
  #info-importante .slick-list {
    max-width: 280px;
  }
  #info-importante .card-slick {
    border: 3px solid #084E7B;
    border-radius: 15px;
    padding: 40px 18px;
    min-height: 350px;
  }
  #info-importante .slick-prev, #info-importante .slick-next {
    margin-top: auto;
    bottom: -50px;
    z-index: 10;
  }
  #info-importante .slick-prev:before, #info-importante .slick-next:before {
    font-size: 30px;
  }
  #info-importante .slick-dots {
    bottom: -45px;
  }
  #info-importante .slick-prev {
    left: calc(35% - 20px);
  }
  #info-importante .slick-next {
    right: calc(35% - 12px);
  }
}

.slick-prev:before, .slick-next:before {
  color: #084E7B;
}

.slick-dots li {
  margin: 0;
}

.slick-dots li button:before {
  font-size: 10px;
}

.slick-dots li.slick-active button:before {
  color: #F8971F;
}

/*   Formulario    */
form {
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  min-width: 300px;
  max-width: min(max(40rem, 40rem + (1vw - 0.32rem) * 5), 48rem);
  padding: var(--pd-4);
  width: 100%;
}
form label {
  display: none;
}
form .grid {
  grid-gap: 15px;
}
form input, form select {
  background: rgba(188, 188, 188, 0.3);
  border-radius: 10px;
  border: 1px solid #FFF;
  color: #444;
  font-size: 15px;
  margin-bottom: 15px;
  padding: 12px;
  width: 100%;
}
form input::placeholder {
  color: #FFF;
}
form button {
  background: var(--color-enfasis);
  border-radius: 10px;
  border: 0;
  color: var(--color-blanco);
  padding: 12px 20px;
}
form button:hover {
  background: var(--color-enfasis2);
}

/* --------------------------------- */
/*   FOOTER
/* --------------------------------- */
footer > .grid {
  grid-template-columns: 1fr 1fr 1fr;
  color: var(--color-blanco);
}

footer .container {
  background: var(--color-enfasis2);
  padding: 20px var(--pd-14);
}
footer .container > div {
  padding: 10px;
}
footer .container .logo img {
  max-width: 200px;
}
footer .container h2 {
  font-size: var(--fs-texto-XXL);
  margin-bottom: 10px;
}
footer .container h3, footer .container li {
  font-size: var(--fs-texto);
}
footer .container h2, footer .container h3, footer .container h4, footer .container h5, footer .container h6 {
  font-family: "poppins", sans-serif;
  font-weight: 600;
}
footer .container a {
  font-size: var(--fs-texto);
  color: var(--color-blanco);
}
footer .container a:hover {
  color: var(--color-blanco);
}
footer .container i {
  color: var(--color-blanco);
  font-size: 14px;
  padding-right: 5px;
}
footer .container h3:not(:first-child) {
  margin-top: 12px;
}
footer .container .social-box {
  gap: 15px;
  margin: 12px 0;
}
footer .container .social-box i {
  font-size: 25px;
  padding: 0;
}
footer .container .social-box a {
  border: 1px solid var(--color-blanco);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.floatBtn {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  height: 50px;
  width: 50px;
  position: fixed;
  z-index: 100;
}
.floatBtn i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 30px;
  color: #FFF;
  margin: auto;
}
.floatBtn#scrollToTopBtn {
  right: 15px;
  bottom: 75px;
  z-index: 5;
}
.floatBtn#whatsappBtn {
  right: 15px;
  bottom: 15px;
  z-index: 5;
}

#scrollToTopBtn:hover {
  background: rgba(0, 0, 0, 0.4);
}

#scrollToTopBtn svg {
  fill: #fff;
  width: 18px;
}
/* --------------------------------- */
/*   ANIMACIONES
/* --------------------------------- */
.shape-01 {
	animation-name: shape-01;
	animation-duration: 6s;
	animation-iteration-count: infinite;
}
.shape-02 {
	animation-name: shape-02;
	animation-duration: 6s;
	animation-iteration-count: infinite;
}


#pensando-en-ti-02 svg {
	animation-name: bg-anim-01;
	animation-duration: 6s;
	animation-iteration-count: infinite;
}
@keyframes bg-anim-01 {
    0% { transform: scale(1.4)translate(0%,2%)rotate(-35deg); }
   50% { transform: scale(1.5)translate(0%,2%)rotate(-35deg); }
  100% { transform: scale(1.4)translate(0%,2%)rotate(-35deg); }
}

@keyframes shape-01 {
    0% { transform: scale(1.0); }
   50% { transform: scale(1.5); }
  100% { transform: scale(1.0); }
}
@keyframes shape-02 {
    0% { transform: scale(1.2); }
   50% { transform: scale(1.0); }
  100% { transform: scale(1.2); }
}
/* --------------------------------- */
/*   TRANSICIONES
/* --------------------------------- */
a, header, button, a.btn, .header-menu ul, .header-menu ul li a {
	-o-transition: all .25s cubic-bezier(0,0,.2,1);
	transition: all .25s cubic-bezier(0,0,.2,1);
}
/* --------------------------------- */
/*   MEDIA MOBILE
/* --------------------------------- */
/* TABLETAS - DESKTOP */
@media screen and (max-width: 1024px) {
  footer .grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
/* MOVILES - TABLETAS */
@media screen and (max-width: 767px) {
  .header-logo img {
    max-width: 140px;
  }
  .shape-03 {
    display: none;
  }
  #portada {
    min-height: 100vh;
  }
  #portada .banner-txt > .grid .date {
    align-items: flex-start;
  }
  #portada .banner-txt > .grid .date:before {
    height: 2px;
    right: 0;
    width: 60px;
  }
  #portada .banner-txt > .grid .title {
    text-align: right;
  }
  #portada .banner-txt > .grid .title:before {
    height: 2px;
    right: 0;
    width: 60px;
  }
  #portada .banner-txt .footer .header {
    font-size: 14px;
    padding: 15px 40px;
  }
  #portada .banner-txt .footer .container {
    padding: 20px;
  }
  #portada .banner-txt .footer .container > .grid {
    grid-gap: 40px;
  }
  #portada .banner-txt .footer .container > .grid .title {
    text-align: left;
    font-size: 18px;
  }
  #portada .banner-txt .footer .container > .grid .title:before {
    height: 3px;
    left: 0;
    width: 50px;
  }
  #portada .banner-txt .footer .container > .grid .content {
    font-size: 20px;
  }
  #faq {
    padding: 5rem 2rem;
  }
  form .grid {
    grid-gap: 0;
  }
  .grid {
    grid-template-columns: 1fr !important;
  }
  .full-img {
    max-height: 380px;
    min-height: 380px;
  }
  main section .container > div.flex-col {
    padding: var(--pd-box-L) !important;
  }
  .order-2 {
    order: initial;
  }
  .order-m1 {
    order: 1;
  }
  .order-m2 {
    order: 2;
  }
}
/* MOVILES */
@media screen and (max-width: 414px) {
  #pensando-en-ti-02 svg {
    max-width: 100%;
  }
}