/*------------------------------------------------------------------

Project:	A Future HTML UI Kit
Version:	1.0.0
Author: 	webstrot 

------------------------------------------------------------------
[Table of contents]
 
1. body
2. header start


*/


/* custom css */

body, html{
	font-family: 'Roboto';
}
h1, h2, h3, h4, h5, h6{
    font-size: 20px;
    color: #111111;
	margin:0;
	padding:0;
	font-family: 'Roboto';
	font-weight: 400;
}
p{
    color: #999999;
    font-size: 14px;
	line-height: 24px;
}
a{
	color: #111111;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
a:hover{
	text-decoration:none;
	color: #000033;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
a:focus{
	color: #000033;
	outline:none;
}

/* ---------------------------------------------- /*
 * Preloader
/* ---------------------------------------------- */

#preloader {
    background: rgba(0, 0, 25, 1);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
}

#status,
.status-mes {
    background-image: url(../images/preloader-v6.png);
    background-position: center;
    background-repeat: no-repeat;
    height: 250px;
    left: 50%;
    margin: -100px 0 0 -100px;
    position: absolute;
    top: 50%;
    width: 250px;
}

.status-mes {
    background: none;
    left: 0;
    margin: 0;
    text-align: center;
    top: 65%;
}

.btn1{
  margin-top: 38px;
  padding: 0 76px 0 18px;
  text-align: left;
  font-size: 12px;
  font-weight: bold;
  background: #ffc722;
  line-height: 38px;
  display: inline-block;
  color: #000033;
  text-transform: uppercase;
  position: relative;
  animation-delay: 2s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
   transition: all 0.5s;
}
.btn1:hover {
  text-decoration: none;
  color: #ffc722;
  background: #000033;
}
.btn1 i {
  padding-left: 7px;
  color: #ffc722;
  line-height: 38px;
  width: 28px;
  background: #000033;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
 .btn1 i:before {
  position: relative;
  z-index: 2;
}
.btn1 i:after {
  content: '';
  width: 100%;
  z-index: 1;
  position: absolute;
  background: #000033;
  left: -15px;
  top: 0;
  right: 100%;
  bottom: 0;
  transform: skewX(-33deg);
  -webkit-transform: skewX(-33deg);
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.btn1:hover i{
  color: #000033;
  background: #ffc722;
  	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.btn1:hover i:after {
  background: #ffc722;
  	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}



/* custom css end */

/* --------------------------------------
LIST STYLE
------------------------------------------*/
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* --------------------------------------
FORM STYLE
------------------------------------------*/
.form-control {
  border: 1px solid #ededed;
  border-radius: 0;
  box-shadow: none;
}

.form-control:focus {
  border-color: #f9c841;
  box-shadow: none;
}


.section_heading{
	float:left;
	width:100%;
	text-align: center;
    margin-bottom: 10px;
}
.section_heading h2{
	font-size: 36px;
    line-height: 46px;
	margin: 8px 0 0;
	color: #222;
	font-weight:500;
	text-transform:capitalize;
}
.section_heading h2 span{
	color: #ffc722;
}
.section_heading .heading_line_1 {
    border: 1px solid #1f115c;
    display: inline-block;
    height: 3px;
    border-radius: 30px;
    vertical-align: middle;
    width: 48px;
}
.section_heading .icon{
    color: #ffc722;
    display: inline-block;
    font-size: 6px;
    line-height: 4px;
    margin: 0 3px;
}
.section_heading .heading_line_2 {
    border: 1px solid #1f115c;
    display: inline-block;
    height: 3px;
    border-radius: 30px;
    width: 48px;
}
.section_content{
	float:left;
	width:100%;
	margin-bottom:50px;
}
.section_content p{
	text-align: center;
	font-size: 16px;
    font-weight: 400;
}

#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
	background:#ffc722;
    width: 45px;
    height: 45px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 0px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
	z-index:1000;
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 13px;
    top: 5px;
    font-size: 30px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover i {
    color: #fff;
    top: 5px;
}

/*Common Page Header*/

.page_title_section {
	float:left;
	width:100%;
	padding-top: 150px;
	padding-bottom:150px;
	background: url(../images/about_us/el-club-1923-v2.jpg);
	position: relative;
	z-index:1;
	overflow: hidden;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.page_title_section_estadisticas {
	float:left;
	width:100%;
	padding-top: 150px;
	padding-bottom:150px;
	background: url(../images/counter-images/estadisticas.jpg);
	position: relative;
	z-index:1;
	overflow: hidden;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.page_title_section_estadisticas_mulos {
	float:left;
	width:100%;
	padding-top: 150px;
	padding-bottom:150px;
	background: url(../images/team/estadisticas-mulos-del-oro-fb.jpg);
	position: relative;
	z-index:1;
	overflow: hidden;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.page_title_section_estadisticas_femenil {
	float:left;
	width:100%;
	padding-top: 150px;
	padding-bottom:150px;
	background: url(../images/team/estadisticas-oro-femenil.jpg);
	position: relative;
	z-index:1;
	overflow: hidden;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.page_title_section_equipo {
	float:left;
	width:100%;
	padding-top: 150px;
	padding-bottom:150px;
	background: url("../images/team/equipo-oro-jalisco.jpg");
	position: relative;
	z-index:1;
	overflow: hidden;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.page_title_section_equipo_mulos {
	float:left;
	width:100%;
	padding-top: 150px;
	padding-bottom:150px;
	background: url("../images/team/equipo-mulos-del-oro-v2.jpg");
	position: relative;
	z-index:1;
	overflow: hidden;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.page_title_section_equipo_femenil {
	float:left;
	width:100%;
	padding-top: 150px;
	padding-bottom:150px;
	background: url("../images/team/equipo-oro-femenil.jpg");
	position: relative;
	z-index:1;
	overflow: hidden;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.page_title_section_academias {
	float:left;
	width:100%;
	padding-top: 150px;
	padding-bottom:150px;
	background: url(../images/team/academias.jpg);
	position: relative;
	z-index:1;
	overflow: hidden;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.page_title_section_directorio {
	float:left;
	width:100%;
	padding-top: 150px;
	padding-bottom:150px;
	background: url("../images/team/contacto-2.jpg");
	position: relative;
	z-index:1;
	overflow: hidden;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.page_title_section_contacto {
	float:left;
	width:100%;
	padding-top: 150px;
	padding-bottom:150px;
	background: url("../images/team/estadio.jpg");
	position: relative;
	z-index:1;
	overflow: hidden;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.page_header {
	padding-bottom: 0;
	border-bottom: 0;
}
.page_header h1 {
	position: absolute;
    top: 50%;
    left: 0;
    right: 0;
	font-size: 45px;
	line-height: 70px;
	color: #fff;
	font-weight: 400;
	text-transform: uppercase;
}
.sub_title_section{
	float:left;
	width: 100%;
	background:#ffc722;
	position: relative;
    top: 150px;
	padding:5px 0px 0px;
}
.page_header .sub_title_section:before {
    content: '';
    position: absolute;
    top: 22px;
    left: -57px;
    margin-top: -22px;
    border-bottom: 150px solid #ffc722;
    border-left: 57px solid transparent;
    z-index: -1;
}
.page_header .sub_title_section:after {
    content: '';
    position: absolute;
    top: 22px;
    right: -57px;
    margin-top: -22px;
    border-bottom: 150px solid #ffc722;
    border-right: 57px solid transparent;
    z-index: -1;
}
.page_header .sub_title{
	display: inline-block;
	position: relative;
	line-height: 0;
}
.page_header .sub_title li{
	float: left;
    font-size: 14px;
	line-height:35px;
    color: #fff;
}
.page_header .sub_title li:last-child{
	color: #fff;
}
.page_header .sub_title a {
    color: #222;
}
.page_header .sub_title a:hover {
    color: #fff;
}
.page_header .sub_title i {
    padding: 0px 12px;
}
@media (max-width : 766px) {
	.page_header h1 {
	  font-size: 35px;
	  line-height: 44px;
	}
}
@media (max-width : 766px) {
	.page_header h1 {
	  font-size: 35px;
	  line-height: 44px;
	}
}


.sidenav .closebtn {
	position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}
/* custom css end*/

.menu_header{
    position: absolute;
    z-index: 10;
    width: 100%;
}
.menu_wrapper {
    position: relative;
    width: 100%;
    z-index: 2;
    background-color: rgba(0, 0, 25, 0.8);
    line-height: 0;
}
.menu_wrapper .logo_image {
	vertical-align: middle;
    height: 70px;
	width: 10px;
    display: inline-block;
    position: relative;
}
.menu_wrapper .logo_image:before {
    content: '';
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: -50px;
    right: -95px;
    background-color: #ffc722;
    -webkit-transform: skewX(-33deg);
    -khtml-transform: skewX(-33deg);
    -moz-transform: skewX(-33deg);
    -ms-transform: skewX(-33deg);
    transform: skewX(-33deg);
    z-index: -1;
}
.menu_wrapper .logo_image img {
    -webkit-transition: all 0.5s ease-out;
    -khtml-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    position: absolute;
    z-index: 1;
}

.menu_wrapper_navigation{
    display: inline-block;
    float: left;
}
.menu_wrapper_navigation ul{
    display: inline-block;
    list-style: none;
    position: relative;
    margin: 0;
    padding: 0;
}
.menu_wrapper_navigation ul > li{
    position: relative;
    float: left;
    margin: 0;
    padding: 0;
}
.menu_wrapper_navigation ul > li > a:hover,
.menu_wrapper_navigation ul > li > a:focus, 
.menu_wrapper_navigation ul > li.active > a{
    color: #ffc722;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
    transition: all 0.5s;
}
.menu_wrapper_navigation ul > li > a{
    color: #ffffff;
    display: block;
    line-height: 70px;
    padding: 0 20px;
    /* ORIGINAL font-size: 17px; */
	font-size: 14.5px;
    font-weight: 400;
    text-transform: uppercase;
    vertical-align: middle;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
    transition: all 0.5s;
}
.menu_wrapper_navigation ul > li:last-child > a{
	padding-right:0;
}
.lv_search_bar{
	line-height: 70px;
    padding: 0px 0px 0px 15px;
    color: #fff;
    font-size: 17px;
    cursor: pointer;
}
.lv_search_box{
    position: absolute;
     height: 55px;
    width: 280px;
    padding: 5px;
    top: 100%;
    display: inline-block;
    border-radius: 0px;
    -webkit-box-shadow: 0px 4px 10px -2px rgba(0,0,0,0.23);
    -moz-box-shadow: 0px 4px 10px -2px rgba(0,0,0,0.23);
    -o-box-shadow: 0px 4px 10px -2px rgba(0,0,0,0.23);
    -ms-box-shadow: 0px 4px 10px -2px rgba(0,0,0,0.23);
    box-shadow: 0px 4px 10px -2px rgba(0,0,0,0.23);
    background-color: #ffffff;
    display: none;
    z-index: 1000;
	right:0;
}
.lv_search_box input{
    float: left;
    width: calc(100% - 45px);
    padding: 0 49px 0 10px;
    height: 45px;
    border: 1px solid #ececec;
    border-right: 0px;
}
.lv_search_box button{
    width: 48px;
    color: #ffc722;
    background: #000033;
    border: 1px solid #000033;
    border-left: none;
    line-height: 45px;
    text-align: center;
    position: absolute;
    top: 4px;
    right: 5px;
    border: none;
    outline: none;
    box-shadow: none;
    display: block;
    padding: 0;
    cursor: pointer;
    border-radius: 0;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}
.lv_search_box button:hover{
	color:#000033;
	background:#ffc722;
	border-color:#ffc722;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}
.top_bar_social_panel{
	text-align: right;
    margin: 0;
    border: 0;
    box-shadow: none;
	background:transparent;
}
.top_bar_social_panel .top_bar_social_wrapper{
    display: inline-block;
}
.contact_number i , .contact_number span{
	position:relative;
	color: #fff;
	font-size: 17px;
}
.contact_number:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: -3px;
    bottom: 0;
    background-color: #ffc722;
    -webkit-transform: skewX(-33deg);
    -khtml-transform: skewX(-33deg);
    -moz-transform: skewX(-33deg);
    -ms-transform: skewX(-33deg);
    transform: skewX(-33deg);
}
.contact_number{
	display: inline-block;
    padding: 5px 13px;
    margin-right: 10px;
    position: relative;
	margin-right:30px;
}
.contact_number i{
	margin-right:10px;
}
.top_bar_social_panel .top_bar_social_wrapper .top_bar_social_wrapper_icon a {
    display: inline-block;
    padding: 5px 13px;
	margin-right: 10px;
    position: relative;
}
.top_bar_social_panel .top_bar_social_wrapper .top_bar_social_wrapper_icon a i {
    font-size: 17px;
    position: relative;
    color:#fff;
}
.top_bar_social_panel .top_bar_social_wrapper .top_bar_social_wrapper_icon a:hover i{
    color: #000033;
}
.top_bar_social_panel .top_bar_social_wrapper .top_bar_social_wrapper_icon a:hover:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: -3px;
    bottom: 0;
    background-color: #ffc722;
    -webkit-transform: skewX(-33deg);
    -khtml-transform: skewX(-33deg);
    -moz-transform: skewX(-33deg);
    -ms-transform: skewX(-33deg);
    transform: skewX(-33deg);
}
.menu_dropdown{
    /*background: #000019;*/
	background-color: rgba(0, 0, 25, 0.7);
	display: none;
    position: absolute;
    width: 220px;
}
.menu_dropdown_wrapper .menu_dropdown:before{
	content: '';
    width: 100%;
    height: 3px;
    top: -3px;
    left: 0;
    right: 0;
    background: #ffc722;
    position: absolute;
}
.menu_wrapper_nav li.menu_dropdown_wrapper:hover .menu_dropdown{
	display: block; 
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.menu_wrapper_navigation li.menu_dropdown_wrapper .menu_dropdown ul > li > a{
    padding: 15px 20px;
    line-height: normal;
    font-size: 16px;
}

/*navbar-toggle*/

.navbar-toggle {
  border-radius: 0;
  border: 0;
  margin: 0;
  padding:9px 0px;
}
.navbar-toggle .icon-bar {
  width: 16px;
  background-color: #ffc722 !important;
}
.navbar-toggle:hover .icon-bar {
  background-color: #ffc722 !important;
}
.navbar-default .navbar-toggle:focus, 
.navbar-default .navbar-toggle:hover {
  background-color: transparent;
}

@media only screen and (max-width : 767px) {
  .navbar-toggle {
	top:15px;
  }
}

/* mobail_menu_main */

.menu_fixed{
	position:fixed;
	top:0;
	left: 0;
    right: 0;
}
.menu_fixed .logo_image{
	line-height:70px;
}
.mobail_menu_main{
	float:none;
	width:100%;
}
#sidebar {
  position: fixed;
  display: block;
  height: 100%;
  top: 0px;
  left: -500px;
  background-color: #ffffff;
  overflow: scroll;
  overflow-x: hidden;
  z-index:1000;
}
#links {
  position: relative;
  float: left;
}
#link_list {
  list-style-type: none;
  width: 100%;
  padding: 0px 50px 0px 0px;
}
#link_list li {
  display: block;
  width: 100%;
}
#link_list li:hover {
  background-color: #f9c841;
}
#toggle_close{
	position: absolute;
    z-index: 100;
    right: 20px;
    top: 10px;
    font-size: 25px;
    color: #fff;
    cursor: pointer;
}

@import url(https://fonts.googleapis.com/css?family=Raleway:400,200);
#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#cssmenu {
  width: 300px;
  font-family: Raleway, sans-serif;
  color: #ffffff;
}
#cssmenu ul ul {
  display: none;
}
#cssmenu > ul > li.active > ul {
  display: block;
}
.align-right {
  float: right;
}
#cssmenu > ul > li > a {
  padding: 16px 22px;
  cursor: pointer;
  z-index: 2;
  font-size: 16px;
  text-decoration: none;
  color: #000000;
  font-weight:500;
  border-bottom:1px solid #d3d3d3;
  background: #ffffff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#cssmenu > ul > li:first-child > a{
	border-top:1px solid #d3d3d3;
}
#cssmenu > ul > li > a:hover{
	background:#ffc722;
	border-bottom:1px solid #d3d3d3;
	color:#ffffff;
	 -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
#cssmenu ul > li.has-sub > a:after {
  position: absolute;
  right: 26px;
  top: 19px;
  z-index: 5;
  display: block;
  height: 10px;
  width: 2px;
  background: #000000;
  content: "";
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
   -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
#cssmenu ul > li.has-sub > a:before {
  position: absolute;
  right: 22px;
  top: 23px;
  display: block;
  width: 10px;
  height: 2px;
  background: #000000;
  content: "";
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
   -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
#cssmenu ul > li.has-sub > a:hover:after, #cssmenu ul > li.has-sub > a:hover:before{
	background:#ffffff;
	 -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
#cssmenu ul > li.has-sub.open > a:after,
#cssmenu ul > li.has-sub.open > a:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#cssmenu ul ul li a {
  padding: 14px 22px;
  cursor: pointer;
  z-index: 2;
  font-size: 14px;
  text-decoration: none;
  color: #ffffff;
  font-weight:bold;
  background: #49505a;
  -webkit-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}
#cssmenu ul ul ul li a {
  padding-left: 32px;
}
#cssmenu ul ul li a:hover {
  color: #ffffff;
}
#cssmenu ul ul > li.has-sub > a:after {
  top: 16px;
  right: 26px;
  background:#ffffff;
}
#cssmenu ul ul > li.has-sub > a:before {
  top: 20px;
  background:#ffffff;
}
#sidebar h1{
	padding: 15px 0px;
	background:#ffc722 ;
	font-size:20px;
	color:#fff;
	padding-left: 20px;
	font-weight:bold;
}
.navbar-default .navbar-nav.main-nav>li>a:after{
	background: #fff none repeat scroll 0 0;
    border-radius: 4px;
    content: "";
    height: 2px;
    left: 23px;
    opacity: 0;
    position: absolute;
	bottom:23px;
    transition: all 0.3s ease-in-out 0s;
    width: 25px;
}
.navbar-default .navbar-nav.main-nav>li>a:hover:after{
	background: #fff none repeat scroll 0 0;
    border-radius: 4px;
    content: "";
    height: 3px;
    left: 22px;
    opacity: 1;
    position: absolute;
	bottom:23px;
    transition: all 0.3s ease-in-out 0s;
    width: 25px;
}
/* header end */

