<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */
body{
	margin: 0px;
	padding: 0px;
	background: #243549;
	font-family: 'Raleway';
}

blockquote{
	color: #a59b62;
	font-size: 25px;
	padding: 0;
}
a:hover,a:focus, a:active{
	text-decoration: none;
}

.site-header{
	position: relative;
	z-index: 999;
	display: flex;
}

header#header {
    position: relative;
}

header#header:after {
    content: '';
    position: absolute;
    height: 50px;
    bottom: 0;
    right: 0;
    width: 50%;
    background: #fff;
    z-index: 1;
}



.header-logo a{
	display: flex;
	align-items: center;
	padding:15px 0;
	text-transform: uppercase;
	color: #ffffff;
	font-family: 'Ubuntu';
	font-size: 12.5;
}

.header-logo figure img{
	width: 80px;
}

.header-right .social-icons{
	font-size: 25px;
	text-align: right;
	padding: 15px 0;
}

.header-right .social-icons a{
	color: #fff;
	display: inline-block;
	padding: 5px;
}


.navbar{
	margin-bottom: 0;
	border:0;
}



.navbar-brand img{
	width: 45px;
}

.main-menu .navbar-nav{
	background:#efefef;
	width: auto;
	z-index: 999;
}
.main-menu .navbar-nav:before{
	content: '';
	width: 170px;
	height: 50px;
	left: 0;
	display: none;
	position: absolute;
	background-image: url('../../images/menu-curva.svg');
}

.main-menu a{
	font-family: 'Ubuntu';
	font-size: 14px;
	color: #777;
}
.main-menu .nav&gt;li&gt;a:focus, .main-menu .nav&gt;li&gt;a:hover {
    background-color: transparent;
    color:  #a59b62;
}
.main-menu .dropdown-menu{
	border-top:0;
	padding: 0;
	border-radius: 0;
}

.main-menu .nav .open&gt;a, .main-menu .nav .open&gt;a:focus, .main-menu .nav .open&gt;a:hover {
    background-color: transparent;
}
.main-menu .navbar-brand{
	display: none;
}

figure.img-not-found {
    width: 25%;
    margin: 0 auto;
}
.not-found h3 {
    font-size: 25px;
    font-family: 'Raleway';
    text-transform: uppercase;
    color: #a59b62;
    margin-top: 50px;
}
.not-found p {
    text-align: center;
    font-size: 19px;
    font-family: 'Raleway';
}
.not-found .logo-uabjo {
    padding-top: 50px;
}
.container.logo-uabjo .caption {
    display: flex;
    max-height: 100px;
    width: 35%;
    margin: 0 auto;
    align-items: center;
    color: #fff;
}

.not-found .logo-uabjo figure img{
	max-height:100px;
}

.bg-gray{
	background-color: #f5f5f5;
}
.bg-gold{
	background-color: #a59b62;
}
.bg-blue{
	background-color: #243549;
}
.bg-white{
	background-color: #fff;
}
.site-row-container{
	margin: 0;
	padding: 0;
}
.site-row-container:after{
	content: '';
	display: block;
	position: absolute;
	height: 14px;
	width: 100px;
	left: Calc(50% - 50px);
	margin: -7px auto 0 auto;
	background: #a59b62;
	z-index:99;
}

.site-row-container.wot:after{
	display: none;
}

.site-row-container.white:after{
	background: #ffffff;
}

.site-row-container-inner{
	padding: 80px 0;
}


img.bg-hide {
    width: 0;
    height: 0;
}


/**** accordion *****/

