

/***********
# General
***********/


body {
  color: #444444;
}

a {
  color: #0583cf;
}

a:hover {
  color: #0456a4;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sofadi One', cursive;
}

.tweets {
	overflow-x: auto;
	height: 80vh;
}

.tweets::-webkit-scrollbar {
    -webkit-appearance: none;
}

.tweets::-webkit-scrollbar:vertical {
    width:8px;
}

.tweets::-webkit-scrollbar-button:increment,.contenedor::-webkit-scrollbar-button {
    display: none;
} 

.tweets::-webkit-scrollbar:horizontal {
    height: 10px;
}

.tweets::-webkit-scrollbar-thumb {
    background-color: #0456a4;
    border-radius: 20px;
    border: 2px solid #f1f2f3;
}

.tweets::-webkit-scrollbar-track {
    border-radius: 10px;  
}

/***********
# Back to top button
***********/

.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #048ad6;
  color: #273746 ;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #044998;
  color: #fff;
}

/***********
# Top Bar
***********/


#topbar {
  padding: 0;
  font-size: 18px;
  height: 50px;
  transition: all 0.5s;
  background: rgba(26, 24, 22, 0.8);
  color: rgba(255, 255, 255, 0.7);
}

#topbar.topbar-transparent {
  background: transparent;
}

#topbar.topbar-scrolled {
  top: -50px;
}

#topbar i {
  color: #0583cf;
}

#topbar i + i {
  margin-left: 15px;
}

#topbar .social-links a {
  display: inline-block;
  /**background: #0583cf;**/
  background: rgba(5, 131, 207, 0.6);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 28px;
  height: 28px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  background: #044998;
  text-decoration: none;
}


#topbar .social-links i {
  color: #fff;
  text-align: center;
  display: block;
  font-size: 14px;
  line-height: 1;
}

/************
# Header
***********/

#header {
  top: 50px;
  height: 70px;
  z-index: 997;
  transition: all 0.5s;
  padding: 10px 0;
  background: rgba(26, 24, 22, 0.85);
}

#header.header-transparent {
  /**background: transparent;**/
  background: rgb(255,255,255);
background: linear-gradient(121deg, rgba(255,255,255,1) 35%, rgba(0,212,255,1) 27%, rgba(0,212,255,1) 43%);
}

#header.header-scrolled {
  top: 0;
  background: rgb(255,255,255);
background: linear-gradient(121deg, rgba(255,255,255,1) 40%, rgba(0,212,255,1) 27%, rgba(0,212,255,1) 43%);
}

#header .logo h1 {
  font-size: 35px;
  margin: 0;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 4px;
  color: rgb(4, 138, 214);
}

#header .logo h1 a, #header .logo h1 a:hover {
  /**color: rgb(4, 138, 214);**/
  color: #fff;
  text-decoration: none;
  
}

#header .logo span {
  color: #FFF;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 70px;
}

@media (max-width: 992px) {
  #header {
    top: 0;
    background: rgba(26, 24, 22, 0.85);
  }
}

/***********
# Nav Menu
***********/

/* escritorio Nav */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #003f5c;
  padding: 9px 14px;
  transition: 0.3s;
  font-size: 13px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  /**color: #5bb6e0;**/
  color: #3d708f;
  text-decoration: none;
}

.nav-menu .btn-nav-m a {
  background: #515A5A ;
  color: #fff;
  border-radius: 5px;
  margin: 0 0 0 10px;
  padding: 10px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
}

.nav-menu .btn-nav-m a:hover {
  background: #5bb6e0;
  color: #fff;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #433f39;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #0583cf;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 0px;
  right: 15%;
  bottom: 0px;
  left: 0px;
  z-index: 9999;
  overflow-y: auto;
  background: rgba(240, 243, 244, 0.9);
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius:0;
  padding: 10px 0;
  text-align: center;
}

.mobile-nav * {
  margin: 10px 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #048ad6;
  padding: 10px 20px;
  font-weight: 700;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #0583cf;
  text-decoration: none;
}

.mobile-nav .btn-nav-m a {
  background: #044998;
  color: #fff;
  border-radius: 50px;
  margin: 0;
  padding: 10px 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
  display: inline-block;
}

.mobile-nav .book-a-table a:hover {
  background: #0583cf;
  color: #fff;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 5px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 0px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 0px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(39, 37, 34, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/***********
# Port Section
************/

#Port {
  width: 100%;
  height: 100vh;
  background-color: rgba(39, 37, 34, 0.8);
  overflow: hidden;
  padding: 0;
}

#Port .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#Port .carousel-item::before {
  content: '';
  background-color: rgba(12, 11, 10, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#Port .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#Port .carousel-content {
  text-align: center;
}

#Port .carousel-content h2 {
  color: #fff;
  margin: 15px auto;
  font-size: 30px;
  font-weight: 700;
  padding: 0 25px;
  width: 80%;
}

#Port h2 span {
  color: #048ad6;
}

#Port p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
  text-align: center;
}

#Port .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#Port .carousel-inner .carousel-item,
#Port .carousel-inner .active.carousel-item-left,
#Port .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#Port .carousel-inner .active,
#Port .carousel-inner .carousel-item-next.carousel-item-left,
#Port .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#Port .carousel-inner .carousel-item-next,
#Port .carousel-inner .carousel-item-prev,
#Port .carousel-inner .active.carousel-item-left,
#Port .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#Port .carousel-control-prev, #Port .carousel-control-next {
  width: 10%;
  opacity: 1;
}

#Port .carousel-control-next-icon, #Port .carousel-control-prev-icon {
  background: none;
  font-size: 36px;
  line-height: 1;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 10px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
}

#Port .carousel-control-next-icon:hover, #Port .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

#Port .carousel-indicators li {
  cursor: pointer;
}

#Port .btn-port {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 12px;
  transition: 0.5s;
  line-height: 1;
  margin: 0 10px;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  color: #fff;
  border: 2px solid #048ad6;
}

#Port .btn-port:hover{
  background: #044998;
  color: #fff;
}

@media (max-width: 768px) {
  #Port h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #Port p {
    width: 50%;
  }
  #Port .carousel-control-prev, #Port .carousel-control-next {
    width: 5%;
  }
}

/***********
# Sections General
***********/

section {
  padding: 70px 0;
}

section .container b {
	color: #0456a4;
}

.section-bg {
  background-color: white;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  color: #5f5950;
}

.section-title h2 span {
  color: #044998;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 300;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 80%;
  }
}


/***********
# Breadcrumbs
***********/

.breadcrumbs {
  padding: 20px 0;
  background-color: #f2f1ef;
  min-height: 40px;
  margin-top: 120px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/***********
# About
***********/

.about {
  background: #fffaf3;
}

.about .content {
  padding: 0 80px;
}

.about .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #5f5950;
}

.about .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.about .content p {
  font-size: 15px;
  color: #848484;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li + li {
  margin-top: 15px;
}

.about .content ul li {
  position: relative;
  padding-left: 26px;
}

