@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}
body
{
    font-family: Inter, sans-serif;
    display: flex;
    background: #D7AF9F;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
 

.container
{
    position: relative;
    max-width: 1000px;
    width: 100%;
    min-height: 1000px;
    margin: 50px;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    background: #fff;
}
.container .left_side
{
    position: relative;
    background:#FFECE4 ;
    padding: 40px;
}

/* Line */
.profiletext
{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 2px solid black;
}


/* image */
.profiletext .image img
{
    position: relative;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;   
}

/* RealizaBanal */
.profiletext h2
{
    color:black;
    font-size: 2em;
    margin-top: 10px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.4em;
}

/* Video editor */
.profiletext h2 span
{
    font-size: 0.8em;
    font-weight: 300;
    
}


.contact_info
{
    padding-top:40px;
}

.title
{
    color: black;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.contact_info ul
{
    position: relative;
}

.contact_info li
{
    margin-bottom: 15px;
}
.contact_info ul li
{
    position: relative;
    list-style: none;
    margin-bottom: 10px 0;
    cursor: pointer;
}

 .contact_info ul li .icon
{
    display: inline-block;
    width: 30px;
    font-size: 18px;
    
}

.contact_info ul li span
{
    font-weight: 300;
    line-height: 20px;
}


.contact_info ul li a
{
    font-weight: 300;
    line-height: 20px;
}


.contact_info.EDUCATION li
{
    margin-bottom: 15px;
}

.contact_info.EDUCATION h4:nth-child(2)
{
    font-weight: 600;
}

.contact_info.EDUCATION h4
{
    font-weight: 300;
}





.container .right_side
{
    position: relative;
    background:#fff ;
    padding: 40px;
} 
 
.about
{
    margin-bottom: 50px;
    
}

.about:last-child
{
    margin-bottom: 0;
}

.title2
{
  text-transform: uppercase;  
  letter-spacing: 1px;
  margin-bottom: 10px;
  
}

p
{
    text-align: justify;
}


.about .box
{
    display: flex;
    flex-direction: row;
    margin: 20px 0;
}

.about .box .year_company
{
    min-width: 150px;   
}


.about .box .year_company h5
{
    text-transform: uppercase;
     font-weight: 600;
}

.about .box .text h4
{
    text-transform: uppercase;
    font-size: 16px;


}

.skills .box
{
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 150px 1fr;
    justify-content: center;
    align-items: center;

}

.skills .box h4
{
    text-transform: uppercase;
    font-weight: 500;
}

.skills .box .percent
{
    position: relative;
    width: 100%;
    height: 10px;
    background:#f0f0f0;


}

.skills .box .percent div
{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background:#F4CDBC;

}

@media (max-width: 1000px)
{
.container
{
        margin: 10px;
        grid-template-columns: repeat(1,1fr);
}
}


@media (max-width: 600px)
{
.about .box
    {
        flex-direction: column;
    }
.about .box .year_company h5 {
        margin-bottom: 5px;
    }

.skills .box
    {
        grid-template-columns: repeat(1,1fr);
    }
}

