/*========================= web fonts ===========================*/
@font-face {
	font-family: 'Avenir-Book';
	src: url(../webfonts/Avenir-Book.otf);
}

@font-face {
	font-family: 'Avenir-Roman';
	src: url(../webfonts/Avenir-Roman.otf);
}

@font-face {
	font-family: 'Avenir-Black';
	src: url(../webfonts/Avenir-Black.ttf);
}

@font-face {
	font-family: 'Champion-HTF-Middleweight';
	src: url(../webfonts/Champion-HTF-Middleweight.otf);
}

@font-face {
	font-family: 'Haettenschweiler';
	src: url(../webfonts/Haettenschweiler.ttf);
}

@font-face {
	font-family: 'Roboto';
	src: url(../webfonts/Roboto-ExtraLight.ttf);
	font-weight: 200;
}

@font-face {
	font-family: 'Roboto';
	src: url(../webfonts/Roboto-Light.ttf);
	font-weight: 300;
}

@font-face {
	font-family: 'Roboto';
	src: url(../webfonts/Roboto-Regular.ttf);
	font-weight: 400;
}

@font-face {
	font-family: 'Roboto';
	src: url(../webfonts/Roboto-Medium.ttf);
	font-weight: 500;
}

@font-face {
	font-family: 'Roboto';
	src: url(../webfonts/Roboto-Bold.ttf);
	font-weight: 700;
}

@font-face {
	font-family: 'Roboto';
	src: url(../webfonts/Roboto-ExtraBold.ttf);
	font-weight: 800;
}

/*====================== Basic css ========================*/
html {
	font-size: 0.521vw;
}

:root {
	scroll-behavior: unset;
	--Avenir-Book: 'Avenir-Book';
	--Avenir-Black: 'Avenir-Black';
	--Avenir-Roman: 'Avenir-Roman';
	--Champion-HTF-Middleweight: 'Champion-HTF-Middleweight';
	--Haettenschweiler: 'Haettenschweiler';
	--Roboto: 'Roboto';
	--black: #000000;
	--white: #FFFFFF;
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
	margin: 0;
	padding: 0;
}

ol,
ul {
	list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
	max-width: 100%;
}

/* body */
body {
	font-family: var(--Roboto);
	font-size: 1.6rem;
	font-weight: 400;
	background: var(--black);
	color: var(--white);
	padding: 0 9.4rem;
	position: relative;
}

body::before {
	content: "";
	width: 9.4rem;
	height: 100%;
	display: block;
	background-image: url(../images/shape_left.webp);
	background-repeat: repeat;
	background-size: 100%;
	position: fixed;
	left: 0;
	top: 0;
}

body::after {
	content: "";
	width: 9.4rem;
	height: 100%;
	display: block;
	background-image: url(../images/shape_right.webp);
	background-repeat: repeat;
	background-size: 100%;
	position: fixed;
	right: 0;
	top: 0;
}

