/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Sep 4, 2022, 10:59:35 AM
    Author     : Dell
*/

.careers-grid-section {
    /* background-color: #aa4698; */
}

.careers-grid-row {
    display: flex;
}

.careers-grid-col {
    max-width: 50%;
    width: 100%;
}

.careers-grid-col-order-2 {
    order: 2;
}


.careers-grid-content-block {
    padding: 10%;
    height: 100%;
    text-align: left;
    background-color: #aa4698;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.careers-grid-content-block h2 {
    font-size: 40px;
    color: #ffffff;
    line-height: 50px;
    text-align: left;
    font-weight: 700;
    font-family: Lato;
    padding-bottom: 0;
    margin-bottom: 30px;
}

.careers-grid-content-block p {
    font-size: 18px;
    font-weight: 600;
    color: #FFF;
    line-height: 28px;
    margin-bottom: 20px;
}

.careers-grid-img {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

@media (max-width:991px) {
    .careers-grid-row {
        flex-direction: column;
    }

    .careers-grid-col {
        max-width: 100%;
    }

    .careers-grid-col-order-2 {
        order: inherit;
    }

    .careers-grid-content-block {
        padding: 10%;
    }

    .careers-grid-img {
        min-height: 400px;
        padding: 60px 0;
    }

}

@media (max-width:767px) {
    .careers-grid-content-block {
        padding: 5%;
    }

    .careers-grid-content-block h2 {
        font-size: 27.5px;
        line-height: 34px;
    }

    .careers-grid-content-block p {
        font-size: 16.2px;
        line-height: 25.2px;
    }

}