.about .content ul i {
  font-size: 20px;
  color: #ffb03b;
  position: absolute;
  left: 0;
  top: 2px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ffb03b 50%, rgba(255, 176, 59, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 176, 59, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #ffb03b;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {
  .about .content, .about .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .about .content {
    padding-top: 30px;
  }
  .about .accordion-list {
    padding-bottom: 30px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/***********
# Presentacion
***********/

.present .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
}

.present .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #044998;
}

.present .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #6c665c;
}

.present .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.present .box:hover {
  background: url(../img/slide/grad-1.jfif);
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.present .box:hover span, .present .box:hover h4, .present .box:hover p {
  color: #fff;
}

/***********
# Proyectos o division de estudio
***********/
.divisiones {
  overflow: hidden;
}

.divisiones .nav-tabs {
  border: 0;
}

.divisiones .section-title p {
	width: 90%;
	margin-bottom: 15px;
}

.divisiones .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #433f39;
  border-radius: 0;
  border-right: 2px solid #e8e7e4;
  font-weight: 600;
  font-size: 15px;
}

.divisiones .nav-link:hover {
  color: #0583cf;
}

.divisiones .nav-link.active {
  color: #048ad6;
  border-color: #048ad6;
}

.divisiones .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.divisiones .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #433f39;
}

.divisiones .details p {
  color: #777777;
}

.divisiones .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .divisiones .nav-link {
    border: 0;
    padding: 15px;
  }
  .divisiones .nav-link.active {
    color: #fff;
    background: #048ad6;
  }
}



/***********
# Equipo
***********/


.team {
  background: url("../img/bg-img/bg-port-3.jpg") center center no-repeat;
  background-size: cover;
  padding: 60px 0;
  position: relative;
}

.team::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 9;
}

.team .container {
  position: relative;
  z-index: 10;
}

.team .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.team .member .pic {
  overflow: hidden;
}

.team .member .member-info {
  position: absolute;
  bottom: -80px;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px 0;
  color: #433f39;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.team .member h4 {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 16px;
  color: #6c665c;
  position: relative;
  padding-bottom: 10px;
  font-family: sans-serif;
}

.team .member h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 150px;
  height: 1px;
  background: #044998;
  bottom: 0;
  left: calc(50% - 75px);
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #7a7368;
}

.team .member .social a:hover {
  color: #048ad6;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

@media (max-width: 992px) {
  .team .member {
    margin-bottom: 110px;
  }
}

@media (min-width: 1024px) {
  .team {
    background-attachment: fixed;
  }
}



/***********
# Footer
***********/

#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #151515;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
  color: #048ad6;
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #0583cf;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #044998;
  color: #151515;
  text-decoration: none;
}


#footer .footer-top h4 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
  font-family: sans-serif;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #0456a4;
  font-size: 22px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #0583cf;
}


#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .btn-nav-m a {
  background: #515A5A ;
  color: #fff;
  border-radius: 5px;
  margin: 25px auto;
  padding: 10px 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
}

#footer .btn-nav-m i {
  color: #fff !important;
  vertical-align: middle;
  margin-right: 5px;
}

#footer .btn-nav-m a:hover {
  background: #5bb6e0;
  color: #fff;
}

/***********
Estilos Directiva y Socios ***********/


#Directiva {
	margin-top: 80px;
}

#Directiva .card {
	padding: 15px;
	
}

#Directiva .card p {
	text-align: justify;
}

#Directiva .card .foto {
	text-align: center;
	margin: auto;
}

/**#Directiva .card .foto img {
	border-radius: 25%;
	margin: auto;
	height: 250px;
}**/

#Directiva .card .foto-int {
	border-radius: 50%;
	margin: 25px auto;
	height: 250px;
	width: 250px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

#Directiva .ref .social-links {
	margin-left: 15px;
}

#Directiva .ref .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #0583cf;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#Directiva .ref .social-links a:hover {
  background: #044998;
  color: #151515;
  text-decoration: none;
}


/***********
Estilos Socios y Socios ***********/


#Socios {
	margin-top: 10px;
}

#Socios .card {
	padding: 15px;
	
}

#Socios .card p {
	text-align: justify;
}

#Socios .card .foto {
	text-align: center;
	margin: auto;
}

/*#Socios .card .foto img {
	border-radius: 10%;
	margin: auto;
	height: 250px;
}*/

#Socios .card .foto-int {
	border-radius: 50%;
	margin: 20px auto;
	height: 250px;
	width: 250px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

#Socios .ref .social-links {
	margin-left: 15px;
}

#Socios .ref .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #0583cf;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#Socios .ref .social-links a:hover {
  background: #044998;
  color: #151515;
  text-decoration: none;
}


/***********
Estilos blog articulos 
***********/

#Articulos {
	margin-top: 75px;
}

#Articulos h1 {
	text-align: center;
	font-size: 28px;
	margin: 10px;
	font-weight: bolder;
	color: #044998;
}

#Articulos p {
	text-align: justify;
	padding: 8px 18px;
	margin: 3px 0;
	font-size: 16px;
}

#Articulos h3 {
	font-size: 22px;
	font-weight: bolder;
	margin-top: 16px;
	text-align: center;
}

#Articulos h5 {
	font-size: 16px;
	font-weight: bolder;
	color: #048ad6;
	margin-top: 22px;
	margin-bottom: 0;
}

#Articulos ul {
	color: #0456a4;
}

#Articulos ol {
	color: #0456a4;
}

#Articulos .Art-img {
	width: 100%;
	text-align: center;
}

#Articulos .Art-img img {
	height: 400px;
}

#Articulos .social-links a {
  display: inline-block;
  background: #044998;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50px;
  text-align: center;
  width: 30px;
  height: 30px;
  transition: 0.3s;
}

#Articulos .social-links a:hover {
  background: rgba(5, 131, 207, 0.6);
  text-decoration: none;
  color: #044998;
}

#Articulos .social-links i:hover {
  color: #044998;
}


#Articulos .social-links i {
  color: #fff;
  text-align: center;
  display: block;
  font-size: 14px;
  line-height: 1;
}

/***********
Autor 
***********/

#Autor {
	margin: 0;
}

#Autor .card {
	padding: 20px 5px;
	border-top: 1px solid #5383a1 !important;
	border: none;
}

#Autor .card .foto-int {
	border-radius: 50%;
	margin: 25px 15px;
	height: 100px;
	width: 100px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

#Autor .card .ref {
	margin: auto;
	display: flex;
}

#Autor .card .ref h5 {
	font-weight: 500;
	margin: auto 0;
}

#Autor .ref img {
	border-radius: 50%;
	height: 100px;
	margin-right: 8px;
	vertical-align: middle;
}

#Autor .ref .social-links {
	float: right;
	margin: auto 12px;
}

#Autor .ref .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #0583cf;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#Autor .ref .social-links a:hover {
  background: #044998;
  color: #151515;
  text-decoration: none;
}


/***********
Aviso de privacidad 
***********/

#priv {
	margin-top: 65px;
}

#priv h1 {
	text-align: center;
	font-size: 28px;
	margin: 10px;
	font-weight: bolder;
	color: #044998;
}

