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

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

a {
    color: inherit;
    text-decoration: none;
    display: block;
}

p a {
    display: inline;
}

img,
picture,
video,
iframe {
    display: block;
    width: 100%;
    /* height: initial; */
}

form,
input,
label,
select,
option,
textarea,
button {
    font-size: inherit;
    font-family: inherit;
    display: block;
    background-color: transparent;
}

:root {
    font-size: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Helvetica, Arial;
}


/********** FIN RESET **********/

body {
    background-color: rgb(24, 23, 23);

}

.wrapper {
    width: 100%;
    height: 100vh;
    padding: 13rem 13rem;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;

    position: relative;

}

.wrapper__nav {
    width: 74vw;
    min-height: 40vh;
    /* background-color: pink; */
}

.nav__ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: center;
    gap: 2rem;
}

.nav__li {
    /* background-color: blue; */
    color: rgba(255, 255, 255, 0.731);
    font-size: 4.5vw;
    font-weight: 600;
    cursor: pointer;
}


.nav__li.isActive{
    color: rgb(255, 255, 255);
    opacity: 1;
}

.after::after {
    font-family: "Cormorant", serif;
    font-size: .2em;
    font-style: italic;
    font-weight: 100;
    margin-left: .2rem;
}

.fitaft::after {
    content: ' Reebok';
}

.coachaft::after {
    content: ' Font Vella';
}

.caraft::after {
    content: ' Revista Car';
}

.pulseaft::after {
    content: ' Seidor';
}

.alaft::after {
    content: ' Cervezas Alhambra';
}

.actaft::after {
    content: ' Danone';
}

.ffact::after {
    content: ' OTS Group';
}

.delact::after {
    content: ' Día';
}

.rocaft::after {
    content: ' Sanitarios';
}

.deepaft::after {
    content: ' Fox';
}




.wrapper__imgs{
    width: 100%;
    height: 100vh;
    /* background-color: rgb(159, 251, 133); */

    position: relative;
    overflow: hidden;
}

.imgs {
    width: 100%;
    height: 100vh;
    /* background-color: darkslateblue; */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    position: absolute;

    opacity: 0;
    transition: opacity .5s ease-in-out, transform 3s ease;
    top: 0;
}

.imgs.isVisible{
    opacity: 1;
    transform: scale(1.4,1.4);
  
}

.imgs--a{
    background-image: url(../assets/01.JPG);
    /* position: static; */

}
.imgs--b{
    background-image: url(../assets/02.JPG);
}
.imgs--c{
    background-image: url(../assets/03.JPG);
}
.imgs--d{
    background-image: url(../assets/04.JPG);
}
.imgs--e{
    background-image: url(../assets/05.JPG);

}
.imgs--f{
    background-image: url(../assets/06.JPG);
}
.imgs--g{
    background-image: url(../assets/07.JPG);
}
.imgs--h{
    background-image: url(../assets/08.JPG);

}
.imgs--i{
    background-image: url(../assets/09.JPG);
}
.imgs--j{
    background-image: url(../assets/10.JPG);
}


.contenedor {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;

    z-index: -1;
}

@media (max-width: 900px) {

    .wrapper{
        padding: 6rem 6rem;
    }
}

@media (max-width: 700px) {

    .wrapper{
        height: 80vh;
        padding: 1rem 4rem;
    }
    .nav__ul{
        flex-flow: column nowrap;
        gap:1.2rem;

    }
    .nav__li{
        font-size: 6vw;
    }

    .after::after{
        font-size: .3em;
    }
}