.accordion-container{
	height: 330px;
}
.accordion-container:hover .accordion-item{
	height: 25%;
}
.accordion-item{
	height: 33.3333%;
	position: relative;
	overflow: hidden;
	background: no-repeat;
	background-position: center center;
	background-size: cover;
	-webkit-transition: height 0.7s;
	-moz-transition: height 0.7s;
	transition: height 0.7s;
	border-top: .5px solid white;
}
.accordion-item:hover:before{
	content:'';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	/*background: -moz-linear-gradient(left, rgba(165,155,98,1) 0%, rgba(255,255,255,0) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(165,155,98,1)), color-stop(100%, rgba(255,255,255,0)));
	background: -webkit-linear-gradient(left, rgba(165,155,98,1) 0%, rgba(255,255,255,0) 100%);
	background: -o-linear-gradient(left, rgba(165,155,98,1) 0%, rgba(255,255,255,0) 100%);
	background: -ms-linear-gradient(left, rgba(165,155,98,1) 0%, rgba(255,255,255,0) 100%);
	background: linear-gradient(to right, rgba(165,155,98,1) 0%, rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a59b62', endColorstr='#ffffff', GradientType=1 );*/
	background: -moz-linear-gradient(left, rgba(165,155,98,1) 1%, rgba(165,155,98,1) 16%, rgba(165,155,98,0.9) 51%, rgba(165,155,98,0.3) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(165,155,98,1) 1%,rgba(165,155,98,1) 16%,rgba(165,155,98,0.9) 51%,rgba(165,155,98,0.3) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(165,155,98,1) 1%,rgba(165,155,98,1) 16%,rgba(165,155,98,0.9) 51%,rgba(165,155,98,0.3) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a59b62', endColorstr='#4da59b62',GradientType=1 );
}

.accordion-item:before{
	content:'';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	/*background: -moz-linear-gradient(left, rgba(46,53,58,1) 0%, rgba(255,255,255,0) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(46,53,58,1)), color-stop(100%, rgba(255,255,255,0)));
	background: -webkit-linear-gradient(left, rgba(46,53,58,1) 0%, rgba(255,255,255,0) 100%);
	background: -o-linear-gradient(left, rgba(46,53,58,1) 0%, rgba(255,255,255,0) 100%);
	background: -ms-linear-gradient(left, rgba(46,53,58,1) 0%, rgba(255,255,255,0) 100%);
	background: linear-gradient(to right, rgba(46,53,58,1) 0%, rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e353a', endColorstr='#ffffff', GradientType=1 );*/
	background: -moz-linear-gradient(left, rgba(73,83,90,1) 1%, rgba(73,83,90,1) 16%, rgba(73,83,90,0.9) 51%, rgba(73,83,90,0.3) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(73,83,90,1) 1%,rgba(73,83,90,1) 16%,rgba(73,83,90,0.9) 51%,rgba(73,83,90,0.3) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(73,83,90,1) 1%,rgba(73,83,90,1) 16%,rgba(73,83,90,0.9) 51%,rgba(73,83,90,0.3) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#49535a', endColorstr='#4d49535a',GradientType=1 );
}


.accordion-item a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.accordion-item .caption{
	text-transform: uppercase;
	padding-left: 30px;
	font-size: 16px;

}

.accordion-item .caption h4,
.accordion-item .caption h5{
	width: 100%;
	color: #ffffff;
	margin: 5px 0;
}

.accordion-item .caption h4{
	color: #a59b62;
	font-weight: 600;
}
.accordion-item:hover .caption h4{
	color: #2e353a;
}




.accordion-item.bg-nms{
	background-image: url('../../images/bnn_media.jpg');
}
.accordion-item.bg-ns{
	background-image: url('../../images/bnn_superior.jpg');
}
.accordion-item.bg-admision{
	background-image: url('../../images/bnn_admision.jpg');
}


.accordion-container:hover .accordion-item:hover{
	height: 50%;
}


/***** end accordion ****/
.bg-half{
	position: relative;
	height: 258px;
}
.bg-half .caption {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 55%;
    padding: 25px 15px 25px 25px;
    z-index: 9;
    color: #ffffff;
}
.bg-rectoria-home{
	background-image: url('../../images/rector.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 35%;
}
.bg-half:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 55%;
	height: 100%;
	background: rgba(165, 155, 98,.77);
}

.bg-half:after{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	width: Calc(100% - 30px);
	height: Calc(100% - 30px);
	margin: 15px;
	border: 1px solid #ffffff;
}


/***** slide carreras  ****/

.carousel-carreras{
	max-height: 750px;
	overflow: hidden;
}
.carousel-carreras .item{
	height: 100%;
}
.carrera-item{
	position: relative;
	height: 750px;
	background-attachment: fixed;
	background-repeat: no-repeat;
    background-size: cover;

}
.carrera-item figure{
	max-height: 750px;

}
.carrera-item .caption{
	position: absolute;
	width: 42%;
	height: 100%;
	top: 0;
	bottom: 0;
	background-color: rgba(12,34,56,.77);
	color: #fff;
	display: flex;
	align-items: center;

}
.carrera-item .caption .info-carrera{
	padding: 0 77px;
	margin: 0 auto;
}
.carrera-item .caption a{
	color: #fff;
}

.title-carrera{
	font-size: 36px;
	text-align: center;
	margin-bottom: 50px;
}

.detalle-carrera{
	border: 1px solid #fff;
	padding: 50px 30px;
	position: relative;
	font-size: 18px;
}

.detalle-carrera:before{
	content: '';
	display: block;
	position: absolute;
	height: 30px;
	width: 100px;
	top: 0;
	left: Calc(50% - 50px);
	margin: -15px auto 0 auto;
	background: #a59b62;
}

.carrera-item .caption img.img-top-slide {
    width: 50%;
    margin: 0 auto;
}


/***  sitios */
.sitios-grid{
    width: 100%;
    float: left;
}

.sitios-grid .item{
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    float: left;
    height: 0;
}

.sitios-grid .cell-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

.icono-sitio{   
    width: 75%;
    height: 75%;
    margin: 0 auto;
    border: 1px solid #ffffff;
    border-radius: 10px;
}

.icono-sitio a{
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-transform: uppercase;
}

.icono-sitio a img{
    max-width: 55%;
    max-height: 55%; 
    padding-top: 20px;
}

.icono-sitio a .caption{
    height: 60px;
    width: 98%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
}


.gold{
	color: #a59b62;
}
.white{
	color:#ffffff;
}

/* Botones */
.btn-gold {
	color: #a59b62;
	border-color: #a59b62;
}

.btn-gold:focus,
.btn-gold.focus {
	color: white;
	background-color: #a59b62;
	border-color: #a59b62;
}

.btn-gold:hover {
	color: white;
	background-color: #a59b62;
	border-color: #a59b62;
}

.espacio-btn-gold{
	padding: 35px 0 10px 0;
}

.btn-white {
	color: white;
	border-color: white;
}

.btn-white:focus,
.btn-white.focus {
	color: white;
	background-color: #a59b62;
	border-color: white;
}

.btn-white:hover {
	color: white;
	background-color: #a59b62;
	border-color: white;
}

.btn-more{
	margin-top: 70px;
}
a.more-details {
    width: 100%;
    background: #123456;
    display: block;
    text-align: center;
    padding: 10px 0;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    margin: 15px 0;
}
a.more-details:hover {
    color: #fff!important;
}

.title-section{
	margin-bottom: 45px;
	text-align: center;
}



.bg-search {
    background-color: #c8d5e2;
    padding: 30px;
    width: 70%;
    margin: 0 auto 15px auto;
}

.input-search-custom {
    width: 100%;
    margin: auto;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #a6b6c5;
}

.logo-algolia{
	margin: 15px;
	text-align: right;
}


/* niveles */

.niveles-uabjo{
	background: white;
}

.caja-sistemas{
	border: 1px solid #a59b62;
	padding: 15px;
	height: 165px;
}

.caja-sistemas h3,h4,h5{
	color: #a59b62;
}

.half-landscape {
    width: 100%;
    height: 165px;
}

.padding15{
	padding: 15px;
}

.pid-container {
    display: flex;
    align-items: center;
    height: 135px;
    border: 1px solid #a59b52;
}
.pid-container figure {
    width: Calc(50% - 15px);
    padding-left: 15px;
}
.pid-container figure img{
	width: 100%;
}
.pid-container h4{
	width: 50%;
	font-family: 'Raleway', sans-serif;
	font-weight: bold;
	font-size: 17px;
	color: #a59b62;
	line-height: 1.5;
	padding-left: 15px;
}
.pid-container h4 span{
	font-size: 18px;
	color: #243549;
}
.pid-container:hover {
    background-color: #f5f5f5;
}


.buzon-container {
    position: fixed;
    bottom: 0;
    right: 25px;
    z-index: 9999;
}
.buzon{
	width: 250px;
}

.buzon h5 {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #243549;
    margin: 0;
    padding: 15px;
    text-align: center;
    border-radius: 7px 7px 0 0;
    cursor: pointer;
    border-top: 1px solid #f5f5f5;
    border-left: 1px solid #f5f5f5;
    border-right: 1px solid #f5f5f5;
}
.buzon #buzon-form-fx.open-form{
	opacity: 1;
	transform: translateY(0);
	transition: all .7s;
}
.buzon #buzon-form-fx {
    position: absolute;
    bottom: 50px;
    width: 100%;
    background-color: #ffffff;
    border: 2px solid #243549;
    border-radius: 15px;
    padding: 15px;
    opacity: 0;
    transition: all .7s;
    transform: translateY(501px);
}
.buzon #buzon-form-fx label{
	font-weight: 400;
	font-size: 14px;
}

.form-container {
    width: 60%;
    margin: 0 auto;
}



/* acontecer */
/*.acontecer-uabjo h3,h4,h5{
	color: #a59b62;
}*/

.news-container {
    padding: 0 10px;
}
.news-container .news{
	position: relative;
}

.news-container .item{
	margin: 5px;
	overflow: hidden;
}