#priv p {
	text-align: justify;
	padding: 8px;
	margin: 3px 0;
	font-size: 16px;
}

#priv h5 {
	font-size: 16px;
	font-weight: bolder;
	color: #048ad6;
	margin-top: 22px;
	margin-bottom: 0;
}

#priv .container b {
	color: #0456a4;
}

#priv th {
	text-align: center;
}

#priv td {
	
}


/***********
cookies 
***********/

#Modal-cookies .modal {
	width: 100% !important;
}

#Modal-cookies .cookies {
	margin: 0;
	padding: 0 15px;
	font-size: 14px;
	text-align: center;
}

#Modal-cookies .btn-acep {
	background: #0456a4;
	font-size: 12px;
}

#Modal-cookies .btn-mas {
	font-size: 12px;
	margin: 0 5px;
}

#cookies-g {
	margin-top: 120px;
}

#cookies-g h1 {
	text-align: center;
	font-size: 28px;
	margin: 10px;
	font-weight: bolder;
	color: #044998;
}

#cookies-g p {
	text-align: justify;
	padding: 8px;
	margin: 3px 0;
	font-size: 16px;
}

#cookies-g h3 {
	font-size: 22px;
	font-weight: bolder;
	margin-top: 16px;
	text-align: center;
}

#cookies-g h5 {
	font-size: 16px;
	font-weight: bolder;
	color: #048ad6;
	margin-top: 22px;
	margin-bottom: 0;
}

#cookies-g .container b {
	color: #0456a4;
}


/***********
Sitios de interes 
***********/

#interes {
	margin-top: 120px;
}

#interes h1 {
	text-align: center;
	font-size: 28px;
	margin: 10px;
	font-weight: bolder;
	color: #044998;
}

#interes p {
	text-align: justify;
	padding: 8px;
	margin: 3px 0;
	font-size: 16px;
}

#interes h3 {
	font-size: 22px;
	font-weight: bolder;
	margin-top: 16px;
	text-align: center;
}

#interes h5 {
	font-size: 16px;
	font-weight: bolder;
	color: #048ad6;
	margin-top: 22px;
	margin-bottom: 0;
}

.interes .icon-box {
  text-align: center;
  border: 1px solid #e5f0d5;
  padding: 80px 20px;
  width: 310px;
  height: 380px;
  margin: auto;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.interes .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  /**background: #f3f8ec;**/
  background: #3d708f;
  border-radius: 50px;
  border: 1px solid #d6e8bf;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.interes .icon-box .icon i {
  color: #d9ba85;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.interes .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
  height: 60px;
  color: #048ad6;
}

.interes .icon-box h4 a {
  color: #1e3c70;
  transition: ease-in-out 0.3s;
}

.interes .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;

}

.interes .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.interes .icon-box:hover h4 a, .interes .icon-box:hover .icon i {
  color: #cda45e;
}

.interes .icon-box:hover .icon {
  /**border-color: #8fc04e;**/
  border-color: #cda45e;
}

#interes .btns {
  margin-top: 30px;
}

#interes .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: ;
  border: 2px solid #0456a4;
}

#interes .btn-book:hover {
  background: #0456a4;
  color: #fff;
}

#interes .btn-book {
  margin-left: 15px;
}


/***********
Proyectos general 
***********/

#proyectos {
	margin-top: 120px;
}

#proyectos h1 {
	text-align: center;
	font-size: 28px;
	margin: 10px;
	font-weight: bolder;
	color: #044998;
}

#proyectos p {
	text-align: justify;
	padding: 8px;
	margin: 3px 0;
	font-size: 16px;
}

#proyectos img {
	width: 500px;
	margin-right: 25px;
	margin-bottom: 8px;
}

#proyectos h3 {
	font-size: 22px;
	font-weight: bolder;
	margin-top: 16px;
	text-align: center;
}

#proyectos h5 {
	font-size: 16px;
	font-weight: bolder;
	color: #048ad6;
	margin-top: 22px;
	margin-bottom: 0;
}

#proyectos hr {
	width: 90%;
	background-color: #0456a4;
}

.proyectos .icon-box {
  text-align: center;
  border: 1px solid #e5f0d5;
  padding: 20px;
  width: 310px;
  margin: auto;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.proyectos .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  /**background: #f3f8ec;**/
  background: #3d708f;
  border-radius: 50px;
  border: 1px solid #d6e8bf;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.proyectos .icon-box .icon i {
  color: #d9ba85;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.proyectos .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
  color: #048ad6;
}

.proyectos .icon-box h4 a {
  color: #1e3c70;
  transition: ease-in-out 0.3s;
}

.proyectos .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;

}

.proyectos .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.proyectos .icon-box:hover h4 a, .proyectos .icon-box:hover .icon i {
  color: #cda45e;
}

.proyectos .icon-box:hover .icon {
  /**border-color: #8fc04e;**/
  border-color: #cda45e;
}

#proyectos .btns {
  margin-top: 30px;
}

#proyectos .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: ;
  border: 2px solid #0456a4;
}

#proyectos .btn-book:hover {
  background: #0456a4;
  color: #fff;
}

#proyectos .btn-book {
  margin-left: 15px;
}


/***********
Eventos
***********/

#Eventos {
	margin-top: 120px;
}

#Eventos h1 {
	text-align: center;
	font-size: 28px;
	margin: 25px;
	font-weight: bolder;
	color: #044998;
}

#Eventos p {
	text-align: justify;
	padding: 8px;
	margin: 3px 0;
	font-size: 16px;
}


#Eventos h3 {
	font-size: 22px;
	font-weight: bolder;
	margin-top: 16px;
	text-align: center;
}

#Eventos h5 {
	font-size: 16px;
	font-weight: bolder;
	color: #048ad6;
	margin-top: 22px;
	margin-bottom: 0;
}

#Eventos hr {
	width: 90%;
	background-color: #0456a4;
}

#Eventos .Event-descrip {
	background: rgba(63, 127, 191, 0.5);
	padding: 30px;
}

#Eventos .info h5 {
	color: #fff;
	font-size: 24px;
	text-align: center;
}

#Eventos .info hr {
	color: 1e3c70;
	margin-right: auto;
}

#Eventos .info p {
	font-size: 14px;
	font-weight: 700;
}

#Eventos .info strong {
	font-weight: 900;
	font-size: 18px;
}

#Eventos .btns {
  margin-top: 30px;
  text-align: right;
}

#Eventos .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 10px;
  transition: 0.3s;
  line-height: 1;
  color: #044998;
  border: 2px solid #fff;
}

#Eventos .btn-book:hover {
  background: #0456a4;
  color: #fff;
}

#Eventos .btn-book {
  margin-left: 15px;
}

#Eventos .social-links a {
  display: inline-block;
  background: #044998;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50px;
  text-align: center;
  width: 30px;
  height: 30px;
  transition: 0.3s;
}

#Eventos .social-links a:hover {
  background: rgba(5, 131, 207, 0.6);
  text-decoration: none;
  color: #044998;
}

#Eventos .social-links i:hover {
  color: #044998;
}


