body {
    margin: -10px;
    font-family: 'inherit';
}

/*----------------------------------------------------------------*/
/*-----------------------Barra inicial----------------------------*/

.main-header {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 3vw;
}

.logo img {
    width: 25vw;
}

.contacto {
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1vw;
}

.contacto i {
    font-size: 0;
}

.contacto h6,
.contacto a {
    font-size: 1.5vw;
}


/*----------------------------------------------------------------*/
/*----------------------Banner principal--------------------------*/
.banner {
    position: relative;
}

.banner div img {
    width: 100%;
    height: auto;
}

.banner .container {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 1);
    z-index: 9999;
}

.banner .container h2 {
    font-size: 6vw;
}

.banner .container h6 {
    font-size: 4vw;
}



/*----------------------------------------------------------------*/
/*--------------------------Descripcion----------------------------*/


.descripcion {
    margin: 3vw 5vw;
}

.overlay {
    transition: all 0.2s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.overlay p {
    font-size: 1.3vw;
    font-weight: bold;
    margin-bottom: 0;
}

.evento {
    position: relative;
}

.evento img {
    width: 30vw;
    padding-bottom: 1.5vw;
}

.evento:hover img {
    opacity: 0;
}

.evento:hover .overlay {
    opacity: 1;
}

.descripcion .texto {
    font-size: 2vw;
}



/*----------------------------------------------------------------*/
/*--------------------------Imagenes----------------------------*/


.imagen img {
    width: 99vw;
}


/*----------------------------------------------------------------*/
/*--------------------------Formulario----------------------------*/

.whatsapp-float {
    position: fixed;
    width: 5vw;
    height: 5vw;
    bottom: 2vw;
    right: 1vw;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 5vw;
    z-index: 1000;
}

.whatsapp-icon {
    width: 4vw;
    height: 4vw;
}



/*----------------------------------------------------------------*/
/*--------------------------Formulario----------------------------*/

.formulario {
    padding: 4vw 6vw 6vw;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.904)0%,
            rgba(0, 0, 0, 0.507)70%,
            rgba(255, 255, 255, 0.431)90%);
}

.formulario h3 {
    padding-bottom: 2vw;
    font-size: 3vw;
}

.formulario label,
.formulario input,
.formulario textarea {
    font-size: 2vw;
}

.formulario .btn-secondary {
    margin: 1vw;
    border: 2px solid white;
    background-color: black;
    font-size: 2vw;
}

.btn-secondary:hover {
    border: 2px solid black;
    background-color: white;
    color: black;
}


/*----------------------------------------------------------------*/
/*----------------------------Footer------------------------------*/

.copyright .container-fluid {
    background: linear-gradient(180deg,
            rgb(255, 255, 255)0%,
            rgb(0, 0, 0)60%);

    display: flex;
    justify-content: space-evenly;

    padding: 5vw 3vw 0.5vw;

    font-size: 1.5vw;
}

.copyright .container-fluid a {
    color: white;
}

.copyright .iconos a {
    text-decoration: none;
    color: black;
    padding: 1vw;
    margin: 0 1vw 4vw;
    font-size: 3vw;
}



/*----------------------------------------------------------------*/
/*--------------------------RESPONSIVE----------------------------*/