/*-- slider-area Start --*/

.slider-area{
	float:left;
	width:100%;
	position:relative;
}
.slider-area .carousel-inner .item .caption-1 {
  width:100%;
  height:100%;
  background-position: center;
  background-size: cover; 
  background-repeat: no-repeat;
  background: url(../images/slider-images/oro-camiseta-local-v2.png) 50% 0 no-repeat;
  /*background: url(../images/about_us/el-club.jpg) 50% 0 no-repeat;*/
  position: relative;
  min-height:610px;
}
.slider-area .carousel-inner .item .caption-2 {
  width:100%;
  height:100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background: url(../images/slider-images/estadio-vallarta.jpg) 50% 0 no-repeat;
  position: relative;
  min-height:610px;
}
.slider-area .carousel-inner .item .caption-3 {
  width:100%;
  height:100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background: url(../images/slider-images/academias-v7.jpg) 50% 0 no-repeat;
  position: relative;
  min-height:610px;
}
.slider-area .carousel-inner .item .carousel-captions .content {
  position: relative;
  top:55%;
  left:40%;
  width:60%;
  text-align:right;
  color:#fff;
  z-index: 999;
  overflow: hidden;
  vertical-align: middle;
  padding-top:350px;
}
.slider-area .carousel-inner .item .carousel-captions .content h1{
	padding: 0 20px;
    color: #fff;
    font-size: 62px;
    text-transform: uppercase;
    /* ORIGINAL line-height: 91px;*/
	line-height: 91px;
    background: rgba(0, 0, 51, 0.25);
	animation-delay: 1s;
 }