#Eventos .social-links i {
  color: #fff;
  text-align: center;
  display: block;
  font-size: 14px;
  line-height: 1;
}


/***********
Eventos Generales
***********/

#Eventos-g {
	margin-top: 180px;
}

#Eventos-g h1 {
	text-align: center;
	font-size: 28px;
	margin: 10px;
	font-weight: bolder;
	color: #044998;
}

#Eventos-g p {
	text-align: justify;
	padding: 8px;
	margin: 3px 0;
	font-size: 16px;
	line-height: 18px;
	word-break: normal;
}

#Eventos-g h3 {
	font-size: 22px;
	font-weight: bolder;
	margin-top: 16px;
	text-align: center;
}

#Eventos-g h5 {
	font-size: 16px;
	font-weight: bolder;
	color: #048ad6;
	margin-top: 22px;
	margin-bottom: 0;
}

.Eventos-g .icon-box {
  text-align: center;
  border: 1px solid #e5f0d5;
  padding: 20px;
  width: 450px;
  margin: auto;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.Eventos-g .icon-box .icon {
  margin: 0 auto;
  /**background: #f3f8ec;**/
  background: #3d708f;
  border: 1px solid #d6e8bf;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: ease-in-out 0.3s;
}

.Eventos-g .icon-box .icon img {
  width: 90%;
}

.Eventos-g .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  color: #048ad6;
}


.Eventos-g .icon-box p {
  line-height: 12px;
  font-size: 14px;
  margin-bottom: 0;

}

.Eventos-g .icon-box strong {
   font-size: 14px;
   font-weight: 600;
}

.Eventos-g .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.Eventos-g .icon-box:hover h4 a, .Eventos-g .icon-box:hover .icon i {
  color: #cda45e;
}

.Eventos-g .icon-box:hover .icon {
  /**border-color: #8fc04e;**/
  border-color: #cda45e;
}

#Eventos-g .btns {
  margin-top: 15px;
  text-align: left;
}

#Eventos-g .btn-book {
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.5px;
  /**text-transform: uppercase;**/
  display: inline-block;
  padding: 8px 4px;
  border-radius: 15px;
  transition: 0.3s;
  line-height: 1;
  color: ;
  border: 1px solid #0456a4;
}

#Eventos-g .btn-book:hover {
  background: #0456a4;
  color: #fff;
}

#Eventos-g .img-port {
	background-image: url(/assets/img/galeria-div/cyber-security-banner-event.jpg);
	height: 140px;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
}

/***********
Videos responsivo
***********/

.vid-pag {
	width: 70%;
	margin: 25px auto;
}

.vid-pag h5 {
	text-align: center;
	margin: 8px 0;
}

.video-responsivo {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.video-responsivo iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}


/***********
Cursos
***********/

#Cursos {
	margin-top: 120px;
}

#Cursos h1 {
	text-align: center;
	font-size: 28px;
	margin: 25px;
	font-weight: bolder;
	color: #044998;
}

#Cursos p {
	text-align: justify;
	padding: 8px;
	margin: 3px 0;
	font-size: 16px;
}

#Cursos strong {
	color: #0456a4;
}

#Cursos b {
	font-size: 16px;
	color: #0456a4;
}

#Cursos ul {
	color: #0456a4;
}

#Cursos ol {
	color: #0456a4;
}


#Cursos h3 {
	font-size: 22px;
	font-weight: bolder;
	margin-top: 16px;
	text-align: center;
}

#Cursos h5 {
	font-size: 18px;
	font-weight: bolder;
	color: #048ad6;
	margin-top: 22px;
	margin-bottom: 15px;
}

#Cursos hr {
	width: 90%;
	background-color: #0456a4;
}

#Cursos .Curso-descrip {
	background: rgba(63, 127, 191, 0.5);
	padding: 30px;
}

#Cursos .Curso-descrip img {
	width: 95%;
	margin: auto;
}

#Cursos .info h5 {
	color: #fff;
	font-size: 24px;
	text-align: center;
}

#Cursos .info p {
	font-size: 14px;
	font-weight: 700;
}

#Cursos .info hr {
	color: 1e3c70;
	margin-right: auto;
}

#Cursos .info strong {
	font-weight: 900;
	font-size: 14px;
}

#Cursos .btns {
  margin-top: 30px;
  margin-bottom: 10px;
  text-align: center;
}

#Cursos .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 10px;
  transition: 0.3s;
  line-height: 1;
  color: #044998;
  border: 2px solid #048ad6;
}

#Cursos .btn-book:hover {
  background: #0456a4;
  color: #fff;
  border: 2px solid #fff;
}

#Cursos .btn-book {
  margin-left: 15px;
}

#Cursos .social-links a {
  display: inline-block;
  background: #044998;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50px;
  text-align: center;
  width: 30px;
  height: 30px;
  transition: 0.3s;
}

#Cursos .social-links a:hover {
  background: rgba(5, 131, 207, 0.6);
  text-decoration: none;
  color: #044998;
}

#Cursos .social-links i:hover {
  color: #044998;
}


#Cursos .social-links i {
  color: #fff;
  text-align: center;
  display: block;
  font-size: 14px;
  line-height: 1;
}

/***********
Cursos Generales
***********/

#Cursos-g {
	margin-top: 180px;
}

#Cursos-g h1 {
	text-align: center;
	font-size: 28px;
	margin: 10px;
	font-weight: bolder;
	color: #044998;
}

#Cursos-g p {
	text-align: justify;
	padding: 8px;
	margin: 3px 0;
	font-size: 16px;
	line-height: 18px;
	word-break: normal;
}

#Cursos-g h3 {
	font-size: 22px;
	font-weight: bolder;
	margin-top: 16px;
	text-align: center;
}

#Cursos-g h5 {
	font-size: 16px;
	font-weight: bolder;
	color: #048ad6;
	margin-top: 22px;
	margin-bottom: 0;
}

.Cursos-g .icon-box {
  text-align: center;
  border: 1px solid #e5f0d5;
  padding: 20px;
  width: 450px;
  margin: auto;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.Cursos-g .icon-box .icon {
  margin: 0 auto;
  /**background: #f3f8ec;**/
  background: #3d708f;
  border: 1px solid #d6e8bf;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: ease-in-out 0.3s;
}

.Cursos-g .icon-box .icon img {
  width: 90%;
}

.Cursos-g .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  color: #048ad6;
}


.Cursos-g .icon-box p {
  line-height: 12px;
  font-size: 14px;
  margin-bottom: 0;

}

.Cursos-g .icon-box strong {
   font-size: 14px;
   font-weight: 600;
}

.Cursos-g .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.Cursos-g .icon-box:hover h4 a, .Cursos-g .icon-box:hover .icon i {
  color: #cda45e;
}

.Cursos-g .icon-box:hover .icon {
  /**border-color: #8fc04e;**/
  border-color: #cda45e;
}

#Cursos-g .btns {
  margin-top: 15px;
  text-align: left;
}

#Cursos-g .btn-book {
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.5px;
  /**text-transform: uppercase;**/
  display: inline-block;
  padding: 8px 4px;
  border-radius: 15px;
  transition: 0.3s;
  line-height: 1;
  color: ;
  border: 1px solid #0456a4;
}

