/*RESET*/
* {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;	
    //-webkit-text-stroke-width: .05px;
	//-webkit-text-stroke-color: white;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	margin: 0px;
	padding: 0px;	
	list-style: none;
    outline: none;
    text-decoration: none;	
}
body {
	color: black;
	font-family: 'Roboto', sans-serif;
    background-color: #005856;
    background-image: url(../img/content/pyramid.png);
    animation: fadein 2s;
    -moz-animation: fadein 2s; /* Firefox */
    -webkit-animation: fadein 2s; /* Safari and Chrome */
    -o-animation: fadein 2s; /* Opera */
}


.center {
	text-align: center;
}

/*RESPONSIVE*/
@media (min-width:501px) {
	.phone {
		display: none !important;
	}
}
@media (max-width:500px) {
	.desktop {
		display: none !important;
	}
}

/*VARIABLES*/
:root {
	--especialFont: 'Roboto', sans-serif;
	--grayText: #9b9b9b;
	--grayBg: #e2e2e2;
	--accentColor: #ff8900;
	--boxRadius: 10px;
}

/*TEMPLATE*/
header {
	width: 100%;
	height: 60px;
	position: fixed;
	background-color: #fff;
	box-shadow: 0px 0px 10px #888888;
	z-index: 100;
}
header .content {
	position: relative;
}
header .logo a {
	height: 40px;
	position: absolute;
	top: 10px;
	left: 10px;
}
header .share {
	position: absolute;
	right: 10px;
	top: 15px;
}
header .share li {
	display: inline-block;
}
header .share li a {
	width: 30px;
	height: 30px;
	display: block;
	margin-left: 10px;
	background-size: auto;
	background-repeat: no-repeat;
}
.top {
	width: 50px;
	height: 50px;
	display: block;
	position: fixed;
	bottom: 20px;
	right: 20px;
	border-radius: 50%;
	border: 2px solid #fff;
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../img/ui/arrow_up.svg);	
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 100;
}
.mainmenu{
    font-size: 14px;
    margin: 10px auto 20px auto;
    width: 100%;
    text-align: center;
    background-color: #012928;
    padding: 10px;
    z-index: 1500;
}@media (max-width:650px) {
	.mainmenu {
		font-size: 11px;
	}
}
.mainmenu li{
    padding: 5px 1.5%;
    font-weight: 600;
    color: #ffffff;
    border-left: 1px solid rgba(255, 255, 255, 0.49);
    border-right: 1px solid rgba(255, 255, 255, 0.49);
    display: inline-block;
    transition: .5s;
}
.mainmenu li a{
    color: #005856;
    font-weight: 600;
    transition: .3s;
}
.mainmenu li a:hover{
    cursor: pointer;
    font-weight: 600;
    color: #00b2ae;
 
}
.mainmenu li:first-child{
    border-left: none;
}
.mainmenu li:last-child{
    border-right: none;
}

article .share {
	margin: 10px 0;
}
article .share li {
	display: inline-block;
	margin: 5px;
}
article .share li a {
	height: 50px;
	display: block;
	line-height: 50px;
	padding: 0 15px 0 50px;
	font-weight: 600;
	font-size: 12px;
	color: #000;
	font-weight: bold;
	border: 1px solid #000;
	background-repeat: no-repeat;
	background-position: 10px center;
	transition: border ease 1s;
	border-radius: var(--boxRadius);
}
.share li a.facebook {
	background-image: url(../img/ui/share_facebook.svg);
}
.share li a.facebook {
	background-image: url(../img/ui/share_facebook.svg);
}
.share li a.twitter {
	background-image: url(../img/ui/share_twitter.svg);
}
.share li a.whatsapp {
	background-image: url(../img/ui/share_whatsapp.svg);
}
main {
	padding-top: 60px;
}
section {
/*	color: white;*/
/*	padding: 10%;*/
/*	background: var(--accentColor);*/
}
/*
section h1 {
	font-size: 40px !important;
}
*/

.sectiontitles h1{
    text-align: center;
    font-size: 40px !important;
    margin: 0px;
    color: #005856 !important;
    background-color: rgba(255, 255, 255, 0) !important;
}
@media (max-width:400px) {
	.sectiontitles h1 {
    font-size: 30px !important;
    line-height: 32px;
	}
}

