div.lawyer_container {
    box-sizing: border-box;
    max-width: 1140px;
    margin: 0 auto;
    margin-bottom: 100px;
}
div.lawyer_container *{
    box-sizing: border-box;
    letter-spacing : -.5px;
}

div.lawyer_header{
    background-color: #87addc;
    height: 220px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding-left: 7%;
}
div.lawyer_header h2{
    font-size: 28px;
    font-weight: 300;
    color: #fff;
    text-align: center;
    margin: 0;
}
div.lawyer_header h1{
    font-size: 62px;
    font-weight: 300;
    color: #fff;
    text-align: center;
    margin: 0;
}
div.lawyer_body{
    padding: 5% 8.3% 0;
    background-color: #f8f8f8;
}
div.lawyer_body_title{
    font-size: 24px;
    font-weight: 500;
}
div.lawyer_body_item_content{
    margin-top: 16px;
    font-size: 16px;
    color: #666;
}
div.lawyer_body_items{
    display: flex;
    flex-wrap: wrap;
}
div.lawyer_body_items_left{
    width: 50%;
    margin-bottom: 24px;
}
div.lawyer_body_items_right{
    width: 50%;
    font-size: 0;
}
div.lawyer_body_items_right img{
    max-width: 100%;
}
div.lawyer_footer{
    text-align: center;
    margin-top: 70px;
}
div.lawyer_footer a{
    display: inline-block;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    background-color: #78161b;
    border-radius: 0.2rem;
}
.hidden{
    opacity: 0;
}
div.profile-image-mobile{
    display: none;
}

/* 모바일에서 lawyer_body_items_right 숨기기 */
@media (max-width: 768px) {
    div.lawyer_body_items_right {
        display: none;
    }
    div.lawyer_body_items_left {
        width: 100%;
    }
    div.profile-image-mobile{
        position: relative;
        top: -30px;
    }
    div.profile-image-mobile{
        display: block;
    }
}