// Career page
.career-section{
    padding-top: 115px;
    padding-bottom: 120px;
}
.career-area{
    background-color: var(--main-color-one);
    border-radius: 6px;
    padding: 60px 40px 30px;
}
.career-item{
    text-align: center;
    margin-bottom: 30px;
    .career-icon{
        width: 100px;
        height: 100px;
        line-height: 100px;
        display: inline-block;
        text-align: center;
        border: 2px solid #fff;
        border-radius: 50%;
        margin-bottom: 20px;
        color: #fff;
        font-size: 40px;
        @media only screen and (max-width: 991px){
            width: 70px;
            height: 70px;
            line-height: 70px;
            font-size: 24px;
        }
    }
    .career-content{
        .title{
            color: #fff;
            font-weight: 700;
            margin-bottom: 15px;
            @media only screen and (max-width: 991px){
                font-size: 20px;
            }
        }
        .sub-title{
            font-size: 18px;
            color: #fff;
            @media only screen and (max-width: 991px){
                font-size: 16px;
            }
        }
    }
}