.office {
    padding-bottom: 40px;

    .section_header {
        padding-bottom: 20px;

        h4 {
            font-size: 26px;
            font-weight: 500;
            color: $black;
            border-bottom: 2px solid $primaryColor;
            display: inline-block;
            padding: 10px 0;
        }
    }

    .office_main {
        background-image: url(../images/office.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 100px 0;
        position: relative;
        z-index: 1;

        &::after {
            position: absolute;
            content: '';
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            z-index: -1;
        }

        .office_content {
            .office_wrap {
                img {
                    width: 100px;
                    height: 100px;
                }

                h4 {
                    font-size: 26px;
                    color: $white;
                    font-weight: 500;
                    line-height: 40px;
                }

                h5 {
                    font-size: 16px;
                    color: $white;
                    font-weight: 400;
                    line-height: 10px;
                }

                p {
                    font-size: 14px;
                    color: $white;
                    font-weight: 400;
                    line-height: 24px;
                    padding: 10px 300px;
                    text-align: center;
                }

                .office_btn {
                    margin-top: 30px;

                    a {
                        padding: 13px 45px;
                        color: $white;
                        background-color: transparent;
                        font-size: 16px;
                        font-weight: 400;
                        border-radius: 7px;
                        border: 1px solid #fff;

                        &:hover {
                            background-color: $primaryColor;
                            border: 1px solid transparent;
                        }
                    }
                }
            }
        }
    }
}