/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 
 /* HEADER SECTION */
.vacancies-container {
	text-align: center;
	background: transparent;
	padding: 0em;
}
 
.vacancies-header {
	margin-bottom: 4em;
 }
 
.vacancies-background-title {
	font-size: 8em;
    line-height: 96px;
    font-weight: bold;
    font-family: 'Century Gotic' !important;
    color: rgba(0,  0,  0, 0.05) !important;
    font-weight: 700 !important;
    text-transform: uppercase;
 }
 
 h3.vacancies-title {
	font-size: 2em;
	margin-top: -2.3em;
 }
 
.vacancies-container button {
	background: #007D32;
	border: none;
	padding: 10px 30px;
}

.vacancies-container button a {
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 700;
}

.vacancies-container button:hover {
	box-shadow: 0px 15px 20px -10px rgba(0, 125, 50, 0.6) !important;
	background: #007D32;
}

.vacancies-container button a:after {
   font-family: "Font Awesome 5 Free";
   content: "\f061";
   display: inline-block;
   color: white;
   margin-left: 1em;
   transition: 0.2s ease-in-out;
}

.vacancies-container button:hover a:after {
   margin-left: 2em;
}

 /* VACANCIES SECTION */
.vacancies-wrapper {
	display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}

.vacancies-wrapper a {
	width: 45%;
	background: #ffffff;
	margin: 1em;
	transition: 0.2 ease-in-out;
}

.vacancies-wrapper a:hover {
	background: #905A9e;
	transition: 0.3s ease-in-out all;
	box-shadow: 0px 15px 20px -10px rgba(0, 0, 0, 0.6) !important;
}

.vacancies-wrapper a:hover * {
	color: #ffffff !important;
}

.vacancies-single {
	padding-bottom: 1em;
}

.vacancies-single:hover h2:after {
	pointer-events: all;
    opacity: 1;
    padding-left: 30px;
}

.vacancies-single h2 {
	font-size:1.2em !important;
    line-height: 2em;
    margin: 8px 0;
    padding: 0 16px;
}

.vacancies-single h2:after {
	content: "\f061";
    font-family: "Font Awesome 5 Free";
    opacity: 0;
    pointer-events: none;
    transition: ease-in-out 300ms all;
    color: #fff;
    margin-left: -15px;
}

.vacancies-divider {
	margin: 0 1em;
	color: #c36;
}

@media screen and (max-width:992px) {
	.vacancies-background-title {
		display: none;
	}
	.vacancies-wrapper a {
		width: 100%;
	}
	
	h3.vacancies-title {
	font-size: 2em;
	margin-top: 0;
 	}
	
}