/* Hero Section */
.firm-hero {
    background-image: url("img/container2.jpg");
    background-position: center;
    background-size: cover;
    padding-top: 5rem;
    width: 100%;
    position: relative;
    height: 60vh;
    /* overflow: hidden; */
}

.firm-hero-content {
    color: white;
    width: 770px;
    margin: 40px 30px;

}

.content-one {
    display: flex;
    flex-direction: row;
}

.content-one img {
    height: 2px;
    transform: translateY(9px);
    z-index: 3;
}

.content-one h4 {
    margin-left: 2px;
    z-index: 3;
    font-size: 1rem;
    font-weight: 400;
}

.firm-hero-content p {
    position: relative;
    z-index: 3;
    font-size: 1rem;
    line-height: 28px;
    color: white;
}

.firm-hero h1 {
    color: #fff;
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 0;
    position: relative;
    z-index: 3;
}

.firm-hero:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #cb252a86, #2f2e7ac9);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}

/* Body Section */
.blog-section-one {
    width: 100%;
    height: auto;
    padding-bottom: 60px;
    background-color: #E5E5E5;
}


.blog-container-one {
    background-image: url(./firm/map.png);
}

.blog-container-one h2 {
    font-size: 40px;
    font-weight: 700;
    color: rgba(20, 58, 103, 1);
}

.blog-container-one p {
    font-size: 1rem;
    line-height: 32px;
    font-weight: 400;
    color: rgba(78, 78, 78, 1);
}


.blog-section-two {
    background-color: rgba(243, 243, 243, 1);
    padding-bottom: 50px;
}

.blog-content-two h2 {
    font-size: 36px;
    font-weight: 700;
    color: rgba(20, 58, 103, 1);
}

.blog-content-two p {
    font-size: 1rem;
    line-height: 32px;
}

.button {
    background-color: rgba(255, 74, 82, 1);
    color: white;
    border-radius: 2px;
    padding: 5px 30px;
}

.practices {
    background-color: #E5E5E5;
    width: 100%;
}

.sec-padding {
    padding-top: 40px;
    padding-bottom: 30px;
}

.practice-container {
    display: flex;
    align-items: center;
    /* width: 100px; */
}

.practice-img {
    margin-right: 3px;
}

.practice-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: rgba(20, 58, 103, 1);
}

.practice-content p {
    font-size: 1rem;
    line-height: 30px;
    color: rgba(78, 78, 78, 1);
}

.practice-text p {
    font-size: 16px;
    padding-left: 5px;
}


/* Responsive */

@media(max-width:500px) {
    .blog-content-one h2 {
        font-size: 32px;
        text-align: center;
        padding-top: 10px;
    }

    .blog-content-one p {
        text-align: center;
    }

    .blog-content-two h2 {
        font-size: 32px;
        text-align: center;
        padding-top: 10px;
    }

    .blog-content-two p {
        text-align: center;
    }

    .btn {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .practice-content h2 {
        font-size: 32px;
        text-align: center;
        padding-top: 10px;
    }

    .practice-content p {
        text-align: center;
    }

    .practice-container {
        display: flex;
        flex-direction: column;
    }
}