body {
    margin: 0;
    padding: 0;
    max-width: 100%;
    font-family: sans-serif;
    background: #d63031;
    min-height: 100vh;
    flex-wrap: wrap;
}

header {
    position:absolute;
    top: 0;
    left: 0;
    padding: 0px 100px 0px 100px;
    margin: 0px;
    background: #262626;
    width: 100%;
    box-sizing: border-box;
    z-index: 100;
}

header .logo {
    color: #d63031;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    float: left;
    font-weight: 500;
}

header nav {
    float: right;    
}

header nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    
}

header nav ul li {
    list-style: none;
    position: relative;
    
}

header nav ul li.sub-menu:before {
    
    content: '\f0d7';
    font-family: fontAwesome;
    position: absolute;
    line-height: 50px;
    color: #fff;
    right: 15px;
    
}

header nav ul li.active.sub-menu:before {
    content: '\f0d8';
}

header nav ul li ul {
    position: absolute;
    left: 0;
    background: #333;
    display: none;

}

header nav ul li.active ul {
    display: block;
    
}

header nav ul li ul li {
    display: block;
    width: 200px;
}

header nav ul li a {
    height: 50px;
    line-height: 50px;
    padding: 0 30px;
    color: #fff;
    text-decoration: none;
    display: block; 
}

header nav ul li a:hover,
header nav ul li a.active {
    color: #fff;
    background: #2196f3;
}

.menu-toggle {
    color: #fff;
    float: right;
    line-height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: none;
}

@media (max-width: 991px)
    
{
    header {
        padding: 0 20px;
    }
    .menu-toggle {
        display: block;
    }
    header nav {

        position: absolute;
        width: 100%;
        height: calc(100vh - 50px);
        background: #333;
        top: 50px;
        left: 100%;
        display: none;
        transition: 1s;
    }
    
    /* Revisar Display arriba y abajo */
    
    header nav.active {
        display: block;
        left: 0;
    }
    header nav ul {
        display: block;
        text-align: center;
    }
    header nav ul li a {
        border-bottom: 1px solid rgba (0,0,0,.2);
    }
    
    header nav ul li.active ul {
        position: relative;
        background: #003e6f;
    }
    header nav ul li ul li {
        width: 100%;
    }
    
}


main {
    background: #fff;
    padding: 20px;
}

/*.container {
    margin: auto;
    margin-top: 20px;
    position: relative;
    width: 90%;
    max-width: 500px;
    padding-bottom: 110px;
    background: #fff;
    border: solid 5px #2c2c2c; 
    margin-bottom: 20px;
}*/

.slide_img {
    position: absolute;
    width: 100%;
}

.slide_img img {
    width: 100%;
}

#i1, #i2, #i3 {
    display: none;
}

.pre, .nxt {
    width: 12%;
    height: 100%;
    position: absolute;
    top: 0;
    background: rgba(188,188,188,.1);
    z-index: 99;
    cursor: pointer;
}

.pre {
    left: 0;
}

.nxt {
    right: 0;
}

#i1:checked ~ #one,
#i2:checked ~ #two,
#i3:checked ~ #three {
    z-index: 9;
}

 

.slide_img{
    z-index: -1;
}

/*.partidos {
    margin: 0;
    padding: 0;
    text-align: center;
} */

.content-cabecera {
    width: 100%;
    margin-top: 50px;
    text-align: center;   
}

.content-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

.content-logo img {
    width: 100%;
    height: 100%;
}

.content-cabecera h1 {
    font-weight: 100;
    color: aliceblue;
    margin-top: 5px;
}

.content-cabecera p {
    margin-top: 10px;
    color: aliceblue;
}

.content-cabecera a{
    color: aliceblue;
}




.content1 {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.img-content1 {
    width: 100%;
    text-align: center;
}

.img-content1 img {
    width: 100%;
    max-width: 500px;
    height: 100%;
    border-radius: 2%;
    margin-top: 5px;
    border: 1px solid;
}

.text-content1 {
    width: 100%
}

.text-content1 h1 {
    margin-top: 10px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 10px;
}

.text-content1 p {
    margin-top: 5px;
    letter-spacing: 1px;
    padding: 10px;
    text-align: center;
    margin-bottom: 10px;
}



.neon {
    text-align: center;
    padding: 20px;

}

.neon a{
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-decoration: none;
  font-size: 24px;
  overflow: hidden;
  transition: 0.2s;
  box-shadow: 0 0 10px #fff;
}
.neon a:hover{
  color: #d63031;
  background: #fff;
  box-shadow: 0 0 10px #fff, 0 0 40px #fff, 0 0 80px #fff;
  transition-delay: 1s;
}
.neon a span{
  position: absolute;
  display: block;

}
.neon a span:nth-child(1)  {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,transparent,#fff);
}
.neon a:hover span:nth-child(1) {
  left: 100%;
  transition: 1s;
}
.neon a span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg,transparent,#fff);
}
.neon a:hover span:nth-child(3) {
  left: 100%;
  transition: 1s;
  transition-delay: 0.5s;
}
.neon a span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg,transparent,#fff);
}
.neon a:hover span:nth-child(2) {
  top: 100%;
  transition: 1s;
  transition-delay: 0.25s;
}
.neon a span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg,transparent,#fff);
}
.neon a:hover span:nth-child(4) {
  bottom: 100%;
  transition: 1s;
  transition-delay: 0.75s;
}

