@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

:root {
    --bg-main: #fff;
    --bg-secondary: #003147;
    --bg-page: lightblue;
    --txt-light: #fff;
    --txt-dark: #003147;
    --symbols: #03a9f4;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif; 
}

body{
    background: var(--bg-page);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container{
    position:relative;
    width: 100%;
    max-width: 1000px;
    min-height: 1000px;
    background: var(--bg-main);
    display: grid;
    grid-template-columns: 1fr 2fr;
    box-shadow: 0 35px 55px rgba(0, 0, 0, 0.1);
    margin: 50px;
}

.container .left_side{
    position: relative;
    background: var(--bg-secondary);
    padding: 40px;
}

.container .right_side{
    position: relative;
    background: var(--bg-main);
    padding: 40px; 
}

.profiletext{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.profiletext .imgBx{
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
}

.profiletext .imgBx img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profiletext .name{
    color: var(--txt-light);
    font-size: 1.5em;
    margin-top: 20px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    line-height: 1.4em;
}

.counter{
    padding-top: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.counterText{
    color: var(--symbols);
}

.counter .title{
    font-weight: 500;
}

.contactInfo{
    padding-top: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.contactInfo .title{
    font-weight: 500;
}

.contactInfo ul{
    position: relative;
}

.contactInfo ul li{
    position: relative;
    list-style: none;
    margin: 10px 0;
}

.contactInfo ul li .icon{
    display: inline-block;
    width: 30px;
    font-size: 18px;
    color: var(--symbols)
}

.contactInfo ul li span{
    color: var(--txt-light);
    font-size: 12px;
    font-weight: 300;
}

.contactInfo ul li span .link{
    color: var(--txt-light);
    font-size: 12px;
    font-weight: 300;
}
.contactInfo.education li{
    margin-bottom: 15px;
}

.contactInfo.education h5{
    color: var(--symbols);
    font-weight: 500;
}

.contactInfo.education h4:nth-child(2){
    color: var(--txt-light);
    font-weight: 500;
    
}

.contactInfo.education h4{
    color: var(--txt-light);
    font-weight: 300;

}
.title{
    color: var(--txt-light);
}

.about{
    margin-bottom: 35px;
}

.about:last-child{
    margin-bottom: 0;
}

.title2{
    color: var(--txt-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;

}

.title3{
    color: var(--txt-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 400;
}

p{
    color: var(--txt-dark);
}

.repos .link{
    color: var(--symbols);
    font-weight: 400;
    font-size: .75em;
}

.jobtitle{
    font-weight: 400;
}

.time{
    font-weight: 400;
    float: right;
}