body {
	background: #fff;
	color: #2f3138;
	font-family: "Open Sans", sans-serif
}

a {
	color: #32407e;
	text-decoration: none;
	transition: .5s
}

a:active,
a:focus,
a:hover {
	color: #32407e;
	outline: 0;
	text-decoration: none
}

p {
	text-align: justify
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: Raleway, sans-serif;
	font-weight: 400;
	margin: 0 0 20px 0;
	padding: 0;
	color: #32407e
}

.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: #f82249;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	transition: all .4s
}

.back-to-top i {
	font-size: 28px;
	color: #fff;
	line-height: 0
}

.back-to-top:hover {
	background: #f94a6a;
	color: #fff
}

.back-to-top.active {
	visibility: visible;
	opacity: 1
}

.section-header {
	margin-bottom: 60px;
	position: relative;
	padding-bottom: 20px
}

.section-header::before {
	content: '';
	position: absolute;
	display: block;
	width: 60px;
	height: 5px;
	background: #7b64e6;
	bottom: 0;
	left: calc(50% - 25px)
}

.section-header h2 {
	font-size: 36px;
	text-transform: uppercase;
	text-align: center;
	font-weight: 700;
	margin-bottom: 10px
}

.section-header p {
	text-align: center;
	padding: 0;
	margin: 0;
	font-size: 18px;
	font-weight: 500;
	color: #9195a2
}

.section-with-bg {
	background-color: #f6f7fd
}

#header {
	height: 90px;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	transition: all .5s;
	z-index: 997
}

#header #logo h1 {
	font-size: 36px;
	margin: 0;
	font-family: Raleway, sans-serif;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase
}

#header #logo h1 span {
	color: #f82249
}

#header #logo h1 a,
#header #logo h1 a:hover {
	color: #fff
}

#header #logo img {
	padding: 0;
	margin: 0;
	max-height: 40px
}

@media (max-width:992px) {
	#header #logo img {
		max-height: 30px
	}
}

.navbar {
    margin-left: auto;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center
}

.navbar li {
	position: relative
}

.navbar>ul>li {
	white-space: nowrap;
	padding: 10px 0 10px 12px
}

.navbar a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff;
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 14px;
	white-space: nowrap;
	transition: .3s;
	position: relative;
	padding: 6px 4px
}

.navbar a i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px
}

.navbar>ul>li>a:before {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -6px;
	left: 0;
	background-color: #f82249;
	visibility: hidden;
	transition: all .3s ease-in-out 0s
}

.navbar .active:before,
.navbar a:hover:before,
.navbar li:hover>a:before {
	visibility: visible;
	width: 100%
}

.navbar .active,
.navbar a:hover,
.navbar li:hover>a {
	color: #fff
}

.mobile-nav-toggle {
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: .5s
}

@media (max-width:991px) {
	.mobile-nav-toggle {
		display: block
	}
	.navbar ul {
		display: none
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	transition: .3s;
	z-index: 999
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px
}



.navbar-mobile>ul>li {
	padding: 0
}

.navbar-mobile .active:before,
.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before {
	visibility: hidden
}

.navbar-mobile a {
	padding: 10px 20px;
	font-size: 15px;
	color: #fff
}

.navbar-mobile .active,
.navbar-mobile a:hover,
.navbar-mobile li:hover>a {
	color: #f82249
}

#hero {
	width: 100%;
	height: 100vh;
	background: url(../img/banner.png) top center;
	background-size: cover;
	overflow: hidden;
	position: relative
}

@media (min-width:1024px) {
	#hero {
		background-attachment: fixed
	}
}

#hero:before {
	content: "";
	background: rgba(125, 139, 190, .15);
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0
}

#hero .hero-container {
	position: absolute;
	bottom: 0;
	left: 0;
	top: 90px;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	padding: 0 15px
}

@media (max-width:991px) {
	#hero .hero-container {
		top: 70px
	}
}