footer {
    align-self: flex-end;
    text-align: center;
    width: 100%;
    bottom: 0;
}

hr {
    margin-top: 50px;
    width: 100%;
    height: 4px;
    border-style: none;
    background: #d63031;
}

gmap_canvas {
    width: 10%;
    margin-left: auto;
    margin-right: auto;
}

.mapa {
float: left;
    width: 55%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.pie {
    border: 1px solid;
    background-color: darkgray;
}

h7 {
text-align: center;
font-size: 12px;
}

h8 {
    font-size: 14px;
    text-align: center;
    margin: 0;  
}

h9 {
    text-align: center;
    font-family: sans-serif;
    font-size: 40px;
    padding: 0;
    font-weight: 700;
}

.resultados {
    overflow: hidden;
    background: #F54F44;
    border-left: 5px solid white;
    border-right: 5px solid red;
}

.barra {
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, white, red)  
}

.container {
    width: 80%;
    margin: 20px auto;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    
    
}

.app {
    width: 100%;
    height: 100%;
    background: #F54F44;
      
}

span.team {
    position: relative;
    width: 45%;
    height: 100%;
    display: inline-block;
    text-align: center;
}

span.team-left {
    float: left;
}

span.team-right {
    
}

span.team span.name {
    width: 90%;
    display: flex;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    color: black;
    padding: 5% 10% 22% 10%;
}

span.score {
    position: absolute;
    width: 100%;
    height: 100%;
    display:block;
    left: 0;
    text-align: center;
    font-size: 35px;
    font-weight: 600;
    letter-spacing: 3px;
    color: black;
    line-height: 110px;
}

span.team img.logo {
    width: 70px;
    margin-top: 20px;
}

span.team img.logo1 {
    width: 70px;
    margin-top: 20px;
    padding-bottom: 10px;
    margin-left: 0;
}

.stats p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 1px;
}

.categoria {
    font-size: 20px;
    font-weight: 600;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 1px;
}

.vermas {
    display: block;
  margin-left: auto;
  margin-right: auto;
    background: #F54F44;
    width: 50%;
    height: 40px;
    border: 2px solid color:white;
    color: white;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 600;
    font-family: sans-serif;
}

.redescontacto {
    text-align: center;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 12px;
    padding-top: 150px;
    cursor: pointer;
}

.redescontacto h2 {
    border: 2px solid;
    border-radius: 20px;
    cursor: pointer;
}

.redface {
    background-color:royalblue;
    color: white;
    text-decoration: none;
    width: 50%;
    max-width: 150px;
        margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    cursor: pointer;
 
}

.redface h2 {
    text-decoration: none;
    cursor: pointer;
}

.redtw {
    background-color: powderblue;
    color: white;
    text-decoration: none;
    width: 50%;
    max-width: 150px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    cursor: pointer;
}


.contact-form{
  width: 100%;
  max-width: 600px;
  background: #f1f1f1;
  position: relative;
  padding: 30px 40px;
  box-sizing: border-box;
  border-radius: 8px;
  text-align: center;
font-size: 12px;
  font-family: sans-serif;
    margin-left: auto;
    margin-right: auto;
}
.contact-form h1{
  margin-top: 0;
  font-weight: 200;
}
.txtb{
  border:1px solid gray;
  margin: 8px 0;
  padding: 12px 18px;
  border-radius: 8px;
    
}
.txtb label{
  display: block;
  text-align: left;
  color: #333;
  text-transform: uppercase;
  font-size: 14px;
  
}
.txtb input,.txtb textarea{
  width: 100%;
  border: none;
  background: none;
  outline: none;
  font-size: 18px;
  margin-top: 6px;
    
}
.btn{
  display: inline-block;
  background-color: #F54F44;
  padding: 14px 0;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  width: 100%;
}

.ubicacion {
    text-align: center;
    font-size: 22px;
    padding-bottom: 20px;
}

.fhistoria img {
    width: 100%;
    max-width: 500px;
    border: 1px solid;
}

.fhistoria {
    font-size: 10px;
    text-align: center;
}

.btneon1 {
    padding-bottom: 20px;
}

.btneon2 {
    padding-bottom: 20px;
}

.futsalbtn {
    padding-bottom: 20px;
}

.ejerbtn {
    padding-bottom: 20px;
}

.otrosbtn {
    padding-bottom: 20px;
}

.titulos h5 {
    text-align: center;
    font-weight: 600;
    padding: 0;
    margin-top: 5px;
    padding-bottom: 0;
    color:crimson;
    text-decoration: underline;
    width: 100px;
    margin-left: auto;
    margin-right: auto;

}

.login-box {
    width: 320px;
    height: 420px;
    background: #000;
    border-radius: 5%;
    color: #fff;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 70px 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.6)
}

