
#seccion-portafolio{
    width: 100%;
    /*height: 1vw !important;*/
    display: grid;
    grid-template-columns: 45% 55%;
    background-color: transparent;
}

#seccion-portafolio-img{
    width: 100%;
    height: 100vh; 
}

#img-portafolio{
    width: 100%;
    height: 100%;
    
}

#seccion-portafolio-article{
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    right: 0;
    z-index: 10000;
    background-color: white;
   
}

.about-title {
    color: #333;
    font-weight: 700;
    font-size: 28px;
  }
  
.about-text {
    line-height: 26px;
    margin-bottom: 15px;
  }

#article-portfolio{
    margin: 10vw;
  
}
@media(max-width: 1200px){

    #seccion-portafolio-article{
        width: 55vw;
        
        border-radius: 50px;
    }
    
    
}


@media(max-width: 850px){

    #seccion-portafolio{
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    #seccion-portafolio-img{
        width: 100%;
        height: 70vh;
        position: relative;
        top: 0;
        left: 0; 
    }
    #seccion-portafolio-article{
        width: 100vw;
        height: 100%;
        position: absolute;
        top: 60vh;
        right: 0;
        z-index: 10000;
        background-color: white;
        border-radius: 70px;
        padding: 10px;
        overflow-y: visible;
    }

    .about-title {
        color: #333;
        font-weight: 700;
        font-size: 18px;
      }
      
    .about-text {
        line-height: 26px;
        margin-bottom: 15px;
      }
      
}