.news-container .item img{
	display: block;
	width: auto;
	height: 100%;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.news-container .news-item {
    width: 100%;
    position: relative;
    height: 240px;
}

.category-container-header .post-category:hover img,
.category-container-previous .post-category:hover img,
.news-container .news-item:hover img{
	-webkit-animation-name: pulse;
  	animation-name: pulse;
}
.news-container .news-date{
	position: absolute;
	width: 50px;
	background: rgba(165, 155, 98,.7);
	padding: 5px;
	color: white;
	text-align: center;
	z-index: 1;
}
.news-container .news-date .date-month,
.news-container .news-date .date-day,
.news-container .news-date .date-year{
	display: block;
	width: 100%;
	line-height: 1;
}
.news-container .news-date .date-day{
	font-size: 20px;
	letter-spacing: 2px;
}
.news-container .news-title{
	z-index: 1;
	position: absolute;
	bottom:0;
	right: 0;
	left: 0;
	background: rgba(0,0,0,.7);
}
.news-container .news-title h3{
	color: #fff;
	font-size: 16px;
	padding: 10px;
	margin: 0;
}

.mensaje-acontecer{
	position: absolute;
	background: black;
	bottom: 20%;
	width: 98%;
	opacity: .80;
}

.mensaje-acontecer p{
	margin: 2px;
	color: white;
}



.menu-footer h3{
	font-size: 15px;
}

.menu-footer img{
	margin-bottom: 15px;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}


/* agenda digital */

/*.agenda-digital-uabjo h3,h4,h5{
	color: #a59b62;
}*/

.carousel-agenda .item figure{
	padding: 0 2.5px;
}

.carousel-agenda .item figcaption {
    display: flex;
    flex-wrap: wrap;
    font-family: 'Raleway', sans-serif;
    color: #2e384a;
    font-weight: 500;
    font-size: 15px;
    background-color: #fff;
}

.carousel-agenda .item figcaption header {
    width: 100%;
    display: flex;
    padding: 7px;
    border-bottom: 1px solid #2e384a;
}

.carousel-agenda .item figcaption .type{
    width: 80%;
}

.carousel-agenda .item figcaption .icon{
    width: 20%;
    text-align: right;
}

.carousel-agenda .item figcaption .date {
    width: 30%;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
}
.carousel-agenda .item figcaption .date span.day {
    font-size: 51px;
    width: 100%;
    display: inline-block;

}
.carousel-agenda .item figcaption .date span.month {
    width: 100%;
    font-size: 20px;
}

.carousel-agenda .item figcaption .details {
    width: Calc(100% - 30px);
    padding: 12px 15px;
    height: 170px;
    overflow: hidden;
}

.carousel-agenda .item figcaption .details .title {
    font-size: 16px;
    color: #a09a64;
    padding-bottom: 5px;
}

.carousel-agenda .item figcaption .details .description {
    color: #4e4e4e;
}

.carousel-agenda .item figcaption footer.category {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 19px;
    border-top: 1px solid #2e384a;
    padding: 7px 0;
    margin-top: 5px;
}
.carousel-agenda footer{
	background: #fff;
	color: #2e384a;
}

.owl-prev {
    position: absolute;
    top: Calc(50% - 40px);
    left: -15px;
}
.owl-next {
    position: absolute;
    top: Calc(50% - 40px);
    right: -15px;
}

.owl-prev i,.owl-next i {
    font-size: 85px;
    color: #d6d6d6;
}

.agenda-grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.agenda-grid .item {
    width: 100%;
    overflow: hidden;
}
.agenda-grid .item figure{
    padding: 5px;
}
.agenda-grid .item figure .image {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.agenda-grid .item figure .image img {
    position: absolute;
    width: 100%;
    top: -100%;
    right: -100%;
    bottom: -100%;
    left: -100%;
    margin: auto;
}

.agenda-grid .item figcaption {
    display: flex;
    flex-wrap: wrap;
    font-family: 'Raleway', sans-serif;
    color: #2e384a;
    font-weight: 500;
    font-size: 15px;
    background-color: #fff;
}

.agenda-grid .item figcaption header {
    width: 100%;
    display: flex;
    padding: 7px;
    border-bottom: 1px solid #2e384a;
}

.agenda-grid .item figcaption .type{
    width: 80%;
}

.agenda-grid .item figcaption .icon{
    width: 20%;
    text-align: right;
}

.agenda-grid .item figcaption .date {
    width: 30%;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
}
.agenda-grid .item figcaption .date span.day {
    font-size: 51px;
    width: 100%;

}
.agenda-grid .item figcaption .date span.month {
    width: 100%;
    font-size: 20px;
}
.agenda-grid .item figcaption .details {
    width: Calc(100% - 30px);
    padding: 12px 15px;
    height: 170px;
    overflow: hidden;
}

.agenda-grid .item figcaption .details .title {
    font-size: 16px;
    color: #a09a64;
    padding-bottom: 5px;
}

.agenda-grid .item figcaption .details .description {
    color: #4e4e4e;
}

.agenda-grid .item figcaption footer.category {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 19px;
    border-top: 1px solid #2e384a;
    padding: 7px 0;
    margin-top: 5px;
}

.agenda-grid footer{
	background: #fff;
	color: #2e384a;
}


.agenda-single .featured-image {
    width: 100%;
    height: 350px;
    position: relative;
    margin-bottom: 15px;
}
.agenda-single .featured-image img {
    position: absolute;
    height: 100%;
    margin: auto;
    top: -100%;
    left: -100%;
    right: -100%;
    bottom: -100%;
}

.agenda-tipo {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #243549;
    border-bottom: 1px solid #243549;
    background: #f5f5f5;
    padding: 10px;
}
.agenda-tipo .type {
    width: 50%;
}
.agenda-tipo .icon {
    width: 50%;
    text-align: right;
}
.agenda-descripcion {
    padding: 15px 0;
}

.title-agenda-section {
	position: relative;
}
.title-agenda-section span{
	position: absolute;
	right: 0;
	top: 30px;
}
.title-agenda-section span a{
	font-size: 15px;
	text-transform: uppercase;
	color: #a59b62;
	font-weight: 700;
}

/*** widget agenda  ***/
.widget-agenda .widget-content{
    display: flex;
    flex-wrap: wrap;
}
.widget-agenda .agenda-item {
    width: 100%;
    border-bottom: 1px solid #cdcdcd;
    margin-bottom: 15px;
}
.widget-agenda .agenda-item figure{
    width: 100%;
}
.widget-agenda .agenda-item figure .image {
    max-height: 150px;
    overflow: hidden;
}

.widget-agenda .agenda-item figure .image img {
    width: 100%;
}

.widget-agenda .agenda-item figcaption {
    display: flex;
    flex-wrap: wrap;
    font-family: 'Raleway', sans-serif;
    color: #5f5f5f;
    font-weight: 600;
    font-size: 15px;
    background-color: #fff;
}

.widget-agenda .agenda-item figcaption header {
    width: 100%;
    display: flex;
    padding: 7px;
    border-bottom: 1px solid #cdcdcd;
}

.widget-agenda .agenda-item figcaption .type{
    width: 80%;
}

.widget-agenda .agenda-item figcaption .icon{
    width: 20%;
    text-align: right;
}

.widget-agenda .agenda-item figcaption .date {
    width: 30%;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
}

.widget-agenda .agenda-item figcaption img{

}

.widget-agenda .agenda-item figcaption .date span.day {
    font-size: 51px;
    width: 100%;

}

.widget-agenda .agenda-item figcaption .date span.month {
    width: 100%;
    font-size: 20px;
}

.widget-agenda .agenda-item figcaption .details {
    width: Calc(100% - 30px);
    padding: 12px 0;
    display: flex;
    flex-wrap: wrap;
}

.widget-agenda .agenda-item figcaption .details .title {
    font-size: 16px;
    color: #a09a64;
    padding-bottom: 5px;
    width: 70%;
}

.widget-agenda .agenda-item figcaption .details .description {
    color: #4e4e4e;
}

.widget-agenda .agenda-item figcaption footer.category {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 19px;
    border-top: 1px solid #2e384a;
    padding: 7px 0;
    margin-top: 5px;
}
/*** end widget agenda ***/

/* sitios-uabjo */


.social-icon a{
	color: white;
}

/* menu-footer */
.menu-footer{

}

.menu-footer h3{
	color: white;
}

.menu-footer ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.menu-footer ul li a {
	color: #a59b62;
	display: block;
	padding: .2em 0 .2em 0;
}

.menu-footer a:hover{
	color: #fff;
}



/* footer */
footer{
	padding: 20px 0 20px 0;
	background: #1e2e3d;
	color: #fff;
}

footer span{
	color: #a59b62;
}

/*** header post ***/
.post-header{
	position: relative;
	width: 100%;
	height: 700px;
	overflow: hidden;

	background-size: cover;
	background-attachment: fixed;
}
.post-header-sec{
	position: relative;
	width: 100%;
	height: 450px;
	overflow: hidden;

	background-size: cover;
	background-attachment: fixed;
}
/*.post-header figure {
    position: relative;
    height: 550px;
}

.post-header figure img {
    position: absolute;
    width: 150%;
    left: -25%;
    top: -250px;
}*/
.post-header-sec:after,
.post-header:after{
	content: '';
	display: block;
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	background: rgba(0,0,0,.7);
	background: -moz-radial-gradient(center, ellipse cover, rgba(33,33,33,.3) 0%, rgba(33,33,33,.3) 66%, rgba(0,0,0,.8) 100%);
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(33,33,33,.3)), color-stop(66%, rgba(33,33,33,.3)), color-stop(100%, rgba(0,0,0,.8)));
	background: -webkit-radial-gradient(center, ellipse cover, rgba(33,33,33,.3) 0%, rgba(33,33,33,.3) 66%, rgba(0,0,0,.8) 100%);
	background: -o-radial-gradient(center, ellipse cover, rgba(33,33,33,.3) 0%, rgba(33,33,33,.3) 66%, rgba(0,0,0,.8) 100%);
	background: -ms-radial-gradient(center, ellipse cover, rgba(33,33,33,.3) 0%, rgba(33,33,33,.3) 66%, rgba(0,0,0,.8) 100%);
	background: radial-gradient(ellipse at center, rgba(33,33,33,.3) 0%, rgba(33,33,33,.3) 66%, rgba(0,0,0,.8) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fefefe', endColorstr='#000000', GradientType=1 );
}

.post-header-sec .post-header-caption,
.post-header .post-header-caption{
	width: 700px;
	position: absolute;
	padding: 30px;
	background-color: rgba(12,34,56,.7);
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 60%;
	color: #fff;
	font-size: 18px;
	border: 1px solid rgba(255,255,255,.5);
	z-index: 9;
}
.post-header-sec .post-header-paction p,
.post-header .post-header-caption p{
	margin: 0;
}
.post-header-sec .slide-content,
.post-header .slide-content{
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
    height: 100%;
}
.post-header-sec .post-header-caption:before,
.post-header .post-header-caption:before{
	content: '';
	display: block;
	position: absolute;
	height: 30px;
	width: 100px;
	top: 0;
	left: Calc(50% - 50px);
	margin: -15px auto 0 auto;
	background: #a59b62;
}

.post-header-sec .post-header-caption h3,
.post-header .post-header-caption h3{
	text-transform: uppercase;
	font-size: 28px;
	text-align: center;
	color: #fff;
}

.post-header-sec .post-header-caption a,
.post-header .post-header-caption a{
	color:#a59b62;
}

.post-content{
	padding-top: 55px;
}
.post-content .meta-content {
    border-top: 1px solid #a59b62;
    border-bottom: 1px solid  #a59b62;
    padding: 10px 15px;
    margin-top: 35px;
    font-size: 15px;
    font-family: 'Raleway', sans-serif;
    text-align: right;
    text-transform: uppercase;
}

.content{
	font-family: 'Maitree';
	font-weight: 500;
	font-size: 19px;
	color: #333;
}

.content p{
	text-align: justify;
}

.content h1, .content h2, .content h3, .content h4, .content h5, .content h6{
	color: #a59b62;
}

.content a{
	color: #a59b62;
}

.content a:hover{
	color: #243549;
}

/***  social icons ****/

.sis-item a{
	display: flex;
	align-items: center;
	text-transform: uppercase;
	font-size: 17px;
	color: #333;
}
.sis-item a span{
	padding-left: 25px;
}
.sis-item i{
	font-size: 45px;
}
.sis-item.facebook i{
	color: #3b5998;
}
.sis-item.twitter i{
	color: #55acee;
}
.sis-item.google-plus i{
	color: #d95032;
}
/***  widget-agenda ***/

.widget{
	margin-bottom:70px;
}
.widget h3{
	border-top: 2px solid  #a59b62;
	border-bottom: 2px solid  #a59b62;
	padding: 15px 0;
	text-align: center;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 500;
	color: #333;
	margin-bottom:15px;
	margin-top: 0;
}

.widget-agenda{
	width: 100%;
}

.widget-agenda img{
	max-width: 100%;
}

.widget-agenda .agenda-item{
	margin-bottom: 25px;
}


.widget-sitios{
	width: 100%;
	text-align: center;
}

.widget-sitios svg{
	max-width: 37%;
	margin:0 auto 15px auto;
	color: #333;
}

.widget-sitios svg .cls-1{
	fill: #777!important;
}

.widget-sitios .sitio-item{
	margin-bottom: 25px;
	border-bottom:1px solid #777;
}
.widget-sitios .sitio-item .caption{
	padding: 10px 30px  30px 30px;
	font-size: 15px;
	color: #333;
	text-transform: uppercase;
}


.widget-social-icons-share{
	width: 100%;
}

.widget-social-icons-share .sis-item{
	padding: 25px;
	border-bottom:1px solid #333;
}



/**  post relacionados  ***/
.posts-relacionados{
	padding-bottom: 70px;
}
.post-relacionados-item {
    width: 100%;
    max-height: 270px;
    position: relative;
    overflow: hidden;
    margin-bottom:25px;
}
.post-relacionados-item .date{
	position: absolute;
	width: 50px;
	background: rgba(165, 155, 98,.7);
	padding: 5px;
	color: white;
	text-align: center;
	z-index: 1;
}

.post-relacionados-item .title{
	z-index: 1;
	position: absolute;
	bottom:0;
	right: 0;
	left: 0;
	min-height: 70px;
	background: rgba(0,0,0,.7);
	display: flex;
	align-items: center;
}
.post-relacionados-item .title h3{
	color: #fff;
	font-size: 15px;
	padding: 10px;
	margin: 0;
}

.post-relacionados-item img{
	display: block;
	width: auto;
	max-height: 350px;
	min-height: 250px;
	height: auto;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.post-relacionados-item:hover img{
	-webkit-animation-name: pulse;
  	animation-name: pulse;
}


/** oferta **/

.oferta-item figure{
	width: 100%;
	height: 450px;
}

.col-md-9.content .oferta-item figure img{
	width: auto;
	height: 100%;
    position: absolute;
    top: -100%;
    left: -100%;
    right: -100%;
    bottom: -100%;
    margin: auto;
    max-width: initial;
}
.oferta-item{
	position: relative;
	width: 100%;
	margin-bottom: 30px;
	min-height: 450px;
	overflow: hidden;
}

.oferta-item .enlaces{
	position: absolute;
	left: 0;
	right: 0;
	top: 12px;
	width: 100%;
	color: #fff;
	padding-top: 15px;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	transition: all 1s;
	z-index: 9;
}

.oferta-item .enlaces .item{
	padding: 1px 15px;
	opacity: 0;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	transition: all 1s;
}
.oferta-item:hover .enlaces .item{
	opacity: 1;
}
.oferta-item:hover .enlaces{
	padding-top: 0;
}
.oferta-item .enlaces .item a{
	color: #fff;
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	font-size: 14px;
	-webkit-transition: padding-left 1s;
	-moz-transition: padding-left 1s;
	transition: padding-left 1s;
}
.oferta-item .enlaces .item a:hover{
	padding-left: 20px;
	color: #a59b62;
}


.oferta-item .caption{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	color: #fff;
	z-index: 9;
}
.oferta-item .caption h3{
	padding: 15px;
	font-family: 'Raleway', sans-serif;
	text-transform: uppercase;
	font-weight: 400;
	font-size: 30px;
	margin:0;
	color:#fff;
}

.oferta-item figure:before
{
	content:'';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba( 165, 155, 98, .5 );
	z-index: 9;
}

.oferta-item:hover figure:before
{
	background-color: rgba( 12, 34, 56, .5 );
}

/***  category  ****/

.category-container-header figure{
	height: 100%;
	position: relative;
}
.category-container-header .post-category{
	height: 285px;
	width: 100%;
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
}
.category-container-header .post-category.left{
	height: 600px;
	overflow: hidden;
}
.category-container-header .post-category .caption,
.category-container-previous .post-category .caption{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	min-height: 70px;
	width: 100%;
	background-color: rgba(12,34,56,.7);
	display: flex;
	align-items: center;
}

.category-container-header .post-category .caption h3,
.category-container-previous .post-category .caption h3{
	color: #fff;
	padding: 10px;
	font-size: 18px;
	margin: 0;
}



.category-container-header .post-category.left img{
	height: 100%;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    position: absolute;
    top: -100%;
    left: -100%;
    bottom: -100%;
    right: -100%;
    margin: auto;
}

.category-container-header .post-category.right img{
	width: 120%;
	position: absolute;
    left: -100%;
    right: -100%;
    top: -100%;
    bottom: -100%;
    margin: auto;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.category-container-previous .post-category{
	width: 100%;
	overflow: hidden;
	position: relative;
	height: 100%;
	max-height: 260px;
	margin-bottom: 30px;
}
.category-container-previous .post-category img{
	width: 150%;
	position: relative;
	margin-left: -25%;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

/** images **/

figure.img-single {
    height: 180px;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
}

.img-single img {
    position: absolute;
    top: -100%;
    bottom: -100%;
    left: -100%;
    right: -100%;
    margin: auto;
}

.title-single {
    color: #243549;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 10px;
}
.post-date-single {
    color: #a59b62;
    margin-bottom: 10px;
}

.news-item figure {
    height: 100%;
    position: relative;
}

.news-item figure img {
    position: absolute;
    left: -100%;
    right: -100%;
    top: -100%;
    bottom: -100%;
    margin: auto;
}

/***** slider *****/

.main-slide{
	position: relative;
}

.home-slide-caption {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    width: 50%;
    text-align: center;
    margin: 0 auto!important;
}

.acontecer-home{
	/*position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 99;
	background: rgba(11,16,23,0);
	background: -moz-linear-gradient(top, rgba(11,16,23,0) 0%, rgba(11,16,23,1) 40%, rgba(11,16,23,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(11,16,23,0)), color-stop(40%, rgba(11,16,23,1)), color-stop(100%, rgba(11,16,23,1)));
	background: -webkit-linear-gradient(top, rgba(11,16,23,0) 0%, rgba(11,16,23,1) 40%, rgba(11,16,23,1) 100%);
	background: -o-linear-gradient(top, rgba(11,16,23,0) 0%, rgba(11,16,23,1) 40%, rgba(11,16,23,1) 100%);
	background: -ms-linear-gradient(top, rgba(11,16,23,0) 0%, rgba(11,16,23,1) 40%, rgba(11,16,23,1) 100%);
	background: linear-gradient(to bottom, rgba(11,16,23,0) 0%, rgba(11,16,23,1) 40%, rgba(11,16,23,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0b1017', endColorstr='#0b1017', GradientType=0 );*/
}

.acontecer-home .title-section {
    margin-bottom: 30px;
}

.acontecer-home .owl-prev, .acontecer-home .owl-next {
    position: absolute;
    top: Calc(50% - 35px);
}
.acontecer-home .owl-prev i, .acontecer-home .owl-next i{
	color: rgba(255,255,255,.5);
    font-size: 77px;
}

.acontecer-home .owl-prev{
	left: 0;
}

.acontecer-home .owl-next{
	right: 0;
}

.home-slide-caption h3 {
    text-transform: uppercase;
    color: #a59b62;
}
.acontecer-home .btn-more{
	margin-top: 25px;
	margin-bottom: 25px;
}

.main-slide-item{
	position: relative;
	width: 100%;
	height: 750px;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
}

.main-slide-item:before{
	content: '';
	display: block;
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	background: rgba(11,16,23,1);
	background: -moz-linear-gradient(top, rgba(11,16,23,1) 0%, rgba(50,54,60,0) 16%, rgba(255,255,255,0) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(11,16,23,1)), color-stop(16%, rgba(50,54,60,0)), color-stop(100%, rgba(255,255,255,0)));
	background: -webkit-linear-gradient(top, rgba(11,16,23,1) 0%, rgba(50,54,60,0) 16%, rgba(255,255,255,0) 100%);
	background: -o-linear-gradient(top, rgba(11,16,23,1) 0%, rgba(50,54,60,0) 16%, rgba(255,255,255,0) 100%);
	background: -ms-linear-gradient(top, rgba(11,16,23,1) 0%, rgba(50,54,60,0) 16%, rgba(255,255,255,0) 100%);
	background: linear-gradient(to bottom, rgba(11,16,23,1) 0%, rgba(50,54,60,0) 16%, rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0b1017', endColorstr='#ffffff', GradientType=0 );
}

.main-slide-item .main-slide-caption{
	width: 370px;
	position: absolute;
	padding: 30px;
	background: rgba(12,34,56,.7);
	left: 30px;
	top: 250px;
	color: #fff;
	font-size: 18px;

}
.main-slide-item .main-slide-caption p{
	margin: 0;
}
.main-slide-item .slide-content,
.carousel-carreras .slide-content {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
    height: 100%;
}

.main-slide-item .main-slide-caption:before{
	content: '';
	display: block;
	position: absolute;
	height: 30px;
	width: 100px;
	top: 0;
	left: Calc(50% - 50px);
	margin: -15px auto 0 auto;
	background: #a59b62;
}
.main-slide-item .main-slide-caption h3{
	text-transform: uppercase;
	font-size: 21px;
	text-align: center;
	color: #a59b62;
}

.main-slide-item .main-slide-caption a{
	color:#a59b62;
}


.pagination {
	width: 100%;
	display: flex;
	justify-content: center;
}

.pagination li a {
    background-color: #a59b62;
    margin: 2px;
    border: 1px solid #a59b62;
    color: #fff;
    border-radius: 0;
}

.pagination&gt;li:last-child&gt;a, .pagination&gt;li:last-child&gt;span {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.pagination&gt;li:first-child&gt;a, .pagination&gt;li:first-child&gt;span {
    margin-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.pagination&gt;.active&gt;a, .pagination&gt;.active&gt;a:focus, .pagination&gt;.active&gt;a:hover, .pagination&gt;.active&gt;span, .pagination&gt;.active&gt;span:focus, .pagination&gt;.active&gt;span:hover {
    background-color: #243549;
    border: 1px solid #a59b62;
}

.pagination&gt;li&gt;a:focus, .pagination&gt;li&gt;a:hover, .pagination&gt;li&gt;span:focus, .pagination&gt;li&gt;span:hover {
    color: #ffffff;
    background-color: #243549;
    border-color: #f7f7f7;
}


.search_wrapper {
    padding: 15px;
    position: relative;
    width: 100%;
}

.search_wrapper i{
	color: #fff;
}

.search_wrapper .fa-search,
.search_wrapper .icon_close {
    position: absolute;
    top: 25px;
    font-size: 22px;
    line-height: 22px;
    display: block;
}

.search_wrapper .fa-search{
	top: 18px;
}

#search-container {
    background-color: #a59b62;
    display: none;
    width: 100%;
}

.search_wrapper input[type="text"],
.header-search input[type="text"] {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    -webkit-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
    padding-left: 35px;
    background: none;
    border-width: 0 0 1px;
    border-style: solid;
    border-color: rgba(255,255,255,.25)!important;
    font-size: 15px;
    color: #fff;
}

.search_wrapper .icon_close {
    right: 18px;
    color: #fff;
    opacity: .3;
    filter: alpha(opacity=30);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.search_wrapper .form-control::-moz-placeholder {
  color: rgba(255,255,255,.7);
  opacity: 1;
}
.search_wrapper .form-control:-ms-input-placeholder {
  color: rgba(255,255,255,.7);
}
.search_wrapper .form-control::-webkit-input-placeholder {
  color: rgba(255,255,255,.7);
}

.header-search {
    background-color: #243549;
    padding: 25px;
}

.main-search {
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
}

.main-search #left-column {
    width: 25%;
}

.main-search #left-column {
    background-color: #ffffff;
    padding: 25px;
}


.main-search #left-column h5 {
    text-transform: uppercase;
    margin: 0;
    padding: 15px;
    background-color: #a49a62;
    color: white;
}
.main-search #right-column {
    width: 75%;
}




.ais-menu--item {
    background-color: whitesmoke;
    margin-top: 5px;
}
a.ais-menu--link {
	position: relative;
	width: 100%;
	display: inline-block;
	padding: 15px;
	color:  #a49a62;
}
a.ais-menu--link span {
    position: absolute;
    right: 18px;
}

div#hits {
    background-color: #edf2f9;
    padding: 25px;
}

.hit {
    margin-bottom: 25px;
}

.ais-hits--item {
    margin-bottom: 7px;
}
.hit-description em,
.hit-name em {
    font-weight: bold;
}
.hit-content {
    color: #333;
}
.hit-name {
    font-size: 21px;
    margin: 0;
}



ul.ais-pagination {
    text-align: center;
}

li.ais-pagination--item.ais-pagination--item__page {
    display: inline-block;
}

a.ais-pagination--link {
    display: inline-block;
    background-color: #243549;
    color: #fff;
    padding: 5px 15px;
    font-size: 19px;
    font-family: 'Ubuntu', sans-serif;
}

div#pagination {
    padding: 15px 0;
    background-color: #edf2f9;
}