#Cursos-g .btn-book:hover {
  background: #0456a4;
  color: #fff;
}

#Cursos-g .img-port {
	background-image: url(/assets/img/galeria-div/cyber-security-banner-event.jpg);
	height: 140px;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
}


/***********
Biblioteca
***********/


#Biblioteca {
	margin-top: 80px;
}

#Biblioteca .card {
	padding: 15px;
	
}

#Biblioteca .card p {
	text-align: left;
	font-weight: 500;
}

#Biblioteca .card h2 {
	font-size: 16px;
	font-weight: 700;
	font-family: sans-serif;
	text-transform: uppercase;
}

#Biblioteca .card .foto {
	text-align: center;
	margin: auto;
}

/**#Biblioteca .card .foto img {
	border-radius: 25%;
	margin: auto;
	height: 250px;
}**/

#Biblioteca .card .foto-int {
	margin: 25px auto;
	height: 350px;
	width: 250px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

#Biblioteca .ref {
	margin: 50px 0 auto 0;
}

#Biblioteca .btns {
  margin-top: 15px;
}

#Biblioteca .btn-book {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
  transition: 0.3s;
  line-height: 1;
  color: ;
  border: 1px solid #0456a4;
}


#Biblioteca .btn-book:hover {
  background: #0456a4;
  color: #fff;
}

#Biblioteca .nav-tabs {
  border: 0;
}

#Biblioteca .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #433f39;
  border-radius: 0;
  border-right: 2px solid #e8e7e4;
  font-weight: 600;
  font-size: 15px;
}

#Biblioteca .nav-link:hover {
  color: #0583cf;
}

#Biblioteca .nav-link.active {
  color: #048ad6;
  border-color: #048ad6;
}

#Biblioteca .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

#Biblioteca .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #433f39;
}

#Biblioteca .details p {
  color: #777777;
}

#Biblioteca .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  #Biblioteca .nav-link {
    border: 0;
    padding: 15px;
  }
  #Biblioteca .nav-link.active {
    color: #fff;
    background: #048ad6;
  }
}


/***********
Estilos Perfil Personal Socios ***********/


#Perfil-p-s {
	margin-top: 80px;
}

#Perfil-p-s .card {
	padding: 15px;
	
}

#Perfil-p-s .card p {
	text-align: justify;
}

#Perfil-p-s .card .foto {
	text-align: center;
	margin: auto;
}

/**#Directiva .card .foto img {
	border-radius: 25%;
	margin: auto;
	height: 250px;
}**/

#Perfil-p-s .card .foto-int {
	border-radius: 50%;
	margin: 25px auto;
	height: 250px;
	width: 250px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

#Perfil-p-s .foto .social-links {
	margin-top: 15px;
}

#Perfil-p-s .foto .social-links a {
  font-size: 16px;
  display: inline-block;
  background: #0583cf;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 30px;
  height: 30px;
  transition: 0.3s;
}

#Perfil-p-s .foto .social-links a:hover {
  background: #044998;
  color: #151515;
  text-decoration: none;
}

#Perfil-p-s  .tabla-nav {
  
}

#Perfil-p-s  .tabla-nav h5 {
	color: #0583cf;
	font-size: 22px;
	font-family: sans-serif;
	text-align: center;
	margin-bottom: 15px;
	font-weight: 700;
}

#Perfil-p-s .nav-link {
   background-color: #044998;
	color: #fff;
	border-radius: 0px;
	border-color: transparent;
}

#Perfil-p-s .nav-item .active {
	background-color: #fff !important;
	color: #044998 !important;
	font-weight: 700;
}

#Perfil-p-s .tab-pane {
	padding: 35px 8px;
}

#Perfil-p-s .tab-pane p {
  text-align: justify;
  padding: 25px;
}

#Perfil-p-s .tab-pane ul {
  list-style: none;
  padding: 0;
}

#Perfil-p-s .tab-pane ul li {
  padding-bottom: 10px;
}

#Perfil-p-s .tab-pane ul i {
  font-size: 20px;
  padding-right: 2px;
  color: #0563bb;
}

#Perfil-p-s .tab-pane .tab-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #45505b;
}

#Perfil-p-s .tab-pane .tab-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #0563bb;
  position: relative;
}

#Perfil-p-s .tab-pane .tab-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #0563bb;
  margin-bottom: 10px;
}

#Perfil-p-s .tab-pane .tab-item h5 {
  font-size: 16px;
  background: #f7f8f9;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

#Perfil-p-s .tab-pane .tab-item ul {
  padding-left: 20px;
}

#Perfil-p-s .tab-pane .tab-item ul li {
  padding-bottom: 10px;
}

#Perfil-p-s .tab-pane .tab-item:last-child {
  padding-bottom: 0;
}

#Perfil-p-s .tab-pane .tab-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 14px;
  border-radius: 0px;
  left: -3px;
  top: 0;
  background: #fff;
  border-top: 6px solid transparent;
   border-left: 12px solid #0563bb;
   border-bottom: 6px solid transparent;
}


#Perfil-p-s .Vid-conf h5 {
	color: #0583cf;
	font-size: 22px;
	font-family: sans-serif;
	text-align: center;
	font-weight: 700;
}

#Perfil-p-s .Vid-conf .icon-box {
  text-align: center;
  width: 100%;
  padding: 0 20px 40px 0;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}

#Perfil-p-s .Vid-conf .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
  background: #f5f5f5;
  border-radius: 50px;
}

#Perfil-p-s .Vid-conf .icon-box .icon i {
  font-size: 32px;
  transition: 0.5s;
  line-height: 1;
  position: relative;
}

#Perfil-p-s .Vid-conf .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 18px;
}

#Perfil-p-s .Vid-conf .icon-box h4 a {
  color: #0583cf;
  transition: ease-in-out 0.3s;
}

#Perfil-p-s .Vid-conf .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  padding: 15px 8px;
}

#Perfil-p-s .Vid-conf .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}



#Perfil-p-s .vid-pag {
	width: 100%;
	margin: 15px auto;
}


#Perfil-p-s .video-responsivo {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

#Perfil-p-s .video-responsivo iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

#Perfil-p-s .galeria {
	background: #00B4DB;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #0083B0, #00B4DB);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #0083B0, #00B4DB); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

	padding: 25px 0;
}

#Perfil-p-s .galeria h5 {
	color: #fff;
	font-size: 22px;
	font-family: sans-serif;
	text-align: center;
 	font-weight: 700;
}

#Perfil-p-s .galeria .carousel-item {
	height: 450px;
	text-align: center;
}

#Perfil-p-s .galeria .carousel-item img {
	margin: 2px auto;
}

#Perfil-p-s .galeria .carousel-control-next-icon {
	color: dodgerblue;
}


/***********
# Videoteca
***********/

#Videoteca {
	margin-top: 80px;
}

#Videoteca .owl-carousel {
	overflow: auto;
	
}

#Videoteca .item-video {
	height: 350px;
	
}

