@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: 'Ubuntu', sans-serif;
}

body{
    background: linear-gradient(to right, #ff7300, #ddb261);
}

.resume{
    width: 800px;
    background: #fff;
    margin: 25px auto;
    display: flex;
}

.left{
    background: #292b2f;
    width: 250px;
    padding: 0 20px;
}

.right{
    width: calc(100% - 250px);
}

.left .img_holder{
    text-align: center;
    padding: 20px 0;
}

.left .img_holder img{
    width: 200px;
    border-radius: 30px;
}

.pb{
    padding-bottom: 20px;
}

.title{
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    padding-bottom: 10px;
    color: #ff7300;
    position: relative;
    text-align: right;
    margin-bottom: 15px;
}

.title:before{
    content: ¨¨;
    position: absolute;
    top: 35px;
    right: 0;
    width: 50px;
    height: 3px;
    background: #3525af;
}

.left .icon{
    font-size: 20px;
    color: #ff7300;
}

.left .icon{
    color: #ff7300;
    text-transform: uppercase;
    font-size: 30px;  
}

.contact .li_wrap{
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}

.contact .li_wrap .icon{
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact .li_wrap .text{
    width: calc (100% - 50px);
    word-break: break-word;
    color: #fff;
}

.skills ul,
.hobbies ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.skills .li_wrap,
.hobbies .li_wrap{
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.skills .li_wrap{
    background: #fff;
}

.skills .li_wrap .text
.hobbies .li_wrap .text{
    margin-top: 5px;

}

.hobbies .li_wrap{
    border: 2px solid #fff;
}

.hobbies .li_wrap .icon,
.hobbies .li_wrap .text{
    color: #fff;
}

.hobbies .li_wrap:hover{
    background: #fff;
}

.hobbies .li_wrap:hover .icon,
.hobbies .li_wrap:hover .text{
    color: #ff7300;
}

.header{
    background: #292b2f;
    padding: 15px 30px;
    color: #fff;
    height: 240px;
}

.header .name{
    font-size: 52px;
    text-transform: uppercase;
    font-weight: 700;
    color: #ff7300;
}

.header .role{
    font-weight: 300;
    font-size: 20px;
}

.header .about{
    margin-top: 20px;
    line-height: 26px;
}

.right_inner{
    padding: 30px;
    color: #292b2f;
}

.right_inner .education{
    margin-top: 30px;

}

.right_inner .li_wrap{
    display: flex;
    margin-bottom: 15px;
}

.right_inner .li_wrap .date{
    width: 125px;
    color: #ff7300;
}

.right_inner .li_wrap .info{
    width: calc(100% - 125px);
    padding-left: 25px;
    position: relative;
}

.right_inner .li_wrap .info_title{
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ff7300;
}

.right_inner .li_wrap .info_com{
    font-weight: 300;
    font-size: 14px;
    margin-top: 3px;
}

.right_inner .li_wrap .info_cont{
    margin-top: 15px;
}

.right_inner .li_wrap .info:before{
    content: ¨¨;
    position: absolute;
    top: 3px;
    left: 0;
    width: 10px;
    height: 10px;
    background: #ff7300;
    border-radius: 50%;
}

.right_inner .li_wrap .info:after{
content: ¨¨;
position: absolute;
top: 10px;
left: 4px;
width: 10px;
height: 90%;
background: #ff7300;
}