.col-md-9.content img{
    max-width: 100%;
    height: auto;
}

.youtube-container {
    position: relative;
    padding-bottom: 70%;
    height: 0;
    overflow: hidden;
}

.youtube-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.buttons-container-1,
.buttons-container-2,
.buttons-container-3,
.buttons-container-4{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.buttons-container-2 .button-item,
.buttons-container-2 .button-item,
.buttons-container-3 .button-item,
.buttons-container-4 .button-item{
	width: Calc(100% - 10px);
	margin-bottom: 15px;	
}

.buttons-container-1 .button-item,
.buttons-container-2 .button-item,
.buttons-container-3 .button-item,
.buttons-container-4 .button-item {
    text-align: center;
    border: 2px solid #a59b62;
    margin-left: 5px;
    margin-right: 5px;
    padding: 8px;
    text-transform: uppercase;
    font-size: 15px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    transition: all .5s;
}

.buttons-container-1 .button-item:hover,
.buttons-container-2 .button-item:hover,
.buttons-container-3 .button-item:hover,
.buttons-container-4 .button-item:hover {
    color: #fff;
    background-color: #a59b62;
}


div#lightgallery a {
    width: 25%;
}


ol.breadcrumb {
    margin-bottom: 0;
}

ol.breadcrumb a {
    color: #a59b62;
    font-weight: 500;
}