article .content {
	max-width: 1000px;
	width: 90%;
	margin: auto;
	padding: 0px;
}
@media (max-width:400px) {
	article .content {
    max-width: 350px;    
	}
}
article .social {
	max-width: 800px;
	width: 90%;
	margin: auto;
	padding-bottom: 20px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--grayBg);
}
article h1 {
	font-weight: 100;
	font-size: 28px;
	margin-bottom: 30px;
	font-family: var(--especialFont);
}
article h2 {
	font-weight: 600;
	font-size: 24px;
	margin: 30px 0;
	color: var(--accentColor);
}
article h3 {
	border-left: var(--accentColor) 10px solid;
	margin-top: 30px;
	padding-left: 10px;
	font-size: 18px;
	font-weight: 800;
	line-height: 40px;
	letter-spacing: -0.5px;
	text-transform: uppercase;
}
article p {
	font-size: 17px;
	margin: 20px 0;
}
article p a {
	color: var(--accentColor);
	font-weight: 600;
	text-decoration: underline;
}
article img.wide {
	width: 100%;
	margin: 20px 0;
}
article img.left {
	width: 30%;
	float: left;
	margin: 0 20px 20px 0;
}
article img.right {
	width: 30%;
	float: right;
	margin: 0 0 20px 20px;
}
.list {
	margin: 30px 0;
	text-align: center;
}
.list li {
	width: 30%;
	margin: 1%;	
	display: inline-block;
	vertical-align: top;
	padding: 20px;
	background-size: cover;
	background-position: center;
}
@media (max-width:650px) {
	.list li {
		width: 80%;
	}
}
.list li a {
	min-height: 200px;	
	display: block;
	text-align: left;
	color: white;
}
.links li {
	display: inline-block;
}
.columns {
	display: flex;
	align-items: stretch;
	border-top: 1px solid var(--grayBg); 
	border-bottom: 1px solid var(--grayBg);
}
.columns > div.image {
	background-size: cover;
	background-position: center;
}
.columns > div.color {
	background-color: var(--accentColor);
}
.columns > div.color * {
	color: white;
}
.columns > div.padding {
	padding: 3%;	
}
@media (max-width:650px) {
	.columns {
		display: block;
	}
	.columns > div {
		width: 100% !important;
		min-height: 30vh;
	}
}
.links li a {
	padding: 15px;
	padding-left: 40px;
	margin-right: 10px;
	margin-bottom: 10px;
	color: var(--accentColor);
	border: 1px solid var(--accentColor);
	font-weight: bold;
	display: block;
	border-radius: var(--boxRadius);
	background-image: url(../img/ui/btn_link.svg);
	background-size: 20px;
	background-position: 10px center;
	background-repeat: no-repeat;
}
.icons.large {
	width: 90%;
	margin: auto;
	align-items: center;
	justify-content: center;
	display: flex;
	margin-bottom: 30px;
	flex-wrap: wrap;
}
.icons.large li {
	min-width: 200px;
	max-width: 280px;
	margin: 10px;
	text-align: center;
	flex-basis: 0;
	flex-grow: 1;
	flex-shrink: 1;
}
.icons.large li i {	
	display: block;
	color: var(--accentColor);
	font-size: 90px;
	margin-bottom: 20px;
}
.icons.large li span {
	display: block;
	font-family: var(--especialFont);
	color: var(--grayText);
	font-size: 22px;
	margin-bottom: 10px;
}
.icons.small {
	width: 90%;
	margin: 30px auto 10px auto;
}
.icons.small li {
	margin: 10px;
	padding-left: 35px;
	position: relative;
	font-size: 15px;
}
.icons.small li i {	
	color: var(--accentColor);
	font-size: 20px;
	position: absolute;
	left: 0;
	top: 0;
}
.parallax {
	height: 300px;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #cbcaca;
}
blockquote {
	width: 80%;
    margin: 30px auto;
    padding: 0 0 0 20px;
    font-style: italic;
	font-family: var(--especialFont);
    font-size: 24px;
    font-weight: 600;	
    border-left: var(--accentColor) 10px solid;
}
blockquote span {
	margin-top: 15px;
	font-size: 16px;
    color: var(--grayText);
}
.comments {
	width: 100%;
	max-width: 600px;
    min-height: 50px;
	margin: 20px auto;
    background: var(--grayBg);
}
.embed {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	margin-bottom: 30px;
}
.embed iframe, .embed object, .embed embed, .embed .powa {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.sponsor {
	position: relative;
	z-index: 10;
}
.sponsor span {
	height: 40px;
	display: block;
	line-height: 40px;
	text-align: center;
	font-size: 12px;
	color: black;
	background: var(--grayBg);
}
.sponsor a {
	display: block;
	padding: 5px;
	text-align: center;
	background: #fff;
	border-bottom: 1px solid #e2e2e2;
}

/*SECTION GROUPS*/

/* Common styles for all menus */

.menu{
    text-align: center;
    margin: auto;
    overflow-x: scroll;
    width: 100%;
    z-index: 1500;
    display: block;
}
.menu__list {
	position: relative;
	display: -webkit-inline-flex;
	display:inline-flex;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	padding: 0;
	list-style: none;
    
}

.menu__item {
	display: block;
	margin: auto;
}

.menu__link {
	font-size: 1em;
    width: 80px;
    text-align: center;
	font-weight: bold;
	display: block;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.menu__link:hover,
.menu__link:focus {
	outline: none;
}
/* Prospero */
.menu--prospero .menu__link {
	position: relative;
	display: block;
	margin: 0 .5em;
	padding: .5em 0;
	color: #b5b5b5;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

.menu--prospero .menu__link:hover,
.menu--prospero .menu__link:focus {
	color: #929292;
}

.menu--prospero .menu__item--current .menu__link {
	color: #053c6c;
}

.menu--prospero .menu__link::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: #053c6c;
	-webkit-transform: scale3d(0, 1, 1);
	transform: scale3d(0, 1, 1);
	-webkit-transition: -webkit-transform 0.1s;
	transition: transform 0.1s;
}

.menu--prospero .menu__item--current .menu__link::before {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

/* Stack items for smaller screens */
/*
@media screen and (max-width:500px) {
	.menu__list {
		display: block;
		margin: 0 auto;
	}
}
*/

.my-sticky-element.stuck {
    position:fixed;
    top:80px;
    margin: auto;
    text-align: center;
    width: 100%;
    display: block;
}


.grupoa,.grupob,.grupoc,.grupod,.grupoe,.grupof,.grupog,.grupoh{
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.21);
    margin:0px;
}

#groups h1{
    margin: 0;
    background-image: url(/img/content/dark-mosaic.png);
    background-color: #dbc413;
    font-family: var(--especialFont);
    text-align: center;
    color: #ffffff;
    padding: 5px;
    vertical-align: middle;
    font-weight: 800;
    line-height: 50px;
    font-size: 30px;
}
.stats_table {
    width: 100%;
    color: white;
    text-align: center;
}
.stats_table ul{
    background-color: #e5e5e5;  
}
.stats_table li {
    width: 8%;
    padding: 10px 0;
    color: #dbc413;
    display: inline-block;
    text-align: center;
    vertical-align:middle;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1em;
}
.teamsStats {
    width: 100%;
    color: white;
    text-align: center;
    padding-bottom: 2px;
    background-color: #ffffff;
}
.teamsStats li {
    padding: 20px 0;
    color: #8b8b8b;
    display: inline-block;
    text-align: center;
    vertical-align:middle;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
}
.teamsStats li img{
    margin: 0;
    width: 100%;
    max-width: 51px;
    min-width: 80%;
}
.teamsStats h1 {
    font-size: 16px;
    color: #0275be;
}

/*vvvvTablas de estadisticasvvv*/

.generalstats_table {
    width: 100%;
    color: white;
}
.generalstats_table ul{
    background-color: #cbcbcb;
}
.generalstats_table li {
    width: 10%;
    padding: 10px 0;
    color: #ffffff;
    display: inline-block;
    text-align: center;
    vertical-align:middle;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    
}

.generalStats{
    width: 100%;
    text-align: left;
    background-color: #ffffff;
} 
.generalStats li {
    padding: 10px 0;
    color: #4b4b4b;
    display: inline-block;
    vertical-align:middle;
    font-weight: 400;
    font-size: 16px;
}
.generalStats li img{
    width: 100%;
    max-width: 30px;
}

/*^^^^Tablas de estadisticas^^^^*/

.divider{
    display: block;
    height: 1px;
    background-color: aqua;
    width: 100%;
}

@media (max-width:550px) {
	.stats_table li {
    font-size: .8em;
    }
    .teamsStats li {
    padding: 5px 0;
    font-weight: 600;
    font-size: 14px;
    }
    #groups h1{
    padding: 2px;
    font-size: 1.2em;
    }
    .grupoa,.grupob,.grupoc,.grupod,.grupoe,.grupof,.grupog,.grupoh{
    margin: 20px 0;
    }
}




