@font-face {
    font-family: "montserratSemiBold";
    src: url(../fonts/Montserrat-SemiBold.ttf);
}
@font-face {
    font-family: "capture";
    src: url(../fonts/Capture\ it.ttf);
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    --azul: #283e5e;
    --amarillo: #d9a231;
    --gris: #303030;
    --grisClaro: #efefef;
    --verde: #148434; 
}
body{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
nav .nav-bottom{
    background-color: var(--verde) !important;
}


/*slider alquiler*/
.alquiler{
    /*border: solid red;*/
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: fit-content !important;
    padding: 0 !important;
}
.alquiler .carousel{
    height: fit-content !important;
    width: 100%;
    /*border: solid red;*/
}
.alquiler .carousel-item{
    height: fit-content !important;
    /*border: solid green;*/
}
.alquiler .carousel-item img{
    /*border: solid blue;*/
    width: 100% !important;
}
/*ITEMS*/
.alquiler-front{
    /*border: solid red;*/
    height: 120vh;
    margin-top: -120vh;
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.alquiler-front h1{
    font-family: "capture";
    color: white;
    font-size: 7.5vh;
}
.alquiler-front p{
    color: white;
    font-family: "montserratSemiBold";
    font-size: 5.5vh;
    
}
.alquiler-front .items-alquiler{
    /*border: solid green;*/
    padding: 2% 15%;
    display: grid;
    grid-template-columns: 33.33% 33.33% 33.33%;
    grid-row-gap: 10%;
}
.alquiler-front .items-alquiler img{
    width: 80%;
    margin: auto;
    background-color: white;
}
/*contacto cancha*/
.contacto-cancha{
    margin-top: 2%;
    width: 100%;
    /*border: solid red;*/
    background-image: url(../img/canchas/IMAGEN1.png);
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
} 
.contacto-cancha .seccion{
    width: 28%;
    /*border: solid red;*/
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}
.contacto-cancha .seccion img{
    width: 85%;
}
.contacto-cancha .seccion p{
    font-size: 2.8vh;
    line-height: 2.9vh;
    font-family: "montserratSemiBold";
}
.contacto-cancha .seccion a{
    /*border: solid blue;*/
    width: 65%;
    margin-bottom: 2.5%;
    margin-top: 2.5%;
    background-color: black;
    color: white;
    border-radius: 25px;
    font-size: 2.8vh;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1% 6%;
    font-family: 'capture';
    transition: ease-in .2s;
}
.contacto-cancha .seccion a:hover{
    background-color: var(--amarillo);
    transition: ease-in .2s;
}
.contacto-cancha .seccion a img{
    width: 20%;
    margin-right: 2%;
}
.contacto-cancha .seccion form{
    /*border: solid green;*/
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2%;
}
.contacto-cancha .seccion form p{
    font-size: 5vh;
    line-height: 5vh;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.contacto-cancha .seccion form .input-canchas{
    display: flex;
    flex-direction: column;
    margin-bottom: 1%;
    width: 65%;
}
.contacto-cancha .seccion form .input-canchas label{
    font-family: "montserratSemiBold";
    font-size: 3vh;
}
.contacto-cancha .seccion form .input-canchas input{
    border-radius: 6px;
    padding-left: 2%;
}
.contacto-cancha .seccion form .input-canchas button{
    width: 50%;
    background-color: black;
    font-family: "montserratSemiBold";
    border-radius: 6px;
    color: white;
    font-size: 3vh;
    margin-left: 50%;
}
/**/
.imagen-escuela{
    width: 80%;
    /*border: saddlebrown solid;*/
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5%;
}
.imagen-escuela img{
    width: 100%;
}
@media (max-width: 1080px){
    /*CAMPEONATOS*/
    .contacto-cancha{
       flex-direction: column;
       height: 115vh;
    } 
    .contacto-cancha .seccion{
        width: 85%;
    }
    .contacto-cancha .seccion img {
        width: 75%;
    }
    .seccion.seccion-btns {
        flex-direction: row;
        column-gap: 15px;
    }
    .contacto-cancha .seccion a{
        font-size: 2.2vh;
        padding: 1% 2%;
        height: 120px;
    }
    .contacto-cancha .seccion a img{
        width: 41%;
        margin-right: 0%;
    }
    .contacto-cancha .seccion form p{
        text-align: center;
    }
    .contacto-cancha .seccion form .input-canchas{
        width: 100%;
    }
    .contacto-cancha .seccion form .input-canchas input{
        height: 65px;
    }
}