/* ------------------------------ FONTS ------------------------------ */

/* --- IBM Plex Sans --- */
/* ibm-plex-sans-regular - latin-ext */
@font-face
{
	font-family: 'IBM Plex Sans';
	font-weight: 400;
	font-style: normal;

	font-display: fallback;
	src: local('IBM Plex Sans'), local('IBMPlexSans'),
	url('../font/ibm/ibm-plex-sans-v7-latin-ext-regular.woff2') format('woff2'),
	url('../font/ibm/ibm-plex-sans-v7-latin-ext-regular.woff') format('woff');
}

/* ibm-plex-sans-italic - latin-ext */
@font-face
{
	font-family: 'IBM Plex Sans';
	font-weight: 400;
	font-style: italic;

	font-display: fallback;
	src: local('IBM Plex Sans Italic'), local('IBMPlexSans-Italic'),
	url('../font/ibm/ibm-plex-sans-v7-latin-ext-italic.woff2') format('woff2'),
	url('../font/ibm/ibm-plex-sans-v7-latin-ext-italic.woff') format('woff');
}

/* ibm-plex-sans-700 - latin-ext */
@font-face
{
	font-family: 'IBM Plex Sans';
	font-weight: 600;
	font-style: normal;

	font-display: fallback;
	src: local('IBM Plex Sans Bold'), local('IBMPlexSans-Bold'),
	url('../font/ibm/ibm-plex-sans-v7-latin-ext-700.woff2') format('woff2'),
	url('../font/ibm/ibm-plex-sans-v7-latin-ext-700.woff') format('woff');
}

/* ------------------------------ GENERAL ------------------------------ */
html
{
	font-size: 62.5%;
	line-height: normal; /* fix normalize.css */

	position: relative;

	box-sizing: border-box;
	min-height: 100%;
}

*,
*:before,
*:after
{
	box-sizing: inherit;
}