@media (min-width: 769px) and (max-width: 1024px) {

    /*----------------------------------------------------------------*/
    /*----------------------Banner principal--------------------------*/
    .banner {
        position: relative;
    }

    .banner div img {
        width: 100%;
        height: auto;
    }

    .banner .container {
        position: absolute;
        top: 35%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-weight: bold;
        text-shadow: 5px 5px 5px rgba(0, 0, 0, 1);
        z-index: 9999;
    }

    .banner .container h2 {
        font-size: 5vw;
    }

    .banner .container h6 {
        font-size: 3vw;
    }



    /*----------------------------------------------------------------*/
    /*--------------------------Descripcion----------------------------*/


    .descripcion {
        margin: 3vw 5vw;
    }

    .overlay {
        transition: all 0.2s ease;
        opacity: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .overlay p {
        font-size: 1.3vw;
        font-weight: bold;
        margin-bottom: 0;
    }

    .evento {
        position: relative;
    }

    .evento img {
        width: 30vw;
        padding-bottom: 1.5vw;
    }

    .evento:hover img {
        opacity: 0;
    }

    .evento:hover .overlay {
        opacity: 1;
    }

    .descripcion .texto {
        font-size: 2vw;
    }



    /*----------------------------------------------------------------*/
    /*--------------------------Imagenes----------------------------*/


    .imagen img {
        width: 99vw;
    }


    /*----------------------------------------------------------------*/
    /*--------------------------Formulario----------------------------*/

    .whatsapp-float {
        position: fixed;
        width: 6vw;
        height: 6vw;
        bottom: 5vw;
        right: 5vw;
        font-size: 6vw;
    }

    .whatsapp-icon {
        width: 6vw;
        height: 6vw;
    }



    /*----------------------------------------------------------------*/
    /*--------------------------Formulario----------------------------*/

    .formulario {
        padding: 4vw 6vw 6vw;
        background: linear-gradient(180deg,
                rgba(0, 0, 0, 0.904)0%,
                rgba(0, 0, 0, 0.507)70%,
                rgba(255, 255, 255, 0.431)90%);
    }

    .formulario h3 {
        padding-bottom: 2vw;
        font-size: 3vw;
    }

    .formulario label,
    .formulario input,
    .formulario textarea {
        font-size: 2vw;
    }

    .formulario .btn-secondary {
        margin: 1vw;
        border: 2px solid white;
        background-color: black;
        font-size: 2vw;
    }

    .btn-secondary:hover {
        border: 2px solid black;
        background-color: white;
        color: black;
    }


    /*----------------------------------------------------------------*/
    /*----------------------------Footer------------------------------*/

    .copyright .container-fluid {
        background: linear-gradient(180deg,
                rgb(255, 255, 255)0%,
                rgb(0, 0, 0)60%);

        display: flex;
        justify-content: space-evenly;

        padding: 5vw 3vw 0.5vw;

        font-size: 1.5vw;
    }

    .copyright .container-fluid a {
        color: white;
    }

    .copyright .iconos a {
        text-decoration: none;
        color: black;
        padding: 1vw;
        margin: 0 1vw 4vw;
        font-size: 3vw;
    }
}



@media screen and (max-width:769px) {

    /*----------------------------------------------------------------*/
    /*-----------------------Barra inicial----------------------------*/

    .logo img {
        width: 35vw;
    }

    .contacto {
        text-align: left;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1vw;
    }

    .contacto i {
        font-size: 3vw;
        padding-right: 1vw;
    }

    .contacto h6{
        font-size: 0;
    }
    .contacto a {
        font-size: 2.5vw;
    }

    /*----------------------------------------------------------------*/
    /*----------------------Banner principal--------------------------*/

    .banner .container {
        position: absolute;
        top: 40%;
        left: 55%;
    }

    .banner .container h2 {
        font-size: 4.5vw;
    }

    .banner .container h6 {
        font-size: 3vw;
    }

    /*----------------------------------------------------------------*/
    /*--------------------------Descripcion----------------------------*/


    .overlay {
        top: 50%;
        left: 40%;
        transform: translate(-30%, -50%);
    }

    .descripcion .texto {
        padding: 0 3vw;
    }



    /*----------------------------------------------------------------*/
    /*--------------------------Imagenes----------------------------*/


    .imagen img {
        padding-left: 1vw;
        width: 100vw;
    }


    /*----------------------------------------------------------------*/
    /*--------------------------Formulario----------------------------*/

    .whatsapp-float {
        width: 6vw;
        height: 6vw;
        bottom: 10vw;
        right: 12vw;
        font-size: 6vw;
    }

    .whatsapp-icon {
        width: 10vw;
        height: 10vw;
    }



    /*----------------------------------------------------------------*/
    /*--------------------------Formulario----------------------------*/

    .formulario h3 {
        padding-bottom: 2vw;
        font-size: 3vw;
    }

    .formulario label,
    .formulario input,
    .formulario textarea {
        font-size: 2vw;
    }

    .formulario .btn-secondary {
        margin: 1vw;
        border: 2px solid white;
        background-color: black;
        font-size: 2vw;
    }

    .btn-secondary:hover {
        border: 2px solid black;
        background-color: white;
        color: black;
    }


    /*----------------------------------------------------------------*/
    /*----------------------------Footer------------------------------*/

    .copyright .container-fluid {
        background: linear-gradient(180deg,
                rgb(255, 255, 255)0%,
                rgb(0, 0, 0)60%);

        display: flex;
        justify-content: space-evenly;

        padding: 5vw 3vw 0.5vw;

        font-size: 1.5vw;
    }

    .copyright .container-fluid a {
        color: white;
    }

    .copyright .iconos a {
        text-decoration: none;
        color: black;
        padding: 1vw;
        margin: 0 1vw 4vw;
        font-size: 3vw;
    }
}