/* codeDESIGN - layout_project_specific.css */
@charset "utf-8";

span.company_name_in_content {
	text-transform: uppercase;
	font-weight: 400;
}
span.company_name_in_content span {
	color: #202020;
}



/* PROJECTS BUTTON */
div.projects_button {
	background: var(--ci_color_yellow);
	font: normal 14px/20px 'Montserrat','Helvetica Neue',Helvetica,Arial,sans-serif;
	font-weight: 700;
	color: #ffffff;
	margin: 0px 0px 0px 0px;
	padding: 8px 15px 8px 15px;
	text-decoration: none;
	text-transform: uppercase;
	border: none;
	-webkit-border-radius: 0px; 
	-moz-border-radius: 0px; 
	border-radius: 0px; 
	cursor: pointer;
	transition: all 0.33s ease-in-out;
	-moz-transition: all 0.33s ease-in-out;
	-o-transition: all 0.33s ease-in-out;
	-webkit-transition: all 0.33s ease-in-out;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: fixed;
	top: calc(40% - 60px);
	left: 0px;
	display: none;
}
@media only screen and (max-width: 991px) {

	div.projects_button {
		top: auto;
		bottom: 70px;
		left: 0px;
	}
	
}
div.projects_button:hover {
	background: var(--ci_color_white);
	color: var(--ci_color_black);	
}
div.projects_button a,
div.projects_button a:link,
div.projects_button a:visited {
	color: var(--ci_color_black);
	text-decoration: none;
}
div.projects_button a:hover {
	text-decoration: none;
}



/* HISTORIC LIST */
ul.content_item_historic_list {
	list-style: none;
}
ul.content_item_historic_list li {
	margin: 0px 0px 20px 0px !important;
	padding: 0px 0px 0px 80px !important;
}
ul.content_item_historic_list li:before {
	background: #CFCDCE;
	width: 50px;
	height: 50px;
	border-radius: 50px;
	margin: 0px 0px 0px 0px !important;
	padding: 0px 0px 0px 0px !important;
	font: normal 13px/50px 'Raleway','Helvetica Neue',Helvetica,Arial,sans-serif !important;
	font-weight: 600 !important;
	color: #ffffff !important;
	text-align: center;
}
ul.content_item_historic_list li:after {
	background: #CFCDCE;
	content: '';
	width: 100%;
	height: 1px;
	display: inline-block;
	margin: 25px 0px 0px 0px;
}
ul.content_item_historic_list li:last-child:after {
	display: none;
}
ul.content_item_historic_list li:nth-child(1):before {
	content: '1948' !important;
}
ul.content_item_historic_list li:nth-child(2):before { 
	content: '1968' !important;
}
ul.content_item_historic_list li:nth-child(3):before { 
	content: '1989' !important;
}
ul.content_item_historic_list li:nth-child(4):before { 
	content: '2000' !important;
}
ul.content_item_historic_list li:nth-child(5):before { 
	content: '2020' !important;
}

div.blog div.item {
	display: block;
	position: relative;
}
div.blog-item-content a.overlay_link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
div.blog-item-content {
	background: rgba(41, 41, 41, 1) !important;
	transition: all 0.33s ease-in-out;
	-moz-transition: all 0.33s ease-in-out;
	-o-transition: all 0.33s ease-in-out;
	-webkit-transition: all 0.33s ease-in-out;
}
div.blog-item-content:hover {
	background: rgba(41, 41, 41, 0.9) !important;
}
div.blog-item-content div.blog-item-title h2 {
	margin: 0px !important;
	padding: 0px !important;
	color: #ffffff !important;
}
div.blog-item-content div.blog-item-title h2::after {
	content: none !important;
}
div.job_benefits {
	margin: 20px 0px 0px 0px;
	padding: 0px 40px 0px 0px;
}
@media only screen and (max-width: 768px) {
	div.job_benefits {
		padding: 0px 0px 0px 0px;
	}
}
div.job_benefits_inner {
	padding: 20px;
	background: #F9F9F9;
}
div.job_benefits ul {
	list-style: none;
	margin: 20px 0px 20px 0px;
	padding: 0px 0px 0px 0px;
}
div.job_benefits ul li {
	list-style: none;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 20px;
	position: relative;
}
div.job_benefits ul li::before {
	content: "\f105";
	font-family: 'Font Awesome 5 Pro';
	font-weight: 100;
	font-size: 1.4em;
	color: var(--ci_color_accent_1);
	margin: 1px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	display: inline-block;
	position: absolute;
	left: 0px;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
div.job_benefits ul li:hover::before {
	color: var(--ci_color_accent_1);
	left: 6px;
}