/*
Description:
		1 - Including files ("fonts.css", "reset.css" and others)
		2 - Tags styles and General styles
		3 - header
		4 - .content
		5 - footer
		* - @media rules
*/

/* 1 - BEGIN of Including files ("fonts.css", "reset.css" and others) ---------------------------------------------------------- */

@font-face {
	font-family: 'Couture';
	src: url('fonts/Couture/couture.woff2') format('woff2'),
		 url('fonts/Couture/couture.woff') format('woff');
	font-weight: 700;
	font-style: normal;

}

@font-face {
	font-family: 'Poppins';
	src: url('fonts/Poppins/poppins-regular.woff2') format('woff2'),
		 url('fonts/Poppins/poppins-regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Poppins';
	src: url('fonts/Poppins/poppins-medium-webfont.woff2') format('woff2'),
		 url('fonts/Poppins/poppins-medium-webfont.woff') format('woff');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Poppins';
	src: url('fonts/Poppins/poppins-light.woff2') format('woff2'),
		 url('fonts/Poppins/poppins-light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}

/* BEGIN of CSS RESET */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display: block;
}

/* END of CSS RESET */

/* 1 - END of Including files ("fonts.css", "reset.css" and others) ---------------------------------------------------------- */
/* 2 - BEGIN of Tags and General styles ---------------------------------------------------------- */

html {
	scroll-behavior: smooth;
	scroll-padding-top: 0;
}

body {
	min-height: 500px;
	margin: 0 auto;
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	color: var(--text-color);
}

a {
	color: inherit;
	text-decoration: none;
	outline: none;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

a:hover {
	opacity: 0.7;
	text-decoration: none;
	color: inherit;
	outline: none;
}

a:active {
	opacity: 0.6;
	outline: none;
	color: inherit;
	text-decoration: none;
}

a:focus {
	outline: none;
	color: inherit;
	text-decoration: none;
}

button, input, textarea, select {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

button:hover, input:hover, textarea:hover, select:hover {
	opacity: 0.8;
}

strong {
	font-weight: 700;
}

em {
	font-style: italic;
}

img {
	max-width: 100%;
}

h1, .h1 {
	margin-bottom: 35px;
	font-size: 40px;
	line-height: 40px;
	text-transform: uppercase;
	color: #323232;
	font-weight: bold;
	font-family: "Couture";
}

h2, .h2 {
	margin-bottom: 30px;
	font-size: 40px;
	line-height: 70px;
	text-transform: uppercase;
	color: #000;
	font-weight: bold;
	font-family: "Couture";
}

h3, .h3 {
	margin-bottom: 30px;
	font-size: 25px;
	line-height: 28px;
	text-transform: uppercase;
	color: #323232;
	font-weight: bold;
	font-family: "Couture";
}

h4, .h4 {
	margin-bottom: 30px;
	font-size: 20px;
	line-height: 20px;
	text-transform: uppercase;
	color: #323232;
	font-weight: bold;
	font-family: "Couture";

}

h5, .h5 {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	font-family: "Couture";
}

h6, .h6 {
	margin-bottom: 15px;
	font-size: 10px;
	font-weight: bold;
	text-transform: uppercase;
	font-family: "Couture";
}

blockquote {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 26px;
	line-height: 1.2;
	font-weight: 700;
	display: block;
	position: relative;
}

p {
	line-height: 27px;
	color: #8f8f8f;
	font-weight: 400;
}

p > a {
	font-weight: bold;
}

ul, ol {
	padding: 0 0 20px 30px;
}

ul ol, ul ul, ol ul, ol ol {
	padding-bottom: 0;
}

article p {
	padding: 0 0 30px;
}

article ul {
	list-style: none;
}

article ul li {
	line-height: 30px;
}

article img {
	display: block;
	margin: 0 0 20px;
}

.clear:before, .clear:after {
	content: "";
	display: block;
	clear: both;
}

.hide, .hidden {
	display: none;
}

.content-wrapper {
	width: 1000px;
	height: 100%;
	margin: 0 auto;
}

.alignleft, img.alignleft {
	float: left;
	display: block;
	margin: 0 5px 0 0;
}

.alignright, img.alignright {
	float: right;
	display: block;
	margin: 0 0 0 5px;
}

.aligncenter, img.aligncenter {
	float: none;
	display: block;
	margin: 0 auto 0;
}

.alignnone, img.alignnone {
	margin: 0 0 0;
	display: block;
}

/*  */

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

/*  */

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	padding-left: 15px;
	padding-right: 15px;
}

.container {
	max-width: 1200px;
}

.container-fluid {
	padding-left: 40px;
	padding-right: 40px;
}

[class*="col-"] {
	padding-left: 15px;
	padding-right: 15px;
}

.row {
	margin-left: -15px;
	margin-right: -15px;
}

/* 2 - END of Tags styles and General styles ---------------------------------------------------------- */
/* 3 - BEGIN of header ---------------------------------------------------------- */

header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 99;
	background: #fff;
}

header +* {
	padding-top: 150px;
}

.header-fixed .header-wrap {
	padding: 10px 0 10px;
}

.header-fixed  {
	box-shadow: 0 2px 5px rgba(0,0,0,.1);
}

.header-fixed .logo img {
	max-width: 200px;
}

.header-fixed .icon-nav {
	display: none;
}

.header-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0 40px;
}

.logo {
	display: block;
}

.logo img {
	transition: all .3s;
	max-width: 320px;
}

.header-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.icon-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-bottom: 35px;
	padding: 0;
	list-style: none;
}