#hero h1 {
	color: #32407e;
	font-family: Raleway, sans-serif;
	font-size: 56px;
	font-weight: 600;
	text-transform: uppercase
}

#hero h1 span {
	color: #7b64e6
}

@media (max-width:991px) {
	#hero h1 {
		font-size: 34px
	}
}

#hero p {
	color: #32407e;
	font-weight: 700;
	font-size: 20px
}

@media (max-width:991px) {
	#hero p {
		font-size: 16px
	}
}

@-webkit-keyframes pulsate-btn {
	0% {
		transform: scale(.6, .6);
		opacity: 1
	}
	100% {
		transform: scale(1, 1);
		opacity: 0
	}
}

@keyframes pulsate-btn {
	0% {
		transform: scale(.6, .6);
		opacity: 1
	}
	100% {
		transform: scale(1, 1);
		opacity: 0
	}
}

#about {
	background: url(../img/unison.jpg);
	background-size: cover;
	overflow: hidden;
	position: relative;
	color: #fff;
	padding: 60px 0 40px 0
}

@media (min-width:1024px) {
	#about {
		background-attachment: fixed
	}
}

#about:before {
	content: "";
	background: rgba(13, 20, 41, .8);
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0
}

#about h2 {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #7b64e6
}

#about h3 {
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 10px;
	color: #7b64e6
}

#about p {
	font-size: 14px;
	margin-bottom: 20px;
	color: #fff
}

#bienvenida {
	padding: 60px 0 30px 0
}

#schedule {
	padding: 60px 0 60px 0
}

#carteles {
	padding: 60px 0 60px 0
}

#comite {
	padding: 60px 0 60px 0
}

@-webkit-keyframes animate-loading {
	0% {
		transform: rotate(0)
	}
	100% {
		transform: rotate(360deg)
	}
}

@keyframes animate-loading {
	0% {
		transform: rotate(0)
	}
	100% {
		transform: rotate(360deg)
	}
}

#footer {
	background: #32407e;
	padding: 0 0 25px 0;
	color: #eee;
	font-size: 14px
}

#footer .footer-top {
	background: #32407e;
	padding: 60px 0 30px 0
}

#footer .footer-top h4 {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 12px;
	border-bottom: 2px solid #f82249
}


@media (max-width:900px) {
	#flyer {
		width: 50%;
		margin-left: auto;
		margin-right: auto;
		display: block
	}
}

#ponencias {
	padding: 60px 0 60px 0
}

#contacto {
	margin: auto;
	width: 40%;
	padding: 10px;
	text-align: center
}

#redes {
	color: #fff;
	display: flex;
	flex-direction: row;
	justify-content: center
}

#redes i {
	font-size: 50px;
	margin: 0 15px;
	color: #fff
}

.actividad h2 {
	padding-top: 70px
}

@media (max-width:991px) {
	video {
		width: 320px;
		height: 180px
	}
}

#video {
	padding: 60px 0 60px 0
}

#comite {
	padding: 60px 0 60px 0
}

#ponenciasPlenarias {
	padding: 60px 0 60px 0
}


#redes i {
	font-size: 50px;
	margin: 0 15px;
	color: #fff
}

.actividad h2 {
	padding-top: 70px
}

@media (max-width:991px) {
	video {
		width: 320px;
		height: 180px
	}
}



#ponenciasPlenarias img {
	display: block;
    margin: auto auto 30px auto;
	border-radius: 50%;
	width: 200px;
	height: 240px;
  
}
.plenarias{
	text-align: center;
}
#ponenciasPlenarias .plenarias img{
	display: block;
    margin: auto auto 30px auto;
	border-radius: 0%;
    width: 300px;
    height: 400px;
    cursor: pointer;
}
#header.header-scrolled {
  background: #32407e;
  height: 70px;
}
img{
	display: block;
	width: 250px;
    height: 390px;
	max-width: 100%;
    max-height: 100%;
	margin: auto auto auto auto;
	cursor: pointer;
	align-items: center;

}