body
{
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: 1.6rem;

	padding-top: 90px; /* height of fixed header */

	text-align: left;

	color: #171314;
	background-color: #fff;

	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol
{
	margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6
{
	font-weight: 600;
}

h1
{
	font-size: 6.4rem;

	margin: 0;
}

h2
{
	font-size: 3.8rem;
}

h3
{
	font-size: 2.8rem;
}

h4
{
	font-size: 2rem;
}

strong
{
	font-weight: 600;
}

ul,
ol
{
	padding: 0;

	list-style-type: none;
	list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7); /* fix IE Edge */

	counter-reset: counter;
}

a
{
	transition: 0.5s;
	text-decoration: none;

	color: #2599cc;
}

a:hover
{
	text-decoration: none;

	color: #34bced;
}

hr
{
	font-size: 0;

	height: 1px;
	margin: 30px 0;

	border: none;
	background: #e6e6e6;
}

blockquote
{
	font-size: 2.2rem;
	font-style: italic;

	position: relative;

	max-width: 720px;
	margin: 0 auto 1em auto;
	padding: 30px 0 0 0;

	text-align: center;
}

blockquote:before
{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;

	display: block;

	width: 15px;
	height: 3px;
	margin: 0 auto;

	content: '';

	background: #d6d92e;
}

blockquote p:before,
blockquote p:after
{
	font-size: 3rem;

	display: inline-block;

	vertical-align: top;

	color: #c3c3c3;
}

blockquote p:before
{
	margin: 2px 2px 0 0;

	content: '\201C';
}

blockquote p:after
{
	margin: 3px 0 0 0;

	content: '\201D';
}

iframe
{
	border: 0;
}

.lazyload
{
	opacity: 0;
}

img.lazyloading
{
	transition: 0.5s;
	-webkit-transform: scale(1);
	        transform: scale(1);

	opacity: 0.8;

	filter: blur(30px);
}

.lazyloaded
{
	transition: 0.5s;

	opacity: 1;
}

::selection
{
	color: #fff;
	background: #2599cc;
}

::selection
{
	color: #fff;
	background: #2599cc;
}

.hidden
{
	display: none;
}

.container
{
	position: relative;

	max-width: 1180px;
	height: inherit;
	margin: 0 auto;
}

.container-content
{
	max-width: 800px;
}

.row
{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.row > .row
{
	flex: 1;
}

.row_justify-space
{
	justify-content: space-between;
}

.row_justify-around
{
	justify-content: space-around;
}

.row_justify-center
{
	justify-content: center;
}

.row_align-center
{
	align-items: center;
}

.row_align-bottom
{
	align-items: flex-end;
}

@media (max-width: 1240px)
{
	.container
	{
		padding: 0 30px;
	}

	.container-content
	{
		padding: 0;
	}
}

@media (max-width: 860px)
{
	.container-content
	{
		padding: 0 30px;
	}
}

@media (max-width: 760px)
{
	body
	{
		font-size: 1.4rem;
	}

	h1
	{
		font-size: 3.8rem;
	}

	h2
	{
		font-size: 2.8rem;
	}

	h3
	{
		font-size: 2.2rem;
	}

	h4
	{
		font-size: 1.6rem;
	}

	hr
	{
		margin: 10px 0;
	}

	blockquote
	{
		font-size: 1.9rem;
	}



	.container
	{
		padding: 0 15px;
	}
}

/* --- TABLES --- */
.table-wrapper
{
	overflow-y: auto;

	width: 100%;
}

.table-wrapper::-webkit-scrollbar
{
	width: 14px;
	height: 14px;

	-webkit-appearance: none;
}

.table-wrapper::-webkit-scrollbar-thumb
{
	border: 3px solid #fff;
	border-radius: 8px;
	background-color: rgba(0, 0, 0, 0.3);
}

table
{
	width: 560px;
	margin-bottom: 15px;

	border-collapse: collapse;
}

table td
{
	padding: 9px 15px;

	border: 1px solid #c3c3c3;
}

table th,
table thead td
{
	font-weight: 600;

	padding: 9px 15px;

	color: #fff;
	border: 1px solid #fff;
	border-bottom: 1px solid #c3c3c3;
	background: #d6d92e;
}

table th:first-child,
table thead td:first-child
{
	border-left: 1px solid #d6d92e;
}

table th:last-child,
table thead td:last-child
{
	border-right: 1px solid #d6d92e;
}

table td:first-child,
table th:first-child
{
	width: 150px;
}

@media (max-width: 760px)
{
	table td,
	table th,
	table thead td
	{
		padding: 7px 15px;
	}
}

/* --- FORMS --- */
form
{
	margin-bottom: 15px;
}

label
{
	font-weight: 600;

	display: inline-block;

	padding-bottom: 5px;

	cursor: pointer;
}

input[type='text'],
input[type='email'],
input[type='url'],
input[type='password'],
input[type='tel'],
input[type='number'],
input[type='search'],
textarea
{
	font-size: 1.6rem;
	line-height: 40px;

	display: block;

	width: 100%;
	height: 40px;
	padding: 0 15px;

	border: 1px solid #c3c3c3;
	box-shadow: none;
}

textarea
{
	line-height: normal;

	height: 150px;
	padding: 5px 10px;
}

input[type='text']:focus,
input[type='email']:focus,
input[type='url']:focus,
input[type='password']:focus,
input[type='tel']:focus,
input[type='number']:focus,
input[type='search']:focus,
textarea:focus
{
	outline: 0;
}

::-webkit-input-placeholder
{
	color: #c3c3c3;
}

::-moz-placeholder
{
	color: #c3c3c3;
}

:-ms-input-placeholder
{
	color: #c3c3c3;
}

button,
input[type='submit']
{
	padding: 0;

	cursor: pointer;
	transition: 0.5s;

	border: none;
	background: none;
}

button:hover,
input[type='submit']:hover
{
	text-decoration: underline;
}

button:focus,
input[type='submit']:focus
{
	outline: none;
}

input[type='submit'],
button[type='submit']
{
	font-weight: 600;

	display: inline-block;

	margin: 10px 0 0 0;
	padding: 10px 15px;

	color: #fff;
	background: #a64591;
}

input[type='submit']:hover,
button[type='submit']:hover
{
	text-decoration: none;

	color: #000;
	background: #eee;
}

.wpforms-field
{
	margin: 10px 0;
}

.wpforms-field-hp
{
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;

	width: 0;
	height: 0;

	opacity: 0;
}

.wpforms-required-label,
.wpforms-error
{
	font-weight: 400;

	color: #f00;
}

.wpforms-error
{
	font-style: italic;
}

@media (max-width: 760px)
{
	input[type='text'],
	input[type='email'],
	input[type='url'],
	input[type='password'],
	input[type='tel'],
	input[type='number'],
	input[type='search'],
	textarea,
	button,
	input[type='submit']
	{
		font-size: 1.4rem;
	}
}

/* ------------------------------ HEADER ------------------------------ */
header
{
	position: fixed;
	z-index: 999;
	top: 0;
	right: 0;
	left: 0;

	width: 100%;
	height: 90px;

	transition: 0.5s;

	border-bottom: 1px solid #e5e0d6;
	background: #fff;
}

.page-template-page-home header
{
	border: none;
	background: transparent;
}

.page-template-page-home header.header-fixed
{
	border-bottom: 1px solid #e5e0d6;
	background: #fff;
}

.page-template-page-home header .row
{
	justify-content: flex-end;
}

.page-template-page-home header.header-fixed .row
{
	justify-content: space-between;
}

.logo
{
	font-size: 0;
}

.page-template-page-home .logo
{
	display: none;
}

.page-template-page-home header.header-fixed .logo
{
	display: block;
}

.logo h1
{
	font-size: 0;
	line-height: 0;

	margin: 0;
}

.logo img
{
	width: auto;
	height: 62px;
}

@media (max-width: 760px)
{
	.page-template-page-home header
	{
		border-bottom: 1px solid #e5e0d6;
		background: #fff;
	}

	.page-template-page-home header .row
	{
		justify-content: space-between;
	}

	.page-template-page-home .logo
	{
		display: block;
	}
}

/* --- PRIMARY NAVIGATION --- */
.main-menu,
.sub-menu
{
	margin: 0;
}

.main-menu > li
{
	position: relative;
}

.main-menu a
{
	font-size: 1.6rem;

	position: relative;

	margin: 0 0 0 50px;

	text-transform: uppercase;

	color: #333;
}

.page-template-page-home .main-menu a
{
	color: #fff;
}

.page-template-page-home header.header-fixed .main-menu a
{
	color: #333;
}

.main-menu > li:first-child > a
{
	margin: 0;
}

.main-menu a:after
{
	position: absolute;
	right: 0;
	bottom: -6px;
	left: 0;

	width: 0;
	height: 4px;
	margin: 0 auto;

	content: '';
	transition: 0.5s;

	background: #a64591;
}

.main-menu a:hover:after
{
	width: 100%;
}

.main-menu .current-menu-item > a,
.main-menu .current_page_parent > a,
.main-menu .current-page-ancestor > a
{
	font-weight: 600;

	color: #a64591 !important;
}

@media (max-width: 960px)
{
	.main-menu a
	{
		margin: 0 0 0 40px;
	}
}

@media (max-width: 760px)
{
	.nav_main
	{
		position: absolute;
		z-index: 999;
		top: 90px;
		right: 0;

		display: none;

		width: 100%;
		height: calc(100vh - 90px);
		padding: 40px 0 15px 0;

		background: #fff;
	}

	.main-menu li
	{
		display: block;

		width: 100%;
	}

	.main-menu a
	{
		line-height: 4rem;

		display: block;

		margin: 0;
		padding: 0 15px;

		text-align: center;

		background: none;
	}

	.page-template-page-home .main-menu a
	{
		color: #333;
	}

	.main-menu a:after
	{
		display: none;
	}
}

@media (min-width: 761px)
{
	.nav_main
	{
		display: block !important;

		height: auto !important;
	}
}

/* --- TOOLS --- */
.tools
{
	display: none;
}

@media (max-width: 760px)
{
	.tools
	{
		right: 15px;

		display: block;
	}

	/* NAVIGATION BUTTON */
	.nav-btn
	{
		font-size: 1.6rem;
		line-height: normal;

		position: relative;

		display: block;

		width: auto;
		height: auto;
		margin-left: 20px;
		padding-left: 35px;

		text-transform: uppercase;

		color: #333;
	}

	.nav-btn:hover
	{
		text-decoration: none;
	}

	.nav-btn span,
	.nav-btn:before,
	.nav-btn:after
	{
		transition: 0.4s;
	}

	.nav-btn span
	{
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;

		display: block;

		width: 25px;
		height: 2px;
		margin: auto 0;

		background: #333;
	}

	.nav-btn:hover span
	{
		background: #a64591;
	}

	.nav-btn.active span
	{
		right: 20px;

		background: rgba(0,0,0,0);
	}

	.nav-btn:hover.active span
	{
		background: rgba(0,0,0,0);
	}

	.nav-btn:before,
	.nav-btn:after
	{
		position: absolute;
		left: 0;

		display: block;

		width: 25px;
		height: 2px;

		content: '';

		background: #333;
	}

	.nav-btn:hover:before,
	.nav-btn:hover:after
	{
		background: #a64591;
	}

	.nav-btn:before
	{
		top: 2px;
	}

	.nav-btn:after
	{
		bottom: 3px;
	}

	.nav-btn.active:before
	{
		top: 9px;

		-webkit-transform: rotate(45deg);
		        transform: rotate(45deg);
	}

	.nav-btn.active:after
	{
		bottom: 10px;

		-webkit-transform: rotate(-45deg);
		        transform: rotate(-45deg);
	}

	.nav-btn.active:before,
	.nav-btn.active:after
	{
		background: #f00;
	}
}

/* ------------------------------ CONTENT ------------------------------ */
.content
{
	position: relative;

	display: block; /* fix IE11 */
}

.text-field p
{
	line-height: 2.4rem;
}

.text-field blockquote p
{
	line-height: 2.8rem;
}

.text-field a
{
	text-decoration: underline;

	color: #d6d92e;

	text-decoration-color: #d6d92e;
}

.text-field a:hover
{
	text-decoration: none;
	text-decoration: underline solid transparent;
}

.text-field ul li
{
	position: relative;

	margin: 0 0 10px 0;
}

.text-field ul li:last-child
{
	margin: 0;
}

.text-field ul li:before
{
	display: inline-block;

	width: 15px;
	height: 1px;
	margin: -1px 12px 0 0;

	content: '';
	vertical-align: middle;

	background: #d6d92e;
}

.text-field ol li
{
	margin: 0 0 10px 0;
}

.text-field ol li:last-child
{
	margin: 0;
}

.text-field ol li:before
{
	font-size: 2rem;
	font-weight: 600;

	display: inline-block;

	margin: -4px 15px 0 0;

	content: counters(counter, '.') '. ';
	counter-increment: counter;
	vertical-align: top;

	color: #d6d92e;
}

.text-field .alignleft
{
	float: left;
}

.text-field .alignright
{
	float: right;
}

.text-field .aligncenter
{
	display: block;

	margin: 0 auto;
}

.text-field .bullet
{
	font-size: 2rem;
	font-weight: 600;

	color: #c3c3c3;
}

.text-field .bullet:before
{
	display: inline-block;

	width: 15px;
	height: 3px;
	margin: -2px 12px 0 0;

	content: '';
	vertical-align: middle;

	background: #c3c3c3;
}

.text-field .bullet-yellow:before
{
	background: #d6d92e;
}

.text-field .bullet-purple:before
{
	background: #a64591;
}

.text-field .bullet-blue:before
{
	background: #2599cc;
}

.intro
{
	overflow: hidden;

	margin-bottom: 60px;
	padding-bottom: 25px;
}

.page-template-page-contact .intro
{
	margin-bottom: 0;
}

.blog .intro,
.search .intro
{
	margin: 0;
	padding: 100px 0;

	text-align: center;
}

.intro__title
{
	position: relative;

	text-align: center;

	color: #fff;
	background: #000;
}

.intro__title:after
{
	position: absolute;
	bottom: -20px;
	left: 0;

	display: block;

	height: 20px;

	content: '';

	background: #f7f7f7;
}

.intro__title:after
{
	width: calc(50vw + 50%);
}

.page-template-page-services_detail .intro__title
{
	background: #d6d930;
}

.page-template-page-contact .intro__title
{
	background: #a64792;
}

.page-template-page-results .intro__title
{
	background: #000;
}

.single .intro__title
{
	background: #36bded;
}

.intro__title .container
{
	z-index: 2;

	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;

	padding-top: 30px;
	padding-bottom: 40px;
}

.page-template-page-services_detail .intro__title .container
{
	padding-top: 60px;
	padding-bottom: 60px;
}

.page-template-page-results .intro-image .intro__title .container
{
	padding-top: 220px;
}

.intro__icon
{
	width: 100%;
	margin-bottom: 15px;

	text-align: center;
}

.intro__icon img
{
	max-width: 62px;
	max-height: 56px;
}

.intro__title-wrapper
{
	max-width: 710px;
}

.single .intro__title-wrapper
{
	max-width: 960px;
}

.intro__title h1
{
	color: #fff;
}

.page-template-page-services .intro__title h1,
.page-template-page-results .intro__title h1
{
	color: #d6d930;
}

.page-template-page-services_detail .intro__title h1
{
	color: #000;
}

.intro__title .text-field
{
	width: 100%;
}

.intro__title .text-field p
{
	font-size: 2rem;
	line-height: 2.8rem;

	max-width: 534px;
	margin: 30px auto 0 auto;
}

.excerpt
{
	font-size: 1.8rem;
	line-height: 2.6rem;

	margin-bottom: 40px;
}

.page-template-page-services_detail .excerpt
{
	text-align: center;
}

@media (max-width: 1240px)
{
	.intro__title .container:before
	{
		right: 0;
		left: 30px;

		width: auto;
	}

	.intro__title .container:after
	{
		display: none;
	}
}

@media (max-width: 760px)
{
	.text-field p
	{
		line-height: 2.2rem;
	}

	.text-field blockquote p
	{
		line-height: 2.7rem;
	}

	.text-field ul li:before
	{
		width: 12px;
		margin: -1px 10px 0 0;
	}

	.text-field ol li:before
	{
		font-size: 1.8rem;

		margin-right: 12px;
	}

	.text-field .bullet
	{
		font-size: 1.8rem;
	}

	.text-field .bullet:before
	{
		width: 12px;
		height: 2px;
		margin: -2px 10px 0 0;
	}

	.intro
	{
		margin-bottom: 30px;
		padding-bottom: 16px;
	}

	.blog .intro,
	.search .intro
	{
		padding: 60px 0;
	}

	.intro__title:before,
	.intro__title:after
	{
		width: 1px;
	}

	.intro__title:before
	{
		height: 6px;
	}

	.intro__title:after
	{
		bottom: -16px;

		height: 16px;
	}

	.intro__title .container
	{
		min-height: 220px;
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.page-template-page-services .intro__title .container,
	.page-template-page-contact .intro__title .container
	{
		padding-top: 90px;
		padding-bottom: 60px;
	}

	.intro__title .container:before
	{
		bottom: -12px;
		left: 15px;

		height: 12px;
	}

	.intro__icon img
	{
		max-width: 46px;
		max-height: 42px;
	}

	.intro__title-wrapper
	{
		max-width: 430px;
	}

	.intro__title .text-field p
	{
		font-size: 1.6rem;
		line-height: 2.4rem;

		max-width: 430px;
	}

	.excerpt
	{
		font-size: 1.6rem;
		line-height: 2.4rem;

		margin-bottom: 20px;
	}
}

/* --- FLEXBILE CONTENT --- */
.flexible-content
{
	overflow: hidden;
}

.flexible-content .column
{
	margin: 15px 0;
}

/* columns */
.flexible-content .row_columns-1 .column
{
	width: 100%;
}

.flexible-content .row_columns-2 .column
{
	width: calc(50% - 30px);
}

/* column fields */
.flexible-content .column__field
{
	display: block;

	width: 100%;
}

.flexible-content .image-field
{
	margin: 0;
}

.flexible-content .image-field a
{
	display: block;

	margin: 0 auto;
}

.flexible-content .image-field img
{
	display: block;

	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

.flexible-content .image-field figcaption
{
	font-style: italic;
	line-height: 2.4rem;

	position: relative;

	padding: 20px 0;

	text-align: center;
}

.flexible-content .image-field figcaption:after
{
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;

	display: block;

	width: 15px;
	height: 3px;
	margin: 0 auto;

	content: '';

	background: #d6d92e;
}

.flexible-content .text-banner
{
	position: relative;

	margin: 30px 0;
	padding: 60px 0;
}

.flexible-content .text-banner:before
{
	position: absolute;
	z-index: -1;
	top: 0;
	left: 50%;

	display: block;

	width: 100vw;
	height: 100%;

	content: '';
	transform: translateX(-50%);

	background: #f7f7f7 url('../img/bg_pattern-grey.png') center top repeat-x;
	background-size: 102px 325px;
}

.flexible-content .text-banner p:last-child
{
	margin: 0;
}

@media (max-width: 760px)
{
	.flexible-content [class*='row_columns-'] .column
	{
		width: 100%;
	}

	/*.flexible-content .column
	{
		margin: 7.5px 0;
	}*/

	.flexible-content .text-banner
	{
		padding: 30px 15px;
	}
}

/* --- BREADCRUMBS (COMPONENT/PLUGIN) --- */
.breadcrumbs
{
	margin-bottom: 25px;

	text-align: center;

	color: #c3c3c3;
}

.breadcrumbs a
{
	text-decoration: underline;

	color: #c3c3c3;
}

.breadcrumbs a:hover
{
	text-decoration: none;
	text-decoration: underline solid transparent;
}

.breadcrumbs .separator
{
	margin: 0 3px;
}

.breadcrumbs .breadcrumb_last
{
	display: inline-block;
	overflow: hidden;

	max-width: 233px;

	vertical-align: middle;
	white-space: nowrap;
	text-overflow: ellipsis;
}

/* --- SERVICES (COMPONENT) --- */
.services
{
	overflow: hidden;

	margin-top: 30px;
	padding: 100px 0;

	background: #f7f7f7;
}

.page-template-page-services .services
{
	padding-top: 30px;
	padding-bottom: 100px;

	background: #fff;
}

.page-template-page-services_detail .services
{
	margin-top: 0;
}

.services .container:before
{
	position: absolute;
	top: 22px;
	left: -400px;

	display: block;

	width: 370px;
	height: 3px;

	content: '';

	background: #d6d92e;
}

.page-template-page-services .services .container:before
{
	display: none;
}

.services h2
{
	font-weight: 400;

	margin-bottom: 80px;
}

.services__grid
{
	max-width: 730px;
	margin: 0 auto;
}

.page-template-page-services_detail .services__grid
{
	max-width: 100%;
}

a.services__item
{
	position: relative;

	width: 50%;
	max-width: 300px;
	margin: 30px 0;

	transition: none;

	color: #171314;
}

.page-template-page-services_detail a.services__item
{
	width: 33.33%;
}

.services__item:before
{
	position: absolute;
	z-index: 1;

	display: block;

	width: 155px;
	height: 97px;

	content: '';

	background: transparent url('../img/bg_polygon.png') 0 0 no-repeat;
	background-size: cover;
}

.services__item:nth-child(6n+1):before
{
	top: 30px;
	left: -32px;
}

.page-template-page-home .services__item:nth-child(6n+1):before,
.page-template-page-services .services__item:nth-child(6n+1):before
{
	top: 85px;
}

.services__item:nth-child(6n+2):before
{
	bottom: -7px;
	left: 100px;
}

.services__item:nth-child(6n+3):before
{
	top: 12px;
	left: 70px;
}

.services__item:nth-child(6n+4):before
{
	top: -6px;
	left: 20px;
}

.page-template-page-home .services__item:nth-child(6n+4):before,
.page-template-page-services .services__item:nth-child(6n+4):before
{
	top: 100px;
}

.services__item:nth-child(6n+5):before
{
	top: 80px;
	left: 85px;
}

.services__item:nth-child(6n+6):before
{
	bottom: 12px;
	left: 50px;
}

.services__item > *
{
	position: relative;
	z-index: 2;
}

.services__item h3
{
	font-weight: 400;

	margin-bottom: 20px;

	transition: 0.5s;
	text-decoration: underline solid transparent;
}

.services__item:hover h3
{
	text-decoration: underline;

	text-decoration-color: #d6d92e;
}

.services__item p
{
	line-height: 2.4rem;
}

.services__item svg
{
	display: block;

	width: 16px;
	height: 12px;

	transition: 0.5s;
}

.services__item:hover svg
{
	margin-left: 12px;
}

.services__item svg path
{
	fill: #4f453c;
}

@media (max-width: 1240px)
{
	.services
	{
		padding: 60px 15px 80px 15px;
	}

	.services .container:before
	{
		left: -15px;

		width: 30px;
	}
}

@media (max-width: 960px)
{
	.services h2
	{
		margin-bottom: 60px;
	}

	.page-template-page-services_detail a.services__item
	{
		width: 50%;
	}
}

@media (max-width: 760px)
{
	.services
	{
		margin-top: 15px;
		padding: 30px 15px 60px 15px;
	}

	.page-template-page-services .services
	{
		padding-bottom: 60px;
	}

	.services .container:before
	{
		top: 16px;

		width: 15px;
	}

	.services h2
	{
		margin-bottom: 30px;
	}

	.services__item:before
	{
		width: 139px;
		height: 87px;
	}

	.services__item:nth-child(6n+1):before
	{
		top: 70px;
		left: -28px;
	}

	.services__item:nth-child(6n+2):before
	{
		bottom: -15px;
		left: 140px;
	}

	.services__item:nth-child(6n+3):before
	{
		top: 12px;
		left: 60px;
	}

	.services__item:nth-child(6n+4):before
	{
		top: 70px;
		left: 20px;
	}

	.services__item:nth-child(6n+5):before
	{
		top: 70px;
		left: -15px;
	}

	.services__item:nth-child(6n+6):before
	{
		bottom: -7px;
		left: 40px;
	}

	.services__item p
	{
		line-height: 2.2rem;
	}
}

@media (max-width: 600px)
{
	.services__grid
	{
		max-width: 300px;
	}

	a.services__item,
	.page-template-page-services_detail a.services__item
	{
		width: 100%;
	}
}

/* --- CONTACT (COMPONENT) --- */
.contact
{
	padding: 60px 0;

	color: #fff;
	background: #a54591 url('../img/bg_pattern-purple.png') center top repeat-x;
	background-size: 102px 325px;
}

.page-template-page-services_detail .contact
{
	margin-top: 60px;
}

.contact__info h2
{
	font-weight: 400;

	display: inline-block;

	background: linear-gradient(transparent 70%, #843c80 70%, #843c80 88%, transparent 88%);
}

.contact__image img
{
	width: auto;
	height: 150px;
}

.contact__connection a
{
	font-size: 2.2rem;

	display: inline-block;

	padding: 8px 28px 8px 13px;

	color: #fff;
	border: 2px solid transparent;
	background: #843c80;
	box-shadow: 7px 7px 0 0 rgba(132, 60, 128, 0.4);
}

.contact__connection a[href^=tel]
{
	margin-bottom: 20px;
}

.contact__connection a:hover
{
	border-color: #fff;
	background: #a54591;
	box-shadow: 0 0 0 0 rgba(132, 60, 128, 0.4);
}

.contact__connection a svg
{
	display: inline-block;

	vertical-align: middle;
}

.contact__connection a svg path
{
	fill: #fff;
}

.contact__connection a[href^=tel] svg
{
	width: 17px;
	height: 21px;
	margin-right: 5px;
}

.contact__connection a[href^=mailto] svg
{
	width: 18px;
	height: 13px;
	margin-right: 10px;
}

@media (max-width: 960px)
{
	.contact .row
	{
		justify-content: space-around;
	}

	.contact__connection
	{
		width: 100%;
		margin-top: 50px;

		text-align: center;
	}
}

@media (max-width: 760px)
{
	.contact
	{
		padding: 30px 0;

		text-align: center;
	}

	.page-template-page-services_detail .contact
	{
		margin-top: 40px;
	}

	.contact__info
	{
		width: 100%;
		margin-bottom: 20px;
	}

	.contact__image
	{
		width: 100%;
	}

	.contact__connection
	{
		margin-top: 30px;
	}

	.contact__connection a
	{
		font-size: 18px;

		padding: 6px 18px 6px 10px;

		box-shadow: 5px 5px 0 0 rgba(132, 60, 128, 0.4);
	}

	.contact__connection a[href^=tel] svg
	{
		width: 14px;
		height: 17px;
		margin: -2px 3px 0 0;
	}

	.contact__connection a[href^=mailto] svg
	{
		width: 15px;
		height: 11px;
		margin: -2px 7px 0 0;
	}
}

/* --- HOME PAGE --- */
.page-template-page-home
{
	padding-top: 0;
}

.page-template-page-home .intro
{
	position: relative;

	min-height: 780px;
	margin: 0;
	padding: 120px 0 60px 0;
}

.page-template-page-home .intro__title-home
{
	position: relative;
	z-index: 2;

	color: #fff;
}

.page-template-page-home .intro__title-home img
{
	display: inline-block;

	width: 180px;
	height: auto;
	margin-bottom: 30px;
}

.page-template-page-home .intro__title-home span
{
	font-size: 2.2rem;

	display: block;

	margin-bottom: 30px;
}

.page-template-page-home .intro__title-home h1
{
	font-weight: 400;
	line-height: 6.8rem;

	position: relative;
}

.page-template-page-home .intro__background
{
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;

	display: block;

	width: 100%;
	height: 100%;
	margin: auto;

	background: #171314;
}

.page-template-page-home .intro__background img
{
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;
	object-position: center top;
}

.anchor-content
{
	position: absolute;
	z-index: 2;
	right: 0;
	bottom: 90px;
	left: 0;

	display: block;

	width: 24px;
	height: 12px;
	margin: 0 auto;
}

.anchor-content svg
{
	display: block;

	width: inherit;
	height: inherit;
}

.anchor-content svg path
{
	fill: #4f453c;
}

.home-boxes
{
	background: #fff url('../img/bg_pattern-grey.png') center top repeat-x;
	background-size: 102px 325px;
}

.home-boxes__item
{
	position: relative;
	z-index: 3;

	width: calc(33.33% - 15px);
	margin-top: -50px;
	padding: 20px 30px 30px 30px;

	color: #fff;
	background: #212121;
	background-size: 125px 190px;
	box-shadow: 4px 4px 0 0 #c3c3c3;
}

.home-boxes__item:after
{
	position: absolute;
	bottom: 0;
	left: 0;

	display: block;

	width: 100%;
	height: 15px;

	content: '';
}

.home-boxes__item:nth-child(1):after
{
	background: #a54591;
}

.home-boxes__item:nth-child(2):after
{
	background: #2599cc;
} 

.home-boxes__item:nth-child(3):after
{
	background: #d6d92e;
} 

.home-boxes__item:hover
{
	color: #fff;
}

.home-boxes__item h2
{
	font-size: 2.4rem;

	display: inline;
}

.home-boxes__item .text-field
{
	font-size: 1.8rem;

	margin-top: 15px;
}

.home-boxes__item .text-field p
{
	line-height: normal;
}

.home-boxes__item svg
{
	display: block;

	width: 16px;
	height: 12px;

	transition: 0.5s;
}

.home-boxes__item:hover svg
{
	margin-left: 12px;
}

.home-boxes__item svg path
{
	fill: #fff;
}

.page-template-page-home .services
{
	margin-top: 0;

	background: none;
}

@media (max-width: 1000px)
{
	.page-template-page-home .intro
	{
		min-height: 700px;
	}

	.page-template-page-home .intro__background img
	{
		object-position: -370px top;
	}

	.home-boxes__item
	{
		width: calc(50% - 15px);
	}

	.home-boxes__item:last-child
	{
		width: 100%;
		margin-top: 30px;
	}
}

@media (max-width: 760px)
{
	.page-template-page-home
	{
		padding-top: 90px;
	}

	.page-template-page-home .intro
	{
		min-height: 600px;
		padding-top: 280px;

		background: #171314;
	}

	.page-template-page-home .intro__title-home .container
	{
		padding: 0 30px;
	}

	.page-template-page-home .intro__title-home a
	{
		display: none;
	}

	.page-template-page-home .intro__title-home span
	{
		font-size: 1.6rem;

		margin-bottom: 10px;

		color: #c3c3c3;
	}

	.page-template-page-home .intro__title-home h1
	{
		line-height: 5rem;
	}

	.page-template-page-home .intro__background img
	{
		object-fit: none;
		object-position: 80% -30px;
	}

	.anchor-content
	{
		display: none;
	}

	.home-boxes__item
	{
		width: calc(50% - 7.5px);
		margin-top: -100px;
	}

	.home-boxes__item:last-child
	{
		margin-top: 15px;
	}

	.home-boxes__item h2
	{
		font-size: 2rem;
	}

	.home-boxes__item .text-field
	{
		font-size: 1.6rem;
	}
}

@media (max-width: 600px)
{
	.home-boxes__item
	{
		width: 100%;
		margin-top: 15px;
	}

	.home-boxes__item:first-child
	{
		margin-top: -100px;
	}
}

@media (max-width: 560px)
{
	.page-template-page-home .intro__background img
	{
		object-position: 65% -30px;
	}
}

@media (max-width: 460px)
{
	.page-template-page-home .intro__title-home h1
	{
		font-size: 3.1rem;
		line-height: 4.6rem;
	}
}

/* --- CONTACT PAGE --- */
.contact-page__connection,
.contact-page__socials
{
	padding: 40px 0;

	border-bottom: 1px solid #e6e6e6;
}

.contact-page__socials
{
	border-bottom: none;
}

.contact-page__connection a,
.contact-page__socials a
{
	font-size: 2.2rem;

	margin: 15px 35px;

	color: #171314;
}

.contact-page__connection a span,
.contact-page__socials a span
{
	transition: 0.5s;
	text-decoration: none;
	text-decoration: underline solid transparent;
}

.contact-page__connection a:hover span,
.contact-page__socials a:hover span
{
	text-decoration: underline;

	text-decoration-color: #d6d92e;
}

.contact-page__connection a svg,
.contact-page__socials a svg
{
	display: inline-block;

	vertical-align: middle;
}

.contact-page__connection a[href^=tel] svg
{
	width: 16px;
	height: 20px;
	margin: -2px 0 0 0;
}

.contact-page__connection a[href^=mailto] svg
{
	width: 18px;
	height: 13px;
	margin: -2px 10px 0 0;
}

.contact-page__socials a.social-fb svg
{
	width: 13px;
	height: 23px;
	margin: -5px 7px 0 0;
}

.contact-page__socials a.social-li svg
{
	width: 21px;
	height: 21px;
	margin: -8px 7px 0 0;
}

.contact-page__team
{
	border-bottom: 1px solid #e6e6e6;
}

.contact-page__team-column:nth-child(2)
{
	padding-top: 150px;
}

.team-member
{
	max-width: 360px;
	margin: 100px 30px;

	text-align: center;
}

.team-member img
{
	display: inline-block;

	width: 300px;
	height: auto;
	margin-bottom: 40px;
}

.team-member h2
{
	display: inline-block;

	padding: 0 4px;

	color: #843c80;
}

.team-member p
{
	margin-bottom: 1.5em;
}

.team-member a
{
	color: #c3c3c3;
}

.team-member a:hover
{
	color: #843c80;
}

.team-member a svg
{
	display: inline-block;

	width: 21px;
	height: 21px;
	margin: -3px 5px;

	vertical-align: top;
}

.team-member a svg path
{
	transition: 0.5s;

	fill: #c3c3c3;
}

.team-member a:hover svg path
{
	fill: #843c80;
}

.contact-page__form
{
	margin-bottom: 80px;
}

.contact-page__form .wpforms-container
{
	max-width: 500px;
	margin: 0 auto;
}

@media (max-width: 960px)
{
	.team-member
	{
		max-width: 300px;
		margin: 60px 15px;
	}

	.team-member img
	{
		width: 280px;
		margin-bottom: 30px;
	}
}

@media (max-width: 760px)
{
	.contact-page__connection,
	.contact-page__socials
	{
		padding: 30px 0;
	}

	.contact-page__connection a,
	.contact-page__socials a
	{
		font-size: 1.8rem;

		margin: 15px 25px;
	}

	.contact-page__team-column
	{
		width: 100%;
	}

	.contact-page__team-column:nth-child(2)
	{
		margin-top: -60px;
		padding: 0;
	}

	.team-member
	{
		max-width: 300px;
		margin: 60px auto;
	}

	.contact-page__form
	{
		margin-bottom: 40px;
	}
}

/* --- RESULTS PAGE --- */
.page-template-page-results .intro__title picture
{
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;

	display: block;

	width: 100%;
	height: 100%;
	margin: auto;
}

.page-template-page-results .intro__title picture img
{
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;
	object-position: center top;
}

.page-results .flexible-content .row_columns-2
{
	align-items: center;
}

@media (max-width: 760px)
{
	.page-results .flexible-content,
	.page-results .flexible-content p
	{
		text-align: center !important;
	}
}

/* --- ARTICLE PAGE/SINGLE --- */
.article-meta__image img
{
	display: block;

	width: 100%;
	height: auto;

	box-shadow: 7px 7px 0 0 #2599cc;
}

.article-meta__author
{
	margin-bottom: 60px;
	padding: 20px 20px 15px 20px;

	border-bottom: 1px solid #e6e6e6;
}

.blog .article-meta__author,
.search .article-meta__author
{
	margin-bottom: 0;
}

.article-meta__author img
{
	display: block;

	width: 120px;
	height: auto;
	margin-right: 20px;
}

.article-meta__author-wrap
{
	padding-top: 14px;
}

.article-meta__author-wrap span
{
	font-size: 2rem;
	font-weight: 600;

	position: relative;

	margin-right: 15px;
	padding-right: 15px;
}

.article-meta__author-wrap span:after
{
	position: absolute;
	right: 0;
	bottom: 4px;

	display: block;

	width: 1px;
	height: 20px;

	content: '';

	background: #2599cc;
}

.article-meta__author-wrap time
{
	font-size: 1.4rem;
}

@media (max-width: 760px)
{
	.article-meta__author
	{
		margin-bottom: 30px;
	}

	.blog .article-meta__author,
	.search .article-meta__author
	{
		margin-bottom: 0;
	}

	.article-meta__author img
	{
		width: 90px;
	}

	.article-meta__author-wrap span
	{
		font-size: 1.8rem;
	}

	.article-meta__author-wrap span:after
	{
		bottom: 3px;
	}
}

@media (max-width: 400px)
{
	.article-meta__author-wrap
	{
		padding-top: 10px;
	}

	.article-meta__author-wrap span,
	.article-meta__author-wrap time
	{
		display: block;
	}

	.article-meta__author-wrap span:after
	{
		display: none;
	}
}

/* --- BLOG / SEARCH --- */
.blog .content,
.search .content
{
	padding-bottom: 100px;
}

.blog .intro h1,
.search .intro h1
{
	color: #2599cc;
}

.search-form
{
	position: relative;

	max-width: 470px;
	margin: 40px auto 0 auto;
}

.search-form label
{
	position: absolute;
	top: 0;
	left: 0;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 50px;
	height: 50px;
	padding: 0;
}

.search-form label svg
{
	display: block;

	width: 19px;
	height: 19px;
}

.search-form label svg path
{
	fill: #565656;
}

.search-form input[type='search']
{
	padding: 0 165px 0 55px;
}

.search-form input[type='submit']
{
	font-size: 2.2rem;
	line-height: 50px;

	position: absolute;
	top: 0;
	right: 0;

	width: 150px;
	margin: 0;
	padding: 0;

	color: #fff;
	border: none;
	background: #2599cc;
	box-shadow: 7px 7px 0 0 #ddf5ff;
}

.search-form input[type='submit']:hover
{
	background: #4bb5e3;
	box-shadow: 0 0 0 0 #ddf5ff;
}

.search-query
{
	font-size: 2rem;

	display: block;

	margin-top: 30px;

	text-align: center;
}

.search-query strong
{
	color: #2599cc;
}

@media (max-width: 760px)
{
	.blog .content,
	.search .content
	{
		padding-bottom: 60px;
	}

	.search-form
	{
		max-width: 300px;
	}

	.search-form label
	{
		width: 40px;
		height: 40px;
	}

	.search-form input[type='search']
	{
		padding: 0 145px 0 45px;
	}

	.search-form input[type='submit']
	{
		font-size: 2rem;
		line-height: 40px;

		width: 120px;
	}

	.search-query
	{
		font-size: 1.8rem;
	}
}

@media (max-width: 400px)
{
	.search-form
	{
		max-width: 260px;
	}
}

/* --- ARTICLES (LOOP) --- */
.loop-wrapper
{
	position: relative;

	display: grid;

	grid-gap: 60px;
	grid-template-columns: 1fr 1fr;
}

.loop-wrapper__empty
{
	font-size: 2rem;
	font-weight: 600;

	position: absolute;
	top: 0;
	left: 50%;

	transform: translateX(-50%);
}

.loop-wrapper article
{
	width: calc(50% - 30px);
	margin: 30px 0;
}

@supports (display: grid)
{
	.loop-wrapper article
	{
		width: auto;
		margin: 0;
	}
}

.loop-wrapper article a
{
	display: block;

	color: #171314;
}

.loop-wrapper .article__image img
{
	display: block;

	width: 100%;
	height: auto;

	box-shadow: 7px 7px 0 0 #2599cc;
}

.loop-wrapper h2.article__title
{
	font-size: 2.8rem;

	margin-top: 30px;

	text-transform: uppercase;
}

.loop-wrapper .article__excerpt p
{
	font-size: 1.8rem;

	margin: 0;
}

.loop-wrapper .more-link
{
	font-size: 1.4rem;

	display: block;

	margin-top: 20px;

	color: #2599cc;
}

.loop-wrapper .more-link svg
{
	display: inline-block;

	width: 16px;
	height: 12px;
	margin: -3px 0 0 7px;

	transition: 0.5s;
	vertical-align: middle;
}

.loop-wrapper article a:hover .more-link svg
{
	margin-left: 14px;
}

.loop-wrapper .more-link svg path
{
	fill: #2599cc;
}

@media (max-width: 860px)
{
	.loop-wrapper
	{
		grid-gap: 60px;
		grid-template-columns: 1fr;
	}

	.loop-wrapper article
	{
		width: 100%;
		max-width: 560px;
		margin: 30px auto;
	}

	@supports (display: grid)
	{
		.loop-wrapper article
		{
			margin: 0 auto;
		}
	}
}

@media (max-width: 760px)
{
	.loop-wrapper
	{
		grid-gap: 30px;
	}

	.loop-wrapper article
	{
		margin: 15px auto;
	}

	@supports (display: grid)
	{
		.loop-wrapper article
		{
			margin: 0 auto;
		}
	}

	.loop-wrapper h2.article__title
	{
		font-size: 2.2rem;
	}

	.loop-wrapper .article__excerpt p
	{
		font-size: 1.6rem;
	}
}

/* --- ARTICLES (EXTRACT) --- */
.article-news
{
	padding: 100px 0;
}

.article-news h2
{
	font-weight: 400;
}

.article-news .container:before
{
	position: absolute;
	top: 22px;
	left: -400px;

	display: block;

	width: 370px;
	height: 3px;

	content: '';

	background: #2599cc;
}

.article-news .loop-wrapper
{
	grid-template-columns: 1fr 1fr 1fr;
}

.article-news .loop-wrapper article
{
	width: calc(33.33% - 45px);
	margin: 30px 0;
}

@supports (display: grid)
{
	.article-news .loop-wrapper article
	{
		width: auto;
		margin: 0;
	}
}

.article-related
{
	margin-bottom: 100px;
}

.article-related .container
{
	margin-top: 30px;
	padding-top: 70px;

	border-top: 1px solid #e6e6e6;
}

.article-related h2
{
	font-weight: 400;
}

.article-extract h3.article__title
{
	font-size: 1.6rem;

	margin-top: 50px;

	text-transform: uppercase;
}

.article-extract .article__excerpt p
{
	font-size: 1.4rem;
	line-height: 2.2rem;
}

@media (max-width: 1240px)
{
	.article-news .container:before
	{
		left: -15px;

		width: 30px;
	}
}

@media (max-width: 1000px)
{
	.article-news .loop-wrapper
	{
		grid-template-columns: 1fr 1fr;
	}

	.article-news .loop-wrapper article
	{
		width: calc(50% - 30px);
		margin: 30px 0;
	}

	@supports (display: grid)
	{
		.article-news .loop-wrapper article
		{
			width: auto;
			margin: 0;
		}
	}

	.article-news .loop-wrapper article:last-child
	{
		display: none;
	}
}

@media (max-width: 860px)
{
	.article-news .loop-wrapper
	{
		grid-template-columns: 1fr;
	}

	.article-news .loop-wrapper article
	{
		width: 100%;
		margin: 30px 0;
	}

	@supports (display: grid)
	{
		.article-news .loop-wrapper article
		{
			margin: 0 auto;
		}
	}

	.article-news .loop-wrapper article:last-child
	{
		display: block;
	}
}

@media (max-width: 760px)
{
	.article-news
	{
		padding: 50px 0;
	}

	.article-news .container:before
	{
		top: 16px;
		left: -5px;

		width: 15px;
	}

	.article-news h2
	{
		padding-left: 15px;
	}

	.article-news .loop-wrapper article
	{
		margin: 15px 0;
	}

	@supports (display: grid)
	{
		.article-news .loop-wrapper article
		{
			margin: 0 auto;
		}
	}

	.article-related
	{
		margin-bottom: 60px;
	}

	.article-related .container
	{
		margin-top: 15px;
		padding-top: 30px;

		border-top: 1px solid #e6e6e6;
	}
}

/* --- PAGINATION --- */
.pagination_status
{
	display: none;
}

.pagination
{
	margin-top: 50px;
	padding-top: 50px;

	text-align: center;

	border-top: 1px solid #e6e6e6;
}

.nav_pagination a
{
	font-size: 2.2rem;

	display: inline-block;

	padding: 15px 30px;

	color: #fff;
	background: #2599cc;
	box-shadow: 7px 7px 0 0 #ddf5ff;
}

.nav_pagination a:hover
{
	background: #4bb5e3;
	box-shadow: 0 0 0 0 #ddf5ff;
}

@media (max-width: 760px)
{
	.pagination
	{
		margin-top: 30px;
		padding-top: 30px;
	}

	.nav_pagination a
	{
		font-size: 1.9rem;

		padding: 10px 25px;
	}
}

/* --- ERROR 404 PAGE --- */
.error404 .content
{
	padding: 60px 0;
}

.error404__symbol
{
	font-size: 14rem;
	font-weight: 600;
	line-height: 400px;

	width: 400px;
	height: 400px;

	text-align: center;

	color: #000;
	border-radius: 50%;
	background: #d6d92e;
}

.error404__text
{
	width: calc(100% - 400px - 100px);
}

.error404__text h1
{
	margin-bottom: 20px;
}

.error404__text a
{
	text-decoration: none;

	color: #171314;
}

.error404__text a:hover
{
	text-decoration: none;

	color: #d6d92e;
}

a.contact-facebook,
a.contact-mail,
a.contact-phone
{
	display: inline-block;

	margin-bottom: 10px;
}

.error404__text svg
{
	display: inline-block;

	vertical-align: middle;
}

.error404__text a.contact-phone svg
{
	width: 21px;
	height: 16px;
	margin: -1px 5px 0 -3px;
}

.error404__text a.contact-mail svg
{
	width: 18px;
	height: 13px;
	margin: -2px 7px 0 0;
}

.error404__text a.contact-facebook svg
{
	width: 10px;
	height: 19px;
	margin: -3px 9px 0 3px;
}

@media (max-width: 1000px)
{
	.error404 .content .row
	{
		display: block;
	}

	.error404__symbol
	{
		font-size: 10rem;
		line-height: 300px;

		width: 300px;
		height: 300px;
		margin: 0 auto 60px auto;
	}

	.error404__text
	{
		width: 100%;
		max-width: 700px;
		margin: 0 auto;
	}
}

@media (max-width: 760px)
{
	.error404 .content
	{
		padding: 30px 0;
	}

	.error404__symbol
	{
		font-size: 8rem;
		line-height: 250px;

		width: 250px;
		height: 250px;
		margin: 0 auto 30px auto;
	}

	.error404__text
	{
		width: 100%;
		max-width: 700px;
		margin: 0 auto;
	}
}

/* ------------------------------ FOOTER ------------------------------ */
footer
{
	padding: 60px 0 15px 0;

	color: #fff;
	background: #000 url('../img/bg_pattern-black.png') center top repeat-x;
	background-size: 102px 325px;
}

.footer__logo a,
.footer__partner a
{
	display: inline-block;
}

.footer__logo img
{
	display: block;

	height: 76px;
	margin-bottom: 25px;

	widows: auto;
}

.footer__copyright
{
	font-size: 1.4rem;

	color: #c3c3c3;
}

.footer__right
{
	text-align: right;
}

.footer__partner img
{
	display: inline-block;

	width: 400px;
	height: auto;
	margin-bottom: 25px;
}

.footer__contact a
{
	font-size: 1.6rem;

	padding: 0 20px;

	color: #c3c3c3;
	border-left: 1px solid #2f2c2d;
}

.footer__contact a:hover
{
	color: #d6d92e;
}

.footer__contact a:first-child
{
	padding-left: 0;

	border: none;
}

.footer__contact a:last-child
{
	padding-right: 0;
}

.footer__contact svg
{
	display: inline-block;

	vertical-align: middle;
}

.footer__contact a:nth-child(1) svg
{
	width: 10px;
	height: 19px;
	margin: -3px 6px 0 0;
}

.footer__contact a:nth-child(2) svg
{
	width: 18px;
	height: 13px;
	margin: -2px 5px 0 0;
}

.footer__contact a:nth-child(3) svg
{
	width: 21px;
	height: 16px;
	margin: -2px -5px 0 0;
}

.footer__contact svg path
{
	transition: 0.5s;

	fill: #c3c3c3;
}

.footer__contact a:hover svg path
{
	fill: #d6d92e;
}

@media (max-width: 960px)
{
	footer
	{
		padding: 40px 0 30px 0;

		text-align: center;
	}

	.footer__left,
	.footer__right
	{
		width: 100%;

		text-align: center;
	}

	.footer__logo img
	{
		margin: 0 auto 20px auto;
	}

	.footer__partner img
	{
		margin-bottom: 20px;
	}

	footer .row_justify-space
	{
		flex-direction: column;
	}

	footer .row
	{
		align-content: center;
		justify-content: center;
	}

	.footer__copyright
	{
		margin-bottom: 30px;
	}
}

@media (max-width: 600px)
{
	footer .row
	{
		flex-direction: column;
	}

	.footer__copyright span
	{
		line-height: 2.6rem;

		display: block;
	}

	.footer__partner img
	{
		width: 300px;
	}

	.footer__contact a
	{
		line-height: 55px;

		position: relative;

		padding: 0;

		border: none;
		border-left: none;
	}

	.footer__contact a:before
	{
		position: absolute;
		top: 0;
		right: 0;
		left: 0;

		display: block;

		width: 24px;
		height: 1px;
		margin: 0 auto;

		content: '';

		background: #2f2c2d;
	}

	.footer__contact a:first-child:before
	{
		display: none;
	}
}

@media (max-width: 400px)
{
	.footer__partner img
	{
		width: 270px;
	}
}

/* ------------------------------ EXTRA ------------------------------ */

/* --- COOKIES NOTICE --- */
.cookie-notice
{
	font-size: 1.5rem;
	line-height: 3rem;

	position: fixed;
	z-index: 9999;
	bottom: 0;
	left: 0;

	display: none;

	width: 100%;
	padding: 5px;

	text-align: center;

	color: #fff;
	background: #000;
}

.cookie-notice button
{
	font-size: 1.5rem;

	display: inline-block;

	margin-left: 10px;
	padding: 6px 8px;

	color: #fff;
	border-radius: 3px;
	background: #00a2bf;
}

.cookie-notice button[data-agreement='true']
{
	background: #4caf50;
}

.cookie-notice button[data-agreement='false']
{
	background: #f44336;
}

.cookie-notice button:hover
{
	text-decoration: none;

	background: #00a2bf;
}

@media (max-width: 760px)
{
	.cookie-notice,
	.cookie-notice button
	{
		font-size: 1.3rem;
		line-height: 1.8rem;
	}

	.cookie-notice button
	{
		padding: 0 5px;
	}
}

/* --- WP ADMIN BAR --- */
.admin-bar header
{
	top: 32px;
}

#wpadminbar
{
	overflow: hidden;
}

@media (max-width: 782px)
{
	.admin-bar
	{
		margin-top: -46px;
	}

	.admin-bar header
	{
		top: 0;
	}

	#wpadminbar
	{
		display: none;
	}
}

/* ------------------------------ JS OFF ------------------------------ */
.no-js picture
{
	display: none;
}

/* ------------------------------ PRINT ------------------------------ */
@media print
{
	header,
	nav,
	.tools,
	footer
	{
		display: none !important;
	}
}