.icon-nav li {
	margin-left: 30px;
	font-size: 20px;
}

.icon-nav li a {
	display: block;
	color: #323232;
	line-height: normal;
}

.main-menu {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	list-style: none;
}

.main-menu > li {
	margin-left: 32px;
}

.main-menu > li > a {
	display: block;
	font-family: "Couture";
	font-size: 16px;
	text-transform: uppercase;
	color: #323232;
}

.main-menu>li.drop {
	position: relative;
	padding-right: 13px;
}

.main-menu>li.drop:before {
	content: '\f107 ';
	position: absolute;
	right: -3px;
	top: -2px;
	font-size: 18px;
	font-family: "FontAwesome";
	color: #323232;
}

.main-menu>li.drop:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 10px;
	bottom: -10px;
}

.main-menu>li.drop:hover:before {
	content: '\f106';
}

.drop-menu {
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  position: absolute;
  left: 0;
  top: calc(100% + 5px);
  padding: 12px 14px;
  min-width: 200px;
  list-style: none;
  background: #fff;
  -webkit-box-shadow: 0 4px 24px rgba(0,0,0,.05);
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
  border-radius: 6px;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  z-index: 1;
}

.drop-menu.active {
	visibility: visible;
	opacity: 1;
	z-index: 999;
	-webkit-transform: translate(0);
	-ms-transform: translate(0);
	transform: translate(0);
}

.drop-menu > li > a {
	display: block;
	padding: 10px 0;
	font-size: 16px;
	color: #323232;
}


.burger-btn {
	position: relative;
	width: 30px;
	height: 20px;
	display: none;
	border: none;
	padding: 0;
	background-color: transparent;
	cursor: pointer;
}

.burger-line {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 2px;
	background-color: #323232;
	transform: translateY(-50%);
	transition: opacity 0.3s ease-in-out;
}

.burger-btn::before,
.burger-btn::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #323232;
	transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, bottom 0.3s ease-in-out;
}

.burger-btn::before {
	top: 0;
}

.burger-btn::after {
	bottom: 0;
}

.burger-active .burger-line {
	opacity: 0;
}

.burger-active::before {
	top: 50%;
	transform: rotate(45deg);
}

.burger-active::after {
	bottom: auto;
	top: 50%;
	transform: rotate(-45deg);
}

.stop-scroll {
	overflow: hidden;
}

.stop-scroll:before {
	content: '';
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 10;
	background: rgba(256,256,256,.5);
	backdrop-filter: blur(5px);
}


















/* back-to-top css start */

.back-to-top {
	position: fixed;
	bottom: 15px;
	right: 10px;
	z-index: 99;
	width: 36px;
	height: 36px;
	padding: 0 0 0;
	margin: 0 0 0;
	overflow: hidden;
	text-align: center;
	font-size: 18px;
	line-height: 1;
	background: transparent url('img/icon-arrow-up.svg') no-repeat center center;
	background-size: contain;
	cursor: pointer;
	text-decoration: none;
	text-indent: -9999px;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	opacity: 0;
	mix-blend-mode: difference;
}