.block{
	text-align: center;
	text-decoration: underline;
	text-decoration-color: blue;
	padding-top: 30px;
	padding-bottom: 5px;
}



@media (max-width:991px) {
	video {
		width: 320px;
		height: 180px
	}
}

#video {
	padding: 60px 0 60px 0
}


#talleres {
	padding: 60px 0 60px 0
}

#divulgacion, #mesaRedonda, #preLibro, #difMat, #cursos, #MCD, #eventos{
	padding: 60px 0 60px 0

}

#talleres h3{
	margin: 25px;
	text-align: center;
}

#talleres table{
	margin: 50px;
}
#talleres img{
	display: block;
    margin: auto;
	width: 50%;
	height: auto;

}

#talleres a, #ponenciasPlenarias a, #divulgacion a{
	text-align: center;
	text-decoration: underline;
	text-decoration-color: #32407e;
}




a{
	text-align: center;
	text-decoration: underline;
	text-decoration-color: #32407e;
}


.navbar .dropdown ul{
	display: block;
	position: absolute;
	left: 12px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: #32407e;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
  }
  
  .navbar .dropdown ul li {
	min-width: 200px;
  }
  
  .navbar .dropdown ul a {
	padding: 10px 20px;
	font-size: 14px;
	text-transform: none;
	color: white;
  }
  
  .navbar .dropdown ul a i {
	font-size: 12px;
  }
  
  .navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
	color: #f82249;
  }
  
  .navbar .dropdown:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
  }
  
  .navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
  }
  
  .navbar .dropdown .dropdown:hover > ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
  }
  
  @media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
	  left: -90%;
	}
	.navbar .dropdown .dropdown:hover > ul {
	  left: -100%;
	}
  }
  
  /**
  * Mobile Navigation
  */
  
  @media (max-width: 991px) {
	.mobile-nav-toggle {
	  display: block;
	}
	.navbar ul {
	  display: none;
	}
	.navbar .dropdown ul a {
	  color: white;
	}
  }
  
  .navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: #32407e;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }
  
  .navbar-mobile .dropdown ul li {
	min-width: 200px;
  }
  
  .navbar-mobile .dropdown ul a {
	padding: 10px 20px;
  }
  
  .navbar-mobile .dropdown ul a i {
	font-size: 12px;
  }
  
  .navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
	color: #f82249;
  }
  
  .navbar-mobile .dropdown > .dropdown-active {
	display: block;
  }

  .row{
	align-items: center;
  }


  #talleres p{
	text-align: center;
	margin-top: 80px;
  }


#divulgacion li, #mesaRedonda li,  #cursos li{
	padding-bottom: 10px;
}

#divulgacion img,  #mesaRedonda img{
	padding: 30px;
	width: 375px;
	height: 570px;
}

ol > li:before {
	content: counter(list, lower-alpha) ") ";
	counter-increment: list;
  }

  ol {
	counter-reset: list;
  }
  ol > li {
	list-style: none;
  }

  #cursos h3{
	text-align: center;
	text-decoration: underline;
	
  }


  .navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	background-color: #32407e;
	overflow-y: auto;
	transition: .3s
}


 /**
  * Ponencia
  */
  
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
	margin: auto;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 100%;
}
#HCB_comment_box{
	max-height: 750px;
}


.row li{
	margin-bottom: 30px;
}

#video .col-lg-5{
	margin: auto;
	
}
#video .col-lg-7{
	margin: auto;
	margin-bottom: 30px;

}

.row h2{
	margin-bottom: 40px;
    text-align: center;
}

#video {
	padding: 60px 0 60px 0
}
#bienvenida .col-lg-5{
	margin: auto;
	
}
#bienvenida .col-lg-7{
	margin: auto;
	margin-bottom: 30px;

}
#bienvenida .video-container iframe{
	width: 100%;
}

 /**
  * cartel
  */
#cartel {
	padding: 60px 0 60px 0
}


#cartel embed{
	width: 80%;
	margin: auto;
	height:  600px;
}

