/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

.jobs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    width: auto;
}

.jobs>div {
    padding: 15px;
}

.job {
    max-width: 100%;
    width: 100%;
    text-align: center;
    padding: 20px;
    position: relative;
    background: white;
}


.job .job-icon {
    font-size: 40px;
    width: 70px;
    height: 70px;
    padding: 0;
    border: 1px solid black;
    border-radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.job .job-title {
    overflow-wrap: break-word;
    color: #222;
    font-size: 24px;
    font-weight: 600;
    margin: 10px 0 20px;
    min-height: 60px;
	font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif;
}


.job .job-location {
	font-size: 16px;
}

.job .job-location i {
    color: #ccc;
    margin-right: 10px;
}

.job .job-description-overlay {
    height: 120px;
    width: 90%;
    position: absolute;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(80%, rgba(255, 255, 255, 1)));
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 80%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 80%);
}

.job .job-description {
    height: 100px;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 15px;
}

.job .job-description p {
    font-size: 16px;
}

.job .job-button {
    padding: 10px 15px;
    border-radius: 5px;
}


.job .job-button b {
    color: white;
	font-size: 16px;
}