.back-to-top.show {
	opacity: 1;
}

.back-to-top:not(.show):hover {
	opacity: 0;
	cursor: default;
}

.back-to-top:hover {
	-moz-animation: bounce 1.5s infinite;
	-webkit-animation: bounce 1.5s infinite;
	animation: bounce 1.5s infinite;
}

@-moz-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-moz-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-moz-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	60% {
		-moz-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}
@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	60% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-moz-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	60% {
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

/* back-to-top css end */


/* 3 - END of header ---------------------------------------------------------- */
/* 4 - BEGIN of .content ---------------------------------------------------------- */

.grecaptcha-badge { 
	visibility: hidden !important;
}

.content {
	position: relative;
}

.box-wr {
	padding: 50px 0 80px;
	position: relative;
}

.box-grey {
	background: var(--theme-bg);
}

.box-about {
	padding-top: 130px;
}

.banner-main video {
	display: block;
	width: 100%;
	object-fit: cover;
}

.box-header {
	padding: 65px 0;
}

.box-header h1, h2 {
	margin: 0;
}

.filter-button-group {
	display: flex;
	flex-wrap: wrap;
	margin-top: 60px;
}

.btn-filter {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0;
	margin-right: 50px;
	outline: none;
	border: none;
	font-size: 14px;
	color: #323232;
	background: transparent;
	font-weight: bold;
	font-family: "Couture";
}

.btn-filter:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 2px;
	background: #323232;
	bottom: -4px;
	transform: translateY(20px);
	opacity: 0;
	transition: all .3s;
}

.btn-filter.active:before {
	transform: translateY(0);
	opacity: 1;
}

.btn-filter:last-child {
	margin-right: 0;
}

.btn-filter span {
	padding-left: 12px;
}

.project-thumbs-wr {
	padding-top: 20px;
}

.project-thumb-item {
	margin-bottom: 40px;
}

.project-thumb-item h3 {
	margin-bottom: 6px;
}

.project-thumb-item h4 {
	margin-bottom: 10px;
	text-transform: none;
	color: #323232;
	font-family: "Poppins";
}

.box-projects {
	padding-bottom: 0;
}

.contact-info {
	padding-top: 20px;
}

.contact-info__list {
	padding: 0;
	list-style: none;
}

.contact-info__list li {
	margin-bottom: 30px;
	font-size: 18px;
	color: #919191;
}

.contact-info__list li {
	display: flex;
	align-items: baseline;
}

.contact-info__list li .fa {
	position: relative;
	top: 3px;
	width: 35px;
	text-align: center;
	font-size: 24px;
	line-height: 26px;
	color: #10100e;
}

.contact-info__list li span {
	line-height: 30px;
}

.contact-info__list li span,
.contact-info__list li a:not(.contact-map-link) {
	padding-left: 20px;
}

.contact-map-link {
	display: inline-block;
	font-size: 16px;
	color: #242424;
	text-decoration: underline;
}

.license-infoe-info {
	padding: 30px 0 30px;
	font-size: 18px;
	line-height: 23px;
	color: #919191;
}

.license-info a {
	display: inline-block;
	margin-top: 10px;
	color: #272727;
	font-size: 18px;
	text-decoration: underline;
}

.contact-form {
	text-align: center;
}

.contact-form__item {
	margin-bottom: 25px;
	text-align: left;
}

.contact-form__item label {
	display: block;
	margin-bottom: 12px;
	padding-left: 30px;
	font-size: 15px;
	color: #000;
}

.contact-form__item input,
.contact-form__item textarea {
	display: block;
	width: 100%;
	height: 50px;
	padding-left: 30px;
	line-height: 50px;
	background-color: #ffffff;
	border: 1px solid #c3c3c3;
	font-size: 20px;
	outline: none;
}

.contact-form__item input:focus,
.contact-form__item textarea {
	border-color: #000;
}

.contact-form__item textarea {
	height: 160px;
	padding-top: 15px;
	line-height: 28px;
}

