.primary-info-block{
    display: flex;
    align-items: center;
    padding: 10px;
    flex-grow: 1;
    padding-left: 30px;
}
.resume-item{
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    border-radius: 10px;
    overflow: hidden;
}
.resume-item p{
    padding: 0;
    margin: 0;
}
.resume-header {
    display: flex;
    background: #4d669d;
    color: rgba(255, 255, 255, 0.9);
    height: 220px;
}
.resume-header .picture {
    width: 220px;
    height: 220px;
    object-fit: cover;
}
.resume-header .icon{
    display: flex;
    padding: 10px 0;
    width: 60px;
    align-items: start;
}
.resume-header .name {
    font-size: 2rem;
    letter-spacing: 0.175rem;
    font-weight: 900;
    margin: 0;
    padding: 10px 0;
}
.resume-header .title {
    font-size: 20px;
    color: #d3c9bd;
}
.resume-header .sub-title {
    font-size: 15px;
    display: block;
    color: #d3c9bd;
}
.transparent-btn{
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
}
.tab-content{
    background-color: #f9fbfd;
}
.tab-pane{
    padding: 0 20px;
    color: rgb(0 0 0 / 60%);
}
.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link{
    background-color: #f9fbfd !important;
}
.list-unstyled {
    padding-left: 0;
    list-style: none;
    color: rgb(0 0 0 / 60%);
}
.list-unstyled li{
    padding: 5px 0;
}
.resume-header a {
    color: rgba(255, 255, 255, 0.6);
}
a.text-link {
    text-decoration: none;
}
@media (max-width: 1485px) {
    .resume-header .name{
        font-size: 24px;
    }
  }

  @media (max-width: 1200px) {
    .resume-header .name{
        font-size: 21px;
    }
    .resume-header .title{
        font-size: 14px;
    }
  }
  @media (max-width: 800px) {
    .resume-header .picture {
        width: 50%;
    }
    .primary-info-block{
        width: 50%;
    }
  }
  @media (max-width: 656px) {
    .resume-header{
        flex-direction: column;
        height: auto;
    }
    .resume-header .picture {
        width: 100%;
        height: auto;
    }
    .primary-info-block{
        width: 100%;
        padding: 10px 20px;
    }
    .resume-header .icon{
        padding: 10px 20px;
    }
  }