*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    
}

body{
    margin: 0;
    padding: 0;
    
    
}

/* Menu de Navegación*/

a, li{
    font-size: 20px;
    font-family: 'Raleway', sans-serif;
    color: white;
    text-decoration: none;
    
}

.nav-menu a{
    text-decoration: none;
    color: white;
}

.logo-header img{
    padding: .5rem;
    width: 250px;
}

header{
    width: 100%;
    position: fixed;
    background-color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 2rem;
    z-index: 100;
    box-shadow: 0px 0px 10px black;
}

.nav-menu ul{
    display: flex;
    align-items: center;
}

.nav-menu li{
    margin-right: 1.5rem;
}

.nav-menu a:hover{
    color: white;
    transition: all 0.25s;
}

.nav-menu li:last-child{
    background-color: #2c2c2c;
    border: 2px solid #2c2c2c;
    padding: .25rem .75rem;
    border-radius: .2rem;
}

.nav-menu li:last-child:hover{
    background: transparent;
    border: 2px solid #2c2c2c;
    transition: all 0.25s;
}

.menu-icon{
    width: 30px;
    height: 30px;
    border-radius: 2px;
}

.menu-icon, #check{
    display: none;
}

@media (max-width:768px){
    .checkbtn{
        display: block;
    }
    .menu-icon{
        display: block;
        position: flex;
        top: 20px;
        right: 20px;
        cursor: pointer;
    }
    .nav-menu ul{
        display: block;
        position: fixed;
        top: 70px;
        left: -100%;
        background: #222;
        width: 100%;
        height: 100vh;
        right: 0;
    }
    .nav-menu ul li{
        padding: 2rem;
        display: flex;
        justify-content: center;
        margin: 0;
    }
    .nav-menu ul li:last-child{
        background: none;
        border: none;
        padding: 1rem;
    }
    #check:checked ~ ul{
        left: 0;
        transition: all 0.25s;
    }
}

/* Fin de Menu de Navegación*/

/* CONTENIDO */

h1{
    font-family: 'Josefin Sans', sans-serif;
    font-size: 40px;
    text-align: center;
    position: relative;
    width: 100%;
    margin-top: 2rem;
}

h1::before{
    margin-left: 10%;
    content: "";
    display: block;
    width: 80%;
    height: 3px;
    position: absolute;
    background-color: black;
    top: 50%;
    z-index: -1;
}

h1 span{
    z-index: 99;
    background-color: white;
    padding: 0 15px;
}

@media screen and (max-width: 400px){

    h1{
        text-decoration: underline;
    }

    h1::before{
        display: none;
    }

    h1 span{
        padding: 0;
    }

}

/* FIN CONTENIDO */

/* SLIDER */

#carouselExampleControls{
    margin-left: 10%;
    width: 80%;
    box-shadow: 0 0 0 10px white,
                0 15px 50px;
}

#carouselExampleIndicators{
    margin-left: 10%;
    width: 80%;
    box-shadow: 0 0 0 10px white,
                0 15px 50px;
}

#carouselExampleInterval{
    margin-left: 10%;
    width: 80%;
    box-shadow: 0 0 0 10px white,
                0 15px 50px;
}

#carouselExampleControlsNoTouching{
    margin-left: 10%;
    width: 80%;
    box-shadow: 0 0 0 10px white,
                0 15px 50px;
}




/* FOOTER */

footer{
    font-family: 'Josefin Sans', sans-serif;
    background: #000;
    padding-bottom: 0.1px;
}

.footer-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 60px;
    padding-bottom: 40px;
}


.contact-us{
    width: 40%;
    color: #fff;
}

.contact-us span{
    margin-left: 20%;
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;
}

.brand{
    margin-left: 20%;
    font-weight: 500;
    font-size: 40px;
}

.brand+p{
    margin-left: 20%;
    font-weight: 500;
}

.social-media{
    margin-right: 5%;
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.social-media-icon{
    display: inline-block;
    margin-left: 20px;
    width: 60px;
    height: 60px;
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: center;
    color: #fff;
}

.social-media-icon i{
    font-size: 30px;
    line-height: 60px;
}

.line{
    width: 90%;
    max-width: 1200px;
    margin: auto;
    height: 2px;
    background: #fff;
    margin-bottom: 60px;
}

.social-media-icon:hover{
    background: #fff;
    color:#000;
}

@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;
    }

    .img-galeria{
        width: 45%;
    }
    
    .agregarImagen{
        width: 80%;
    }

    
    .cont-expert{
        width: 80%;
    }
    
    .footer-content{
        justify-content: center;
    }

    .social-media{
        width: 80%;
        justify-content: space-evenly;
    }

    .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;
    }

    .img-galeria{
        width: 95%;
    }
    
    .agregar-imagen{
        width: 90%;
    }

    .social-media{
        width: 100%;
        justify-content: space-evenly;
    }

    .social-media-icon{
        margin-left: 0;
    }

    .contact-us{
        text-align: center;
        width: 95%;
        margin-bottom: 40px;
    }
    
}