.contact-form__item + .btn-main {
	margin-top: 10px;
}

*::-webkit-input-placeholder {
  color: #bababa;
}

*::-moz-placeholder {
  color: #bababa;
}

*:-ms-input-placeholder {
  color: #bababa;
}

*:-moz-placeholder {
  color: #bababa;
}

.box-project {
	padding: 30px;
}

.box-project h4 {
	margin-bottom: 18px;
	color: #000;
	font-family: "Poppins";
	font-weight: 500;
	text-transform: none;
}

.box-project p {
	margin-bottom: 30px;
}

.icon-house {
	display: inline-block;
	width: 31px;
	height: 19px;
	background: url(img/icon-publieke-projecten.png) no-repeat;	
}

.icon-list {
	padding: 0;
	list-style: none;
}

.icon-list li {
	display: flex;
	align-items: self-end;
	margin: 0 0 12px;
}

.icon-list li i {
	width: 31px;
	text-align: center;
}

.icon-list li img {
	vertical-align: middle;
}

.icon-list li .fa {
	font-size: 22px;
	color: #000;
}

.icon-list li span {
	padding-left: 10px;
	font-size: 13px;
	font-weight: 300;
	color: #000;
}

.project-wrap {
	padding-top: 20px;
}

.project-wrap img {
	display: block;
	margin: 0 auto 70px;
}

.project-wrap img:last-child {
	margin-bottom: 0;
}

















/*   */
:root {
	--theme-bg: #f9f9f9;
	--theme-color-secondary: #666666;
	--text-color: #8f8f8f;
	--header-height: 0;
}

/*  */

html body .bg-white {
	background-color: #ffffff;
}

html body .bg-black {
	background-color: var(--theme-color);
	color: var(--theme-color-secondary);
}

html body .bg-theme {
	background-color: var(--theme-background);
	color: var(--theme-color);
}



/*  */

html body .color-white {
	color: #ffffff;
}

html body .color-theme {
	color: var(--theme-color);
}


/*  */

.display-inline-block {
	display: inline-block;
	vertical-align: middle;
}

.display-block {
	display: block;
}

.display-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.vertical-align-wrapper {
	display: table;
	width: 100%;
	height: 100%;
}

.vertical-align-middle {
	display: table-cell;
	vertical-align: middle;
}

.vertical-align-bottom {
	display: table-cell;
	vertical-align: bottom;
}

/*  */

.tdu {
	text-decoration: underline;
}

.ttu {
	text-transform: uppercase;
}

/*  */

.slide-item {
	outline: none;
}

/*  */

.bordered-bottom {
	padding: 0 0 20px;
	margin: 0 0 20px;
	position: relative;
	border: none;
}

.bordered-bottom:after {
	width: 80px;
	border-bottom: 4px solid;
	left: 0;
	bottom: 0;
	margin: auto;
	content: "";
	display: block;
	position: absolute;
}

.text-center.bordered-bottom:after {
	right: 0;
}

body .text-left.bordered-bottom:after {
	right: auto;
}

/*  */

.columns-2 {
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
	-webkit-column-gap: 15px;
	-moz-column-gap: 15px;
	column-gap: 15px;
}

/*  */


/*  */

/*  */

.btn-main {
	display: inline-block;
	padding: 14px 33px 14px;
	font-size: 18px;
	line-height: 23px;
	color: #fefefe;
	font-weight: bold;
	font-family: "Couture";
	background: #232323;
	outline: none;
	border: none;
}

.btn-main:hover {
	opacity: 1;
	outline: none;
	background: var(--text-color);
	color: #fff;
}

.btn-main:focus {
	opacity: 1;
	box-shadow: none;
	outline: none;
}

.btn-second {
	padding: 8px 25px;
	font-size: 12px;
	line-height: 23px;
	color: #838383;
	background-color: #ffffff;
	border: 0.5px solid #c2c2c2;
}

.btn-second:hover {
	background: var(--text-color);
}

.btn-absolute {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -20px;
	text-align: center;
}

.btn-back {
	margin-bottom: 30px;
}


/* 4 - END of .content ---------------------------------------------------------- */
/* 5 - BEGIN of footer ---------------------------------------------------------- */

