/*Borrar*/


/*Fonts*/
@font-face {
	font-family: 'GothamLight';
	src: url('../fonts/GothamLight.eot');
	src: url('../fonts/GothamLight.woff') format('woff'),
		 url('../fonts/GothamLight.ttf') format('truetype'),
		 url('../fonts/GothamLight.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'GothamBook';
	src: url('../fonts/GothamBook.eot');
	src: url('../fonts/GothamBook.woff') format('woff'),
		 url('../fonts/GothamBook.ttf') format('truetype'),
		 url('../fonts/GothamBook.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'GothamBold';
	src: url('../fonts/GothamBold.eot');
	src: url('../fonts/GothamBold.woff') format('woff'),
		 url('../fonts/GothamBold.ttf') format('truetype'),
		 url('../fonts/GothamBold.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'GothamBlack';
	src: url('../fonts/GothamBlack.eot');
	src: url('../fonts/GothamBlack.woff') format('woff'),
		 url('../fonts/GothamBlack.ttf') format('truetype'),
		 url('../fonts/GothamBlack.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

body{
	font-family: "GothamBook", "Montserrat", sans-serif;
	overflow-x: hidden;
	position: relative;
	margin: 0;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	min-height: 100vh;
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
}
main{
	position: relative;
	margin-top: 148px;
	transition: all .2s ease-in-out;
}
body.scrolling main{
	margin-top: 0;
}
@media(max-width:767px){
	main{
		margin-top: 132px;
	}
}
@media(max-width:576px){
	main{
		margin-top: 120px;
	}
}
body.offcanvas-active {
  overflow: hidden;
}
.backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;     
}

/* cuando tenga la clase .show, se muestra */
.backdrop.show {
  display: block;
}

/*Grid hack*/
.container{
	width: 100%;
	max-width: 1240px;
	padding-right: 10px;
    padding-left: 10px;
}

.row {
    margin-right: -10px;
    margin-left: -10px;
}
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
    padding-right: 10px;
    padding-left: 10px;
}

.mb-20{
	margin-bottom: 20px!important;
}
.mb-30{
	margin-bottom: 30px!important;
}
.menu-social{
	display: none;
	align-items: center;
	gap: 8px;
	margin-left: 8px;
}
.menu-social a{
	border: 1px solid #fff;
	width: 32px;
	height: 32px;
	padding:4px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 2px;
}
.menu-social a:hover{
	background-color: #c4004f;
}
.menu-social a svg{
	width: 80%;
}

/*Banners */
.banner{
	padding:0;
	background-color: #fff;
	margin:0;
	position: relative;
}
.banner a{
	display: block;
	position: relative;
	height: 100%;
}
.banner a img{
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	object-fit: cover;
	height: 100%;
}
.banner-hero-top{
	height: 100px;
}
.banner-hero-top a{
	height: 100px;
}
.banner.banner-top{
	top:40px;
}


.bannerinterio{
	padding:0;
	background-color: #fff;
	margin:0;
	position: relative;
}
.bannerinterio a{
	display: block;
	position: relative;
	/*height: 100%;*/
}
.bannerinterio a img{
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	object-fit: cover;
	/*height: 100%;*/
}

/*Header & Navbar*/
.header{
	position: fixed;
	transition: all 0.2s ease-out;
	width: 100%;
	z-index: 997;
	top: 0;
}
.header .top-head{
	background-color: #2EA9DE;
	border: 0;
	padding:0;
	height: 44px;
	overflow: hidden;
	transition: all 0.2s ease-out;
}
.header.fixed .top-head{
	height: 0;
}
.header .top-head .top-head-inner{
	display: flex;
	justify-content: space-between;
	gap: 30px;
	align-items: center;
}
.header .top-head .top-head-inner .top-date{
	color: #fff;
}
.header .top-head .top-head-inner .top-aside{
	display: flex;
	align-items: center;
	gap: 16px;
}
.header .top-head .top-head-inner .top-aside .live{
	background-color: #FF0066;
	color: #fff;
	padding:12px 32px;
	text-align: center;
	font-family:"GothamBold";
	text-decoration: none;
}
.header .top-head .top-head-inner .top-aside .live:hover{
	background-color: #c4004f;
}
@media(max-width:576px){
	.header .top-head{
		height: 32px;
	}
	.header .top-head .top-head-inner .top-aside .live{
		padding: 8px 16px;
		font-size: 13px;
	}
	.header .top-head .top-head-inner .top-date{
		font-size: 14px;
	}
}
.header .navigation{
	background-color: #10527B;
	width:100%;
	z-index: 999!important;
    padding: 20px 0;
	border: 0;
	transition: height 0.2s ease-out;
}
.header.fixed .navigation{
	padding:1rem 0;
}
.header .navigation .navbar-toggle {
	display: flex;
}
@media(min-width:992px){
	.header .navigation .navbar-toggle {
		display: none;
	}
}
.header .head-logo{
	display: inline-block;
}
.header .head-logo img{
	height: 64px;
	transition: all .2s ease-in-out;
}
@media(max-width:767px){
	.header .head-logo img{
		height: 48px;
	}
}
.header.fixed .head-logo img{
	height: 48px;
}
.header .navbar-nav {
	margin-top:0;
	transition: all .2s ease-in-out;
}
.header.fixed .navigation .navbar-nav{
	margin:0;
}
.header .header-navbar{
	display: flex;
    justify-content: space-between;
}
.header .navbar-logo{
	display: none;
	margin-bottom: 2rem;
	padding:0 1.5rem;
}
.header .navbar-logo img{
	height: 64px;
	transition: all .2s ease-in-out;
}
.header .head-menu{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-direction: row;
}
.header .navbar-nav li a{
	font-family: "GothamBold", "Montserrat", sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	padding:12px 16px;
	border: 0;
}
@media(max-width:991px){
	.header .navbar-nav li{
		text-align: right;
	}
}
.header .navbar-nav li a:hover,
.header .navbar-nav li.active a{
	color: #fff;
	background-color: #073754;
}
.navbar-toggler{
  	justify-content: center;
	align-items: center;
	height: 100%;
	background-color: transparent;
	border: 0;
}
.toggle-inner{
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	width: 28px;
	height: 20px;
	margin-top: 0;
	position: relative;
	color: inherit;
}
.toggle-inner span{
	background: transparent;
	display: inline-block;
	width: 28px;
	height: 2px;
	border-radius: 10px;
	background-color:#fff;
	transition: all 0.3s ease-out;
	vertical-align: top;
	position: absolute;
	right: 0;
}
.toggle-inner span:nth-child(2) {
	top: 8px;
	right: 0;
	width:20px;
}
.toggle-inner span:nth-child(3) {
	top: 16px;
	right: 0;
	width:12px;
}
.navbar-toggler .toggle-inner:hover span:nth-child(1) {
	width:12px;
}
.navbar-toggler .toggle-inner:hover span:nth-child(3){
	width: 28px;
}
.navbar-social{
	margin-top: 2rem;
	display: none;
}
.navbar-social .live{
	background-color: #FF0066;
	color: #fff;
	padding:12px 32px;
	text-align: center;
	font-family:"GothamBold";
	text-decoration: none;
	display: block;
	margin-bottom: 2rem;
}
.navbar-social .menu-social{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.navbar-social .live:hover{
	background-color: #c4004f;
}
.offcanvas-header{ 
	display:none;
	position: relative;
}
.btn-close{
	background-color:transparent;
	color:#fff;
    font-size: 40px;
    border: 0;
    outline: none;
    line-height: 1;
	padding: 10px 13px;
	position: fixed;
	left: 0;
	top: 0;
}
.navbar-collapse{
	border-top: 0;
}
@media (max-width: 991px) {
	.header .navbar-toggler,
	.offcanvas-header{ 
		display:block;
	}
	.header .navbar-social{
		display: block;
	}
	.header .navbar-logo{
		display: inline-block;
	}
	.header .navbar-collapse {
		position: fixed;
		z-index: 999;
		top:0; 
		bottom: 0;
		left: 100%;
		text-align: right;
		width: 100%;
		padding: 2rem;
		overflow-y: auto;
		visibility: hidden;
		max-width: 50%;
		background-color: #262626;
		transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
	}
	.header .navbar-collapse.show {
		visibility: visible;
		transform: translateX(-100%);
	}
}
@media (max-width: 767px) {
	.header .navbar-collapse {
		max-width: 260px;
	}
	.header .btn-close{
		font-size: 24px;
	}
}
@media(min-width:992px){
	.navbar-toggler{
		display: none;
	}
	.menu-social{
		display: flex;
	}
	.navbar-collapse{
		display: flex;
		align-items: center;
		padding:0;
	}
	.backdrop{
		display: none;
	}
}
@media(max-width:991px){
	.navbar-nav{
		float: none;
		flex-direction: column;
		display: flex;
	}
}



/*Ultimo momento*/
.news-bar{
	background-color: #FF0066;
	padding:10px 0 8px;
	height: 44px;
	margin-bottom: 20px;
}
.news-bar .news-inner{
	position: relative;
}
.news-bar .news-label{
	font-family: "GothamBold", "Montserrat", sans-serif;
	font-weight: bold;
	font-size: 16px;
	color: #fff;
	position: absolute;
	left: 0;
	top: 0;
}
@media (max-width: 1199px) {
 .news-bar .news-label{
    font-size: 14px;
  }
}
.news-bar .news-slider{
	padding-left: 175px;
}
.carousel-news p{
	color: #fff;
	display: block;
	text-align: left;
	position: relative;
	font-size: 16px;
	margin:0;
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-family: "GothamBook", "Montserrat", sans-serif;

}
.carousel-news .owl-nav{
	display: none!important;
}
@media(max-width:576px){
	.news-bar .news-label{
		display: none;
	}
	.news-bar .news-slider{
		padding-left: 0;
	}
	.carousel-news p{
		font-size: 14px;
	}
}

/*Hero*/
.hero-grid {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 20px;
  padding:20px 0;
}
.hero-main-news {
  background-color: #ddd;
  font-size: 1.2em;
}
.hero-grid-child {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hero-secondary-news {
  background-color: #f5f5f5;
}
@media (max-width: 1199px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 991px) {
  .hero-grid-child {
    grid-template-columns: 1fr;
  }
}

/* Thumbnails */
.thumbnail{
	margin-bottom: 0;
	border: 0;
	border-radius: 0;
	padding:0;
}
.thumbnail .caption{
	padding: 0;
}
.thumbnail .caption h2{
	font-family: "GothamBook", sans-serif;
	font-size: 24px;
	letter-spacing: -1px;
}
.thumbnail .caption h2 a{
	display: block;
	text-decoration: none;
	color: #175177;
}
.thumbnail .caption h2 a:hover{
	color: #0a293d;
}
.thumbnail .article-title{
	padding:32px;
}
.thumbnail .thumb-image {
	position: relative;
}
.thumbnail .thumb-image a{
	display: block;
	height: 100%;
	transition: all .2ms ease-in-out;
}
.thumbnail .thumb-image a img{
	height: 300px;
	object-fit: cover;
	opacity: 1;
	width: 100%;
}
.thumbnail .thumb-image a:hover img{
	opacity: 0.8;
}
.thumbnail .article-tag{
	background-color: #2EA9DE;
	padding:8px 12px;
	position: absolute;
	color: #fff!important;
	font-size:13px;
	bottom: 0;
	left: 0;
	font-family: "GothamBold", sans-serif;
	text-transform: uppercase;
	margin:0;
}
.thumbnail .article-tag::before{
	content:"";
	position: absolute;
	left: 0;
	top: -15px;
	width: 0;
	height: 0;
 	border-bottom: 16px solid #2EA9DE;
  	border-right: 16px solid transparent;
}
.thumbnail .article-speaker{
    background-color: #FF0066;
    padding: 7px;
    width: 40px;
    height: 40px;
    position: absolute;
    color: #fff !important;
    bottom: 0;
    right: 0;
    margin: 0;
    z-index: 2;
    text-align: center;
}
.thumbnail .article-speaker img{
	height: 20px;
}
.thumbnail .article-speaker::before{
	content:"";
	position: absolute;
	right: 0;
	top: -15px;
	width: 0;
	height: 0;
 	border-bottom: 16px solid #FF0066;
  	border-left: 16px solid transparent;
}

.thumbnail .article-date {
	margin-top: 1rem;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 8px;
}

.thumbnail .article-date span{
	color:#2EA9DE;
	font-size: 16px;
}
.thumbnail .article-date span small{
	color:#333;
	font-size: 14px;
}
.thumbnail-hero{
	position: relative;
	border: 0;
	padding:0;
	background-color: #fff;
	margin:0;
}
.thumbnail-hero a{
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 9;
}
.thumbnail-hero .hero-img{
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	overflow: hidden;
	display: block;
}
.thumbnail-hero .hero-img img{
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: all 700ms ease-in-out;
}
.thumbnail-hero .hero-img::after{
	content:"";
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%);
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	bottom: 0;
}
.thumbnail-hero .caption{
	position: absolute;
	bottom: 0;
	height: auto;
	width: 100%;
	z-index: 2;
	padding-bottom: 40px;
}
.thumbnail-hero .caption h2{
	color: #fff;
	font-size: 24px;
}
.thumbnail-hero .caption .article-bottom{     
	position: absolute;
    bottom: 0;
	display: flex;
	gap: 16px;
	align-items: center;
	width: 100%;
}
.thumbnail-hero .caption .article-bottom .caption-tag{
	background-color: #2EA9DE;
	padding:12px 16px;
	color: #fff!important;
	font-size:14px;
	font-family: "GothamBold", sans-serif;
	text-transform: uppercase;
	margin:0;
}
.thumbnail-hero .caption .article-bottom .caption-tag::before{
	content:"";
	position: absolute;
	left: 0;
	top: -15px;
	width: 0;
	height: 0;
 	border-bottom: 16px solid #2EA9DE;
  	border-right: 16px solid transparent;
}
.thumbnail-hero .caption .article-bottom .caption-date{
	color: #fff;
	line-height: 1.2;
}
.thumbnail-hero .caption .article-bottom .caption-date span{
	font-size: 14px;
	font-weight: bold;
}
.thumbnail-hero .caption .article-bottom .caption-date small{
	font-size: 13px;
	white-space: nowrap;
}
.thumbnail-hero:hover .hero-img img{
	opacity: 0.8;
}
.thumbnail-hero.hero-main-news .caption .article-title{
	padding:32px;
}
.thumbnail-hero.hero-main-news .caption h2{
	font-size: 38px;
	font-family: "GothamBold", sans-serif;
	font-weight: bold;
}
.thumbnail-hero.hero-main-news .article-date{
	margin-top: 16px;
}
.thumbnail-hero.hero-main-news .caption .article-bottom .caption-tag{
	font-size:18px;
}
.hero .thumbnail-hero .caption h2{
	font-family: "GothamBold", sans-serif;
	font-weight: bold;
}
.thumbnail-aside{
	background-color: #2EA9DE;
	padding:15px;
	margin-bottom: 20px;
}
.thumbnail-aside a{
	z-index: 1;
	position: absolute;
	width: 100%;
	height: 100%;
}
.thumbnail-aside h2{
	margin-top: 0;
	color: #fff;
	font-size: 18px;
	text-align: right;
	font-family: "GothamBook", sans-serif;
}
.thumbnail-aside h3{
	color: #fff;
	text-align: right;
	font-size: 22px;
	font-family: "GothamBold", sans-serif;
}
.thumbnail-aside img{
	height: 160px;
	width: 100%;
	object-fit: cover;
}
.top-read-aside h2{
	font-size: 20px;
	text-align: right;
	border-bottom: 2px solid #333333;
}
.top-read-aside h2 span{
	color: #175177;
}
.top-read-aside ul{
	list-style:none;
	margin:0;
	padding:0;
}
.top-read-aside ul li a{
	text-decoration: none;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	display: block;
	padding:3px 0;
	color: #175177;
}
.top-read-aside ul li a:hover{
	color: #333;
}
.top-read-aside ul li a span{
	background-color: #FF0066;
	color: #fff;
	width: 30px;
	padding:4px;
	display: inline-block;
	text-align: center;
	font-family: "GothamBold", sans-serif;
}

@media(max-width:1366px){
	.thumbnail-hero .caption h2 {
    	font-size: 20px;
	}
	.thumbnail-hero .caption .article-date span{
		font-size: 16px;
	}
	.thumbnail-hero.hero-main-news .caption h2 {
    	font-size: 32px;
	}
}
@media(max-width:1199px){
	.thumbnail-hero .caption h2 {
    	font-size: 24px;
	}
	.thumbnail-hero .caption .article-date span{
		font-size: 18px;
	}
	.thumbnail-hero.hero-main-news .caption h2 {
    	font-size: 38px;
	}	
}
@media(max-width:991px){
	.thumbnail-hero .caption h2 {
    	font-size: 32px;
	}
	.thumbnail-hero .caption .article-date span{
		font-size: 18px;
	}
	.thumbnail-hero.hero-main-news .caption h2 {
    	font-size: 32px;
	}
}
@media(max-width:767px){
	.hero-grid {
    	gap: 32px;
	}
	.hero-grid-child{
		gap: 4px;
	}
	.thumbnail-hero .caption h2 {
    	font-size: 24px;
	}
	.thumbnail-hero .caption .article-date span{
		font-size: 16px;
	}
	.thumbnail-hero.hero-main-news .caption h2 {
    	font-size: 32px;
	}
	.thumbnail-hero.hero-main-news .hero-img img{
		height: 600px;
	}
	.thumbnail-hero .hero-img img{
		height: 400px;
	}
	.thumbnail .article-title{
		padding:24px
	}
}
.block-videos{
	position: relative;
	background-color: #2EA9DE;
	border-top: 6px solid #10527B;
}
.block-videos .video-title{
	margin-bottom: 40px;
}
.block-videos .video-title img{
	height: 48px;
}
.block-videos .thumbnail{
	background-color: transparent;
}
.block-videos .thumbnail .thumb-image iframe{
	width: 100%;
}
.block-videos .thumbnail .caption-tag-container{
	padding-top: 15px;
	display: inline-block;
}
.block-videos .thumbnail .caption-tag-container .caption-tag{
	color: #fff;
	padding:4px 12px;
	font-size: 14px;
	background-color: #10527B;
	position: relative;
	display: inline-block;
}
.block-videos .thumbnail .caption-tag-container .caption-tag::before{
	content:"";
	position: absolute;
	left: 0;
	top: -15px;
	width: 0;
	height: 0;
 	border-bottom: 16px solid #10527B;
  	border-right: 16px solid transparent;
}
.section{
	padding:48px 0;
}
.block-videos .thumbnail .article-date{
	color: #fff;
	margin-top: 8px;
}
.block-videos .thumbnail .article-date span{
	color: #fff;
}
.block-videos .thumbnail .caption h2 a{
	color: #fff;
}
.block-videos .thumbnail .caption h2 a:hover{
	color: #fff;
}
.block-videos .owl-nav{
	margin-top: -60px;
}
.title{
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #2EA9DE;
}
@media(max-width:767px){
	.title{
		flex-direction: column;
		align-items: flex-start;
	}
}
.title .link{
	color: #FF0066;
	font-size: 16px;
}
@media(max-width:767px){
	.title .link{
		margin-top: 8px;
	}
}
.heading-h3{
	margin:0;
	font-size: 32px;
	letter-spacing: -1px;
	font-family: "GothamBold", sans-serif;
}

.thumb-video .caption h4 a{
	color: #10527B;
	display: block;
	letter-spacing: -1px;
}
.thumb-video .caption h4 a:hover{
	color: #08344f;
}
.thumb-video .thumb-image{
	margin-bottom: 1rem;
}
.thumb-video .thumb-image a img{
	height: 140px;
	object-fit: cover;
}
.thumb-video .article-date{
	display: flex;
	flex-direction: column;
}
.thumb-video .article-date span{
	color: #10527B;
}
.thumb-video .caption-tag-container{
	padding-top: 15px;
	display: inline-block;
}
.thumb-video .caption-tag-container .caption-tag{
	color: #fff;
	padding:4px 12px;
	font-size: 14px;
	background-color: #10527B;
	position: relative;
	display: inline-block;
}
.thumb-video .caption-tag-container .caption-tag::before{
	content:"";
	position: absolute;
	left: 0;
	top: -15px;
	width: 0;
	height: 0;
 	border-bottom: 16px solid #10527B;
  	border-right: 16px solid transparent;
}

/* Footer */
.footer{
	border-top: 6px solid #2EA9DE;
	background-color: #175177;
	padding:32px 0;
	text-align: left;
}
.footer-brand{
	display: inline-block;
	margin-bottom: 32px;
}
.footer-brand img{
	height: 48px;
}
.footer-links{
	margin-bottom: 32px;
}
.footer-links ul{
	display: flex;
	gap: 24px;
	align-items: center;
	color: #fff;
	margin:0;
	padding:0;
}
.footer-links ul li a{
	font-family: "GothamBold", sans-serif;
}
.footer-menu{
	display: flex;
	gap: 16px;
}
.footer-menu a{
	color: #fff;
}
.footer-menu a:hover{
	text-decoration: underline;
}
.footer-links p{
	color: #fff;
	margin:0;
	font-size: 12.2px;
}
.footer .copyright{
	color: #fff;
}
.footer-right{
	text-align: right;
}
.footer .signature{
	color: #fff;
	font-size: 20px;
	line-height: 1.2;
	margin-bottom: 32px;
}
.footer .signature small{
	display: block;
}
.footer .menu-social{
	justify-content: flex-end;
	margin-bottom: 32px;
}
.footer .agency img{
	height: 10px;
}
@media(max-width:991px){
	.footer{
		text-align: center;
	}
	.footer .footer-links ul{
		gap: 20px;
		justify-content: center;
	}
	.footer .footer-right{
		text-align: center;
	}
	.footer .footer-brand,
	.footer .footer-links,
	.footer .menu-social,
	.footer .signature{
		margin-bottom: 20px;
	}
	.footer .signature{
		margin-top: 32px;
	}
}
@media(max-width:576px){
	.footer .footer-links ul{
		flex-direction: column;
		gap: 8px;
	}
}
.row-news{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.col-news{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
}
@media(max-width:767px){
	.row-news{
		grid-template-columns: 1fr;
		margin-bottom: 20px;
	}
}

/*Page news*/
.page-news{
	padding:64px 0;
	margin-top: 20px;
	position: relative;
}
.news-article figure{
	margin:0 0 32px;
}
.news-article figure img{
	width: 100%;
	height: 600px;
	object-fit: cover;
}
.news-article .article-tag-container{
	display: block;
	margin-bottom: 16px;
}
.news-article .article-tag-container .article-tag{
	background-color: #2EA9DE;
	padding:8px 12px 6px;
	position: relative;
	color: #fff!important;
	font-size:13px;
	display: inline-block;
	font-family: "GothamBold", sans-serif;
	text-transform: uppercase;
	border-right: 0!important;
}
.news-article .article-tag-container .article-tag::before{
	content:"";
	position: absolute;
	left: 0;
	top: -15px;
	width: 0;
	height: 0;
 	border-bottom: 16px solid #2EA9DE;
  	border-right: 16px solid transparent;
}
.news-article .article-date{
	position: relative;
}

.news-article .article-date span{
	font-family: "GothamBold", sans-serif;
	color: #2EA9DE;
}
.news-article .news-title {
	margin-bottom: 32px;
}
.news-article .news-title h2{
	color: #1A1A1A;
	font-size: 42px;
	font-family: "GothamBold", sans-serif;
	letter-spacing: -1px;
}
.news-article .news-title p{
	font-size: 20px;
	font-family: "GothamLight", sans-serif;
}
.news-article .news-body p{
	font-size: 18px;
	font-family: "GothamLight", sans-serif;
}
.news-article .share{
	margin-top: 30px;
	margin-bottom: 30px;
}
.news-article .share p{
	font-size: 18px;
	font-family: "GothamBold", sans-serif;
	margin-bottom: 10px;
}
.news-article .share .social{
	align-items: center;
	gap: 2px;
	margin: 0;
	padding:0;
	list-style:none;
	display: flex;
}
.news-article .share .social a{
	border: 1px solid #2EA9DE;
	width: 32px;
	height: 32px;
	padding:4px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 2px;
	background-color: transparent;
}
.news-article .share .social a:hover{
	background-color: #ddd;
}
.news-article .share .social a svg{
	width: 80%;
}

/*galeria de imagenes*/
.gallery{
	margin:0;
	margin-bottom: 3rem;
}
.gallery .swiper {
	width: 100%;
	height: 100%;
}
.gallery .swiper .swiper-button-next,
.gallery .swiper .swiper-button-prev{
	z-index: 9;
}
.gallery .swiper .swiper-button-next::after,
.gallery .swiper .swiper-button-prev::after{
	display: none;
}
.gallery .swiper .swiper-button-next img,
.gallery .swiper .swiper-button-prev img{
	height: 4rem;
}


.gallery .swiper .swiper-slide {
	align-items: center;
	background-size: contain;
	background-position: center;
}
.gallery .swiper .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	user-select: none;
	-webkit-user-drag: none;
}

.gallery .news-gallery {
	width: 100%;
	height: 600px;
	margin-left: auto;
	margin-right: auto;
	border:1px solid #d9d9d9;
}
@media(max-width:991px){
	.gallery .news-gallery{
		height: 340px;
	}
}

.gallery .news-gallery  a{
	display: block;
	height: 100%;
	padding:16px;
	overflow: hidden;
	background-color: #fff;
}
.gallery .news-gallery-thumbnails {
	height: 160px;
	box-sizing: border-box;
	padding: 10px 0;
}
.gallery .news-gallery-thumbnails .swiper-slide {
	width: 33%;
	height: 100%;
	overflow: hidden;
	background-color: #fff;
	padding:8px;
	border:1px solid #d9d9d9;
}
.gallery .news-gallery-thumbnails .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.6;
}
.gallery .news-gallery-thumbnails .swiper-slide-thumb-active img{
	opacity: 1;
}
.gallery .news-gallery-thumbnails .swiper-slide-thumb-active{
	border-color: #10527B;
}
/*fin galeria de imagenes*/

h2.text-white{
	color: #FFF!important;
}