/*hero*/
.lawyer_hero_section {
    background: linear-gradient(rgba(30, 30, 30, 0.7), rgba(30, 30, 30, 0.7)), url('/wp-content/uploads/2023/10/Mask-group-1-min-1.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    height: 834px;
}
.lawyer_hero_column {
    max-width: var(--global-width-1);
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.lawyer_hero_title {
    color: #fff;
    max-width: 800px;
    font-family: 'Playfair Display', serif;
    font-weight: var(--global-font-weight-600);
    font-size: 60px;
    line-height: 75px;
}
.shape {
    position: relative;
}
.shape_element {
    width: 100%;
    aspect-ratio: 3;
    background-color: #fff;
    clip-path: polygon(0 72%, 0% 100%, 34% 100%);
    position: absolute;
    bottom: 0;
    z-index: 10;
}
.shape_element_two {
    width: 100%;
    aspect-ratio: 3;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    z-index: 10;
}
@media only screen and (min-width: 1601px) {
    .shape_element_two {
        clip-path: polygon(100% 46%, 100% 100%, 33% 100%);
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .shape_element_two {
        clip-path: polygon(100% 42%, 100% 100%, 28% 100%);
    }
}

/*content*/
.lawyer_content {
    background-image: url("/wp-content/uploads/2023/10/still-life-with-scales-justice-6-2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 1580px;
    position: relative;
    top: -340px;
    z-index: 11;
    margin-bottom: -340px;
}
.lawyer_content_inner {
    width: var(--global-width-1);
    margin: auto;
    position: absolute;
    top: 465px;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    gap: 55px;
}
.lawyer_img {
    height: 350px;
}
.lawyer_content_inner .content h2 {
    font-family: 'Playfair Display', serif;
    font-weight: var(--global-font-weight-600);
    font-size: 55px;
    line-height: 40px;
    color: var(--custom-color-2);
    margin-top: 0;
    margin-bottom: 22px;
}
.lawyer_content_inner .content p {
    font-family: 'Montserrat', sans-serif;
    font-weight: var(--global-font-weight-400);
    font-size: 28px;
    line-height: 34px;
    text-align: justify;
    margin-top: 0;
    color: var(--custom-color-4);
}
.lawyer_content_inner .content p a {
    font-weight: var(--global-font-weight-600);
    color: var(--custom-color-4);
}