#Videoteca h1 {
	text-align: center;
	font-size: 28px;
	margin: 10px;
	font-weight: bolder;
	color: #044998;
}


#Videoteca h3 {
	font-size: 22px;
	font-weight: bolder;
	margin-top: 16px;
	text-align: center;
}

#Videoteca h5 {
	font-size: 16px;
	font-weight: bolder;
	color: #048ad6;
	margin-top: 22px;
	margin-bottom: 0;
}

#Videoteca .Videoteca-gen h5 {
	color: #0583cf;
	font-size: 22px;
	font-family: sans-serif;
	text-align: center;
	font-weight: 700;
}

#Videoteca .Videoteca-gen .icon-box {
  text-align: center;
  width: 100%;
  padding: 0 20px 40px 0;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}

#Videoteca .Videoteca-gen .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
  background: #f5f5f5;
  border-radius: 50px;
}

#Videoteca .Videoteca-gen .icon-box .icon i {
  font-size: 32px;
  transition: 0.5s;
  line-height: 1;
  position: relative;
}

#Videoteca .Videoteca-gen .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 18px;
}

#Videoteca .Videoteca-gen .icon-box h4 a {
  color: #0583cf;
  transition: ease-in-out 0.3s;
}

#Videoteca .Videoteca-gen .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  padding: 15px 8px;
}

#Videoteca .Videoteca-gen .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}



#Videoteca .videoteca-gen{
	width: 100%;
	margin: 15px auto;
}


#Videoteca .videoteca-gensponsivo {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

#Videoteca .videoteca-gensponsivo iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}


/***********
Estilos Programas Articulos 
***********/

#Programa {
	margin-top: 75px;
}

#Programa h1 {
	text-align: center;
	font-size: 28px;
	margin: 10px;
	font-weight: bolder;
	color: #044998;
}

#Programa p {
	text-align: justify;
	padding: 8px 18px;
	margin: 3px 0;
	font-size: 16px;
}

#Programa h3 {
	font-size: 22px;
	font-weight: bolder;
	margin-top: 16px;
	text-align: center;
}

#Programa h5 {
	font-size: 16px;
	font-weight: bolder;
	color: #048ad6;
	margin-top: 22px;
	margin-bottom: 0;
}

#Programa ul {
	color: #0456a4;
}

#Programa ol {
	color: #0456a4;
}

#Programa .Art-img {
	width: 100%;
	text-align: center;
}

#Programa .Art-img img {
	height: 400px;
}


/***********
Estilos Galeria img 
***********/

#Galeria-img h1 {
	text-align: center;
	font-size: 28px;
	margin: 10px;
	font-weight: bolder;
	color: #044998;
}


#Galeria-img h3 {
	font-size: 22px;
	font-weight: bolder;
	margin-top: 16px;
	text-align: center;
}

#Galeria-img h5 {
	font-size: 16px;
	font-weight: bolder;
	color: #048ad6;
	margin-top: 22px;
	margin-bottom: 0;
}

.Galeria-img .Galeria-img-item {
  margin-bottom: 30px;
}

.Galeria-img #Galeria-img-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 2px 15px;
}

.Galeria-img #Galeria-img-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #272829;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.Galeria-img #Galeria-img-flters li:hover, .Galeria-img #Galeria-img-flters li.filter-active {
  color: #0563bb;
}

.Galeria-img #Galeria-img-flters li:last-child {
  margin-right: 0;
}

.Galeria-img .Galeria-img-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(69, 80, 91, 0.8);
}

.Galeria-img .Galeria-img-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.Galeria-img .Galeria-img-wrap .Galeria-img-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.Galeria-img .Galeria-img-wrap .Galeria-img-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #044998;
  border-left: 3px solid #044998;
  border-radius: 5px;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.Galeria-img .Galeria-img-wrap .Galeria-img-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #044998;
  border-right: 3px solid #044998;
  border-radius: 5px;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.Galeria-img .Galeria-img-wrap .Galeria-img-info h4 {
  font-size: 20px;
  color: #45505b;
  font-weight: 600;
}

.Galeria-img .Galeria-img-wrap .Galeria-img-info p {
  color: #45505b;
  font-size: 14px;
  padding: 0;
  margin: 0;
}

.Galeria-img .Galeria-img-wrap .Galeria-img-links {
  text-align: center;
  z-index: 4;
}

.Galeria-img .Galeria-img-wrap .Galeria-img-links a {
  color: #45505b;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.Galeria-img .Galeria-img-wrap .Galeria-img-links a:hover {
  color: #148af9;
}

.Galeria-img .Galeria-img-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.Galeria-img .Galeria-img-wrap:hover .Galeria-img-info {
  opacity: 1;
}

.Galeria-img .Galeria-img-wrap:hover .Galeria-img-info::before {
  top: 15px;
  left: 15px;
}

.Galeria-img .Galeria-img-wrap:hover .Galeria-img-info::after {
  bottom: 15px;
  right: 15px;
}


/** Blockchain **/

#Programa .Block-img {
  position: relative;
  transition: .5s;
  margin: 20px 0;

}

#Programa .Block-img img {
  max-width: 100%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

#Programa .Block-img::before {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  z-index: 1;
  border-radius: 5px;
  content: '';
  border-left: 2px solid #044998;
  border-top: 2px solid #044998;
  transition: .5s;
}

#Programa .Block-img::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 2;
  border-radius: 5px;
  content: '';
  border-right: 2px solid #044998;
  border-bottom: 2px solid #044998;
  transition: .5s;
}

#Programa .Block-img:hover {
  transform: scale(1.03);
}

#Programa .Block-img:hover::before {
  left: 10px;
  top: 10px;
}

#Programa .Block-img:hover::after {
  right: 10px;
  bottom: 10px;
}

#Programa .Bkchain h3 {
  font-weight: 600;
  font-size: 18px;
  text-align: justify;
  font-family: sans-serif;
}

#Programa .Bkchain ul {
  list-style: none;
  padding: 0;
}

#Programa .Bkchain ul li {
  padding-bottom: 10px;
}

#Programa .Bkchain ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #044998;
}

#Programa .Bkchain p:last-child {
  margin-bottom: 0;
}

/** Block integrantes **/


#Programa .title h2{
  margin-top: 18px;
  font-size: 24px;
  font-family: sans-serif;
  font-weight: 600;
  text-align: center;
}

#Programa .title p{
  text-align: center;
  font-size: 14px;
}

#Programa .Int-side {
  background: #E0EAFC;
  background: -webkit-linear-gradient(to right, #CFDEF3, #E0EAFC);
  background: linear-gradient(to right, #CFDEF3, #E0EAFC);
}

#Programa .Block-Int {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}

#Programa .Block-Int .foto {
  text-align: center;
  margin: auto;
}

#Programa .Block-Int .foto-int {
  border-radius: 50%;
  margin: 25px auto;
  height: 150px;
  width: 150px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#Programa .Block-Int h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #36343a;
}
#Programa .Block-Int span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}
#Programa .Block-Int span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #b5b3ba;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#Programa .Block-Int p {
  margin: 10px 0 0 0;
  font-size: 14px;
}
#Programa .Block-Int .redes-s {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#Programa .Block-Int .redes-s a {
  font-size: 18px;
  display: inline-block;
  background: #0583cf;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#Programa .Block-Int .redes-s a i {
  color: #fff;
  font-size: 18px;
  margin: 0 2px;
}

