.job-listing-container {
    display: flex;
    flex-wrap: wrap;
}
.element-item {
    width: calc(33.33% - 50px);
    margin: 25px;
    min-height: 420px;
    padding: 34px;
	position: relative;
	border-radius: 26px;
	display: none;
}
.element-item.show {
	display: block;
}
.element-item:nth-child(odd) {
    background: #0014A3;
}
.element-item:nth-child(even) {
    background: #557BFA;
}



.element-item h3 {
    font-size: 22px;
    text-transform: uppercase;
    line-height: 32px;
    font-family: Netto, Sans-serif;
    font-weight: 700;
    color: #ffffff;
    overflow: hidden;
}
.element-item .content {
    font-size: 18px;
    line-height: 27px;
    font-family: Netto, Sans-serif;
    color: #fff;
}
.element-item .job-url {
    display: flex;
    justify-content: center;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 33px;
}
.element-item .job-url a {
    font-size: 16px;
    line-height: 20px;
    background-color: #ffffff;
    color: #073070;
    font-family: Netto, Sans-serif;
    font-weight: 700;
    padding: 10px 42px 10px 44px;
    border-radius: 50px;
    display: flex;
    text-transform: uppercase;
    width: 203px;
    justify-content: center;
}
.element-item .job-url a > span {
    margin-right: 10px;
}
.element-item .job-url p {
    margin: 0;
}

.hidden{visibility:hidden;
  width:0px!important;
  height:0px!important;
  margin:0px!important;
  padding:0px!important;
  display: none;
  }
  
div#filters {
    display: flex;
    margin: 0 10px 120px 10px;
	justify-content: center;
}



/* ---- button-group ---- */

.button {
	padding: 8px 64px;
	background: #488FDB;
	color: #ffffff;
	font-family: "Netto", Sans-serif;
	font-size: 19px;
	letter-spacing: 0.38px;
	cursor: pointer;
	border-radius: 24px;
	border-right: 1px solid #fff;
	margin: 0 13px 0 0;
}
.button:last-of-type {
    margin: 0;
}
.button:hover {
	background: #073070;
}

.button:active, .button.is-checked {
    background-color: #073070;
}

.button-group:after {
  content: '';
  display: block;
  clear: both;
}

.job-more-wrapper {
    display: flex;
    justify-content: center;
    margin: 100px 0 0 0;
}
/* .job-more {
    padding: 10px;
    color: #0014A3;
    font-family: "Netto", Sans-serif;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
} */
.job-more {
    padding: 5px 63px;
    color: #ffffff;
    font-family: "Netto", Sans-serif;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0014A3;
    border-radius: 26px;
    line-height: 16px;
}

.job-more.hide {
	display: none;
}


@media (max-width: 767px) {
	div#filters {
		flex-direction: column;
		margin: 0 10px 30px 10px;
		align-items: center
	}
	.button {
		margin: 0 0 10px 0;
		width: 260px;
	}
	.element-item {
		width: 100%;
		margin: 0 0 30px 0;
		min-height: 382px;
	}
	.element-item h3 {
        font-size: 22px;
        line-height: 32px;
        margin: 0;
    }
	.element-item .content {
		font-size: 18px;
		line-height: 26px;
	}
	.job-more-wrapper {
		margin: 30px 0 0 0;
	}
	.button {
		font-size: 18px;
	}

    .element-item .job-url a {
        width: 150px;
        padding: 10px;
        font-size: 11px;
        line-height: 14px;
    }
    .element-item .job-url a img {
        width: 11px;
        height: 11px;
        margin-top: 1px;
    }
    
}