.slider-area .carousel-inner .item .carousel-captions .content h1 span {
    color: #ffc722;
}
.slider-area .carousel-inner .item .carousel-captions .content h2{
	color: #fff;
	padding-top: 15px;
    font-size: 21px;
	animation-delay: 1.5s;
}
.slider-area .carousel-inner .item .carousel-captions .content h2 span {
    color: #ffc722;
}
.slider-area .carousel-inner .item .carousel-captions .content .btn1{
  margin-top: 38px;
  padding: 0 76px 0 18px;
  text-align: left;
  font-size: 12px;
  font-weight: bold;
  background: #ffc722;
  line-height: 38px;
  display: inline-block;
  color: #000033;
  text-transform: uppercase;
  position: relative;
  animation-delay: 2s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
   transition: all 0.5s;
}
.slider-area .carousel-inner .item .carousel-captions .content .btn1:hover {
  text-decoration: none;
  color: #ffc722;
  background: #000033;
}

.slider-area .carousel-inner .item .carousel-captions .content .btn1 i {
  padding-left: 7px;
  color: #ffc722;
  line-height: 38px;
  width: 28px;
  background: #000033;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.slider-area .carousel-inner .item .carousel-captions .content .btn1 i:before {
  position: relative;
  z-index: 2;
}
.slider-area .carousel-inner .item .carousel-captions .content .btn1 i:after {
  content: '';
  width: 100%;
  z-index: 1;
  position: absolute;
  background: #000033;
  left: -15px;
  top: 0;
  right: 100%;
  bottom: 0;
  transform: skewX(-33deg);
  -webkit-transform: skewX(-33deg);
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.slider-area .carousel-inner .item .carousel-captions .content .btn1:hover i{
  color: #000033;
  background: #ffc722;
  	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.slider-area .carousel-inner .item .carousel-captions .content .btn1:hover i:after {
  background: #ffc722;
  	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.carousel-nevigation{
	position:absolute;
	top:50%;
	float:left;
	width:100%;	
}
.carousel-nevigation > .prev{
	left:-138px;
	position:absolute;
	z-index: 1;
	width: 26px;
    height: 80px;
    line-height: 80px;
	text-align:center;
    background: rgba(255, 255, 255, 0.1);
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.carousel-nevigation > .next{
	right:-138px;
	position:absolute;
	z-index: 1;
	width: 26px;
    height: 80px;   
	text-align:center;
	background: rgba(255, 255, 255, 0.1);
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.slider-area:hover .carousel-nevigation > .prev{
	left:0;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.slider-area:hover .carousel-nevigation > .next{
	right:0;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.carousel-nevigation > .prev i{
	color: rgba(255, 255, 255, 0.5);
	font-size: 40px;
	line-height: 80px;
}
.carousel-nevigation > .next i{
	color: rgba(255, 255, 255, 0.5);
	font-size: 40px;
	line-height: 80px;
}
.carousel-nevigation > .next:hover i, 
.carousel-nevigation > .prev:hover i{ 
	color: #ffc722;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

/* slider_main_wrapper end */


/* upcoming_matches_section start */

.upcoming_matches_section{
	float:left;
	width:100%;
	padding-top:100px;
	padding-bottom:100px;
	background:#f7f7f7;
}	
.upcoming_matches_slider{
	float:left;
	width:100%;
}
.upcoming_matches_slider .owl-theme .owl-dots .owl-dot{
	display: inline-block;
    margin: 40px 10px 0;
    width: 25px;
    border-radius: 50%;
    height: 25px;
    position: relative;
    -webkit-box-shadow: 0 0 0 2px #999;
    -ms-box-shadow: 0 0 0 2px #999;
    -o-box-shadow: 0 0 0 2px #999;
    box-shadow: 0 0 0 2px #999;
    cursor: pointer;
    z-index: 10;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.upcoming_matches_slider .owl-theme .owl-dots .owl-dot span{
	padding: 0;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    background: transparent;
    margin: 0;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -ms-transition: all .5s ease;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.upcoming_matches_slider .owl-theme .owl-dots .owl-dot.active span, 
.upcoming_matches_slider .owl-theme .owl-dots .owl-dot:hover span {
	background: #f9c841 ;
   -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -ms-transition: all .5s ease;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.upcoming_matches_slider .owl-theme .owl-nav{
	display:none;
}
.match_list_img {
    text-align: center;
}
.match_list_img img{
	display: inline-block;
}
.match_list_img h4{
	color: #222;
	font-size:20px;
	font-weight:bold;
	margin-top:30px;
}
.match_list_img h2{
	color: #ffc722;
	font-size:60px;
	font-weight:bold;
	margin-top:30px;
}
.upcoming_matches_section .versus {
	padding-top: 100px;
    text-align: center;
    color: #222;
}
.upcoming_matches_section .versus span{
	display: block;
    font-size: 24px;
    line-height: 34px;
}
.upcoming_matches_section .versus .new{
	display: inline-block;
    padding: 0px 13px;
    position: relative;
    margin-bottom: 10px;
}
.upcoming_matches_section .versus .new:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: -3px;
    bottom: 0;
    background-color: #000019;
    -webkit-transform: skewX(-33deg);
    -khtml-transform: skewX(-33deg);
    -moz-transform: skewX(-33deg);
    -ms-transform: skewX(-33deg);
    transform: skewX(-33deg);
}
.upcoming_matches_section .versus .new span{
	position: relative;
    color: #fff;
    font-size: 17px;
}
.match_venue{
	color:#ffc722;
}

/* upcoming_matches_section end*/


/* aboutus_story_section start*/

.aboutus_story_section{
	float: left;
	width:100%;
	background-image: url("../images/about_us/oro-filosofia.jpg");
    background-position: center 0;
    background-size: cover;
	position:relative;
	padding-top:100px;
	padding-bottom:100px;
}

.aboutus_story_section_resumen-juego{
	float: left;
	width:100%;
	background-image: url("../images/slider-images/oro-camiseta.jpg");
    background-position: center 0;
    background-size: cover;
	position:relative;
	padding-top:100px;
	padding-bottom:100px;
}

.aboutus_story_section_overlay{
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0,0,25,0.5);
}
.aboutus_text_content{
    float: left;
	width:100%;
}
.aboutus_text_content p{
	line-height: 25px;
	font-size: 15px;
	color:#fff;
	margin-top: 30px;
}
.aboutus_text_content a{
	margin-top: 30px;
}
.aboutus_text_section h2{
	font-size: 36px;
    line-height: 46px;
    font-weight: 500;
	color:#fff;
}
.aboutus_text_section h2 span{
	color:#ffc722 ;
}

/* accordion_wrapper */

.accordion_wrapper{
	float: left;
	width: 100%;
}	
.accordion_wrapper .panel-heading {
	padding: 0px;
	border-radius: 0px;
}
.accordion_wrapper .panel-heading h4 {
    font-size: 18px;
    line-height: 24px;
}
.accordion_wrapper h2{
	font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 22px;
    text-transform: uppercase;
	margin-bottom: 24px;
}
.accordion_wrapper .panel-group .panel+.panel {
	margin-top: 0px;
}
.accordion_wrapper .panel-group {
  margin-bottom: 0;
}
.accordion_wrapper .panel-default {
  border: 0;
}
.accordion_wrapper .panel-default>.panel-heading {
  border-radius: 0px;
}
.accordion_wrapper .panel-default .panel-heading {
	background: transparent;
}
.accordion_wrapper .panel {
	background-color: transparent;
	box-shadow: none;
	border-left: 1px solid transparent;
	border-right: 1px solid transparent;
	border-radius: 0;
	margin: 0;
	border-bottom: 1px solid #999;
}
.accordion_wrapper .panel:last-of-type {
	border-bottom: 1px solid transparent;
}
.accordion_wrapper .panel .panel-heading a {	
	display: block;
	background: rgba(0, 0, 51, 0.15);
	padding: 12px 20px;
	color: #fff;
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
}
.accordion_wrapper .panel .panel-heading a.collapsed {
	color: #fff;
	background: rgba(0, 0, 51, 0.15);
	display: block;
	padding: 12px 20px;
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
}
.accordion_wrapper .panel-group .panel-heading+.panel-collapse>.panel-body {
  border-top: 0;
  padding-top: 0;
  padding: 25px 30px 30px 70px;
  background: rgba(0, 0, 51, 0.15);
  color: #e2e2e2;
  font-size:16px;
  line-height:24px;
}
.accordion_wrapper .panel .panel-heading a:before,
.accordion_wrapper .panel .panel-heading a.collapsed:before{
	font-family: 'FontAwesome';
	font-size: 20px;
	float: left;
	margin-right: 20px;
}
.accordion_wrapper .panel .panel-heading.eye a:before {  
  content: "\f06e";  
  color: #f9c841;
}
.accordion_wrapper .panel .panel-heading.heart a:before {  
  content: "\f004";  
  color: #f9c841;
}
.accordion_wrapper .panel .panel-heading.bullseye a:before {  
  content: "\f140";  
  color: #f9c841;
}
.accordion_wrapper .panel .panel-heading.desktop a:before {  
  content: "\f108";  
  color: #f9c841;
}
.accordion_wrapper .panel .panel-heading.desktop a.collapsed:before {
	content: "\f108"; 
	color: #f9c841;
}
.accordion_wrapper .panel .panel-heading.horn a:before {  
  content: "\f0a1";  
  color: #f9c841;
}
.accordion_wrapper .panel .panel-heading.horn a.collapsed:before {
	content: "\f0a1";
	color: #f9c841;			
}
.accordion_wrapper .panel .panel-heading.bell a:before {  
  content: "\f0f3";  
  color: #f9c841;
}
.accordion_wrapper .panel .panel-heading.bell a.collapsed:before {
	content: "\f0f3";
	color: #f9c841;	
}
.accordion_wrapper .panel .panel-heading a:after,
.accordion_wrapper .panel .panel-heading a.collapsed:after{
	font-size: 14px;
	float: right;
	width: 25px;
	height: 25px;
	line-height: 24px;
	text-align: center;
	display: block;
	border-radius: 50%;		
}
.accordion_wrapper .panel .panel-heading a:after {  
  content: "\2212";
  color: #ffc722;	
  border: 1px solid #ffc722;
}
.accordion_wrapper .panel .panel-heading a.collapsed:after {
	content: "+";
	color: #ffc722;	
	border: 1px solid #ffc722;
}
.aboutus_video{
	float: left;
	width:100%;
	height:100%;
	background-image: url("../images/about_us/oro-100.jpg");
    background-position: center 0;
    background-size: cover;
	position:relative;
}
.aboutus_video_proyeccion{
	float: left;
	width:100%;
	height:100%;
	background-image: url("../images/about_us/video_img-v2.jpg");
    background-position: center 0;
    background-size: cover;
	position:relative;
}
.aboutus_video_overlay{
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgb(0,0,25,0.5);
}
.aboutus_video_overlay_proyeccion{
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgb(0,0,25,0.5);
}
.aboutus_video .inner {
    text-align: center;
    font-size: 32px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 300;
    z-index: 2;
    flex-direction: column;
    line-height: 45px;
}
.aboutus_video .invisible{
	visibility: hidden
}
.aboutus_video .inner:before {
    content: '';
    border: 1px solid #ffc722;
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
}
.aboutus_video .play-trigger {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	margin-left: -30px;
	margin-top: -30px;
	border: 0;
	color: #ffc722;
	background: #fff;
	font-size: 20px;
	line-height: 60px;
	text-align: center;
	-webkit-transition      : all 0.3s ease 0s;
	-moz-transition      : all 0.3s ease 0s;
	-o-transition      : all 0.3s ease 0s;
	transition      : all 0.3s ease 0s;
}
.aboutus_video .play-trigger:hover {
  color: #fff;
  background: #ffc722;
}
.aboutus_video_proyeccion .play-trigger:hover {
  color: #fff;
  background: #ffc722;
}
.aboutus_video .play-trigger i {
	margin-left: 5px;
}


/* aboutus_story_section start*/


/*portfolio_section satrt*/

.portfolio_section{
	float:left;
	width:100%;
	padding-top:100px;
}
.portfolio_wrapper{
	float:left;
	width:100%;
	padding-top:100px;
	padding-bottom:100px;
}
.portfolio-area{
	float:left;
	width:100%;
	overflow:hidden;
}
.portfolio-filter {
    margin-bottom: 30px;
}
#filter li a{
    display: block;
    font-size: 16px;
    cursor: pointer;
	color:#000;
	background:transparent;
    padding: 10px 20px;
    margin-right: 10px;
	border-width: 1px;
    border-style: solid;
    border-color:#f9c841 ;
	position:relative;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}
#filter li a:hover,
#filter li a.active{
	color: rgb(255, 255, 255);
	background:#ffc722;
}
#filter li a:last-child{
    margin-right: 0px;
}
.portfolio_main_wrapper{
	float: left;
    width: 100%;
    position: relative;
}
.portfolio_img{
	float:left;
	width:25%;
}
.portfolio_img img{
	width:100%;
}
.portfolio_cont_overlay .img_wrapper{
    display: block !important;
    position: relative;
	overflow:hidden;
}
.portfolio_cont_overlay .img_wrapper:after {
    content: '';
    width: 100%;
    position: absolute;
    background: #ffc722;
    opacity: 0.8;
    top: 0;
    right: 0;
    bottom: 0;
    left: 150%;
    transform: skew(-33deg);
    -webkit-transform: skew(-33deg);
}
.portfolio_cont_overlay .filter_fullwidth_text {
    position: absolute;
    text-align: right;
    right: 30px;
    bottom: -100px;
}
.filter_fullwidth_text h2{
    font-size: 25px;
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 20px;
}
.filter_fullwidth_text a{
	color:#fff;
	width:45px;
	height:45px;
	line-height:45px;
	border: 2px solid #fff;
	border-radius:50%;
	font-size: 22px;
	text-align:center;
	display: inline-block;
}
.filter_fullwidth_text .search{
	margin-right:10px;
}
.portfolio_main_wrapper:hover .filter_fullwidth_text {
    bottom: 28px;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.portfolio_main_wrapper:hover .img_wrapper:after{
    left: 45%;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.portfolio_img1{
	margin-bottom:40px;
}
.portfolio_img1 img{
	width:100%;
}

/* portfolio_section end*/


/* team_section start*/

.team_section{
    float: left;
	width: 100%;
	padding-bottom: 100px;
    padding-top: 90px;
	background:#f7f7f7;	
}
.our_team_page_section{
	background:#fff;
	 float: left;
	width: 100%;
}
.our_team_page_section .team_wrapper{
	margin-top:30px !important;
}
.our_team_page_section .team_info{
	background:#f7f7f7 !important;
}
.team_slider{
	float:left;
	width:100%;
	text-align:center;
}
.team_slider .owl-carousel .owl-item{
	background:#ffffff;
	
}
.team_slider .owl-theme .owl-dots .owl-dot{
	display: inline-block;
    margin: 40px 10px 0;
    width: 25px;
    border-radius: 50%;
    height: 25px;
    position: relative;
    -webkit-box-shadow: 0 0 0 2px #999;
    -ms-box-shadow: 0 0 0 2px #999;
    -o-box-shadow: 0 0 0 2px #999;
    box-shadow: 0 0 0 2px #999;
    cursor: pointer;
    z-index: 10;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.team_slider .owl-theme .owl-dots .owl-dot span{
	padding: 0;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    background: transparent;
    margin: 0;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -ms-transition: all .5s ease;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.team_slider .owl-theme .owl-dots .owl-dot.active span, 
.team_slider .owl-theme .owl-dots .owl-dot:hover span {
	background: #f9c841 ;
   -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -ms-transition: all .5s ease;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.team_slider .owl-theme .owl-nav{
	display:none;
}
.team_wrapper{
	float:left;
	width:100%;
    background: #fff;
}
.team_wrapper_overlay{
    position: relative;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    overflow: hidden;
}
.team_wrapper_overlay:before{
	position: absolute;
    width: 100%;
    bottom: 0;
    visibility: hidden;
    content: "";
    border-bottom: 35px solid #ffc722;
    border-left: 24px solid transparent;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    z-index: 1;
}
.team_wrapper_overlay figure img{
    width: 100%;
    display: block;
    transition: all 0.3s;
}
.team_wrapper_overlay figure{
    display: block;
    margin: 0;
    overflow: hidden;
}
.team_wrapper:hover .team_wrapper_overlay figure img{
    transform: scale(1.1, 1.1);
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.team_wrapper_overlay_content {
    position: absolute;
    z-index: 11;
    left: auto;
    right: -23%;
    top: auto;
    bottom: 0;
    width: 100%;
    padding: 0;
    text-align: center;
}
.team_wrapper:hover .team_wrapper_overlay_info {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.team_social_panel_icons {
    margin: 0 3px;   
	-webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
	display: block;
    vertical-align: middle;
	color: #000033;
	/*color: #fff;*/
    padding: 3px 0;
    opacity: 0;
}
.team_wrapper_overlay_info:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -22px;
    width: 100%;
    border-bottom: 150px solid #ffc722;
    border-left: 57px solid transparent;
    z-index: -1;
}
.team_social_panel_icons a{
    margin: 0 8px 0 0;
    display: inline-block;
	line-height: inherit;
    vertical-align: top;
    text-align: center;
	color: #1c2334;
}
.team_social_panel_icons a i{
    display: inline-block;
    text-align: center;
    width: 32px;
    height: 32px;
    line-height: 32px;
    background-color: transparent;
    border: none;
    color: #fff;
}
.team_info{
	padding: 10px 0px;
	text-align:center;
}
.team_info h4{
	font-size: 18px;
    padding-top: 23px;
	text-transform:capitalize;
}
.team_info h4 a{
	color: #000019;
	text-decoration:none;
}
.team_info h5{
	font-size: 14px;
    color: #999;
    padding-top:8px;
    padding-bottom: 15px;
}

/* team_section end*/


/* counter_section start*/

.counter_section{
	width: 100%;
    float: left;
    background-image: url(../images/counter-images/counter-bg-v3.jpg);
    height: 100%;
    background-position: center 0;
    background-size: cover;
    position: relative;
    padding-bottom: 100px;
    padding-top: 90px;
	position:relative;
}
.counter_section_overlay{
	left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0,0,25,0.5);
}
.counter_section h2 {
    color: #fff;
}
.counter_section .section_heading .heading_line_1, 
.counter_section .section_heading .heading_line_2 {
    border: 1px solid #fad264;
}
.counter_section .counter_box{
	text-align: center;
    min-width: 150px;
    margin: 10px 15px;
    padding: 30px;
    border-radius: 50px 5px;
    background: rgb(0,0,25,0.5);
}
.counter_section .icon-one i:before {
    font-size: 60px;
    line-height: 60px;
	margin:0;
	color:#ffc722;
}
.counter_section  .count-description{
	font-size: 60px;
    color: #fff;
    font-weight: 800;
	padding-top: 20px;
    padding-bottom: 10px;
}
.counter_section h4{
	font-size: 18px;
	text-transform:capitalize;
}
.counter_section h4 a{
	color: #ffffff;
}
.counter_section .counter_box:hover h4 a{
	color: #ffc722;
}

/* counter_section end */


/* --------------------------------------
blog_section start
----------------------------------------- */

.blog_section {
	float:left;
	width:100%;
    padding-top: 100px;
    padding-bottom: 100px;
	
}
@media (max-width : 991px) {
	.blog_section .blog-post-wrapper {
		margin-bottom: 30px;
	}
}
.blog_section .blog-post-wrapper .post-thumbnail{
	position: relative;
}
.blog_section .blog-post-wrapper .post-thumbnail .posted-date{
	position: absolute;
	left: 17px;
	top: 17px;
	width: 60px;
    height: 60px;
	background: #ffc722;
	color: #FFFFFF;
	text-align: center;
	border-radius:50%;
}
.blog_section .blog-post-wrapper .post-thumbnail .posted-date .day {
	font-size: 20px;
	line-height: 44px;
	font-weight: 600;
	display: block;
}
.blog_section .blog-post-wrapper .post-thumbnail .posted-date .month {
	font-size: 11px;
	font-weight: 600;
	line-height: 0;
	display: block;
	text-transform: uppercase;
}
.blog_section .blog-post-wrapper .post-thumbnail img{
	width: 100%;
}
.blog_section .blog-post-wrapper .blog-content{
	border: 1px solid #ededed;
	padding: 20px;
}

/*entry-header*/

.blog_section .blog-post-wrapper .entry-header {
  margin-bottom: 20px;
  background:transparent;
}
.blog_section .blog-post-wrapper .entry-title{
	line-height: 22px;
	text-transform: capitalize;
	margin-bottom: 5px;
}
.blog_section .blog-post-wrapper .entry-title a{
	/*LÍNEA ORIGINAL color: #313131; */
	color: #000033;
}
.blog_section .blog-post-wrapper .entry-title a:hover{
	/*LÍNEA ORIGINAL color: #34c176; */
	color: #000033;
}

/*entry-meta*/

.blog_section .blog-post-wrapper .entry-header .entry-meta {
	font-size: 11px;
	text-transform: uppercase;
}
.blog_section .blog-post-wrapper .entry-header .entry-meta ul{
	margin:0;
	padding:0;
}
.blog_section .blog-post-wrapper .entry-header .entry-meta li {
	display: inline-block;
	border-right: 1px solid #E7E7E7;
	line-height: 10px;
	padding-right: 15px;
	margin-right: 15px;
}
.blog_section .blog-post-wrapper .entry-header .entry-meta li:last-child {
	border-right: 0;
	padding-right: 0;
	margin-right: 0;
}
.blog_section .blog-post-wrapper .entry-header .entry-meta li a{
	color: #969595;
}
.blog_section .blog-post-wrapper .entry-header .entry-meta li a:hover{
	color: #000033;
}
/*entry-content*/

.blog_section .blog-post-wrapper{
	position: relative;
}
.blog_section .blog-post-wrapper .entry-content p{
	margin: 0;
}

/*entry-footer*/

.blog_section .entry-footer {
    position: relative;
}
.blog_section .entry-footer {
    font-size: 0;
    overflow: hidden;
}
.blog_section .entry-footer .count {
    padding: 0 0 0 16px;
    line-height: 40px;
    position: relative;
}
.blog_section .entry-footer > div {
    display: inline-block;
    width: 50%;
    vertical-align: top;
    box-sizing: border-box;
}
.blog_section .entry-footer .count:before {
    content: '';
    /* LÍNEA ORIGINAL background: #f5f5f5; */
	background: #000033;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -30px;
    right: 0;
    z-index: 2;
    transform: skew(-33deg);
    -webkit-transform: skew(-33deg);
}
.blog_section .entry-footer .count span{
    margin-right: 10px;
    position: relative;
    z-index: 3;
}
.blog_section .entry-footer .count span a{
	display: inline-block;
    padding: 5px 14px;
    font-size: 13px;
	vertical-align: middle;
    line-height: 0px;
    color: #dadada;
    background: #fff;
    text-transform: uppercase;
    border-radius: 30px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.blog_section .entry-footer .read-more {
    background: #ffc722;
    text-align: center;
    position: relative;
}
.blog_section .entry-footer .read-more:before {
    content: '';
    background: #ffc722;
    width: 100%;
    position: absolute;
    left: -30px;
    top: 0;
    bottom: 0;
    z-index: 1;
}
.blog_section .entry-footer .read-more a {
    line-height: 40px;
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    color: #000033;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}
.blog_section .entry-footer .read-more a:hover{
	color:#fff;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}


/*blog gallery post*/

#blog_sectionSlider .carousel-control {
  top: auto;
  bottom: 20px;
  width: 30px;
  height: 23px;
  font-size: 11px;
  color: #dadada;
  text-shadow: none;
  filter: alpha(opacity=100);
  opacity: 1;
}
#blog_sectionSlider .carousel-control.left,
#blog_sectionSlider .carousel-control.right {
  background-image: none;
  background-color: #fff;
  line-height: 24px;
  -webkit-transform: skewX(-33deg);
  -khtml-transform: skewX(-33deg);
  -moz-transform: skewX(-33deg);
  -ms-transform: skewX(-33deg);
  transform: skewX(-33deg);
}
#blog_sectionSlider .carousel-control:focus, 
#blog_sectionSlider .carousel-control:hover {
  background-color: #ffc722;
  color: #fff !important;
  filter: alpha(opacity=100);
  opacity: 1;
}

#blog_sectionSlider .carousel-control.left {
  right: 60px;
  left: auto;
}
#blog_sectionSlider .carousel-control.right {
  right: 20px;
}


/*blog video post*/

.blog_section .blog-post-wrapper .play-trigger {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	margin-left: -30px;
	margin-top: -30px;
	border: 0;
	color: #ffc722;
	background: #fff;
	font-size: 20px;
	line-height: 60px;
	text-align: center;
	-webkit-transition      : all 0.3s ease 0s;
	-moz-transition      : all 0.3s ease 0s;
	-o-transition      : all 0.3s ease 0s;
	transition      : all 0.3s ease 0s;
}
.blog_section .blog-post-wrapper .play-trigger:hover {
  color: #fff;
  background: #ffc722;
}
.blog_section .blog-post-wrapper .play-trigger i {
	margin-left: 5px;
}

/* --------------------------------------
blog_section end
----------------------------------------- */
 
 
/* client_section start */

.client_section{
	float: left;
	width: 100%;
	background:#FFFFFF;
}
.client_slider {
	float: left;
	width: 100%;
	padding-top:50px;
}
.client_slider .item{
	text-align:center;
}
.client_slider .item img {
	/*LINEA ORIGINAL opacity:0.5;*/
	opacity:1;
	display:inline-block;
	-webkit-transition      : all 0.8s ease 0s;
    -moz-transition      : all 0.8s ease 0s;
    -o-transition      : all 0.8s ease 0s;
    transition      : all 0.8s ease 0s;
}
.client_slider .item img:hover {
	opacity: 1;
}
.client_slider .owl-theme .owl-nav{
	display:none;
}
.client_slider .owl-theme .owl-dots {
	display:none;
}
.client_section_heading{
	float:left;
	width:100%;
    z-index: 0;
    padding: 95px 0 90px 0;
    position: relative;
}
.client_section_heading:before{
    content: '';
    position: absolute;
    top: 0;
    right: 72px;
    bottom: 0;
    left: -1000%;
    z-index: -1;
    transform: skew(-33deg);
    display: block;
    background: #ffc722;
}
.client_section_title{
    padding-left: 32px;
}
.client_section_title h2{
	font-size:30px;
	text-transform:uppercase;
	color:#fff;
}

/* client_section end */


/* footer start*/

.footer{
	float:left;
	width:100%;
	height:100%;
	background-image: url(../images/jugadores-3.jpg);
    background-size: cover;
    background-position: center 0;
}
.footer_wrapper{
	float:left;
	width:100%;
	padding-top:100px;
	padding-bottom:100px;
    background-color: rgb(0,0,25,0.8);
}
.footer h4{
	font-size:18px;
	font-weight:500;
	padding-bottom:30px;
	color:#fff;
}
.footer h4:after{
	display: block;
    content: "";
    background: #f9c841 ;
    width: 40px;
    height: 2px;
    margin-top: 13px;
}
.footer_widget{
	float:left;
	width:100%;
}
.abotus_content{
	float:left;
	width:100%;
	padding-bottom:20px;
}
.abotus_content img{
	margin-bottom:20px;
}
.abotus_content p{
	font-size:16px;
	color:#b1afaf;
	margin-bottom:10px;
	letter-spacing:1px;
}
.footer_icon_wrapper{
	float:left;
	width:100%;
	margin-bottom: 15px;
}
.footer_icon_wrapper i{
    float: left;
	color: #fff;
    font-size: 20px;
    color: #b1afaf;
    margin-right: 15px;
}
.footer_icon_wrapper p{
	font-size: 16px;
    color: #b1afaf;
    font-weight: 300;
}
.footer_service_wrapper{
	margin:0;
	padding:0;
	list-style:none;
}
.footer_service_wrapper li{
	margin-bottom:20px;
}
.footer_service_wrapper li i{
	color:#b1afaf;
	margin-right:10px;
}
.footer_service_wrapper li a{
	color: #b1afaf;
    font-size: 15px;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.footer_service_wrapper li a:hover{
	color: #f9c841 ;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.footer_newsletter{
	float:left;
	width:100%;
	margin-bottom:20px;
}
.footer_newsletter p{
	color:#999;
	font-size:15px;
	margin-bottom: 15px;
}
.footer_newsletter input{
	width: 100%;
    height: 45px;
    background: #ffffff;
    font-size: 15px;
    line-height: 45px;
    border-radius: 4px;
    padding: 0 65px 0 20px;
    color: #838486;
    border: none;
}
.footer_newsletter i{
    background: #f9c841 ;
    color: #fff;
    height: 45px;
    width: 50px;
    position: absolute;
    text-align: center;
    line-height: 45px;
    right: 15px;
}
.newsletter_social_icons li{
	float:left;
	margin-left:10px;
}
.newsletter_social_icons li:first-child{
	margin-left:0px;
}
.newsletter_social_icons li a{
	float: left;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #d0d0d0;
    border: 1px solid #e8e8e8;
    border-radius: 50%;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    font-size: 18px;
}
.newsletter_social_icons li a:hover{
	background:#f9c841 ;
	border:1px solid #f9c841 ;
	color:#fff;
	-webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.footer_bottom_wrapper{
	float:left;
	width:100%;
	background:#000019;
	text-align:center;	
}
.footer_copyright_wrapper{
	font-family: 'Roboto';
	text-transform:capitalize;
	float:left;
	width:100%;
	display:inline-block;
	padding-top:30px;
	padding-bottom:30px;
}
.footer_copyright_wrapper p{
	margin:0;
}
.footer_copyright_wrapper a{
	color:#f9c841 ;
}

/* footer end*/

.aboutus_section{
	float: left;
	width:100%;
	padding-top:100px;
	padding-bottom:100px;
}
.aboutus_section .aboutus_text_content p{
	color:#999;
}
.aboutus_section .aboutus_text_section h2{
	color:#222;
}


/*skills_counter_section  start*/

.skills_counter_section {
	width: 100%;
    float: left;
    background-image: url(../images/counter-images/counter_bg.jpg);
    height: 100%;
    background-position: center 0;
    background-size: cover;
    position: relative;
    padding-bottom: 100px;
    padding-top: 90px;
	position:relative;
}
.skills_counter_section_overlay{
	left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0,0,0,0.8);
}
.skills_counter_section  .section_heading h2,
.skills_counter_section  .section_content p{
	color:#fff;
}
.skills_counter_section  .section_heading .heading_line_1,
.skills_counter_section  .section_heading .heading_line_2{
	border: 1px solid #fad264;
}
.skills_counter_section  .chart_1st, .chart_2nd, .chart_3rd, .chart_4th {
  position: relative;
  margin-bottom: 10px;
}
.skills_counter_section  .percent-one {
	height: 80px;
    width: 80px;
    border-radius: 50%;
    background: #fff;
    line-height: 80px;
    text-align: center;
    position: absolute;
    top: 10%;
    left: 50%;
	color:#f9c841 ;
	font-size:24px;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
}
.skills_counter_section  .percent-two{
	height: 80px;
    width: 80px;
    border-radius: 50%;
    background: #fff;
    line-height: 80px;
    text-align: center;
    position: absolute;
    top: 10%;
    left: 50%;
	color:#fe5555;
	font-size:24px;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
}
.skills_counter_section  .percent-three{
	height: 80px;
    width: 80px;
    border-radius: 50%;
    background: #fff;
    line-height: 80px;
    text-align: center;
    position: absolute;
    top: 10%;
    left: 50%;
	color:#00be59;
	font-size:24px;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
}
.skills_counter_section  .percent-four{
	height: 80px;
    width: 80px;
    border-radius: 50%;
    background: #fff;
    line-height: 80px;
    text-align: center;
    position: absolute;
    top: 10%;
    left: 50%;
	color:#ea6a38;
	font-size:24px;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
}
.skills_counter_section  .percent:after {
	content: '%';
	font-size: 24px;
}
.skills_counter_section  h4{
	font-size: 30px;
	padding-top: 10px;
	text-transform: capitalize;
}
.skills_counter_section  h4 a{
	color: #fff;
}

/*skills_counter_section  end*/

.progress_section {
	float:left;
	width:100%;
	padding-top:100px;
	padding-bottom:100px;
}
.progress_wrapper{
	float:left;
	width:100%;
}
.progress_wrapper_content{
	float:left;
	width:100%;
}
.progress_wrapper_content p{
	font-size:16px;
	color:#999;
	margin-bottom:20px;
}
.progress_wrapper_content ul li {
    display:inline-block;
    padding: 8px 0;
}
.progress_wrapper_content ul li a i {
    color: #ffc722;
    margin-right: 8px;
}
.progress_wrapper_content ul li a {
    font-size: 14px;
    color: #7e7e7e;
    font-weight: 500;
}
.progress_wrapper_content ul li a:hover {
    color: #01273a;
}
.progress_wrapper_content .learn_more_btn{
	display: inline-block;
    padding: 10px 30px;
    background: #ffc722;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 20px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.progress_wrapper_content .learn_more_btn:hover{
    background:#00283b;
    color: #ffc722;
	  -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.progress_wrapper_content .section_heading,
.progress_wrapper .section_heading {
	text-align:left;
	margin: 5px 0 25px;
}

.progress_wrapper .progress-item {
	float:left;
	width:100%;
	position: relative;
}
.progress_wrapper .progress-title {
	font-size: 16px;
    font-weight: 600;
    color: #222;
	display: inline-block;
	margin-bottom: 5px;
	padding-bottom: 8px;
}
.progress_wrapper .progress {
	height: 22px;
	box-shadow: none;
	border-radius: 2px;
    background: #000033;
	border: 5px solid #f2f2f2;
}
.progress_wrapper .progress-bar {
	background-color: #ffc722;
	box-shadow: none;
	text-align: right;
}
.progress_wrapper .progress-percent {
	font-size: 11px;
    font-weight: 500;
    color: #222;
    background: #ffc722;
    padding: 2px 8px;
    border-radius: 4px;
    height: 22px;
    line-height: 16px;
	position: absolute;  
	top: 5px;

}
.progress_wrapper .progress-percent::before {
	content: "";
	position: absolute;
	left: 0px;
	bottom: -4px;
	border-top: 6px solid #ffc722;
	border-right: 8px solid transparent;
}

.upcoming_matches_list{
	float: left;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
    background: #fff;
}
.table>tbody{
	text-align:left;
}
.table>tbody>tr{
    background: #f7f7f7;
}
.table>thead{
	background: #000033;
}
.table>tbody>tr>td, .table>tbody>tr>th, 
.table>tfoot>tr>td, .table>tfoot>tr>th, 
.table>thead>tr>td, .table>thead>tr>th {
	/* LINEA ORIGINAL width:50px; */
	width:auto;
    /* LINEA ORIGINAL padding: 20px; */
	padding: 15px;
    color: #a9a9a9;
    text-transform: capitalize;
	vertical-align:middle;
}
.table>thead>tr>th {
    width:auto;
	border-bottom: none;
    color: #fff;
	font-size:14px;
}
span.matches_list_wrapper_day_block {
    color: #ffc722;
	font-size: 21px;
    line-height: 17px;
}
span.matches_list_wrapper_month_block {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.3px;
    line-height: 24px;
	color: #222;
	display: block;
    vertical-align: middle;
}
.matches_list_wrapper_logo{
    width: 45px;
    height: 45px;
}
.matches_list_wrapper_logo img{
    width: 30px;
    height: 30px;
}
.matches_list_wrapper_name{
    font-size: 14px;
    letter-spacing: 0px;
	color: #222;
	padding: 0 5px;
}
.matches_list_wrapper_score {
    color: #000033;
	font-size: 14px;
}
.matches_list_wrapper_extralink {
    font-size: 14px;
	color: #ffc722;
    text-transform: uppercase;
}

/* contact_form_section start */

.contact_section {
	float:left;
	width:100%;
	padding-top:100px;
	padding-bottom:100px;
}
.contact_form_section .section_heading{ 	
	text-align:left;
	margin: 5px 0 25px;
}
.contact_form_section .form-group {
	margin-bottom: 10px;
}
.contact_form_section{
    float:left;
	width:100%;
}
.contact_form_section h4{
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;	
	padding-bottom: 30px;
	text-transform:uppercase;
}
.form-group {
  margin-bottom: 20px;
}
.form-control:focus {
  box-shadow: none;
}
.contact_form_section .form-group {
	margin-bottom: 10px;
}
.contact_form_section .form-control {
	background: #ffffff;
    border: 1px solid rgba(222, 206, 206, 0.56);
    color: #999999;
    display: block;
    font-size: 16px;
    height: 55px;
    margin-bottom: 25px;
    padding: 0 20px;
    width: 100%;
	border-radius:0;
	box-shadow:none;
	-webkit-transition: all 0.3s ease 0s;
   	-moz-transition: all 0.3s ease 0s;
   	-o-transition: all 0.3s ease 0s;
   	transition: all 0.3s ease 0s;
}
.contact_form_section .form-control:focus{
	border: 1px solid #313131 !important;
	background: transparent;	
}
.contact_form_section button.btn{
	margin: 0 auto;
	display: block;
    padding: 15px 32px;
    font-weight: 700;
	border-radius:0;
    -webkit-transition: all 0.3s ease 0s;
   	-moz-transition: all 0.3s ease 0s;
   	-o-transition: all 0.3s ease 0s;
   	transition: all 0.3s ease 0s;
   	font-weight: normal;
}
.contact_form_section .btn-default {
	background-color:#825339;
	color: #fff;
	border-color:#825339;
}
.contact_form_section .btn-default:hover,
.contact_form_section .btn-default.focus {
  	color: #f9c841;
	background:transparent;
  	border: 1px solid #f9c841 !important;
}
.contact_form_section .form-group textarea{	
    height: 110px;
    margin-bottom: 31px;
    padding: 10px 20px;
	resize:none;
}
.contact_form_section .form-control:focus{
	border: 1px solid #f9c841 !important;
	background: transparent;	
}
.contact_form_section button.btn{
	float: left;
	background: #ffc722;
    color: #fff;
    border-radius: 0px;
    color: #fff;
    padding: 10px 30px;
	border:0;
    font-weight: 400;
    text-transform: uppercase;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.contact_form_section button.btn:hover{
    background: #00283b;
    color: #ffc722;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

/* contact_form_section end */

/* contact_section_hours start */

.contact_section_hours{
	float:left;
	width:100%;
}
.contact_section_hours .section_heading{ 	
	text-align:left;
	margin: 5px 0 25px;
}
.contact_section_hours h4{
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
	letter-spacing:2px;
	padding-bottom: 30px;
}
.contact_section_hours p{
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}
.contact_section_hours .working-hours li {
    line-height: 42px;
	color:#999;
    font-size: 16px;
    font-weight: 300;
}
.contact_section_hours .working-hours li span {
    float: right;
	font-weight:300;
	color:#000033;
}
.contact_icon_section{
	float:left;
	width:100%;
	padding-top:100px;
	padding-bottom:100px;
	background: #f7f7f7;
	text-align:center;
}
.contact_icon_wrapper{
	background: rgba(0, 0, 0, 0.04);
    border: 4px solid #f3f3f3;
	padding: 40px 20px;
}
.contact_icon_wrapper_mapa{
	background: rgba(0, 0, 0, 0.04);
    border: 4px solid #f3f3f3;
	padding-top: 40px;
	padding-bottom: 40px;
	padding-left: 40px;
	padding-right: 40px;
}
.contact_icon_wrapper .contact_icon_block_one{
	text-align: center;
}
.contact_icon_wrapper .contact_icon_block_one i {
    font-size: 120px;
    color: #072d40;
    position: absolute;
    opacity: .03;
    z-index: 0;
    right: 0;
    top: 30%;
    left: 0;
}
.contact_icon_wrapper .contact_icon_block_two{
	text-align: center;
}
.contact_icon_wrapper .contact_icon_block_two i {
    font-size: 120px;
    color: #072d40;
    position: absolute;
    opacity: .03;
    z-index: 0;
    right: 0;
    top: 30%;
    left: 0;
}
.contact_icon_wrapper .contact_icon_block_three{
	text-align: center;
}
.contact_icon_wrapper .contact_icon_block_three i {
    font-size: 120px;
    color: #072d40;
    position: absolute;
    opacity: .03;
    z-index: 0;
    right: 0;
    top: 30%;
    left: 0;
}
.contact_icon_wrapper .contact_icon_block{
    border-radius: 50%;
    padding: 5px;
    display: block;
    text-align: center;
    transition: all .3s ease-in-out 0;
    border: 2px solid #f9cf52;
    width: 104px;
    height: 104px;
    margin: 0 auto 15px;
}
.contact_icon_wrapper .contact_icon_block i {
    background: #ffc722;
    width: 90px;
    height: 90px;
    text-align: center;
    display: block;
    border-radius: 50%;
    margin: 0 auto;
    font-size: 40px;
    color: #fff;
    line-height: 92px;
}
.contact_icon_wrapper h4 {
    text-align: center;
    font-size: 18px;
    color: #222;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 10px;
}
.contact_icon_wrapper hr {
    border: 1px solid #ffc722;
    width: 30%;
    margin: 10px auto;
    text-align: center;
    height: 1px;
    border-radius: 30px;
}
.contact_icon_wrapper p {
    text-align: center;
    font-size: 13px;
    line-height: 24px;
    color: #424242;
    font-weight: 400;
}
.contact_icon_wrapper:hover {
    box-shadow: 0 2px 30px rgba(0,0,0,0.10);
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.contact_icon_wrapper:hover .contact_icon_block_one i {
    transform: scale(1.4);
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.contact_icon_wrapper:hover .contact_icon_block_two i {
    transform: scale(1.7);
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.contact_icon_wrapper:hover .contact_icon_block_three i {
    transform: scale(1.6);
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

/* contact section end */

 

/* media  query css for ipad */

@media(min-width: 992px)and (max-width: 1199px){
	
	.menu_wrapper_navigation ul > li > a {
		font-size:15px;
		padding: 0 15px;
	}
	.slider-area .carousel-inner .item .carousel-captions .content h1 {
		font-size: 50px;
	}
	.client_slider .item img {
		padding: 12px;
	}
	.contact_section_hours{
		margin-top:40px;
	}
	

}

@media(min-width: 768px) and (max-width: 991px) {
	
	.slider-area .carousel-inner .item .carousel-captions .content h1 {
		font-size: 36px;
	}
	.navbar-toggle{
		display:block;
		left:0;
		top:15px;
	}
	.portfolio_img {
		width: 50%;
	}
	#filter li a {
		padding: 10px 12px;
	}
	.footer_widget {
		margin-bottom:40px;
	}
	.team_wrapper {
		margin-bottom:40px;
	}
	.client_slider .item img {
		padding: 12px;
	}
	.contact_section_hours{
		margin-top:40px;
	}
	.contact_icon_wrapper p {
		font-size: 15px;
	}
	.aboutus_video{
		margin-top:50px;
	}
	.skills_counter_section  h4 {
		margin-bottom:40px;
	}
	.progress_wrapper_content{
		margin-bottom:40px;
	}
	.our-progress{
		margin-bottom:60px;
	}
	.accordion_wrapper{
		margin-top:50px;	
	}
	.client_slider {
		padding-bottom: 50px;
	}
	.client_section_heading {
		padding: 20px 0;
	}
	.matches_list_wrapper_info {
		width: 75%;
	}
	.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
		width: auto;
		padding: 20px 10px;
	}

}
/* media query css for ipad end */


/* media query css for mobile */

@media(max-width: 767px){
	
	.menu_wrapper .logo_image {
		line-height: 70px;
	}
	.slider-area .carousel-inner .item .carousel-captions{
		text-align:center;
	}
	.slider-area .carousel-inner .item .carousel-captions .content{
		display:inline-block;
		text-align: center;
		top:0;
		left:0;
	}
	.slider-area .carousel-inner .item .carousel-captions .content h1 {
		text-align: center;
		font-size: 32px;
		line-height:42px;
		padding: 20px;
	}
	.slider-area .carousel-inner .item .carousel-captions .content h2 {
		text-align: center;
		line-height:31px;
	}
	.slider-area .carousel-inner .item .carousel-captions .content .btn1 {
		display:inline-block;
	}
	.upcoming_matches_section .versus {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.portfolio_img {
		width: 100%;
	}
	#filter li a:last-child {
		margin-top: 20px;
	}
	.footer_widget {
		margin-bottom:40px;
	}
	.team_wrapper {
		margin-bottom:40px;
	}
	.client_slider .item img {
		padding: 10px;
	}
	.client_slider .owl-theme .owl-dots {
		display: none;
	}
	.team_slider .owl-theme .owl-dots .owl-dot{
		display:none;
	}
	.progress_wrapper{
		margin-bottom:40px;
	}
	.aboutus_video{
		margin-top:50px;
	}
	.contact_form_section, .contact_icon_wrapper{
		margin-bottom:40px;
	}
	.skills_counter_section  h4 {
		margin-bottom:40px;
	}
	.progress_wrapper_content{
		margin-bottom:40px;
	}
	.our-progress{
		margin-bottom:60px;
	}
	.accordion_wrapper{
		margin-top:50px;	
	}
	.client_slider {
		padding-bottom: 50px;
	}
	.client_section_heading {
		padding: 20px 0;
	}
	.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
		width: auto;
		padding: 20px 10px;
	}
	.matches_list_wrapper_name1, .matches_list_wrapper_name2 {
		font-size: 14px;
	}
}

@media only screen and (max-width : 480px) {
	
	.slider-area .carousel-inner .item .carousel-captions .content {
		padding-top: 250px;
	}
	.section_heading h2 {
		font-size: 30px;
	}
	.slider-area .carousel-inner .item .carousel-captions .content h1 {
		font-size: 24px;
	}
	.client_section h2 {
		font-size: 30px;
	}
	.matches_list_wrapper_name1, .matches_list_wrapper_name2 {
		padding:0;
	}
}
	

@media only screen and (max-width : 390px) {
	

	.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
		padding: 20px 7px;
	}
	.matches_list_wrapper_name1, .matches_list_wrapper_name2 {
		padding:0;
	}
	.matches_list_wrapper_extralink {
		font-size: 14px;
	}
	.matches_list_wrapper_score {
		font-size: 15px;
	}
	.accordion_wrapper .panel .panel-heading a {
		font-size: 14px;
		padding: 10px 10px;
	}
	.accordion_wrapper .panel .panel-heading a.collapsed{
		padding: 10px 10px;
	}
	.accordion_wrapper .panel-group .panel-heading+.panel-collapse>.panel-body {
		font-size: 14px;
	}
	
}

/**********-----pricing section css-------*************/
.pricing-section {
  float:left;
  width:100%;
  background:#fff;
  padding-top:90px;
  padding-bottom:100px;
}
.hosting-overlay {
  padding-bottom: 120px; }

.pricing-list .pricing-item {
  background-color: #242729;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  text-align: center;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }
  @media (max-width: 990px) {
.pricing-list .pricing-item {
      margin-bottom: 30px; } }
.pricing-list .pricing-item:hover {
    background-color:#d8a717;
  -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.pricing-list .pricing-item:hover .pricing-header {
      background-color: #242729;
  -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;    
}
.pricing-list .pricing-item:hover .pricing-info {
      background-color: #242729;
  -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;   
  }
.pricing-list .pricing-item:hover .pricing-info ul {
        background-color: #d8a717;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;     
  }
.pricing-list .pricing-item .pricing-header {
    background-color: #d8a717;
    border-top-left-radius: 50px;
    color: #fff;
    padding: 25px 0px;
    border-bottom-right-radius: 90px;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    text-transform: uppercase; }
 .pricing-list .pricing-item .pricing-header h6 {
      color: #fff;
      margin-bottom: 28px; }
 .pricing-list .pricing-item .pricing-header span {
      font-size: 30px; }
.pricing-list .pricing-item .pricing-header span.price {
      font-size: 40px;
      margin: 0px;
      line-height: 30px;
      font-size: 48px;
      font-weight: 700; }
.pricing-list .pricing-item .pricing-header p {
      color: #fff;
      margin-top: 5px; }
.pricing-list .pricing-item .pricing-info {
    background-color: #d8a717;
    overflow: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }
.pricing-list .pricing-item .pricing-info ul {
      margin: 0px;
      padding: 0px;
      border-top-left-radius: 90px;
      background-color: #242729;
      -webkit-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out; }
.pricing-list .pricing-item .pricing-info ul li {
        padding: 7px 0px;
        list-style: none; }
 .pricing-list .pricing-item .pricing-info ul li:first-child {
          padding-top: 25px; }
 .pricing-list .pricing-item .pricing-info ul li:last-child {
          border-bottom: 0px; 
}  
 .pricing-list .pricing-item .pricing-info ul li p {
          color: #fff;
          text-transform: capitalize;
}
 .pricing-list .pricing-item .pricing-link {
    display: inline-block;
    margin-bottom: 40px; 
}
 
/* media query css for mobile end */