.lg-backdrop {
    background-color: rgba(36, 53, 73, 0.93)!important;
}



div#lightgallery {
    display: flex;
    flex-wrap: wrap;
}

div#lightgallery a {
    width: Calc(50% - 10px);
    height: 125px;
    overflow: hidden;
    margin: 5px;
    position: relative;
    border: 3px solid #a59b62;
}

div#lightgallery img {
    position: absolute;
    top: -100%;
    left: -100%;
    right: -100%;
    bottom: -100%;
    margin: auto;
    height: 100%;
    width: auto;
    max-width: initial!important;
}

#slides .slides-container{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

#slides .slides-container .slide-item{
	width: 100%;
	padding: 100px 50px;
}

#slides .slides-container .slide-item .info-carrera img{
	width: 100%;
}
#slides .slides-container .slide-item .info-carrera a{
	color: #666666;
}

#slides .slides-container .slide-item .info-carrera .detalle-carrera{
	border:1px solid #a59b62;
}
#slides .slides-container .slide-item .info-carrera .img-container{
	text-align: center;
	display: inline-block;
	width: 100%;
}
#slides .slides-container .slide-item .info-carrera .img-container img{
	width: 70%;
}
/* media query */

.protocolo-img-6{
	max-width: 100%;
}


.container-redondo{
	border:1px solid #a59b62;
	border-radius: 5px;
	margin-bottom: 15px;
}
.container-redondo-2{
	border:1px solid #243549;
	background-color: #243549;
	border-radius: 5px;
	margin-bottom: 15px;
}

