div .gridwrapper{
    position: relative;
    display: block;
    }


.aside {
    grid-area:aside; 
    margin-bottom: 0.5rem;
    
}

.aside-h2{
    font-family:'Rubik Bold';
    color: #333;
    font-size: 3.5rem;
    text-transform: lowercase;
    width: 100%;
    text-align: end;

  


}
.info {
    grid-area: info;
    _border-top: solid #3333336c 0.1rem;
    _background-color: #d8ffc4;  
    padding-bottom: 3rem;
    margin-top: 2rem;
    
}


.info-h3 {
    font-family:'Rubik Light'; 
    color: #333333;
    font-size: 2rem;
    text-align: end;
    _text-transform: uppercase;
    line-height: 1.2;
    _max-width: 250px;
    height: auto;
    border-radius: 0.8rem;
    
}

.content {
    grid-area:con;
    display: flex;
    align-items:first baseline;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 9rem;
    width: 100%;
    height: auto;
}

#contact .content {
    margin-bottom: 0;
}

.content img{
    max-width: 100%;
  
}






@media (min-width: 767px){

    .content {
        flex-wrap: nowrap;
        justify-content: center;
    }

    
    .aside-h2{
        text-align: end;
        padding-top: 0;
        font-size: 4rem;  
      
    }

    .aside{
        z-index: 100; 
    }
    
    .info {
        margin-top: 20px;        
    }
}

@media (min-width: 1024px){

   div .gridwrapper { 
    display: grid;
    height: 800px;
    grid-template-columns: 20% 65% 15%;
    grid-template-areas:  
    "aside  con info" ; 
    margin-bottom: 200px;
    }

    #hello .gridwrapper{
        height: 800px;
    }

    #contact .gridwrapper{
        height: 800px;
    }
    #contact .content{
        margin-bottom: 0;
        height: 500px;
        padding-top: 4rem;
    }

    .slider {
        padding-top: 0.5rem;
    }

    .aside{
        z-index: 10;
        margin-bottom: 1rem;
    
    }

    .aside-h2{
        font-size: 7rem;
        z-index: 1000;
        
    }
    #hello .aside-h2 {
        margin-top: 0;
    }

    #layout .aside-h2 {
        margin-top: -1rem;
    }

    #pur {
        padding: 0;
    }

    .content {
        align-items:first baseline;
        justify-content: center;
        z-index: 10;
        margin-bottom: 9rem;
    }


    .info {
        border: none;
        _border-bottom: solid 1px;
        padding-bottom: 1rem;
        
    }

    .info h3{
        font-size: 1.4rem;
        padding-left: 0;
    }
    }
