/* [CONFIGURATION] */
:root {
	--success: #28a745;

	/* Borders */
	--button-border: 2px;
	--input-border: 2px;
	/* --panel-border: 1px; */

	/* Radii */
	--button-radius: 1rem;
	--input-radius: 0rem;
	/* --panel-radius: 0.5rem; */

	/* Padding */
	--button-padding: 1rem;
	--input-padding: 1rem;
	/* --panel-padding: 1rem; */

	/* Fonts */
	--font: "Mulish", sans-serif;
	--font-titles: "Mulish", sans-serif;

	/* Colors */
	--theme-red: #e0010f;
	--theme-dblue: #004d76;
	--theme-lblue: #006187;
	--theme-dgrey: #585857;
	--theme-lgrey: #f2f2f2;
}

body {
	font-family: var(--font);
	color: black;
	font-weight: 400;
	font-size: 1.15rem;
	line-height: 1.75rem;
}

main {
	overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: var(--font-titles);
	font-weight: 700;
	color: black;
}

h1,
.h1 {
	font-size: 1.75rem;
	line-height: 1.75rem;
	margin: 0 0 2rem 0;
}

h2,
.h2 {
	font-size: 1.25rem;
	line-height: 1.25rem;
}

h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	font-size: 1.15rem;
	line-height: 1.15rem;
}

h1.title,
h2.title,
h3.title,
.title {
	position: relative;
	font-family: var(--font-titles);
	font-size: 1.75rem;
	line-height: 1.75rem;
	font-weight: 700;
	color: var(--theme-lblue);
	margin: 0 0 2rem 0;
}

@media (min-width: 768px) {
	/* Medium (md) */
	h1,
	.h1 {
		font-size: 1.75rem;
		line-height: 1.75rem;
	}
	h2,
	.h2 {
		font-size: 1.25rem;
		line-height: 1.25rem;
	}
	h1.title,
	h2.title,
	h3.title,
	.title {
		font-size: 1.75rem;
		line-height: 1.75rem;
	}
}

@media (min-width: 992px) {
	/* Large (lg) */
	h1,
	.h1 {
		font-size: 2rem;
		line-height: 2rem;
	}
	h2,
	.h2 {
		font-size: 1.5rem;
		line-height: 1.5rem;
	}
	h1.title,
	h2.title,
	h3.title,
	.title {
		font-size: 2rem;
		line-height: 2rem;
	}
}

