/* #region: Section 2 */
    .careers .section-2 .image {
        width: 100%;
        height: 400px;
        object-fit: fill;
        border-radius: 8px;
    }
    .careers .section-2 .right {
        padding-left: 40px;
    }
/* #endregion */


/* #region: Responsive */
    @media (width < 1201px) {
        .careers .section-2 .image {
            height: 500px;
            object-fit: cover;
        }
    }
    @media (width < 991px) {
        .careers .section-2 .image {
            height: 350px;
        }
        .careers .section-2 .right {
            padding-left: 12px;
        }
    }
    @media (width < 429px) {
        .careers .section-2 .image {
            height: 230px;
        }
    }
/* #endregion */