.container-redondo-2 span{
	line-height: 1;
}

.container-redondo-2 a{
	display: inline-block;
	padding: 15px;
	width: 100%;
	height: 100%;
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	color: #fff;
}

.container-redondo a{
	display: inline-block;
	padding: 14px;
	width: 100%;
	height: 100%;
	font-family: 'Raleway', sans-serif;
	font-weight: bold;
	font-size: 15px;
}

.container-redondo a img{
	max-width: 90%;
}



#home-slider .item{
	height: 225px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

#home-slider .item a{
	display: inline-block;
	width: 100%;
	height: 100%;
}

#home-slider .owl-prev {
    position: absolute;
    top: Calc(50% - 50px);
    left: 20px;
}

#home-slider .owl-next {
    position: absolute;
    top: Calc(50% - 50px);
    right: 20px;
}

#home-slider .owl-prev i,#home-slider .owl-next i {
    font-size: 85px;
    color: rgba(255,255,255,.85);
}

#home-slider .text-slider{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	background-color: rgba(0,0,0,.5);
	color: #fff;
	padding: 10px 10px 20px 10px;
}

#home-slider .text-slider {
    font-size: 21px;
}

#home-slider .text-slider h3{
	margin: 0 0 5px 0;
	font-size: 17px;
}

#home-slider .text-slider p{
	margin: 0 0 5px 0;
	font-size: 14px;
}