#Programa .Block-Int .redes-s a:hover {
  background: #044998;
  color: #151515;
  text-decoration: none;
}


/** Block info **/


#Programa .mas-info {
  margin-top: 35px;
}

#Programa .Info-prog {
  padding: 10px;
  background: #E0EAFC;
  background: -webkit-linear-gradient(to right, #CFDEF3, #E0EAFC);
  background: linear-gradient(to right, #CFDEF3, #E0EAFC);
  border-radius: 4px;
}
#Programa .Info-prog h3 {
  font-weight: 600;
  font-size: 26px;
  font-family: sans-serif;
  margin-bottom: 30px;
  
}
#Programa .Info-prog p {
  margin-bottom: 30px;
  text-align: justify;
}

#Programa .info-plus .card-info {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
  transition: 0.3s;
}

#Programa .info-plus .card-info h4 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}
#Programa .info-plus .card-info p {
  font-size: 15px;
  color: #848484;
}
#Programa .info-plus .card-info:hover {
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15);
}




/***********
Blogs - publicar
***********/


#Blogs-pub {
	margin-top: 80px;
}

#Blogs-pub .card {
	padding: 15px;
	
}

#Blogs-pub .card p {
	text-align: left;
	font-weight: 500;
}

#Blogs-pub .card h2 {
	font-size: 16px;
	font-weight: 700;
	font-family: sans-serif;
	text-transform: uppercase;
}

#Blogs-pub .card .foto {
	text-align: center;
	margin: auto;
}

/**#Biblioteca .card .foto img {
	border-radius: 25%;
	margin: auto;
	height: 250px;
}**/

#Blogs-pub .card .foto-int {
	margin: 25px auto;
	height: 250px;
	width: 250px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

#Blogs-pub .ref {
	margin: 50px 0 auto 0;
}

#Blogs-pub .btns {
  margin-top: 15px;
}

#Blogs-pub .btn-book {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
  transition: 0.3s;
  line-height: 1;
  color: ;
  border: 1px solid #0456a4;
}


#Blogs-pub .btn-book:hover {
  background: #0456a4;
  color: #fff;
}


/** Curso registro **/

:root {
	--primario: #013E6A;
	--secundario: #000;
}



.Reg .contenedor {
	width: 90%;
	max-width: 800px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
	background: #fff;
	min-height: 60vh;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.Reg .columna-izquierda {
	padding: 40px;
}

.Reg .columna-derecha {
	background-image: url('../img/bg-img/bg-port-3.jpg');
	background-size: cover;
	background-position-x: right;
}


.Reg label {
	margin-bottom: 10px;
	display: block;
	font-weight: 500;
	color: var(--secundario);
	font-size: 14px;
}

.Reg .contenedor-input {
	position: relative;
}

.Reg .registro {
	display: none;
}

.Reg .registro.activo {
	display: block;
}

.Reg .exito {
	display: none;
	height: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.Reg .exito.activo {
	display: flex;
}

.Reg .exito svg {
	width: 50px;
	height: 50px;
	color: var(--primario);
}


.Reg input {
	height: 50px;
	line-height: 50px;
	font-size: 16px;
	width: 100%;
	border: none;
	border-radius: 5px;
	padding: 0 20px 0 45px;
	margin-bottom: 20px;
	background: #f4f8f7;
	color: var(--primario);
	font-family: 'Quicksand', sans-serif;
	border: 2px solid transparent;
	transition: .3s ease all;
}

.Reg input:focus {
	outline: none;
	border: 2px solid var(--primario);
}

.Reg .contenedor-input svg {
	position: absolute;
	color: var(--primario);
	top: 17px;
	left: 17px;
} 

.Reg .contenedor-boton {
	display: flex;
	justify-content: center;
}

.Reg .contenedor-boton button {
	font-family: 'Quicksand', sans-serif;
	font-size: 16px;
	border-radius: 5px;
	margin-top: 20px;
	background: none;
	height: 50px;
	color: var(--primario);
	padding: 0 50px;
	display: flex;
	align-items: center;
	justify-content: end;
	border: 2px solid var(--primario);
	cursor: pointer;
	transition: .3s ease all;
	outline: none;
}

.Reg .contenedor-boton button:hover {
	background: var(--primario);
	color: #fff;
}


.Reg .contenedor-boton button svg {
	margin-left: 10px;
	width: 20px;
	height: 20px;
}

.Reg .btns {
  margin-top: 30px;
}

.Reg .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: ;
  border: 2px solid #0456a4;
}

.Reg .btn-book:hover {
  background: #0456a4;
  color: #fff;
}

.Reg .exito h1{
	text-align: center;
	font-size: 28px;
}

.Reg .exito p{
	text-align: center;
	font-size: 22px;
}


/***********
Noticias post prin
***********/

.Noticias-post .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.Noticias-post .post-box .post-img {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.Noticias-post .post-box .post-img img {
  transition: 0.5s;
}
.Noticias-post .post-box .meta {
  margin-top: 15px;
}
.Noticias-post .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: #0456a4;
}
.Noticias-post .post-box .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: #0456a4;
}
.Noticias-post .post-box .post-title {
  font-size: 24px;
  color: 2e2e2e2e;
  font-weight: 700;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
}
.Noticias-post .post-box p {
  margin: 15px 0 0 0;
  color: #2e2e2e;
}
.Noticias-post .post-box .leer {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
}
.Noticias-post .post-box .leer i {
  line-height: 1;
  margin-left: 4px;
  font-size: 18px;
}
.Noticias-post .post-box:hover .post-title {
  color: #0456a4;
}
.Noticias-post .post-box:hover .post-img img {
  transform: scale(1.1);
}

/***********
Noticias pub
***********/
#Noticias {
  margin-top: 75px;
}
.Noticias .Noticias-Gen {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
}
.Noticias .Noticias-Gen .post-img {
  overflow: hidden;
}
.Noticias .Noticias-Gen .titulo {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-secondary);
}
.Noticias .Noticias-Gen .content {
  margin-top: 20px;
}
.Noticias .Noticias-Gen .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}
.Noticias .Noticias-Gen .content blockquote {
  overflow: hidden;
  background-color: rgba(var(--color-secondary-rgb), 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}
.Noticias .Noticias-Gen .content blockquote p {
  color: #1a1f24;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}
.Noticias .Noticias-Gen .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #485664;
  margin-top: 20px;
  margin-bottom: 20px;
}
.Noticias .Noticias-Gen .meta-top {
  margin-top: 20px;
  color: #6c757d;
}
.Noticias .Noticias-Gen .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}
.Noticias .Noticias-Gen .meta-top ul li + li {
  padding-left: 20px;
}
.Noticias .Noticias-Gen .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(108, 117, 125 , 0.8);
}
.Noticias .Noticias-Gen .meta-top a {
  color: var(--color-gray);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}