/*====================== Header area start ========================*/
.header_top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header_topleft {
	background: linear-gradient(to right, #002F2D, #004A47);
	width: 14%;
	height: 6.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0.8rem 2rem;
}

.header_topleft img {
	width: 17rem;
}

.header_topmiddle {
	background: linear-gradient(to right, #003C39, #008E8A);
	width: 67%;
	height: 6.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0.8rem 1rem;
}

.header_topmiddle p {
	font-size: 1.7rem;
	font-weight: 200;
	color: var(--white);
	letter-spacing: 0.1rem;
}

.header_topmiddle p strong {
	font-weight: 800;
}

.header_topright {
	background: linear-gradient(to right, #002E2C, #00110F);
	width: 19%;
	height: 6.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0.8rem 2rem 0.8rem 3rem;
}

.header_topright ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header_topright a i {
	font-size: 1.8rem;
	color: #547877;
	transition: 0.2s all ease;
}

.header_topright a i:hover {
	color: var(--white);
}

.header_main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	margin: 4rem 0 6rem;
}

.header_logo {
	padding-left: 2.5rem;
}

.header_logo img {
	margin-top: 3px;
	width: 39rem;
	position: relative;
	z-index: 99;
}
.header_logo_aniv {
	width: 12rem;
}

.header_menu a {
	font-family: var(--Avenir-Roman);
	font-size: 2.2rem;
	color: #EDEDED;
	letter-spacing: 0.04rem;
	display: inline-block;
	margin-right: 6rem;
	transition: 0.2s all ease;
}

.header_menu a:hover {
	color: var(--white);
}

.header_main::after {
	content: "";
	width: 100%;
	height: 5.6rem;
	display: block;
	background: linear-gradient(to bottom, #2A2A2A, #151515);
	position: absolute;
	left: 0;
	z-index: 1;
}
.header_menu {
	z-index: 2;
}

/*Hamburger menu*/
.hamburger-menu {
	cursor: pointer;
	position: relative;
	display: none;
	z-index: 999;
}

.hamburger-menu span {
	background: var(--white);
	width: 3rem;
	height: .3rem;
	display: block;
	margin: .5rem 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.hamburger-menu:hover .line-top {
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}

.hamburger-menu:hover .line-bottom {
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
}

.hamburger-menu .line-top.current {
	-webkit-transform: translateY(200%) rotate(135deg);
	-ms-transform: translateY(200%) rotate(135deg);
	transform: translateY(200%) rotate(135deg);
}

.hamburger-menu .line-center.current {
	opacity: 0;
}

.hamburger-menu .line-bottom.current {
	-webkit-transform: translateY(-325%) rotate(-135deg);
	-ms-transform: translateY(-325%) rotate(-135deg);
	transform: translateY(-325%) rotate(-135deg);
}

/*ofcanvas menu*/
.ofcavas-menu {
	position: fixed;
	width: 100%;
	height: 100%;
	background: var(--black);
	z-index: 9;
	top: 0;
	display: none;
	left: -100%;
	transition: .3s;
	padding-left: 7rem;
}

.ofcavas-menu.current {
	left: 0;
}

.ofcavas-menu .header_menu {
	margin-top: 16rem;
}

.ofcavas-menu li {
	padding: .8rem 0;
}

.ofcavas-menu .social_media a {
	font-size: 2.2rem;
	color: var(--white);
	display: inline-block;
	margin-right: 3.5rem;
	margin-top: 3rem;
	transition: 0.2s all ease;
}

.ofcavas-menu .social_media a:hover {
	color: #547877;
}

/*====================== footer_area start ========================*/
.footer_area {
	background-image: url(../images/footer_bg.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;
	padding: 12rem 0 12rem;
}

.footer_item img {
	width: 34.8rem;
}
.footer_logo_aniv img {
	width: 22rem;
}

.footer_item p {
	font-family: var(--Avenir-Roman);
	font-size: 1.85rem;
	color: #E4E4E4;
	letter-spacing: 0.05rem;
	text-align: center;
	margin-top: 3.5rem;
}
.powered-by {
	margin-top: 7rem !important;
}

/*======================= calendario page start =========================*/
.calender_area {
	background-color: var(--black);
	background-image: url(../images/calender_bg.webp);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: top;
	padding: 8rem 0 1rem;
	margin-top: -11.25rem;
}

.calender_upper {
	width: 55.2rem;
	margin: 0 auto;
	text-align: center;
}

.calender_upper p {
	font-family: var(--Avenir-Book);
	font-size: 3.1rem;
	color: #EDEDED;
	text-transform: uppercase;
	text-align: center;
}

.calender_upper h1 {
	font-family: var(--Haettenschweiler);
	font-size: 12rem;
	font-weight: 400;
	color: #0AADA0;
	letter-spacing: 0.15rem;
	line-height: 1;
	text-align: center;
}

.slider_item h4 {
	font-family: var(--Haettenschweiler);
	font-size: 11.7rem;
	font-weight: 400;
	color: var(--white);
	letter-spacing: 0.15rem;
	line-height: 1;
	text-align: center;
}

.calender_slider {
	padding: 4.5rem 0 3rem;
	position: relative;
}

.calender_upper a {
	font-family: var(--Roboto);
	font-size: 3.4rem;
	font-weight: 300;
	color: #ECF0F3;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
}

.calender_upper a img {
	width: 4.5rem;
	margin-right: 2rem;
}

.owl-nav button {
	background: none;
	outline: none;
	border: none;
}

.calender_slider .owl-nav .owl-prev {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.calender_slider .owl-nav .owl-next {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.owl-nav button img {
	width: 3.5rem;
}

.calender_main {
	padding: 5rem 3rem 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-row-gap: 3rem;
	grid-column-gap: 6rem;
}

.calender_box {
	border: 0.3rem solid #00D3C4;
	padding: 2.5rem 3rem;
	text-align: center;
}

.calender_box h6 {
	font-family: var(--Roboto);
	font-size: 2.77rem;
	font-weight: 800;
	color: var(--white);
	text-align: center;
	text-transform: uppercase;
}

.calender_box h6 img {
	width: 2.4rem;
	margin-left: 0.5rem;
}

.score_btn a {
	font-family: var(--Roboto);
	font-size: 2.77rem;
	font-weight: 800;
	color: var(--white);
	text-align: center;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
}

.score_btn a img {
	width: 3.8rem;
	margin-right: 1rem;
}

.calender_item {
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 1.6rem 0 1rem;
	text-align: center;
}

.calender_innerLeft img {
	width: 16rem;
}

.calender_innerRight img {
	width: 12rem;
}

.calender_innerMiddle p {
	font-size: 5rem;
	font-weight: 300;
	color: var(--white);
	line-height: 1.1;
	text-align: center;
	margin-bottom: 0.5rem;
	letter-spacing: -0.05rem;
	text-transform: uppercase;
}

.calender_innerMiddle h3 {
	font-family: var(--Champion-HTF-Middleweight);
	font-size: 15.8rem;
	font-weight: 400;
	color: var(--white);
	text-align: center;
	line-height: 1;
}

.elephant_btn img {
	width: 24.3rem;
}

.down_btn {
	padding-top: 7rem;
	text-align: center;
}

.down_btn img {
	width: 10rem;
}

/*======================== standing page start =========================== */
.stand_main {
	margin-top: 5rem;
	padding: 4rem 3rem;
	background-image: url(../images/stand_bg.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	display: flex;
	align-items: center;
	padding-left: 1rem;
}

.stand_left {
	width: 44%;
	position: relative;
}

.stand_right {
	width: 56%;
	z-index: 9;
}

.stand_left h3 {
	font-family: var(--Haettenschweiler);
	font-size: 34rem;
	font-weight: 400;
	line-height: 1;
	color: #08EDDB;
	writing-mode: vertical-lr;
	transform: rotate(180deg);
}

.stand_left img {
	width: 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) scale(1.2);
	right: -6.5rem;
}

.stand_right table {
	width: 100%;
}

.stand_right table th {
	font-size: 6rem;
	font-weight: 700;
	line-height: 1;
	color: #FFFFFF;
	text-align: center;
	padding: 1rem 0;
}

.stand_right table td {
	font-size: 6rem;
	font-weight: 400;
	line-height: 1;
	color: #FFFFFF;
	text-align: center;
	border-bottom: 1px solid var(--white);
	padding: 1.2rem 0;
}

.stand_right table td:first-child {
	width: 30%;
}

.table_cnt {
	display: flex;
	align-items: center;
}

.table_cnt p {
	font-size: 3.6rem;
	font-weight: 400;
	color: #FFFFFF;
}

.table_cnt img {
	max-width: 60%;
}

.table_cnt span {
	width: 12rem;
	display: block;
	margin-right: 2rem;
}

.company_area {
  background: white;
  text-align: center;
}

.company_area h4 {
  font-family: var(--Haettenschweiler);
  font-size: 5.6rem;
  font-weight: 400;
  color: #000;
  line-height: 1;
  letter-spacing: 0.1rem;
  background: linear-gradient(to right, #52F4F3, #50F4C1);
  display: inline-block;
  padding: 0.2rem 4.6rem;
}

.company_logo {
  padding: 0;
  text-align: center;
}

.company_logo img {
  width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.carousel-sponsors .item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 18px;
  padding-top: 24px;
}

/*======================= Estadio page start =========================*/
.stadium-area {
	padding-bottom: 20rem;
	position: relative;
	text-align: center;
}

.stadium-item-inner h6 {
	font-family: var(--Avenir-Book);
	font-size: 3.2rem;
	color: #EDEDED;
	font-weight: 400;
}

.stadium-item-inner h2 {
	font-family: var(--Haettenschweiler);
	font-size: 12rem;
	color: #0AADA0;
	font-weight: 400;
	margin-bottom: 6rem;
}

.stadium-item-inner2 img {
	width: 80%;
}

.carousel2 .owl-nav button.owl-next, 
.carousel2 .owl-nav button.owl-prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 8.4rem;
	width: 3rem;
	height: 7.4rem;
	background-image: url(../images/stadium-02.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-color: transparent;
}


.carousel2 .owl-nav button.owl-next {
	background-image: url(../images/stadium-03.webp);
	left: auto;
	right: 8.4rem;
}

.stadium-item-inner3 {
	padding: 11rem 9rem 0;
}

.stadium-item-inner3 h3 {
	font-family: var(--Haettenschweiler);
	font-size: 6.8rem;
	font-weight: 400;
	color: #0AADA0;
	margin-bottom: 5rem;
}

.stadium-item-inner3 p {
	font-family: var(--Avenir-Book);
	font-size: 2.6rem;
	font-weight: 400;
	color: var(--white);
	margin-bottom: 5rem;
}

.stadium-item2 {
	position: absolute;
	width: 100%;
	top: -11.25rem;
	left: 0;
	z-index: -9;
}

.stadium-item2 img {
	width: 100%;
}

/*======================= gallery page start =========================*/
.gallery-item {
	overflow: hidden;
	padding: 0 8rem 8rem;
}

.gallery-item .row {
	--bs-gutter-x: 6rem;
}

.gallery-item-inner {
	margin-bottom: 5.5rem;
}

.gallery-item-inner img {
	width: 100%;
}

.gallery-item-inner2 ul {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 4.5rem;
}

.gallery-item-inner2 ul li {
	margin: 0 1.5rem;
}

.gallery-item-inner2 ul li:first-child,
.gallery-item-inner2 ul li:last-child {
	margin: 0;
}

.gallery-item-inner2 ul li a span {
	font-family: var(--Avenir-Roman);
	font-size: 2.2rem;
	font-weight: 400;
	color: #343434;
	width: 4.1rem;
	height: 4.1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #B4B4B4;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.gallery-item-inner2 ul li a.active span,
.gallery-item-inner2 ul li a:hover span {
	color: var(--white);
	background: #0aada0;
}

.gallery-item-inner2 ul li a img {
	width: 0.6rem;
}

/*======================= roster page start =========================*/
.roster-item {
	overflow: hidden;
	padding: 4rem 4rem 5.5rem;
}

.roster-item .row {
	--bs-gutter-x: 6.4rem;
}

.roster-item-inner {
	border: 0.5rem solid #00aea1;
	border-radius: 2rem;
	margin-bottom: 4.5rem;
}

.roster-item-inner2 {
	padding: 1rem 2.5rem 0;
	height: 39rem;
	overflow: hidden;
}

.roster-item-inner2 img {
	width: 100%;
}

.roster-item-inner4 {
	padding-left: 0;
	padding-right: 0;
}

.roster-item-inner4 img {
	margin-top: -2.5rem;
}

.roster-item-inner3 {
	background: #00aea1;
	display: flex;
	align-items: center;
	padding: 2rem;
	padding-bottom: 1rem;
	padding-left: 2.4rem;
	padding-right: 0;
	border-radius: 0rem 0rem 1rem 1rem;
}

.roster-item-inner3 h2 {
	font-family: var(--Avenir-Black);
	font-size: 5.6rem;
	font-weight: 900;
	color: #000000;
	margin-right: 1rem;
}

.roster-item-inner3 p {
	font-family: var(--Avenir-Book);
	font-size: 2.4rem;
	font-weight: 400;
	color: #000000;
	text-align: left;
}

.roster-item-inner3 p strong {
	font-family: var(--Avenir-Black);
	font-weight: 900;
	display: block;
	margin-top: -1.2rem;
}

/*======================== noticias page start ==========================*/
.noficias_item {
	position: relative;
	height: 667px !important;
}

.noticy_cnt {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	text-align: right;
	padding: 2rem 2.5rem;
	position: absolute;
	top: 0;
	left: 0;
}

.noticy_cnt h4 {
	font-family: var(--Haettenschweiler);
	font-weight: 400;
	font-size: 10rem;
	color: var(--black);
	line-height: 0.82;
	letter-spacing: 0.1rem;
	text-align: right;
}

.noticy_cnt p {
	font-family: var(--Avenir-Roman);
	font-size: 1.5rem;
	color: var(--black);
	max-width: 56rem;
	width: 100%;
	text-align: right;
	margin: 3rem 0 2rem;

}

.noticy_cnt a {
	font-family: var(--Avenir-Roman);
	font-size: 1.5rem;
	color: #0AADA0;
	background: #000000;
	display: inline-block;
	padding: 0.9rem 4.2rem;
	transition: 0.2s all ease;
}

.noticy_cnt a:hover {
	background: #0AADA0;
	color: #000000;
}

.inform_shape {
	top: -20rem;
}

.inform_main {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-row-gap: 3rem;
	grid-column-gap: 4.5rem;
	padding: 0 3rem;
}

.inform_box {
	background: linear-gradient(to bottom, #E2E2E2, #ADACAC);
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 2rem;
	text-align: left;
}

.inform_cnt {
	width: 45%;
	padding: 2rem 2.6rem;
}

.inform_item {
	width: 55%;
}

.inform_item img {
	width: 100%;
	border-radius: 0rem 1.8rem 1.8rem 0rem;
}

.inform_cnt img {
	width: 2.8rem
}

.inform_cnt h6 {
	font-family: var(--Avenir-Roman);
	font-size: 2.2rem;
	color: var(--black);
	margin: 1rem 0;
}

.inform_cnt h4 {
	font-family: var(--Haettenschweiler);
	font-size: 5rem;
	font-weight: 400;
	color: var(--black);
	line-height: 0.9;
}

.inform_cnt p {
	font-family: var(--Avenir-Roman);
	font-size: 2rem;
	color: var(--black);
	line-height: 1.3;
	margin: 2.2rem 0 1.2rem;
}

.inform_cnt a {
	font-family: var(--Haettenschweiler);
	font-size: 3rem;
	font-weight: 400;
	color: var(--black);
	line-height: 0.9;
	letter-spacing: 0.1rem;
	display: inline-block;
	transition: 0.2s all ease;
	position: relative;
}

.inform_cnt a::after {
	content: "";
	width: 4.2rem;
	height: 0.4rem;
	display: block;
	background: #00AEA1;
	margin-top: 0.5rem;
	transition: 0.25s all ease;
}

.inform_cnt a:hover::after {
	width: 100%
}

.inform_bottom {
	padding: 3rem 3rem 5rem;
}

.inform_count {
	background: #00B1AA;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 1.5rem;
	border-radius: 0.8rem;
	gap: 3rem;
}

.inform_count span {
	font-family: var(--Haettenschweiler);
	font-size: 4rem;
	font-weight: 400;
	color: var(--black);
}

.inform_count a span.activeSquare {
  border: 2px solid var(--white);
  padding: 0.2rem 0.6rem;
  border-radius: 0.4rem;
}

.inform_count .controlArrows {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 0 0.5rem;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 3rem !important;
	height: 100% !important;
	line-height: 1 !important;
	color: white;
	cursor: pointer;
}

.inform_count img {
	width: 1.2rem;
	opacity: 0.6;
}

.show_more_news {
	margin-top: 5rem;
}

.show_more_news_button {
	background-color: #469d99;
	color: #ffffff;
  	padding: 1rem 4rem;
	font-family: var(--Avenir-Book);
  	border-radius: 5px;
	font-size: 2rem;
  	border: none;
  	cursor: pointer;
  	transition: background-color 0.3s ease;
}

.show_more_news_button:hover {
  background-color: #3b827e;
}
/*===================== index page start =======================*/
.banner_item img {
	width: 100%;
}

.inform_shape2 {
	top: 0;
}

.inform_area2 {
	padding-top: 9rem;
}

.video_area {
	padding: 0 3rem;
}

.video_main {
	background-image: url(../images/video_bg.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border: 0.3rem solid #00D8C7;
	box-shadow: 0 0 1rem #00D8C7;
	border-radius: 2rem;
	padding: 3rem 3rem 2.5rem;
}

.video_left {
	text-align: center;
}

.video_left h6 {
	font-family: var(--Avenir-Book);
	font-size: 2.75rem;
	color: #0AADA0;
	line-height: 1;
	text-align: center;
}

.video_left h4 {
	font-family: var(--Haettenschweiler);
	font-size: 7.43rem;
	font-weight: 400;
	line-height: 0.8;
	color: #EDEDED;
	text-align: center;
	margin: 2rem 0;
} 

.video_left img {
	width: 100%;
	max-width: 257px;
}

.video_thumb a {
	display: block;
}

.video_thumb a img {
	width: 100%;
}

.video_cnt h4 {
	font-family: var(--Haettenschweiler);
	font-size: 3.26rem;
	font-weight: 400;
	color: #EDEDED;
	margin-top: 1rem;
}

.video_cnt p {
	font-family: var(--Avenir-Roman);
	font-size: 2.09rem;
	color: #EDEDED;
}

.video_main .row {
	--bs-gutter-x: 2.5rem;
}

.store_area {
	padding: 7rem 3rem 5.6rem;
}

.store_area .inform_uppercnt h6 {
	font-size: 2.5rem;
	line-height: 1;
}

.store_area .inform_uppercnt h2 {
	font-size: 13rem;
	line-height: 1;
	margin-bottom: 2.5rem;
}

.store_main {
	background: #232323;
	padding: 2.5rem 10rem;
	border-radius: 2rem;
	height: 90;
}

.store_item {
	border: 0.3rem solid #00D8C7;
	box-shadow: 0 0 0.6rem #00D8C7;
	padding: 2rem 2rem;
}

.store_item_cont {
	padding: 0rem 2rem !important;
}

.store_inner img {
	width: 100%;
}

.store_cnt {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 2.4rem;
}

.store_cnt h4 {
	font-family: var(--Haettenschweiler);
	font-size: 4.1rem;
	font-weight: 400;
	color: #E4E4E4;
	line-height: 1;
}

.store_cnt img {
	width: 7.2rem;
}

.club_area {
	background: linear-gradient(to right, #51F4F4, #52F5C0);
	padding: 1.2rem 2rem;
}

.club_area ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
}

.club_area ul li a {
	font-family: var(--Avenir-Roman);
	font-size: 3rem;
	display: inline-flex;
	color: var(--black);
	align-items: center;
}

.club_area ul li a img {
	width: 5.6rem;
	margin-right: 1rem;
}

.main_slier {
	padding-bottom: 0.5rem;
	border-top: 0.6rem solid #008482;
	margin-top: -9rem;
}

.header_main2 .header_logo {
	position: relative;
	top: -3.8rem;
}

.header_main2 {
	margin-top: 5rem;
}

.slider_itembox img {
	width: 100%;
}



/*=== primera area start ===*/

.primera-area {
    background-image: url(../images/primera-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 30px 15px 40px;
    border-bottom: 6px solid #008482;
}

.primera-item-inner {
    text-align: center;
}

.primera-item-inner img {
    max-width: 180px;
}

.primera-item-inner p {
    font-family: 'D-DINCondensed';
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    margin: 15px 0;
}

.primera-item-inner2 .divtitle {
    font-family: var(--Haettenschweiler) !important;
    font-size: 70px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.primera-item-inner2 .divtitle img {
    max-width: 8%;
    margin: 0 20px;
}

.primera-item-inner2 .divtitle span {
    background: linear-gradient(to bottom, #00D1FD 10%, #58FD9E 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.primera-item-inner2 .divtitle .sm-div-container {
    display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.primera-item-inner2 .divtitle .sm-div-container .sm-div {
    font-family: 'D-DINCondensed';
    font-weight: 700;
    color: #fff;
    padding: 4px 20px 8px;
    margin: 0 30px;
    background: #008482;
	height: 45px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
    font-size: 30px;
}

.primera-item-inner2 .divtitle .sm-div-container .sm-div img {
    max-width: 25px;
    margin: 0;
    margin-left: 12px;
}

.primera-item-inner3 {
    max-width: 700px;
    margin: 0 auto;
}

.primera-item-inner3 table {
    width: 100%;
}

.primera-item-inner3 table tr th {
    font-family: "Playfair", serif;
    font-size: 18px;
    font-weight: 400;
    border: 2px solid #fff;
    text-align: center;
}

.primera-item-inner3 table tr th {
    border-right: none;
}

.primera-item-inner3 table tr th:last-of-type {
    border-right: 2px solid #fff;
}

.primera-item-inner3 table tr td {
    font-family: "Playfair", serif;
    font-size: 32px;
    font-weight: 400;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    text-align: center;
}

.primera-item-inner3 table tr td:last-of-type {
    border-right: 2px solid #fff;
}

/* custom noticia */

.post-content p{
	margin-top: max(3.2vmin, 24px);
}

.post-content img, .kg-gallery-image > img{
    height: auto !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.scoreboard-date-btn{
	background-color: #469d99;
	color: #000;
	border-radius: 5px;
	padding: 1px 5px;
}
.scoreboard-team-name{
	margin-left: -5px;
}
.scoreboard-bs{
	color:#469d99;
	font-size: 17px;
}
.scoreboard-outs{
	background-color: #469d99;
	font-size: 8px;
	text-align: center;
	padding: 1.2px;
	line-height: 1.0;
}
.scoreboard-outs-count{
	font-size: 12px;
}


.scoreboard-slick .slick-track{
	float: left;
	left: 0px;
}



/*=== equipo-estadisticas page start ===*/

.batting-area {
    padding: 70px 15px 10px;
}

.batting-item {
    max-width: 1200px;
    margin: 0 auto;
}

.batting-item-inner h2 {
    font-family: 'Champion-HTF-Middleweight';
    font-size: 40px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 15px;
}

.batting-item-inner ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.batting-item-inner ul li {
    width: 33.333%;
    padding: 0 10px;
}

.batting-item-inner ul li:nth-of-type(4),
.batting-item-inner ul li:nth-of-type(5) {
    width: 50%;
}

.batting-item-inner ul li a {
    font-family: 'Roboto';
    font-size: 24px;
    font-weight: 700;
    color: #082727;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    margin-bottom: 20px;
}

.batting-item-inner ul li a.active {
    background-image: linear-gradient(to left, #008482, #008482, #008482);
    color: #4E4E4E;
}

.batting-item-inner ul li a:hover {
    opacity: .8;
}   

/*=== equipo-roster page start ===*/

.batting-area2 {
    border-bottom: 6px solid #008482;    
}

/*=== estadisticas-standing page start ===*/

.batting-item2 {
    max-width: 900px;
    margin: 0 auto;
}

.batting-item-inner6 table {
    width: 100%;
    border: 2px solid #fff;
}

.batting-item-inner6 table tr {
    border-bottom: 2px solid #fff;
}

.batting-item-inner6 table tr td {
    font-family: 'Roboto';
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    padding: 10px 0;
}

.batting-item-inner6 table tr td img {
    max-width: 90px;
    height: 50px;
}

.batting-item-inner6 table tr:nth-of-type(2) img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(10deg) brightness(104%) contrast(101%);
}

.batting-item-inner6 table tr td:nth-of-type(1) {
    padding-left: 45px;
}

.batting-item-inner6 table tr:nth-of-type(1) {
    background: #fff;
}

.batting-item-inner6 table tr:nth-of-type(1) td {
    padding: 0;
}

.batting-item-inner6 table tr:nth-of-type(1) td {
    color: #01332D;
}

/* termina area boxscore*/


/* CUSTOM */

.batting-item-inner6 table tr td{
    font-size: 14px !important;
}

.batting-item-inner6 table tr td:nth-of-type(1){
    padding-left: 10px;
}

.batting-item-inner6 table tr:nth-of-type(1) td{
    padding-left: 5px !important;
    padding-right: 5px !important;
}

.main-font p, .main-font h1, .main-font h2, .main-font a, .main-font span, .main-font td{
	font-family: var(--Haettenschweiler) !important;
}

/* -------------- Aviso de privacidad ----------------*/
.ap_mainContainer {
	width: 70%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}
.ap_text-justify {
	text-align: justify;
}
.ap_text-margin {
	margin-bottom: 60px;
}
.aviso-privacidad {
	margin-top: 0px !important;
}

.aviso-privacidad:hover {
	color: #0AADA0;
}


.header_banner {
	text-align: center;
}

.header_banner img {
	width: 85%;
}