@media (min-width: 450px){

	#home-slider .item{
		height: 240px;
	}
}


@media (min-width: 768px){
	

	.buzon-container {
	    right: 150px;
	}
	.buttons-container-2 .button-item{
		width: Calc(100% - 10px);	
	}

	.buttons-container-2 .button-item{
		width: Calc(50% - 10px);	
	}

	.buttons-container-3 .button-item{
		width: Calc(33.333% - 10px);	
	}
	.buttons-container-4 .button-item{
		width: Calc(25% - 10px);	
	}
	.main-menu .navbar-right .dropdown-menu {
    	right: auto;
    	left: 0;
	}
	.sticky .main-menu{
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
	}

	.sticky .main-menu .container-fluid{
		padding: 0;
	}

	.sticky .main-menu{
		background-color: rgba(36,53,73,.9);
		z-index: 9999;
	}
	.sticky	.main-menu .navbar-nav {
	    background-color: transparent;
	}
	.sticky .main-menu a{
		color:  #fff;
	}
	.sticky .main-menu .dropdown-menu a{
		color:  #a59b62;
	}

	.sticky .main-menu .dropdown-menu a:hover,
	.sticky .main-menu .dropdown-menu a:focus,
	.sticky .main-menu .dropdown-menu a:active {
	    color: #fff;
	}

	.sticky .main-menu .navbar-brand{
		display: block;
		padding: 10px 0 0 30px;
	}
	.sticky .navbar-nav&gt;li&gt;a {
	    padding-top: 27px;
	    padding-bottom: 27px;
	}

	figure.img-single {
    	height: 400px;
	}

	#home-slider .item{
		height: 390px;
	}

	#home-slider .owl-prev {
		top: Calc(50% - 40px);
	    left: 100px;
	}
	#home-slider .owl-next {
		top: Calc(50% - 40px);
	    right: 100px;
	}

	#home-slider .owl-prev i,#home-slider .owl-next i {
	    font-size: 85px;
	    color: rgba(255,255,255,.85);
	}

	#home-slider .text-slider{
		padding: 15px 15px 30px 15px;
	}

	#home-slider .text-slider h3{
		margin: 0 0 5px 0;
		font-size: 19px;
	}

	#home-slider .text-slider p{
		margin: 0 0 5px 0;
		font-size: 16px;
	}
}





@media (max-width: 1999px){
	.main-menu .navbar-nav {
	    background-color: transparent;
	}
	header#header:after {
	    display: none;
	}
	.main-menu a {
	    color: #fff;
	}

	.main-menu .collapse.in a:hover {
	    color: #a59b62;
	}
}

@media (min-width: 1200px){
	.container {
	    max-width: 1280px;
	    width: 100%;
	}
	.header-logo{
		width: 22%;
	}
	.sticky .main-menu .navbar-nav:before{
		display: none;
	}
	.main-menu .navbar-nav:before{
		display: block;
	}
	.main-menu .navbar-nav {
	    background-color: #fff;
	    margin-left: 130px;
	}
	.main-menu a {
	    color: #243549;
	}
	.dropdown-menu&gt;li&gt;a:focus, .dropdown-menu&gt;li&gt;a:hover {
	    color: #262626;
	    background-color: #a59b62;
	    color: #fff;
	}
	.main-menu .nav .open&gt;a, .main-menu .nav .open&gt;a:focus, .main-menu .nav .open&gt;a:hover {
	    color: #a59b62;
	}
	header#header:after {
	    display: block;
	}

	#home-slider .item{
		height: 400px;
	}

	#home-slider .owl-prev {
		top: Calc(50% - 40px);
	    left: 100px;
	}
	#home-slider .owl-next {
		top: Calc(50% - 40px);
	    right: 100px;
	}

	#home-slider .owl-prev i,#home-slider .owl-next i {
	    font-size: 85px;
	    color: rgba(255,255,255,.85);
	}

	#home-slider .text-slider{
		padding: 15px 15px 30px 15px;
	}

	#home-slider .text-slider h3{
		margin: 0 0 5px 0;
		font-size: 19px;
	}

	#home-slider .text-slider p{
		margin: 0 0 5px 0;
		font-size: 16px;
	}
}
@media( min-width: 992px ){
	.category-container-previous .post-category{
		min-height: 260px;
	}
}

@media ( min-width: 768px ) and (max-width: 991px){
	.category-container-header .post-category.right img {
    	max-width: 150%;
    	width: auto;
    	height: auto;
    	min-height: 100%;
	}

	.main-menu .nav&gt;li&gt;a {
	    padding: 10px 7px;
	    font-size: 13px;
	}

	.sticky .main-menu .nav&gt;li&gt;a {
	    padding: 25px 15px;
	    font-size: 13px;
	}

	.widget-agenda .widget-content{
		display: flex;
		flex-wrap: wrap;
	}

	.widget-agenda .widget-content .agenda-item {
	    width: 50%;
	    padding: 0 10px;
	    display: flex;
    	justify-content: center;
	}
	.widget-social-icons-share .widget-content {
	    display: flex;
	    border-bottom: 1px solid #777;
	}
	.widget-social-icons-share .widget-content .sis-item{
		width: 33.33%;
		padding: 15px 0;
		border-bottom: 0;
	}
	figure.img-single {
    	height: 400px;
	}
}


@media ( max-width: 480px ) {
	.social-icon{
		border: 1px solid white;
	}


	.post-header,
	.category-container-header .post-category.left,
	.post-header-sec{
	    height: 350px;
	}

	.main-slide-item{
		height: 700px;
	}

	.main-slide-item .main-slide-caption h3 {
	    font-size: 15px;
	}

	.post-header-sec .post-header-caption,
	.post-header .post-header-caption,
	.main-slide-item .main-slide-caption {
	    width: Calc(100% - 20px);
	    padding: 10px;
	    left: 0;
	    top: 120px;
	    font-size: 12px;
	}

	.widget-agenda img {
	    width: 100%;
	}

	.main-slide-item img{
		height: 350px;
		width: auto!important;
	}

	.bg-half .caption {
	    padding: 20px 10px 20px 20px;
	}
	.bg-half:after {
	    width: Calc(100% - 20px);
	    height: Calc(100% - 20px);
	    margin: 10px;
	}

	.title-carrera {
	    font-size: 26px;
	    margin-bottom: 30px;
	}

	.icono-sitio {
	    width: 90%;
	    height: 90%;
	}
	.icono-sitio a .caption {
		font-size: 12px;
	}

	.sitios-uabjo .container {
	    padding-right: 0;
	    padding-left: 0;
	}
	.menu-footer img{
		width: 150px;
		margin-bottom: 45px;
	}
	.category-container-header .post-category.right img {
	    max-width: 150%;
	    min-height: 100%;
	    width: auto;
	    height: auto;
	}

}

