* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    transition: 0.4s;
}

body {
    display: grid;
    grid-template-columns: 90px 1fr;
}


nav {
    background-color: white;
    height: 100vh;
}

#menu-btn {
    
    left: 0;
    width: 100%;
    height: 90px;
    width: 90px;
    background-color: #0f0f0f;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

#menu-btn>svg {
    width: 30px;
    height: 30px;
    fill: white;
}

#check {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 30px;
    width: 30px;
    z-index: 999;
    opacity: 0;
}



#socials svg {
    width: 18px;
    height: 18px;
    fill: #252525;
}

#socials a {
    text-decoration: none;
}

#socials {
    position: fixed;
    top: 90px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 91vh;
    width: 90px;
  
}


#socials div {
    display: grid;
    grid-template-columns: 18px;
    grid-auto-rows: 77px;
}

#gl-home {
    display: flex;



}

.item-gl {
    position: relative;
    overflow: hidden;
    flex-grow: 1;
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: multiply;
    background-size: cover;
    background-position: 20% center;
    background-repeat: no-repeat;
    color: white;
}


#lizard {
    background-image: url(imagens/5.jpg.webp);
    flex-grow: 7;
    background-color: transparent;

}

#woman {
    background-image: url(imagens/1.jpg.webp);


}

#dog {
    background-image: url(imagens/3.jpg.webp);

}

#sea {
    background-image: url(imagens/2.jpg.webp);

}

#car {
    background-image: url(imagens/4.jpg.webp);

}





.item-gl:hover {
    flex-grow: 7;
    background-color: transparent;
}

#gl-home:hover #lizard {
    flex-grow: 1;
    background-color: rgba(0, 0, 0, 0.4);
}

#text-img {
    opacity: 0;
}

#lizard #text-img {
    opacity: 1;
}

#gl-home:hover #lizard #text-img {
    opacity: 0;
}

#gl-home:hover #lizard:hover #text-img {
    opacity: 1;
}

#gl-home #lizard:hover {
    flex-grow: 7;
    background-color: transparent;
}

#gl-home .item-gl:hover #text-img {
    opacity: 1;
}

#filter {
    background-image: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.8));
    height: 100%;
}

#text-img>div {
    display: inline-block;
    padding: 4px 20px;
    margin-bottom: 10px;
    font-size: 12px;
    color: #2916e0;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 2px;
    background: #fff;
}

#text-img {
    position: absolute;
    bottom: 0;
    padding: 0 0 50px 40px;
    width: 700px;
    height: 232px;
}

#text-img h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 60px;
}

#author img {
    border-radius: 50%;
    margin-right: 15px;
}

#author {
    display: flex;
    align-items: center;
    font-size: 24px;
}

#author h4 {
    font-weight: 600;
}

aside {
    position: fixed;
    background-color: white;
    width: 270px;
    height: 100%;
    top: 0;
    left: -270px;
    z-index: 99;
 
}

#header-menu {
    display: grid;
    grid-template-columns: 90px 1fr;
    grid-template-rows: 90px;
}

#hdr-mn-seta {
    background-color: black;
    display: grid;
    justify-content: center;
    align-items: center;
}

#hdr-mn-seta svg {
    fill: white;
}

#logo {
    background-color: #2916e0;
    display: grid;
    justify-content: center;
    align-items: center;
}

.menu-bottom a {
    text-decoration: none;
}

.menu-bottom svg {
    fill: #b2b2b2;
    width: 18px;
    height: 18px;
}

#check:checked~aside {
    left: 0;
}

menu {
    list-style: none;
    margin-top: 50px;
    align-self: center;
    justify-content: center;
    text-align: center;
    font-size: 30px;

    font-weight: 600;

    a {
        color: #b2b2b2;
        text-decoration: none;
    }
}

.menu {
    display: grid;
    grid-template-rows: 1fr 270px;
    height: 100%;

}

.menu-bottom {
    text-align: center;
}

.social {
    display: flex;
    justify-content: space-around;
    padding: 0.3em 1.4em;
}

.cop {
    font-size: 15px;
    line-height: 1.8;
    color: #636363;
    font-weight: 500;
    padding: 0 1em;
}

.cop svg {
    fill: red;
}

.atual {
    color: #2916e0;
}

#about {
    display: flex;
}

#about-esq {
    background-color: #2916e0;
    width: 45%;

}

#perfil {
    background-image: url(imagens/about-bg.png);
    display: grid;
    justify-content: center;
    align-items: center;
    padding: 55px 0;
    background-position: center;
    background-repeat: no-repeat;
}

#perfil>img {
    border-radius: 50%;
}

#intro h2 {
    font-weight: 500;
    font-size: 36px;
    color: white;
    line-height: 1.2;
}

#intro {
    max-width: 550px;
    margin: 0 auto;
    padding-bottom: 40px;
    color: rgb(255, 255, 255);
}

#intro p {
    font-size: 15px;
    line-height: 1.8;
}

#blog { 
    display: grid;
grid-template-columns: repeat(5,1fr);
grid-template-rows: 2.3fr 1fr 1fr 1.5fr 1fr 1fr 2.3fr;
gap: 10px;}

.img-blog { height: 100%;
width: 100%;
object-fit: cover;}

#blog1 {grid-column: 1;
    grid-row: 1/4;}

#blog2 { grid-row: 1;
grid-column: 2;}

#blog3 { grid-row: 1/4;
    grid-column: 3;}

#blog4 { grid-row: 1/3;
        grid-column: 4;}

#blog5 { grid-row: 1/4;
            grid-column: 5;}

#blog6 { grid-row: 4/6;
grid-column: 1;}

#blog7 { grid-row: 2/5;
grid-column: 2;}

#blog8 { grid-row: 4/7;
grid-column: 3;}

#blog9 { grid-row: 3/5;
grid-column: 4;}

#blog10{ grid-row: 4/6;
grid-column: 5;}

#blog11 { grid-row: 6/8;
grid-column: 1;}

#blog12 { grid-row: 5/8;
grid-column: 2;}

#blog13 { grid-row: 7;
grid-column: 3;}

#blog14 { grid-row: 5/8;
grid-column: 4;}

#blog15 { grid-row: 6/8;
grid-column: 5;}