/*********************************** Font Family Roboto  ************************************/
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/Roboto-Regular.ttf') format('truetype');;
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/Roboto-Light.ttf') format('truetype');;
    font-weight: 300;
    font-style: normal;
}

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: "Roboto";
}


a:hover {
    text-decoration: none;
}


/********************* Banner Image and Heading of Career-inner Page Start *************************/

.Career-inner-Page-Banner-Image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    color: white;
    background-size: cover;
    background-position: center;
    margin-top: 60px;
}

.Career-inner-Page-Banner-Heading {
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-left: 40px;
    padding-bottom: 30px;
}

.Career-inner-Page-Banner-Heading h1 {
    background: #00000047;
    padding: 2px 5px;
}



/********************* Banner Image and Heading of Career-inner Page End *************************/

/**************************** Jobs CSS Start ***********************************************/
.jobs {
    padding-top: 20px;
    padding-bottom: 20px;
    /* border-top: 1px solid darkgray; */
    border-bottom: 1px solid darkgray;
}

/* #first-job-section{
    border-top: 1px solid darkgray;
} */
.jobs-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.jobs-section h3 {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Roboto';
    font-weight: 600;
}

.jobs-section h6 {
    font-size: 16px;
}

.jobs-section span {
    font-weight: 900;
    color: black;
    font-size: 16px;
    padding-left: 8px;
}

.jobs-section i {
    font-size: 25px;
}

/**************************** Jobs CSS End ***********************************************/