/*^^^SECTION GROUPS^^^*/

/*SECTION GAMES*/
.swiper-container {
    width: 100%;
    margin: auto;
}
.swiper-container h1{
    font-size: 40px;
    text-align: center;
    color: #d1ba0f;
}
.swiper-pagination-bullet {
    width: 50px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 20px;
    color:#000;
    opacity: 1;
    background: rgb(255, 0, 0);
    }
.swiper-pagination-bullet-active {
    color:#fff;
    background: #ff00b1;
    }
.jornadas{
    max-width: 650px;
    min-width: 250px;
    margin: 40px auto;
    text-align: center;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.20); 
}
.jornadas h1{
    background-image: url(/img/content/dark-mosaic.png);
    background-color: #d1ba0f;
    color: #ffffff;
    text-align: center;
    font-weight: 800;
    font-size: 22px;
    vertical-align: middle;
    line-height: 36px;
    margin: 0 auto;
}
.jornadas .calendario{
    background-color: #717171;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
}
.jornadas ul{
    padding: 12px 0;
    margin: auto;
    background-color: rgb(255, 255, 255);
}
.jornadas ul li{
    vertical-align: middle;
    display: inline-block;
}
.jornadas ul li.bandera01 img{
    max-width: 45px;
}
.jornadas ul li.bandera02 img{
    max-width: 45px;
}


