@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body{
    font-family: 'Mulish', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #eee;
}
ul,
li {
  list-style: none;
  padding: 0;
}
.wrapper{
    width: 50%;
    margin: 0 auto;
    padding: 10px;
    background-color: #fff;
}
.resume{
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
}
header{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
header .profile{
    width: 50%;
}
header .profile img{
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}
.profile h1{
    font-family: 'Mulish', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #2A2F32;
    line-height: 23px;
}
.profile p{
    font-size: 13px;
}
header .info{
    width: 50%;
}
.info p{
    margin-bottom: 50px;
    text-align: justify;
    line-height: 17px;
    font-size: 14px;
}
.info a{
    color: #2A2F32;
    text-decoration: none;
    display: block;
    margin: 5px 0px;
    font-size: 13px;
}
.info span{
    display: block;
    color: #2A2F32;
    font-size: 13px;
    margin: 5px 0px; 
}

.display-flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.col{
    width: 50%;
}
.experiences,
.skills,
.educations,
.interest,
.projects,
.certifications,
.courses{
   margin-top: 40px;
}
.sessions{
    margin-top: 1rem;
    border-radius: 12px;
    position: relative;
}
.sessions li a{
    text-decoration: none;
    font-size: 12px;
    color: #2A2F32;
}
.experiences li,
.skills li,
.educations li,
.projects li,
.certifications li,
.interest li,
.courses li{
    padding-bottom: 1.5rem;
    border-left: 1px solid #abaaed;
    position: relative;
    padding-left: 20px;
    margin-left: 10px;
}
.experiences li:last-child,
.skills li:last-child,
.educations li:last-child,
.interest li:last-child,
.projects li:last-child,
.certifications li:last-child,
.courses li:last-child{
    border: 0px;
    padding-bottom: 0;
}
.experiences li:before,
.skills li:before,
.certifications li:before,
.interest li::before,
.courses li::before,
.projects li::before,
.educations li:before{
    content: "";
    width: 15px;
    height: 15px;
    background: white;
    border: 1px solid #4e5ed3;
    box-shadow: 3px 3px 0px #bab5f8;
    box-shadow: 3px 3px 0px #bab5f8;
    border-radius: 50%;
    position: absolute;
    left: -10px;
    top: 0px;
}
  
.experiences .ex-designation,
.skills .ex-designation,
.certifications .ex-designation,
.courses .ex-designation,
.projects .ex-designation,
.educations .ex-designation{
    color: #2A2F32;
    font-family: "Mulish", sans-serif;
    font-weight: 700;
    font-size: 11px;
}
.experiences h3,
.skills h3,
.certifications h3,
.educations h3,
.courses h3,
.projects h3,
.interest h3{
    font-size: 13px;
}

.sessions p{
    color: #2A2F32;
    line-height: 1px;
    font-size: 12px;
}
.interest li{
    font-size: 12px;
}

progress {
    -webkit-appearance: none;
    height: 8px;
    border-radius: 2px;
    width: 100%;
  }
  .progress1::-webkit-progress-bar {
    background-color: #D4D4D4;
    border-radius: 2px;
  }
  
  .progress1::-webkit-progress-value {
      background-color: #6D6D6D;
      border-radius: 2px;
  }
  
.skill{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.skill .skill-name{
    color: #2A2F32;
    font-family: "Mulish", sans-serif;
    font-weight: 700;
    font-size: 11px;
    width: 40%;
}

@media(max-width: 1024px){
    .wrapper{
        width: 80%;
    }
}

@media(max-width: 769px){
    .wrapper{
        width: 98%;
    }
  
    .profile h1{
        font-size: 16px;
    }
}


@media(max-width: 600px){
    header{
        flex-direction: column;
    }
    header .profile{
        width: 100%;
        text-align: center;
    }
    header .info{
        width: 100%;
    }
    .display-flex{
        flex-direction: column;
    }
    .col{
        width: 100%;
    }
}