a {
	color: var(--theme-lblue);
	font-weight: 500;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

a:hover,
a:focus,
a:active {
	color: var(--theme-dblue);
}

.nopad {
	padding: 0 !important;
}

.width-100 {
	width: 100%;
}

.boxshadow {
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
	-ms-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
	-o-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}

.border {
	position: relative;
}

.border div[data-partial="image"]:before {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 5px;
	background-color: var(--theme-red);
}

body:not([data-editor-mode="content"]) .image-to-background {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: -1;
}

body:not([data-editor-mode="content"]) .image-to-background div {
	height: 100%;
}

body:not([data-editor-mode="content"]) .image-to-background img {
	height: 100%;
	object-fit: cover;
	object-position: 50%;
}

/* [ADMINBAR] */
html[data-logged="true"] header.nav-header {
	top: 0;
}

@media (min-width: 576px) {
	/* Small (sm) */
	html[data-logged="true"] header.nav-header {
		top: 0;
	}
}
@media (min-width: 768px) {
	/* Medium (md) */
	html[data-logged="true"] header.nav-header {
		top: 0;
	}
}
@media (min-width: 992px) {
	/* Large (lg) */
	html[data-logged="true"] header.nav-header {
		top: 51px;
	}
}

/* [HEADER] */
header.nav-header {
	position: sticky;
	display: block;
	width: 100%;
	z-index: 1040;
	top: 0;
	left: 0;
	padding: 0;
	background-color: var(--theme-lblue);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

header.nav-header.scroll {
	position: sticky;
	background-color: var(--theme-lblue);
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	-ms-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	-o-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
}

header.nav-header .logo {
	position: relative;
	display: flex;
	flex-direction: row;
	align-content: center;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: auto;
}

header.nav-header nav.navbar-light {
	width: 100%;
}

header.nav-header .top {
	position: relative;
	padding: 0;
}

header.nav-header .top .flexbox {
	display: flex;
	flex-direction: row;
	align-content: center;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: 100%;
}

header.nav-header .top ul.list {
	position: relative;
	display: flex;
	flex-direction: row;
	align-content: center;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	height: 100%;
	list-style-type: none;
	padding: 0;
	margin: 0;
}

header.nav-header .top ul.list li {
	margin: 0 0 0 1.5rem;
}

header.nav-header .top ul.list li:first-child {
	margin: 0;
}

header.nav-header .top ul.list li a {
	text-decoration: none;
	color: white;
}
.opacc .img-fluid {
	filter: brightness(0.6);
}

header.nav-header .top ul.list li a:hover,
header.nav-header .top ul.list li a:focus {
	color: black;
}

header.nav-header .top ul.list li a i {
	color: black;
	font-size: 1.5rem;
}

header.nav-header .bottom {
	position: relative;
	background-color: white;
}

@media (min-width: 992px) {
	/* Large (lg) */
	header.nav-header {
		border-bottom: 0;
	}
	header.nav-header .top {
		padding: 0rem 0;
		height: 95px;
	}
}

/* [MENU] */

/*
# Desktop Menu
# Hamburger
# Collapse Menu
# Sidebar Menu
*/

/* Desktop Menu */
ul.navbar {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	align-content: center;
	list-style: none;
	width: 100%;
	padding: 0;
	margin: 0;
}

ul.navbar li {
	margin: 0 0.5rem 0 0;
	font-weight: 600;
	font-size: 1rem;
}

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

ul.navbar li a {
	position: relative;
	color: black;
	padding: 0.5rem 1rem;
}

ul.navbar li a:hover,
ul.navbar li a:focus {
	background-color: var(--theme-dblue);
	color: white;
}

ul.navbar li a.active {
	background-color: white;
	color: var(--theme-dblue);
}

ul.navbar li a.active:hover,
ul.navbar li a.active:focus {
	background-color: var(--theme-dblue);
	color: white;
}

ul.navbar li.dropdown .dropdown-menu {
	margin-top: 23px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background-color: var(--primary);
	color: var(--white);
}

ul.navbar li.dropdown .dropdown-menu a.dropdown-item {
	border: 1px solid var(--primary);
	color: var(--primary);
	background-color: var(--white);
}

ul.navbar li.dropdown .dropdown-menu a.dropdown-item:hover,
ul.navbar li.dropdown .dropdown-menu a.dropdown-item:focus {
	color: var(--white);
	background-color: var(--primary);
}

ul.navbar li.dropdown .dropdown-menu a.dropdown-item.active,
ul.navbar li.dropdown .dropdown-menu a.dropdown-item:active {
	border: 1px solid var(--black);
	color: var(--white);
	background-color: var(--black);
}

ul.navbar li.dropdown .dropdown-menu a.dropdown-item.active:hover,
ul.navbar li.dropdown .dropdown-menu a.dropdown-item.active:focus {
	border: 1px solid var(--black);
	color: var(--black);
	background-color: var(--white);
}

/* Hamburger */
.hamburger {
	position: relative;
	display: inline-block;
	z-index: 52;
	margin: 0.5rem 0 0 0;
}

.ham {
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition: transform 400ms;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.hamRotate.active {
	transform: rotate(45deg);
}

.hamRotate180.active {
	transform: rotate(180deg);
}

.line {
	fill: none;
	transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
	stroke: white;
	stroke-width: 5.5;
	stroke-linecap: round;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.ham:hover .line {
	stroke: white;
}

.ham.active .line {
	stroke: white;
}

.ham.active:hover .line {
	stroke: white;
}

.ham1 .top {
	stroke-dasharray: 40 139;
}

.ham1 .bottom {
	stroke-dasharray: 40 180;
}

.ham1.active .top {
	stroke-dashoffset: -98px;
}

.ham1.active .bottom {
	stroke-dashoffset: -138px;
}

/* Collapse Menu */
.navbar-mobile {
	position: absolute;
	box-shadow: 0px 0px 14px black;
	display: block;
	width: 100%;
	z-index: 1;
	color: var(--theme-lblue);
	top: 84px;
	right: unset;
	left: -100%;
	opacity: 0;
	padding: 1rem 0;
	pointer-events: none;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

@media (min-width: 576px) {
	/* Small (sm) */
	.navbar-mobile {
		top: 84px;
	}
}
@media (min-width: 768px) {
	/* Medium (md) */
	.navbar-mobile {
		top: 84px;
	}
}

@media (min-width: 992px) {
	/* Large (lg) */
	.navbar-mobile {
		top: 84px;
	}
}

.navbar-mobile.navbar--open {
	right: unset;
	left: 0;
	opacity: 1;
	pointer-events: all;
	background-color: white;
}

header.nav-header.scroll .navbar-mobile.navbar--open {
	background-color: white;
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
	-ms-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
	-o-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}

.navbar-mobile ul.navlist-nav {
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: space-between;
	align-items: flex-start;
	margin: 0;
	padding: 0;
}

.navbar-mobile ul.navlist-nav li {
	font-weight: 500;
	font-size: 1.25rem;
	color: var(--theme-dblue);
	display: block;
	width: 100%;
}

.navbar-mobile ul.navlist-nav li .nav-link,
.navbar-mobile ul.navlist-nav li a {
	font-weight: 400;
	font-size: 1.25rem;
	color: var(--theme-dblue);
	padding: 0.5rem;
	display: flex;
	width: 100%;
}

.navbar-mobile ul.navlist-nav li a:hover,
.navbar-mobile ul.navlist-nav li a:focus {
	color: var(--theme-dblue);
}

.navbar-mobile ul.navlist-nav li a.active {
	color: white;
	background-color: var(--theme-dblue);
}

.navbar-mobile ul.navlist-nav li a.active:hover,
.navbar-mobile ul.navlist-nav li a.active:focus {
	color: white;
}

@media (min-width: 576px) {
	/* Small (sm) */
	.navbar-mobile ul.navlist-nav {
		flex-direction: column;
	}
}

@media (min-width: 768px) {
	/* Medium (md) */
	.navbar-mobile ul.navlist-nav {
		flex-direction: column;
		align-items: center;
	}
	.navbar-mobile ul.navlist-nav li a {
		padding: 0.5rem 1rem;
		display: flex;
	}
}

@media (min-width: 992px) {
	/* Medium (lg) */
	.navbar-mobile.navbar--open {
		background-color: transparent;
	}
	.navbar-mobile ul.navlist-nav {
		flex-direction: row;
		justify-content: flex-end;
	}
	.navbar-mobile ul.navlist-nav li {
		margin: 0 1rem 0 0;
		display: flex;
		width: auto;
	}
	.navbar-mobile ul.navlist-nav li:last-child {
		margin: 0;
	}
}

/* [CAROUSEL] */
section.header {
	position: relative;
}

@media screen and (max-width: 992px) {
	section.header,
	section.header .carousel-item,
	section.header .carousel-item img {
		min-height: 18rem;
	}
	section.header .carousel-item img {
		object-fit: cover;
	}
}

section.header .carousel-item {
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

section.header .carousel-item:after {
	position: absolute;
	display: flex;
	content: "";
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0);
	pointer-events: none;
}

.carousel-caption {
	text-align: left;
	left: 5%;
	right: 5%;
	bottom: 0%;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
}

.carousel-caption p {
	font-size: 3.25rem;
	font-weight: 400;
	color: var(--theme-white);
}

.carousel-caption p:first-child {
	font-family: var(--font-titles);
	font-size: 2rem;
	line-height: 2rem;
	font-weight: 400;
	color: var(--theme-yellow);
	margin-bottom: 2rem;
	text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.4);
}

.carousel-item .carousel-caption a.btn {
	padding: 0.5rem !important;
}

/* Modal */
.modal .items .carousel-item picture:after {
	position: absolute;
	display: flex;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(14, 20, 23, 0.5);
	pointer-events: none;
}

.modal .items .carousel-item .carousel-caption p {
	font-family: var(--font);
	font-size: 1.5rem;
	line-height: 1.5rem;
	color: var(--theme-white);
}

.modal .items .carousel-item .carousel-caption p:first-child {
	font-family: var(--font);
	text-shadow: none;
}

.modal .items .carousel-item .carousel-caption .mce-content-body:active,
.modal .items .carousel-item .carousel-caption .mce-content-body:hover,
.modal .items .carousel-item .carousel-caption .mce-content-body:focus,
.modal .items .carousel-item .carousel-caption .mce-content-body:focus-within {
	background: var(--theme-blue);
	outline: 0.75rem solid var(--theme-blue);
}

@media (min-width: 768px) {
	/* Medium (md) */
	section.homeheader .carousel-item {
		min-height: auto;
	}
	section.subheader .carousel-item,
	section.subheader .carousel-item img {
		min-height: auto;
	}
}

@media (min-width: 992px) {
	/* Large (lg) */
	.carousel-caption {
		left: 10%;
		right: 10%;
		bottom: 25%;
	}
	.carousel-caption p {
		font-size: 1.25rem;
	}
}

@media (min-width: 1200px) {
	.carousel-caption {
		bottom: 10%;
	}
}

@media (min-width: 1400px) {
	.carousel-caption {
		bottom: 30%;
	}
}

/* [BREADCRUMBS] */
.breadcrumbs {
	position: relative;
	padding: 0;
}

.breadcrumbs li {
	line-height: 2rem;
}

.breadcrumb {
	display: flex;
	background-color: transparent;
	margin: 0;
	padding: 0 0 2rem 0;
}

.breadcrumb-item {
	font-family: var(--font-remark);
	color: var(--theme-white);
	font-size: 1rem;
}

.breadcrumb-item + .breadcrumb-item::before {
	color: var(--theme-white);
}

.breadcrumb-item:hover,
.breadcrumb-item:focus {
	color: var(--theme-yellow);
	text-decoration: none;
}

.breadcrumb-item.active {
	color: var(--theme-yellow);
	text-decoration: underline;
}

.breadcrumb-item.active:hover,
.breadcrumb-item.active:focus {
	color: var(--theme-yellow);
	text-decoration: underline;
}

@media (min-width: 576px) {
	/* Small (sm) */
	section.breadcrumbs {
		padding: 1rem 0;
	}
}

@media (min-width: 768px) {
	/* Medium (md) */
	section.breadcrumbs {
		padding: 1rem 0;
	}
}

/* [CONTENT] */
section.page {
	position: relative;
	padding: 3rem 0;
}

section.page.greybg {
	background-color: var(--theme-lgrey);
}

section.page .wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	align-content: flex-start;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	height: 100%;
}

section.googlemap {
	position: relative;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 450px;
}

#ros-wrapper {
	display: flex;
	width: 100%;
	height: 1400px;
}

@media (min-width: 992px) {
	/* Large (lg) */
	section.page {
		padding: 5rem 0;
	}
}

/* [PERSONEEL] */
.personeel {
	position: relative;
	margin-bottom: 2rem;
	color: white;
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	-ms-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	-o-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
}

.personeel .boxwrap .box {
	position: relative;
}

.personeel .boxwrap {
	padding: 1rem;
	background-color: var(--theme-dblue);
}

.personeel .boxwrap h3.naam {
	font-size: 1.5rem;
	line-height: 1.75rem;
	margin: 0;
	min-height: 56px;
	color: white;
}

/* [CONTACT] */
.details .title-contact {
	font-size: 1.25rem;
	font-weight: 700;
}

.details ul.contact {
	flex-direction: column;
}

.details ul.contact li i {
	min-width: 25px;
}

.details ul.contact li strong {
	font-size: 0.75rem;
	font-weight: 700;
	margin-right: 0.5rem;
}

/* [TABLES] */
table.mce-item-table {
	font-size: 1.1rem;
}

table.mce-item-table tr td:last-child {
	text-align: right;
}

/* [BLOG] */

/*
# Default preview
# Default item
*/

/* Default preview */
.blog-item-preview {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding-bottom: 3rem;
}

.blog-item-preview a.blog-item-link {
	position: relative;
	text-decoration: none;
	color: black;
}

.blog-item-preview a.blog-item-link:hover,
.blog-item-preview a.blog-item-link:focus {
	color: var(--theme-lblue);
}

.blog-item-preview a.blog-item-link .image {
	position: relative;
}

.blog-item-preview a.blog-item-link .image:before {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	z-index: 1;
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(18, 29, 36, 0);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.blog-item-preview a.blog-item-link:hover .image:before,
.blog-item-preview a.blog-item-link:focus .image:before {
	background: rgba(18, 29, 36, 0.5);
}

.blog-item-preview a.blog-item-link .image:after {
	position: absolute;
	content: "⌕";
	z-index: 2;
	font-size: 100px;
	color: rgba(255, 255, 255, 0);
	top: 50%;
	margin-top: -22px;
	left: 50%;
	margin-left: -22px;
	transition: all 0.3s ease 0s;
}

.blog-item-preview a.blog-item-link:hover .image:after,
.blog-item-preview a.blog-item-link:focus .image:after {
	color: rgba(255, 255, 255, 1);
}

.blog-item-preview a.blog-item-link .content {
	padding-top: 1rem;
}

.blog-item-preview h3.title-blog {
	position: relative;
	display: inline;
	font-size: 1.5rem;
	color: black;
}

.blog-item-preview a.blog-item-link:hover h3.title-blog,
.blog-item-preview a.blog-item-link:focus h3.title-blog {
	color: var(--theme-dblue);
}

/* Default item */
.btn:not(:disabled):not(.disabled) {
	cursor: pointer;
	/* border-radius: 22px; */
	border-radius: 22px;
}

/* [BUTTONS] */
.btn-primary,
.btn-secondary,
.btn-back {
	position: relative;
	font-family: var(--font);
	font-size: 1.1rem;
	font-weight: 500;
	display: block;
	width: 100%;
	padding: 1rem 2rem !important;
	text-align: center;
}
.btn-tertiary {
	position: relative;
	font-family: var(--font);
	font-size: 1.1rem;
	font-weight: 500;
	display: block;
	width: 100%;
	padding: 1rem 2rem !important;
	text-align: center;
	display: none;
}

.btn-primary {
	border-color: #006287;
	background-color: #006287;
	color: white;
}
.btn-primary::after {
	content: "\f061";
	display: inline-block;
	font-family: "Font Awesome 6 Pro";
	font-weight: 300;
	position: relative;
	padding-left: 9px;
	padding-top: 1px;
	top: 1px;
}

.btn-primary:hover,
.btn-primary:focus {
	border-color: var(--theme-dblue);
	background-color: transparent;
	color: var(--theme-dblue);
}

.btn-secondary {
	border-color: var(--theme-lblue);
	background-color: var(--theme-lblue);
	color: white;
}

.btn-secondary:hover,
.btn-secondary:focus {
	border-color: var(--theme-lblue);
	background-color: transparent;
	color: var(--theme-lblue);
}

.btn-tertiary {
	border-color: white;
	background-color: #ffffff00;
	color: white;
}

.btn-tertiary:hover,
.btn-tertiary:focus {
	border-color: #00aaea;
	background-color: transparent;
	color: white;
}

.btn-back {
	border-color: var(--theme-dblue);
	background-color: transparent;
	color: var(--theme-dblue);
}

.btn-back:hover,
.btn-back:focus {
	border-color: var(--theme-dblue);
	background-color: var(--theme-dblue);
	color: white;
}
.btn-tertiary::after {
	content: "\f061";
	display: inline-block;
	font-family: "Font Awesome 6 Pro";
	font-weight: 300;
	position: relative;
	padding-left: 10px;
	top: 1px;
}

.btn-primary i,
.btn-secondary i,
.btn-tertiary i,
.btn-back i {
	margin: 0 0.5rem 0 0;
}

.btn-primary:focus,
.btn-secondary:focus,
.btn-tertiary:focus,
.btn-back:focus {
	box-shadow: none;
}

@media (min-width: 576px) {
	/* Small (sm) */

	.btn-tertiary {
		display: block;
		width: 100%;
		text-align: center;
		display: none;
	}
}

@media (min-width: 768px) {
	/* Medium (md) */
	.btn-primary,
	.btn-secondary,
	.btn-tertiary,
	.btn-back {
		display: inline-block;
		width: auto;
		padding: 0.5rem 1rem !important;
	}
}

@media (min-width: 992px) {
	/* Large (lg) */
	.btn-primary,
	.btn-secondary,
	.btn-tertiary,
	.btn-back {
		display: inline-block;
		width: auto;
	}
}

/* [ADRES] */
ul.adres {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
}

ul.adres li {
	margin: 0 0 0.25rem 0;
	font-weight: 300;
}

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

ul.contact {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
}

ul.contact li {
	margin: 0 0 1rem 0;
	font-weight: 400;
}

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

ul.contact li i {
	margin: 0 0.5rem 0 0;
	min-width: 20px;
	color: black;
}

ul.contact li a {
	position: relative;
	text-decoration: none;
	color: black;
}

ul.contact li a:hover,
ul.contact li a:focus {
	color: var(--theme-lblue);
}

ul.contact li a:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0%;
	height: 1px;
	background: var(--theme-lblue);
	transition: all 0.4s ease;
}

ul.contact li a:hover:before,
ul.contact li a:focus:before {
	width: 100%;
}

/* [SOCIALS] */
ul.socials {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

ul.socials li {
	font-size: 1.25rem;
	margin: 0 0.5rem 0 0;
}

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

ul.socials li a.facebook {
	color: white;
}

ul.socials li a.facebook:hover,
ul.socials li a.facebook:focus {
	color: #1877f2;
}

ul.socials li a.instagram {
	color: white;
}

ul.socials li a.instagram:hover,
ul.socials li a.instagram:focus {
	color: #c32aa3;
}

ul.socials li a.linkedin {
	color: white;
}

ul.socials li a.linkedin:hover,
ul.socials li a.linkedin:focus {
	color: #0a66c2;
}

ul.socials li a.twitter {
	color: white;
}

ul.socials li a.twitter:hover,
ul.socials li a.twitter:focus {
	color: #1da1f2;
}

ul.socials li a.pinterest {
	color: white;
}

ul.socials li a.pinterest:hover,
ul.socials li a.pinterest:focus {
	color: #bd081c;
}

ul.socials li a.youtube {
	color: white;
}

ul.socials li a.youtube:hover,
ul.socials li a.youtube:focus {
	color: #ff0000;
}

ul.socials li a.google {
	color: white;
}

ul.socials li a.google:hover,
ul.socials li a.google:focus {
	color: #db4437;
}

/* [MODAL] */
.modal-header {
	background-color: var(--theme-dblue) !important;
	font-family: var(--font);
	font-size: 1.25rem;
	font-weight: 400;
	color: white;
}

.modal-header .close {
	color: white;
}

.modal-body .custommodal form.form-mailto button {
	position: relative;
	display: flex;
	justify-content: center;
	width: 100%;
	border-color: var(--success);
	background-color: var(--success);
	font-size: 1rem;
	font-weight: 400;
	color: white;
	text-transform: uppercase;
}

.modal-body .custommodal form.form-mailto button:hover,
.modal-body .custommodal form.form-mailto button:focus {
	border-color: var(--success);
	background-color: white;
	color: var(--success);
	box-shadow: none;
}

/* [FORM] */
.formbox {
	position: relative;
	padding: 2rem;
	background-color: white;
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
	-ms-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
	-o-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}

.formbox h2.title {
	font-family: var(--font-titles);
	color: black;
	margin: 0 0 1rem 0;
}

form.form-mailto label {
	display: flex;
	height: 100%;
	min-width: 50px;
	background-color: black;
	color: white;
	margin: 0;
	padding: 0.625rem;
	text-align: center;
}

form.form-mailto label i {
	color: white;
	font-size: 1.5rem;
}

form.form-mailto .form-group {
	display: flex;
	flex-direction: row;
	align-content: center;
	align-items: flex-start;
	justify-content: flex-start;
}

form.form-mailto input,
form.form-mailto textarea {
	background-color: white;
	border-color: black;
	font-size: 1.15rem;
	font-weight: 400;
	color: black;
	outline: none;
	padding: 1.25rem !important;
}

form.form-mailto input[required],
form.form-mailto textarea[required],
form.form-mailto select[required] {
	position: relative;
	border-left: 3px solid var(--danger);
}

form.form-mailto select {
	background-color: white;
	border-color: black;
	display: block;
	width: 100%;
	font-size: 1.25rem;
}

form.form-mailto input:hover,
form.form-mailto input:focus,
form.form-mailto textarea:hover,
form.form-mailto textarea:focus,
form.form-mailto select:hover,
form.form-mailto select:focus {
	background-color: white;
	border-color: var(--success);
	box-shadow: none;
}

form.form-mailto input[required]:hover,
form.form-mailto input[required]:focus,
form.form-mailto textarea[required]:hover,
form.form-mailto textarea[required]:focus,
form.form-mailto select[required]:hover,
form.form-mailto select[required]:focus {
	border-left: 3px solid var(--success);
}

form.form-mailto button {
	position: relative;
	display: flex;
	justify-content: center;
	width: 100%;
	border-color: var(--success);
	background-color: var(--success);
	font-size: 1rem;
	font-weight: 700;
	color: white;
	text-transform: uppercase;
}

form.form-mailto button:hover,
form.form-mailto button:focus {
	border-color: var(--success);
	background-color: white;
	color: var(--success);
	box-shadow: none;
}

form.form-mailto ::placeholder {
	color: black;
	opacity: 1; /* Firefox */
}

form.form-mailto :-ms-input-placeholder {
	color: black;
}

form.form-mailto ::-ms-input-placeholder {
	color: black;
}

/* [FOOTER] */
footer.nav-footer {
	position: relative;
}

footer.nav-footer .top {
	background-color: var(--theme-dblue);
	padding: 3rem 0;
	font-size: 1.15rem;
	color: white;
}

footer.nav-footer .title {
	display: flex;
	width: 100%;
	font-family: var(--font-titles);
	font-size: 1.25rem;
	font-weight: 400;
	color: white;
	margin: 0 0 1.5rem 0;
}

footer.nav-footer .footertext a {
	color: #fff;
	font-weight: 700;
	text-decoration: underline;
}

footer.nav-footer .footertext a:hover,
footer.nav-footer .footertext a:focus {
	text-decoration: none;
}

footer.nav-footer .footertext {
	position: relative;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-content: flex-end;
	justify-content: center;
	align-items: flex-end;
	width: 100%;
	height: 100%;
	font-size: 1rem;
}

footer.nav-footer ul.contact li a {
	color: white;
}

footer.nav-footer ul.contact li a:before {
	background-color: white;
}

footer.nav-footer ul.navlist-nav {
	list-style-type: none;
	margin: 0;
	padding: 0;
	column-gap: 0rem;
	-webkit-columns: 2;
	-moz-columns: 2;
	columns: 2;
}

footer.nav-footer ul.navlist-nav li {
	margin: 0 0 1rem 0;
}

footer.nav-footer ul.navlist-nav li a {
	position: relative;
	display: inline-block;
	color: white;
	padding: 0;
}

footer.nav-footer ul.navlist-nav li a:hover,
footer.nav-footer ul.navlist-nav li a:focus {
	color: white;
}

footer.nav-footer ul.navlist-nav li a.active {
	color: white;
}

footer.nav-footer ul.navlist-nav li a.active:hover,
footer.nav-footer ul.navlist-nav li a.active:focus {
	color: white;
}

footer.nav-footer ul.navlist-nav li a:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 0%;
	height: 1px;
	background: white;
	transition: all 0.4s ease;
}

footer.nav-footer ul.navlist-nav a:hover:before,
footer.nav-footer ul.navlist-nav a:focus:before {
	width: 100%;
}

footer.nav-footer .bottom {
	background-color: black;
	font-size: 1rem;
}

footer.nav-footer .bottom .nclogo {
	font-size: 1rem;
}

footer.nav-footer .bottom a {
	color: white;
}

footer.nav-footer .bottom a.nclogo {
	color: white;
}

footer.nav-footer .bottom a:hover,
footer.nav-footer .bottom a:focus {
	background-color: white;
	color: var(--theme-dblue);
}

@media (min-width: 992px) {
	/* Large (lg) */
	footer.nav-footer .top {
		padding: 5rem 0;
	}
}