.jornadas ul li.gamedivider{
    height: 3px;
    width: 10px;
    vertical-align:middle;
    background-color: #9f9f9f;
}
.jornadas ul li.marcador01,.jornadas ul li.marcador02{
    font-size: 18px;
    position: relative;
    font-weight: 800;
    margin: 0 2%;
    color: #505050;
    font-family: var(--especialFont);
}
.jornadas ul li.marcador01 span.equipo01,.jornadas ul li.marcador02 span.equipo02 {
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    color: #4e4e4e;
    font-family: 'Lato', sans-serif;
}
.jornadas ul li.marcador01 span.equipo01{
    text-align: right;
    right: 85px;
    font-weight: 400;
    min-width: 120px;
}
.jornadas ul li.marcador02 span.equipo02{
    text-align: left;
    left: 85px;
    font-weight: 400;
    min-width: 120px;
}
@media (max-width:550px) {
	.jornadas h1{
    letter-spacing: 3px;
    font-size: 18px;
    }
    .jornadas .calendario{
    padding: 10px 0;
    font-size: 14px;
    }   
    .jornadas ul li.bandera01 img{
    width: 50%;
    margin-right: -10px;
    }
    .jornadas ul li.bandera02 img{
    width: 50%;
    margin-left: -10px;
    }
    .jornadas ul li.marcador01,.jornadas ul li.marcador02{
    font-size: 16px;
    margin: 0;
    }
    .jornadas ul li.marcador01 span.equipo01{
    right: 40px;
    top: 0%;
    min-width: 90px;
    }
    .jornadas ul li.marcador02 span.equipo02{
    left: 40px;
    top: 0%;
    min-width: 90px;
    }
    .jornadas ul li.gamedivider{
    height: 3px;
    width: 10px;
    margin: 0 2px;
    background-color: #909090;
    }
    .jornadas ul li.marcador01 span.equipo01,.jornadas ul li.marcador02 span.equipo02 {
    font-size: 14px;
    font-weight: 400
    }
}



/*
.jornadas ul li.equipo01{
    font-size: 18px;
    text-align: right;
    font-weight: 600;
    margin: 0 2% 0 0;
    color: #053c6c;
}
.jornadas ul li.equipo02{
    font-size: 18px;
    text-align: left;
    font-weight: 600;
    margin: 0 0 0 2%;
    color: #053c6c;
}
*/


/*^^^SECTION GAMES^^^*/



/*SECTION STADIUMS*/

/* Included color classes.. 
	.red 
	.blue 
	.yellow 
*/

#stadiums{
    margin: auto;
}

