/********** CSS **********/
:root {
    --primary: #2E5DEA;
    --light: #fff;
    --dark: rgb(33,33,37);
}
body{
	background-color: #2b344c;
}

html, body {
  overflow-x: hidden;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
	font-weight: 500;
	transition: .5s;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: small;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Header ***/
.header-bg {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/bg-1.jpg) center center no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 40px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 5rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
}


/*** Facts & Visiting Hours ***/
.facts {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/bg-1.jpg) center center no-repeat;
    background-size: cover;
}

.visiting-hours {
    background: linear-gradient(rgba(21, 29, 53, .7), rgba(21, 29, 53, .7)), url(../img/bg-2.jpg);
	 /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.visiting-hours .list-group-item {
    display: flex;
    justify-content: space-between;
    color: var(--light);
    background: rgba(0, 0, 0, .15);
    border-color: rgba(255, 255, 255, .15);
}

.visiting-hours .table {
    color: var(--light);
    background: rgba(0, 0, 0, .15);
}

.visiting-hours .table td {
    padding: .5rem 1rem;
    border-color: rgba(255, 255, 255, .15);
}

.visiting-hours .table tr:last-child td {
    border: none;
}

.fechas {
    background: linear-gradient(rgba(21, 29, 53, .7), rgba(21, 29, 53, .7)), url(../img/bg-4.jpg) center center no-repeat;
    background-size: cover;
}

.fechas .list-group-item {
    display: flex;
    justify-content: space-between;
    color: var(--light);
    background: rgba(0, 0, 0, .15);
    border-color: rgba(255, 255, 255, .15);
}

.fechas .table {
    color: var(--light);
    background: rgba(0, 0, 0, .15);
}

.fechas .table td {
    padding: .5rem 1rem;
    border-color: rgba(255, 255, 255, .15);
}

.fechas .table tr:last-child td {
    border: none;
}



/*** Animal ***/
.animal-item {
    position: relative;
    display: block;
}

.animal-item .animal-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .8);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 100px !important;
    opacity: 0;
    transition: .5s;
}

.animal-item:hover .animal-text {
    opacity: 1;
    padding-bottom: 20px !important;
	
}


/*** Membership ***/
.membership-item {
    padding: 45px 30px;
    color: #FFFFFF;
	
	background: rgba(0, 0, 0, .35);
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(5px);
  border: 1.5px solid rgba(244, 231, 164, 0.3);
}
/*
.membership-item:hover {

	transform: scale(1.1);
	transition: .3s;
	
}*/

.membership-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}


.membership-item .display-1 {
    color: transparent;
    -webkit-text-stroke: 2px white;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(43, 52, 76, 1) 0%, rgba(43, 52, 76, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(43, 52, 76, 1) 0%, rgba(43, 52, 76, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: #2b344c;
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    border-color: var(--primary) !important;
} 

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/
/*
ESTILOS EXTRAS FMC*/

:root {
--nav-color: #ffffff;
--nav-hover-color: rgb(46, 93, 234); 
--nav-mobile-background-color: #ffffff; 
--nav-dropdown-background-color: #ffffff; 
--nav-dropdown-color: #060606; 
--nav-dropdown-hover-color: rgb(46, 93, 234); 
}

.light-background {
--background-color: #f9f9f9;
--surface-color: #ffffff;
}
.dark-background {
--background-color: #212125;
--default-color: #ffffff;
--heading-color: #ffffff;
--surface-color: #404356;
--contrast-color: #ffffff;
}

:root {
    scroll-behavior: smooth;
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.txt-ama{
	color: #e2a817 ;
}
.header {
--background-color: rgba(255, 255, 255, 0);
--heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    /* padding: 10px 0;*/
    transition: all 0.5s;
    z-index: 997;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "DM Sans", sans-serif;
}
.header .logo {
    line-height: 1;
}
.header .logo img {
    max-height: 45px;
    margin-right: 8px;
    margin-left: 10px
}
.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}
.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
/* Global Header on Scroll
------------------------------*/
.scrolled .header {
--background-color: #212125;
}
.bg-oscuro {
    background-color: #212125;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
.navmenu {
    padding: 0;
}
.navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}
.navmenu li {
    position: relative;
    margin-left: 5px;
}
.navmenu a, .navmenu a:focus {
    color: var(--nav-color);
    padding: 8px 20px;
    font-size: 13px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    /*justify-content: space-between;*/
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 50px;
}
.navmenu a i, .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
}
.navmenu li:hover>a, .navmenu .active, .navmenu .active:focus {
    /*background-color: var(--nav-hover-color);*/
    color: rgb(46, 93, 234);
}
.navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background-color: black;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	letter-spacing: 0px;
	border-top: 1px solid var(--primary);
	
}
.navmenu .dropdown ul li {
    min-width: 200px;
    margin-left: 0;
	
}
.navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: white;
}
.navmenu .dropdown ul a i {
    font-size: 12px;
}
.navmenu .dropdown ul a:hover, .navmenu .dropdown ul .active:hover, .navmenu .dropdown ul li:hover>a {
    background-color: transparent;
    color: var(--nav-hover-color);
}
.navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 105%;
    visibility: visible;
}
.navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
}
.navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
}
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
.mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
}
.navmenu {
    padding: 0;
    z-index: 9997;
}
.navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}
.navmenu a, .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
}
.navmenu a i, .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
   /* align-items: center;
    justify-content: center;*/
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}
.navmenu a i:hover, .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}
.navmenu a:hover, .navmenu .active, .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
}
.navmenu .active i, .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
}
	
.navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
	text-transform: none;
	
}
.navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
	
}
	.navmenu .dropdown li {
		text-align: start;
		letter-spacing: normal;
		/*border: 1px solid red*/
		
	}
.navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
}
.mobile-nav-active {
    overflow: hidden;
}
.mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
}
.mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
}
.mobile-nav-active .navmenu>ul {
    display: block;
}
	
	
}
/*	VIDEO*/

.header-c {
    display: flex;
    align-items: center;
    color: #fff;
}
.header-v {
    height: 90vh;
    display: flex;
    align-items: center;
    color: #fff;
}
.content {
    max-width: 40rem;
    padding-left: 1rem;
    padding-right: 1rem;
    margin: auto;
    text-align: center;
}
.header-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.header-overlay {
    height: 90vh;
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    z-index: 1;
    opacity: .55;
}
.header-content {
    z-index: 2;
}
.header-content h1 {
    font-size: 70px;
    margin-bottom: 0;
    font-family: "DM Sans", sans-serif;
    color: white;
    letter-spacing: 3px;
}
.header-content p {
    font-size: 1.5rem;
    display: block;
    padding-bottom: 1rem;
	font-family: "Montserrat", sans-serif;
}

@media (max-width: 960px) {

	.header-video video {
    max-width: 350%;
    max-height: 350%;
}
	.navmenu a, .navmenu a:focus {
	color: var(--nav-dropdown-color);
	padding: 10px 20px;
	font-family: var(--nav-font);
	font-size: 17px;
	font-weight: 500;
	display: flex;
	align-items: center;
	 justify-content: flex-start; 
	white-space: nowrap;
	transition: 0.3s;
	text-align: left;
}
	
	
}
	@media (max-width: 700px) {
.header-content h1 {
font-size: 40px;
}
		

/*.header-video video {
    max-width: 300%;
    max-height: 300%;
}*/
		
		

}

@media screen and (max-width: 700px) {
  .timebox{
   display: list-item;
	gap: 60px!important;
}
		.time h2{
    font-size: 2.2rem!important;
}
}
/*FOOTER*/
footer {
    /* background-color: #cccccc; */
    background-color: #19151e;
    min-height: 100px;
    color: white;
    padding: 50px 0;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
}
footer a {
    color: #ffffff !important;
}
	
	.tematica{
		background-image: url(../img/about.jpg);

  /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
	}
	
/*	estilos slider*/
@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 9));
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 9));
  }
}
.slider {
  /*box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);*/
  height: 150px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
 margin-top: 30px;
}
.slider::before, .slider::after {
  background: linear-gradient(to right, #2b344c 0%, rgba(43, 52, 76, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  -webkit-animation: scroll 40s linear infinite;
          animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}
.slider .slide {
  height: 100px;
  width: 250px;
}
	
	/*--------------------------------------------------------------
# Sede Section
--------------------------------------------------------------*/
.sede .info-item+.info-item {
  margin-top: 40px;
}

.sede .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.sede .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.sede .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.sede .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.target-element { scroll-margin-top: 190px; }


.target-element-ini { scroll-margin-top: 270px; }

.conferencistas-bg{
	background-image: url("../img/bg-6.png");
	  /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
tbody tr:nth-child(odd) {
  background-color:rgba(255,255,255,.20);
}

tbody tr:nth-child(even) {
  background-color:rgba(255,255,255,.05);
}

tbody tr {
  background-image: url(noise.png);
}

table {
 
	table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border: 1px solid white;
	margin-top: 50px;
}
th,
td {
  padding: 20px;
}
.parallax {
  /* The image used */
  background-image: url("img_parallax.jpg");

  /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/*contador*/
.contador{
	margin: auto; width: 100%; max-width: 850px
}
.timebox{
    display: flex;
    gap: 150px;
}

.time{
    text-align: center;
}

.time h2{
    font-size: 5rem;
    font-weight: 100;
}