.login-box .logo {
    height: 100px;
    width: 100px;
    position: absolute;
    top: -50px;
    left: calc(50% - 50px);
}

.login-box h1 {
    margin: 0;
    padding: 0 0 20px;
    text-align: center;
    font-size: 22px;
}

.login-box label {
    margin: 0;
    padding: 0;
    font-weight: bold;
    display: block;
}

.login-box input {
    width: 100%;
    margin-bottom: 20px;
}

.login-box input[type="text"],
.login-box input[type="password"] {
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    outline: none;
    height: 40px;
    color: #fff;
    font-size: 16px;
}
.login-box a {
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    color:crimson;
}

.login-box a:hover {
    color: #fff;
}

.login-box input[type="submit"] {
    border: none;
    outline: none;
    width: 200px;
    height: 40px;
    background: red;
    color: #fff;
    font-size: 18px;
    border-radius: 20px;
    cursor: pointer;
}

input[type="submit"]:hover,
input[type="submit"]:focus {
    background: #F54F44;
    transition: 0.2s ease;
}

.pie {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    border: 1px solid;
    background-color: darkgray;
}

.registro {
width: 80%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

#login-box{
    top:25%;
	justify-content: center;
	align-items: baseline;
	align-content: stretch;
    margin: 1% auto;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    padding-bottom: 10px;
    text-align: center;
}

.left-box{
    
    top: 0;
    left: 0;
    box-sizing: border-box;
    padding: 40px;
    width: 300px;
    height: 400px; 
    text-align: center;
    background: #000;
     border-radius: 5%;
    
}

h1{
    margin: 0 0 20px 0;
    font-weight: 300;
    font-size: 28px;
    color: fff;
}

input[type="text"],
input[type="password"]{
    display: block;
    box-sizing: border-box;
    margin-bottom: 20px;
    padding: 4px;
    width: 220px;
    height: 32px;
    border: none;
    outline: none;
    border-bottom: 1px solid #aaa;
    font-family: sans-serif;
    font-weight: 400;
    font-size: 15px;
    transition: 0.2s ease;
    border-radius: 5px;
}

input[type="submit"]{
    margin-top: 20px;
    margin-bottom: 20px;
    width: 200px;
    height: 32px;
    background: red;
    border: none;
    border-radius: 20px;
    color: #fff;
    font-family: sans-serif;
    font-size: 18px;
    transition: 0.2 ease;
    cursor: pointer;
}

input[type="submit"]:hover,
input[type="submit"]:focus
{
    background: #F54F44;
    transition: 0.2s ease;
}

.right-box {
    top: 0;
    right: 0;
    box-sizing: border-box;
    padding: 10px;
    width: 300px;
    height: 400px;
    background-color: #F86B61 ;
     border-radius: 5%;
}



.right-box .signinwith{
    display: block;
    margin-bottom: 40px;
    font-size: 28px;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6)
}

button.social {
    margin-bottom: 20px;
    width: 220px;
    height: 36px;
    border: none;
    border-radius: 20px;
    color: #fff;
    font-family: sans-serif;
    font-weight: 500;
    transition: 0.2s ease;
    cursor: pointer;
}

.facebook {
    background: #32508e;
}

.instagram {
    background: deeppink; 
}

.google{
    background: #dd4b39;
}

.pie {
    max-width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
    border: 1px solid;
    background-color: darkgray;
}

.localidat {
    color: white;
}

.pie2 {
    max-width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: grey;
    border: 1px solid;
}

.pie3 {
    max-width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: grey;
    border: 1px solid;
}

.logo3 {
    max-width: 100px;
    height: 100px;
    padding-top: 70px;
    padding-left: 38%;
} 

.pie4 {
    max-width: 100%;
    bottom: 0;
    left: 0;
    background: grey;
    border: 1px solid;
}

.presidente img {
width:150px;
  height:150px;
  background-size:cover;
  background-position:center;
  border-radius:50%;
margin:10px auto;
display:block;
    border: 1px solid;
}

.gerencia {
    text-align: center;
    padding:0;
    margin: 0;
}

.swiper-container {
    width: 80%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
}



.galeriafotos {
    box-sizing: border-box;
    text-align: center;
}

.galeriafotos h1 {
    margin-top: 20px;
}

.gallery {
    border: 1px solid;
    background-color: #F86B61;
    margin: 10px;
}

.gallery img {
    width: 100%;
    height: auto;
}

.des {
    padding: 15px;
text-align: center;
    
}

.responsive {
    padding: 0;
    float: left;
    width: 25%;
}

@media only screen and (max-width: 1920px) {
    .responsive {
        width: 100%;
        margin: 6px 0;
        
    }
}

@media only screen and (max-width: 1200px) {
    .responsive {
        width: 90%;
        margin: 6px 0;
        
    }
}

@media only screen and (max-width: 700px) {
    .responsive {
        width: 80%;
        margin: 6px 0;
        
    }
}

@media only screen and (max-width: 500px) {
    .responsive {
        width: 100%;
        
    }
}