.crstadiums{
    margin: auto;
    text-align: center;
    max-width: 400px;
    width: 100%;
    vertical-align: middle;
}
.crstadiums img{
  display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
}
.crstadiums h4{
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin: 0px;
    color: #5e666d;
    vertical-align: middle;
}
#stadiums .content{
    max-width: 1400px;
}
#stadiums ul{
   
    margin: auto;
    text-align: center;
}
#stadiums ul li{
    margin: 20px;
    text-align: left;
    display: inline-block;
    vertical-align: top;
}
.specs{
    padding: 5px 0;
    color: #777777;
    border-bottom: 1px solid #bfbfbf; 
}



figure.snip1104 {
  position: relative;
  
  overflow: hidden;
  
  min-width: 220px;
  max-width: 320px;
  max-height: 220px;
  width: 100%;
  background: #000000;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

figure.snip1104 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

figure.snip1104 img {
  max-width: 100%;
  position: relative;
  opacity: 0.4;
}

figure.snip1104 figcaption {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

figure.snip1104 h2 {
  color: #ffffff;
  position: absolute;
  font-size: 22px;    
  left: 40px;
  right: 40px;
  display: inline-block;
  background: #000000;
  -webkit-transform: skew(-10deg) rotate(-10deg) translate(0, -50%);
  transform: skew(-10deg) rotate(-10deg) translate(0, -50%);
  padding: 12px 5px;
  margin: 0;
  top: 50%;
  text-transform: uppercase;
  font-weight: 400;
}

figure.snip1104 h2 span {
  font-weight: 800;
}

figure.snip1104:before {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  content: '';
  background: #ffffff;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: rotate(110deg) translateY(-50%);
  transform: rotate(110deg) translateY(-50%);
}

figure.snip1104 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

figure.snip1104.blue {
  background: #1b86cc;
}

figure.snip1104.blue h2 {
  background: #053c6c;
}

figure.snip1104.red {
  background: rgba(230, 67, 51, 0.98);
}

figure.snip1104.red h2 {
  background: #ac1a0a;
}

figure.snip1104.yellow {
  background: #7f5006;
}

figure.snip1104.yellow h2 {
  background: #583804;
}

figure.snip1104:hover img,
figure.snip1104.hover img {
  opacity: 1;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

figure.snip1104:hover h2,
figure.snip1104.hover h2 {
  -webkit-transform: skew(-10deg) rotate(-10deg) translate(-150%, -50%);
  transform: skew(-10deg) rotate(-10deg) translate(-150%, -50%);
}

figure.snip1104:hover:before,
figure.snip1104.hover:before {
  -webkit-transform: rotate(110deg) translateY(-150%);
  transform: rotate(110deg) translateY(-150%);
}

/*^^^SECTION STADIUMS^^^*/


.brandvoice {
	position: relative;
	z-index: 10;
	margin-bottom: 30px;
	background: white;
}
.brandvoice span {
	padding: 20px;
	display: block;
	text-align: center;
	font-size: 12px;
	background: var(--grayBg);
}
.brandvoice a {
	color: black;
	font-weight: bold;
}
.brandvoice a.logo {
	display: block;
	padding: 5px;
	text-align: center;
	background: rgba(255, 255, 255, 0.15);
	border-bottom: 1px solid var(--grayBg);
}
.suscribe {
	width: 90%;
	max-width: 350px;
	margin: 20px auto;
	padding: 20px;
	text-align: center;
	background: var(--grayBg);
	border-radius: var(--boxRadius);
}
.suscribe h1 {
	font-size: 20px;
	margin-bottom: 10px;
}
.suscribe a {
	height: 40px;
	display: block;
	line-height: 40px;
	color: white;
	margin-top: 20px;
	font-weight: bold;
	background: var(--accentColor);
	border-radius: var(--boxRadius);
}
.banner {
	margin: 30px 0;
	text-align: center;
}
.banner > p {
	width: 300px;
	height: 25px;
	margin: 1px auto;
	color: #fff;
	text-align: center;
	font-size: 10px;
	font-weight: 600;
	line-height: 25px;
	text-transform: uppercase;
	background: #000;
}
footer {
    position: relative;
	padding: 20px;
	background: white;
	color: black;
}
footer > p {
    max-width: 800px;
    margin: 0 auto;	
    color: var(--grayText);
	font-size: 9px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	line-height: 20px;
	letter-spacing: 1px;
}


/*animation*/

@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}