.Noticias .Noticias-Gen .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(72, 86, 100 , 0.15);
}
.Noticias .Noticias-Gen .meta-bottom i {
  color: var(--color-secondary-light);
  display: inline;
}
.Noticias .Noticias-Gen .meta-bottom a {
  color: rgba(108, 117, 125 , 0.8);
  transition: 0.3s;
}
.Noticias .Noticias-Gen .meta-bottom a:hover {
  color: var(--color-primary);
}
.Noticias .Noticias-Gen .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}
.Noticias .Noticias-Gen .meta-bottom .cats li {
  display: inline-block;
}
.Noticias .Noticias-Gen .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}
.Noticias .Noticias-Gen .meta-bottom .tags li {
  display: inline-block;
}
.Noticias .Noticias-Gen .meta-bottom .tags li + li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}
.Noticias .social-links a {
  display: inline-block;
  background: #044998;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50px;
  text-align: center;
  width: 30px;
  height: 30px;
  transition: 0.3s;
}
.Noticias .social-links a:hover {
  background: rgba(5, 131, 207, 0.6);
  text-decoration: none;
  color: #044998;
}
.Noticias .social-links i:hover {
  color: #044998;
}

.Noticias .social-links i {
  color: #fff;
  text-align: center;
  display: block;
  font-size: 14px;
  line-height: 1;
}

/***********
Noticias slidebar
***********/
.Noticias .sidebar {
  margin-top: 10px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.Noticias .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: #485664;
}
.Noticias .sidebar .sidebar-item + .sidebar-item {
  margin-top: 40px;
}
.Noticias .sidebar .search-form form {
  background: var(--color-white);
  border: 1px solid rgba(72, 86, 100, 0.3);
  padding: 3px 10px;
  position: relative;
}
.Noticias .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}
.Noticias .sidebar .search-form form input[type=text]:focus {
  outline: none;
}
.Noticias .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--color-primary);
  color: var(--color-white);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}
.Noticias .sidebar .search-form form button i {
  line-height: 0;
}
.Noticias .sidebar .search-form form button:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}
.Noticias .sidebar .categories ul {
  list-style: none;
  padding: 0;
}
.Noticias .sidebar .categories ul li + li {
  padding-top: 10px;
}
.Noticias .sidebar .categories ul a {
  color: var(--color-secondary);
  transition: 0.3s;
}
.Noticias .sidebar .categories ul a:hover {
  color: var(--color-default);
}
.Noticias .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(var(--color-default-rgb), 0.4);
  font-size: 14px;
}
.Noticias .sidebar .recent-posts .post-item {
  display: flex;
}
.Noticias .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}
.Noticias .sidebar .recent-posts img {
  width: 80px;
  margin-right: 15px;
}
.Noticias .sidebar .recent-posts h4 {
  font-size: 18px;
  font-weight: 400;
}
.Noticias .sidebar .recent-posts h4 a {
  color: var(--color-secondary);
  transition: 0.3s;
}
.Noticias .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}
.Noticias .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(var(--color-default-rgb), 0.4);
}
.Noticias .sidebar .tags {
  margin-bottom: -10px;
}
.Noticias .sidebar .tags ul {
  list-style: none;
  padding: 0;
}
.Noticias .sidebar .tags ul li {
  display: inline-block;
}
.Noticias .sidebar .tags ul a {
  color: var(--color-secondary-light);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(var(--color-secondary-light-rgb), 0.8);
  display: inline-block;
  transition: 0.3s;
}
.Noticias .sidebar .tags ul a:hover {
  color: var(--color-white);
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}
.Noticias .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(var(--color-secondary-light-rgb), 0.8);
  font-size: 14px;
}

/***********
Encuentro 2022
***********/
#Encuentro22 {
	margin-top: 75px;
}
#Encuentro22 {
	margin-top: 75px;
}
.Encuentro22 {
  overflow: hidden;
}
.Encuentro22 .nav-tabs {
  border: 0;
}
.Encuentro22 .section-title p {
	width: 90%;
	margin-bottom: 15px;
}
.Encuentro22 .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #433f39;
  border-radius: 0;
  border-right: 2px solid #e8e7e4;
  font-weight: 600;
  font-size: 15px;
}
.Encuentro22 .nav-link:hover {
  color: #0583cf;
}
.Encuentro22 .nav-link.active {
  color: #048ad6;
  border-color: #048ad6;
}
.Encuentro22 .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}
.Encuentro22 .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #433f39;
  text-align: center;
}
.Encuentro22 .details p {
  color: #777777;
}
.Encuentro22 .details p:last-child {
  margin-bottom: 0;
}
.Encuentro22 .details ol {
  font-size: 14px;
}
@media (max-width: 992px) {
  .Encuentro22 .nav-link {
    border: 0;
    padding: 15px;
  }
  .Encuentro22 .nav-link.active {
    color: #fff;
    background: #048ad6;
  }
}
.Encuentro22 .details .btn-nav-m a {
  background: #515A5A ;
  color: #fff;
  border-radius: 5px;
  margin: 25px auto;
  padding: 10px 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
}
.Encuentro22 .details .btn-nav-m i {
  color: #fff !important;
  vertical-align: middle;
  margin-right: 5px;
}
.Encuentro22 .details .btn-nav-m a:hover {
  background: #5bb6e0;
  color: #fff;
}
.Encuentro22 .details .social-links a {
  display: inline-block;
  background: #044998;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50px;
  text-align: center;
  width: 30px;
  height: 30px;
  transition: 0.3s;
}
.Encuentro22 .details .social-links a:hover {
  background: rgba(5, 131, 207, 0.6);
  text-decoration: none;
  color: #044998;
}
.Encuentro22 .details .social-links i:hover {
  color: #044998;
}
.Encuentro22 .details .social-links i {
  color: #fff;
  text-align: center;
  display: block;
  font-size: 14px;
  line-height: 1;
}
.Encuentro22 .Prog .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #433f39;
  border-radius: 0;
  border-bottom: 2px solid #e8e7e4;
  font-weight: 600;
  font-size: 15px;
  background-color: #fff;
  margin: 10px 5px;
}
.Encuentro22 .Prog .nav-link:hover {
  color: #0583cf;
}
.Encuentro22 .Prog .nav-link.active {
  color: #048ad6;
  border-color: #048ad6;
}
.Encuentro22 .Prog .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.Encuentro22 .Prog .thead {
  background-color: #044998;
  color: #fff;
  text-align: center;
}

.Encuentro22 .card {
	padding: 20px;
    border: none;
}

.Encuentro22 .card p {
	text-align: justify;
}

.Encuentro22 .card .foto {
	text-align: center;
	margin: auto;
}

.Encuentro22 .card .foto-int {
	border-radius: 50%;
	margin: 25px auto;
	height: 250px;
	width: 250px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.Encuentro22 .ref .social-links {
	margin-left: 15px;
}

.Encuentro22 .ref .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #0583cf;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.Encuentro22 .ref .social-links a:hover {
  background: #044998;
  color: #151515;
  text-decoration: none;
}
