*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root
{
    scroll-behavior: smooth;
}

body
{
    font-family: 'Open Sans', sans-serif;
}

ul
{
    display: inline-block;
    padding: 5px 12px;
}

h4
{
    color: #005bea;
}

.contenedor
{
    width: 90%;
    max-width: 1200px;
    overflow: hidden;
    margin: auto;
    padding: 60px 0px;

}

header
{
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.head
{
    text-align: center;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: darkblue;

}

.hamburguer
{
    position: fixed;
    top: 30px;
    right: 30px;
    background: #fff;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(101, 186, 201, 0.507);
}

.menu-navegacion
{
    position: fixed;
    top: 0;
    right: 0;
    width: 30vw;
    height: 100%;
    background-image: linear-gradient(to top, #00c6fb 0%, #005bea 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
    transition: transform o.3s ease-in-out;
    transform: translate(110%);
}

.menu-navegacion a:hover
{
    color: darkblue;
    font-size: 30px;
}

/* header:hover .menu-navegacion
{
    transform: translate(110%);
} */

.spread
{
    transform: translate(0);
}

.menu-navegacion a
{
    color: #fff;
    text-decoration: none;

} 

.titulo
{
    font-size: 60px;
    margin-bottom: 15px;

}

.copy
{
    font-weight: 300;
    font-size: 25px;
}

/* Nuestro Servicio */


.subtitulo
{
    text-align: center;
    font-weight: 300;
    color: darkblue;
    margin-bottom: 20px;
    font-size: 40px;

}

.contenedor-servicio
{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;

}

.contenedor-servicio img
{
    width: 40%;
}
.checklist-servicio
{
    width: 45%;
}

.checklist-servicio ul
{
    margin-left: 15px;
}
.service
{
    margin-bottom: 20px;
}
.n-service
{
    margin-bottom: 7px;
    color: darkblue;
}
.n-service+p
{
    margin-bottom: 7px;
    color: darkblue;
}
.n-service a
{
    text-decoration: none;
}
.number
{
    display: inline-block;
    background-image: linear-gradient(to top, #00c6fb 0%, #005bea 100%);
    width: 30px;
    height: 30px;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    font-weight: 700;
    line-height: 30px;
    margin-right: 5px;
}

.line-blue
{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 2px;
    background: deepskyblue;
    margin-bottom: 10px;
}

/* Galeria */

/* Footer */

footer 
{
    background-image: linear-gradient(to top, #00c6fb 0%, #61c8e7 100%);
    padding-bottom: 0.1px;

}

.footer-content
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 60px;
    padding-bottom: 30px;
}
.contact-us
{
    width: 40%;
    color: darkblue;
}
.brand
{
    font-weight: 500;
    font-size: 40px;
}
.brand+p
{
    font-weight: 500;
}
.social-media
{
    width: 50%;
    display: flex;
    justify-content: flex-end;
}
.social-media-icon
{
    display: inline-block;
    margin-left: 20px;
    width: 60px;
    height: 60px;
    border: 1px solid darkblue;
    border-radius: 50%;
    text-align: center;
    color: darkblue;
}
.social-media-icon:hover
{
    background: darkblue;
    color: deepskyblue;
}
.social-media-icon i{
    font-size: 30px;
    line-height: 60px;
}
.line
{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    height: 2px;
    background: darkblue;
    margin-bottom: 20px;
}
footer .logo-footer
{
	width: 40px;
}

footer .columna
{
	text-align: center;
	padding-right: 15px;
	padding-left: 15px;
    color: darkblue;
}

footer .barra-footer
{
	text-align: center;
	padding-right: 15px;
	padding-left: 15px;
    padding-top: 5px;
    margin-bottom: 10px;
    color: darkblue;
}

@media screen and (max-width:800px) {
    .menu-navegacion
    {
        width: 50vw;
    }

    .titulo
    {
        font-size: 40px;
    }

    .contenedor-servicio img
    {
        width: 80%;
        margin-bottom: 40px;

    }
    .checklist-servicio
    {
        width: 80%;
    }

    .service
    {
        margin-bottom: 30px;
    }
    
    .footer-content
    {
        justify-content: center;
    }
    .social-media
    {
        width: 80%;
        justify-content: space-evenly;

    }
    .social-media i 
    {
        margin-left: 0;
    }
    .social-media-icon
    {
        margin-left: 0;
    }
    .contact-us
    {
        text-align: center;
        width: 80%;
        margin-bottom: 40px;
    }
}

@media screen and (max-width:500px)
{
    .menu-navegacion
    {
        width: 65vw;
    }
    .hamburguer
    {
        top: 20px;
        right: 20px;
    }
    .titulo
    {
        font-size: 30px;
    }
    .subtitulo
    {
        font-size: 30px;
    }
    .social-media
    {
        width: 100%;
    }
    .contact-us
    {
        width: 90%;
    }
} 