@media (min-width: 480px) {
	.sitios{
		padding: 10px 0 10px 0;
	}

	.agenda-grid .item {
        width: 50%;
    }

    div#lightgallery a {
	    width: Calc(33.333% - 10px);
	}

}

@media (min-width: 650px) {
	#slides .slides-container .slide-item{
		padding: 100px 110px;
	}
}

@media ( max-width: 767px ) {

	.sitios-grid .cell{
	    width: 50%;
	    padding-bottom: 50%;
	}

	#unidades_sistemas .site-row-container-inner,
	#unidades_sistemas .site-row-container-inner .container,
	#unidades_sistemas .site-row-container-inner .container .col-md-4,
	#slide-carreras .site-row-container-inner,
	#slide-carreras .container,
	.site-row-container .container,
	.category-container-header .col-xs-12,
	.category-container-previous .col-xs-12
	{
		padding: 0;
	}

	.category-container-header .row{
		margin: 0;
	}

	.post-category.right{
		margin-left: 0;
		margin-right: 0;
	}

	.carrera-item .caption {
	    width: 100%;
	    height: 52%;
	    top: 48%;
	}
	.carrera-item .caption .info-carrera {
	    padding: 0 10px;
	}
	.detalle-carrera {
	    border: 1px solid #fff;
	    padding: 30px 15px 15px 15px;
	    font-size: 14px;
	}
	header#header:after {
	    display: none;
	}
	header .col-xs-12 {
	    padding: 0;
	}
	.header-logo figure img {
	    display: none;
	}
	.header-right{
		width: 100%;
	}
	.main-menu .navbar-brand{
		display: block;
	}

	.main-menu a {
	    padding: 5px 10px;
	}

	.main-menu .navbar-nav .open .dropdown-menu&gt;li&gt;a:hover {
	    color:#fff;
	    background-color: #243549;
	}

	.main-menu .nav .open&gt;a, .main-menu .nav .open&gt;a:focus, .main-menu .nav .open&gt;a:hover {
	    color:#fff;
	}

	.navbar-toggle .icon-bar {
	    background: #a59b62;
	}
	.navbar-brand img {
	    height: 40px;
	    width: auto;
	}
	.main-menu .navbar-nav {
    	background: #a59b62;
	}
	.main-menu a {
	    color: #243549;
	}

	.post-content .container .row,
	.menu-footer .row,
	.acontecer-uabjo .row,
	.agenda-digital-uabjo .row{
		margin-left: 0;
		margin-right: 0;
	}



	.navbar-nav {
	    margin-bottom:0;
	}

	.post-header-sec .post-header-caption h3,
	.post-header .post-header-caption h3{
		font-size: 23px;
	}
	.content {
	    font-size: 15px;
	}

	.social-icons-tm {
	    position: relative;
	    height: 50px;
	    float: right;
	    padding-top: 12px;
	}
	.social-icons-tm a {
	    color: #fff;
	    padding: 5px;
	    margin-top: 25px;
	    font-size: 19px;
	}

	.widget-social-icons-share .sis-item {
	    padding: 10px 25px;
	}


}


@media (min-width: 481px ) and (max-width: 767px) {
	.post-header,
	.post-header-sec {
	    height: 450px;
	}

	.main-slide-item{
		height: 700px;
	}
	.main-slide-item .main-slide-caption h3 {
	    font-size: 17px;
	}

	.post-header .post-header-caption,
	.post-header-sec .post-header-caption,
	.main-slide-item .main-slide-caption {
	    width: Calc(100% - 80px);
	    padding: 30px;
	    left: 40px;
	    top: 200px;
	    font-size: 14px;
	}

	.post-header .post-header-caption{
		left: 0;
	}

	.main-slide-item img{
		height: 450px;
		width: auto!important;
	}

	.accordion-container {
	    height: 390px;
	}

	.category-container-header .post-category.right img{
		width: 100%;
	}

	.widget-agenda .widget-content{
		display: flex;
		flex-wrap: wrap;
	}

	.widget-agenda .widget-content .agenda-item {
	    width: 50%;
	    padding: 0 10px;
	    display: flex;
    	justify-content: center;
	}

	.widget-agenda .agenda-item a{
		display: inline-block;
	}

	.news-container .item img{
		width: 100%;
    	height: auto;
	}

	.carrera-item .caption img.img-top-slide {
	    width: 50%;
	}
}

@media (min-width: 768px ) and (max-width: 991px) {


	.main-slide-item .main-slide-caption {

	    top: 140px;

	}

	.carrera-item .caption {
	    width: 60%;
	}

	.carrera-item .caption img.img-top-slide {
	    width: 75%;
	}

}

@media( min-width: 400px ){
	figure.img-single {
    	height: 250px;
	}
}

@media( min-width: 768px ){
	figure.img-single {
    	height: 350px;
	}
	.agenda-grid .item {
        width: 33.33%;
    }
    div#lightgallery a {
	    width: Calc(25% - 10px);
	}

	#slides .slides-container .slide-item{
		padding: 100px 200px;
	}
}

@media( min-width: 992px ){
	figure.img-single {
    	height: 430px;
	}
	.agenda-grid .item {
        width: 25%;
    }

    .carrera-item .caption img.img-top-slide {
	    width: 75%;
	}

	#slides .slides-container .slide-item{
		width: 50%;
		padding: 100px 50px;
	}

	#slides .slides-container .slide-item .info-carrera .protocolo-img-1{
		margin-top: 30px;
		margin-bottom: 10px!important;
	}

	#slides .slides-container .slide-item .info-carrera .protocolo-img-2{
		margin-bottom: 30px!important;
	}
	#slides .slides-container .slide-item .info-carrera .protocolo-img-3{
		margin-bottom: 10px!important;
	}
}

@media( min-width: 1280px ){
	#home-slider .item {
		height: 430px;
	}

	#slides .slides-container .slide-item{
		width: 50%;
		padding: 100px 12%;
	}

	#slides .slides-container .slide-item .info-carrera .protocolo-img-1{
		margin-bottom: 10px!important;
	}

	#slides .slides-container .slide-item .info-carrera .protocolo-img-2{
		margin-bottom: 20px!important;
	}
	#slides .slides-container .slide-item .info-carrera .protocolo-img-3{
		margin-bottom: 20px!important;
	}
}

@media( min-width: 1600px ){
	#home-slider .item {
    	height: 537px;
	}
	#home-slider .text-slider {
    	font-size: 23px;
	}
}



@media (min-width: 1440px){

	.home-slider .item figure {
		height: 525px;
	}
}


@media (min-width: 1900px){

	#home-slider .item {
		height: 730px;
	}
}

@media (min-width: 2400px){

	#home-slider .item  {
		height: 900px;
	}
}

@media (min-width: 3500px){

	#home-slider .item  {
		height: 1333px;
	}
}</pre></body></html>