footer {
	position: relative;
	margin-top: 120px;
	padding: 40px 0 50px;
	background: #3a3838;
	color: #fff;
	font-size: 12px;
}

.footer-logo {
	display: inline-block;
	margin-bottom: 16px;
}

.footer-logo img {
	display: block;
	max-width: 180px;
}

.footer-copyright {
	margin-bottom: 10px;
}

.footer-list {
	padding: 0;
	margin-bottom: 10px;
	list-style: none;
}

.footer-list li {
	line-height: 16px;
}

.footer-list li img {
	display: block;
	margin-top: 5px;
}

.social-btn {
	padding: 0;
	list-style: none;
}

.social-btn li {
	display: inline-block;
	margin-right: 15px;
	font-size: 30px;
	color: #c3c3c3;
}



/* 5 - END of footer ---------------------------------------------------------- */
/* * - BEGIN of @media ---------------------------------------------------------- */

@media screen and (max-width: 1199px) {

.btn-filter {
	margin-bottom: 15px;
}


}

/* ----------------------------------------------------------------------------------- */


@media screen and (max-width: 991px) {
header +* {
	padding-top: 143px;
}
.burger-btn {
	display: block;
}
.main-nav {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 1000;
	overflow-y: auto;
	padding: 86px 0 30px;
	width: 70%;
	max-width: 300px;
	height: 100vh;
	background-color: var(--theme-bg);
	transform: translateX(-100%);
	transition: transform 0.6s ease-in-out;
	z-index: 1000;
}
.main-menu {
	flex-direction: column;
}

.main-menu > li {
	margin: 0;
	border-bottom: 1px solid var(--text-color);
}
.main-menu > li > a {
	padding: 20px 30px;
}

.nav-visible {
  transform: none;
}
.drop-menu {
    position: static;
    padding: 0 12px 14px;
    visibility: visible;
    opacity: 1;
    background: transparent;
    box-shadow: none;
    transform: none;
}
.main-menu>li.drop {
	padding-right: 0;
}
.main-menu>li.drop:before,
.main-menu>li.drop:after {
	display: none;
}
.drop-menu > li > a {
    padding: 10px 0 10px 30px;
}
.contact-info__list li span,
.contact-info__list li a:not(.contact-map-link) {
	padding-left: 15px;
}
.contact-form__item input, .contact-form__item textarea {
	padding-left: 15px;
	font-size: 16px;
}
.contact-form__item label {
	padding-left: 15px;
}
.contact-form__item textarea {
	line-height: 25px;
}


}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 767px) {

footer {
	margin-top: 50px;
}

.footer-wrap [class^='col'] {
	width: 50%;
}

.box-header {
	padding: 30px 0;
}
.contact-form {
	margin: 50px 0 0;
}
}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 575px) {
header +* {
	padding-top: 110px;
}
.header-wrap {
	align-items: center;
	padding: 15px 0 15px;
}
.logo {
	max-width: 200px;
}

.logo img {
	max-width: 200px;
}
.icon-nav {
  margin-bottom: 15px;
}
.icon-nav li {
	margin-left: 25px;
}
h1, .h1 {
  margin-bottom: 35px;
  font-size: 32px;
  line-height: 38px;
}
h2, .h2 {
	margin-bottom: 20px;
	font-size: 32px;
	line-height: 38px;
}
.box-about {
	padding-top: 100px;
}
.header-fixed .logo img {
	max-width: 180px;
}
.box-wr {
	padding: 30px 0 50px;
	position: relative;
}
.footer-item {
	margin: 0 0 20px;
}
h5, .h5 {
	margin-bottom: 10px;
}
footer {
	padding: 30px 0 30px;
}
.filter-button-group {
	margin-top: 40px;
	justify-content: center;
}
.btn-filter {
	margin: 0 8px 20px;
}
.project-thumb-item {
	text-align: left;
}
.box-projects {
	padding-bottom: 0;
}
.contact-info__list li {
	margin-bottom: 24px;
	font-size: 22px;
}
.project-wrap img {
	margin: 0 auto 30px;
}


}
/* ----------------------------------------------------------------------------------- */


/* * - END of @media ---------------------------------------------------------- */
