/* ----- FONTS (Roboto, zelf gehost) -----*/
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/roboto-v51-latin-300.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/roboto-v51-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/roboto-v51-latin-700.woff2') format('woff2');
}

/* ----- GLOBALS -----*/
html {
	scroll-behavior: smooth;
}
body {
	font-family: "Roboto", sans-serif;
	color: #003399;
	background-color: #003399;
	text-align: justify;
}
a {
	color: #003399;
	text-decoration: none;
	transition: 0.3s;
}
a:hover {
	text-decoration: none;
}
p {
	font-size: 18px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	color: #003399;
}
.container h2 {
	font-size: 20px;
}
/* ----- HEADER -----*/
.header {
	background-color: #ffffff;
	color: #003399;
	transition: all 0.5s;
	z-index: 997;
}
.header .topbar {
	background-color: #003399;
	height: 40px;
	padding: 0;
	font-size: 18px;
	transition: all 0.5s;
}
.header .topbar .contact-info i {
	font-style: normal;
	color: #fff;
}
.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
	padding-left: 5px;
	color: #fff;
}
@media (max-width: 575px) {
	.header .topbar .contact-info i a,
	.header .topbar .contact-info i span {
		font-size: 13px;
	}
}
.header .topbar .contact-info i a {
	line-height: 0;
	transition: 0.3s;
}
.header .topbar .contact-info i a:hover {
	color: #fff;
	text-decoration: underline;
}
.header .branding {
	min-height: 60px;
	padding: 10px 0;
	box-shadow: 0 0 30px rgba(0, 51, 153, 0.4);
}
.header .logo {
	line-height: 1;
}
.header .logo img {
	max-height: 36px;
	margin-right: 8px;
}
.header .logo h1 {
	font-size: 30px;
	margin: 0;
	font-weight: 600;
	color: #003399;
}
.header .logo span {
	color: #003399;
	font-size: 30px;
	font-weight: 600;
}
/* ----- NAVIGATIE — DESKTOP -----*/
@media (min-width: 1200px) {
	.navmenu {
		padding: 0;
	}
	.navmenu ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}
	.navmenu li {
		position: relative;
	}
	.navmenu a,
	.navmenu a:focus {
		color: #003399;
		padding: 18px 15px;
		font-size: 18px;
		font-weight: 600;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}
	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		transition: 0.3s;
	}
	.navmenu li:last-child a {
		padding-right: 0;
	}
	.navmenu li:hover > a,
	.navmenu .active,
	.navmenu .active:focus {
		color: #106eea;
	}
}
/* ----- NAVIGATIE — MOBIEL -----*/
@media (max-width: 1199px) {
	.mobile-nav-toggle {
		color: #003399;
		font-size: 28px;
		line-height: 0;
		margin-right: 10px;
		cursor: pointer;
		transition: color 0.3s;
	}
	.navmenu {
		padding: 0;
		z-index: 9997;
	}
	.navmenu ul {
		display: none;
		position: absolute;
		inset: 60px 20px 20px 20px;
		padding: 10px 0;
		margin: 0;
		border-radius: 6px;
		background-color: #ffffff;
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
	}
	.navmenu a,
	.navmenu a:focus {
		color: #222;
		padding: 10px 20px;
		font-size: 18px;
		font-weight: 600;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}
	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		transition: 0.3s;
	}
	.navmenu a i:hover,
	.navmenu a:focus i:hover {
		background-color: #003399;
		color: #fff;
	}
	.navmenu a:hover,
	.navmenu .active,
	.navmenu .active:focus {
		color: #106eea;
	}
	.navmenu .active i,
	.navmenu .active:focus i {
		background-color: #003399;
		color: #fff;
		transform: rotate(180deg);
	}
	.mobile-nav-active {
		overflow: hidden;
	}
	.mobile-nav-active .mobile-nav-toggle {
		color: #fff;
		position: absolute;
		font-size: 32px;
		top: 15px;
		right: 15px;
		margin-right: 0;
		z-index: 9999;
	}
	.mobile-nav-active .navmenu {
		position: fixed;
		overflow: hidden;
		inset: 0;
		background: rgba(33, 37, 41, 0.8);
		transition: 0.3s;
	}
	.mobile-nav-active .navmenu > ul {
		display: block;
	}
}
/* ----- FOOTER -----*/
.footer {
	background-color: #003399;
	font-size: 16px;
	text-align: left;
	color: #fff;
}
.footer a {
	color: #fff;
}
.footer a:hover {
	color: #106eea;
}
.footer .sitename {
	color: #fff;
	font-family: "Times New Roman", serif;
	font-style: italic;
	font-size: 40px;
	margin-bottom: 10px;
}
.footer .sitename:hover {
	color: #106eea;
}
.footer-contact p {
	background-color: #003399;
	text-align: left;
	color: #fff;
}
.footer-links {
	margin-top: 98px;
}
.footer-links li {
	list-style-type: none;
	margin-left: -32px;
}
.footer-links li::before {
	content: "> ";
	color: #fff;
	font-weight: 600;
	margin-right: 5px;
}
.copyright p {
	color: gray;
	font-size: 16px;
}
/* ----- MEDIA QUERIES FOOTER & ROW -----*/
@media only screen and (max-width: 768px) {
	.footer-links {
		margin-top: 0;
	}
	.row-two,
	.row-three {
		margin-top: 0;
	}
}
#preloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	overflow: hidden;
	background-color: #ffffff;
	transition: all 0.6s ease-out;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
#preloader div {
	width: 13px;
	height: 13px;
	background-color: #003399;
	border-radius: 50%;
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
	position: absolute;
	left: 50%;
}
#preloader div:nth-child(1) {
	left: calc(50% + 8px);
	animation: animate-preloader-1 0.6s infinite;
}
#preloader div:nth-child(2) {
	left: calc(50% + 8px);
	animation: animate-preloader-2 0.6s infinite;
}
#preloader div:nth-child(3) {
	left: calc(50% + 32px);
	animation: animate-preloader-2 0.6s infinite;
}
#preloader div:nth-child(4) {
	left: calc(50% + 56px);
	animation: animate-preloader-3 0.6s infinite;
}
@keyframes animate-preloader-1 {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}
@keyframes animate-preloader-3 {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(0);
	}
}
@keyframes animate-preloader-2 {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(24px, 0);
	}
}
/* ----- SCROLL-TO-TOP -----*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 18px;
	bottom: 27px;
	z-index: 99999;
	background-color: #003399;
	width: 40px;
	height: 40px;
	border: #fff double 5px;
	border-radius: 12px;
	transition: all 0.4s;
	font-size: 27px;
	color: #fff;
	line-height: 0;
}
.scroll-top:hover {
	color: #fff;
}
.scroll-top.active {
	visibility: visible;
	opacity: 1;
}
.breadcrumbs {
	background-color: #ffffff;
}
/* ----- SECTIES -----*/
section,
.section {
	color: #003399;
	background-color: #ffffff;
	padding: 60px 0;
	scroll-margin-top: 118px;
	overflow: clip;
}
@media (max-width: 1199px) {
	section,
	.section {
		scroll-margin-top: 100px;
	}
}
.section-title {
	text-align: center;
	padding-bottom: 60px;
	position: relative;
}
.section-title h2 {
	font-size: 13px;
	letter-spacing: 1px;
	font-weight: 600;
	padding: 8px 20px;
	margin: 0;
	color: #003399;
	display: inline-block;
	text-transform: uppercase;
	border-radius: 50px;
}
.section-title p {
	color: #003399;
	margin: 10px 0 0 0;
	font-size: 32px;
	font-weight: 600;
}
.section-title p .description-title {
	color: #003399;
}
/* ----- HERO -----*/
.hero {
	width: 100%;
	min-height: 90vh;
	position: relative;
	padding: 60px 0;
	display: flex;
	align-items: center;
	background: url("../img/container/hero-bg.webp") top left;
	background-size: cover;
}
.hero:before {
	content: "";
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}
.hero .container {
	position: relative;
	font-size: 16px;
}
.hero h2 {
	text-align: center;
	margin: 0;
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
}
@media only screen and (max-width: 768px) {
	.hero h2 {
		font-size: 20px;
		line-height: 40px;
	}
}
.hero h2 span {
	color: #003399;
}
.hero .container h3 {
	font-size: 18px;
	font-weight: 600;
	margin: 1em 0 0.5em 0;
}
.hero .btn-get-started {
	margin-top: 1em;
	color: #fff;
	background-color: #003399;
	font-weight: 600;
	font-size: 18px;
	letter-spacing: 1px;
	display: inline-block;
	margin-left: auto;
	margin-right: auto;
	padding: 6px 24px;
	border-radius: 25px;
	transition: 0.5s;
}
.hero .btn-get-started:hover {
	color: #fff;
}
.hero .animated {
	animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (max-width: 640px) {
	.hero h1 {
		font-size: 28px;
		line-height: 36px;
	}
	.hero p {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 30px;
	}
	.hero .btn-get-started,
	.hero .btn-watch-video {
		font-size: 18px;
	}
}
@keyframes up-down {
	0% {
		transform: translateY(10px);
	}
	100% {
		transform: translateY(-10px);
	}
}
/* ----- FEATURED SERVICES -----*/
.featured-services .service-item {
	padding: 50px 30px;
	transition: all 0.3s ease-in-out;
	height: 100%;
	position: relative;
	z-index: 1;
}
.featured-services .service-item:before {
	content: "";
	position: absolute;
	background-color: #003399;
	inset: 100% 0 0 0;
	transition: all 0.3s;
	z-index: -1;
}
.featured-services .service-item .icon {
	margin-bottom: 10px;
}
.featured-services .service-item .icon i {
	color: #003399;
	font-size: 36px;
	transition: 0.3s ease-in-out;
}
.featured-services .service-item h2 {
	font-weight: 600;
	margin-bottom: 15px;
	font-size: 20px;
}
.featured-services .service-item h2 a {
	color: #003399;
	transition: 0.3s ease-in-out;
}
.featured-services .service-item p {
	line-height: 24px;
	margin-bottom: 0;
	text-align: justify;
	transition: 0.3s ease-in-out;
}
.featured-services .service-item:hover h2 a,
.featured-services .service-item:hover .icon i,
.featured-services .service-item:hover p {
	color: #003399;
}
.featured-services .service-item:hover:before {
	background-color: #ffffff;
	inset: 0;
	border-radius: 12px;
	box-shadow: 0 0 30px rgba(0, 51, 153, 0.4);
}
/* ----- SERVICES -----*/
.services .service-item {
	text-align: center;
	padding: 80px 20px;
	transition: border 0.3s ease-in-out;
	height: 100%;
}
.services .service-item .icon {
	margin: 0 auto 20px auto;
	width: 64px;
	height: 64px;
	background-color: #003399;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}
.services .service-item .icon i {
	color: #fff;
	font-size: 28px;
	transition: 0.3s ease-in-out;
}
.services .service-item h3 {
	font-weight: 600;
	margin: 10px 0 15px 0;
	font-size: 22px;
	transition: 0.3s;
}
.services .service-item p {
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
}
.services .service-item:hover {
	border-color: #003399;
}
.services .service-item:hover h3 {
	color: #003399;
}
/* ----- PORTFOLIO -----*/
.portfolio .portfolio-filters {
	padding: 0;
	margin: 0 auto 20px auto;
	list-style: none;
	text-align: center;
}
.portfolio .portfolio-filters li {
	cursor: pointer;
	display: inline-block;
	padding: 8px 20px 10px 20px;
	margin: 0 0 5px 0;
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
	border-radius: 4px;
	transition: all 0.3s ease-in-out;
}
.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
	color: #fff;
	background-color: #003399;
}
@media (max-width: 575px) {
	.portfolio .portfolio-filters li {
		font-size: 14px;
		margin: 0 0 10px 0;
	}
}
.portfolio .portfolio-item {
	position: relative;
	overflow: hidden;
}
.portfolio .portfolio-item .portfolio-info {
	opacity: 0;
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: -100%;
	z-index: 3;
	transition: all 0.5s ease-in-out;
	padding: 15px;
}
.portfolio .portfolio-item .portfolio-info h2 {
	font-size: 18px;
	font-weight: 600;
	padding-right: 50px;
}
.portfolio .portfolio-item .portfolio-info p {
	font-size: 14px;
	margin-bottom: 0;
	padding-right: 50px;
}
.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
	position: absolute;
	right: 50px;
	font-size: 24px;
	top: calc(50% - 14px);
	transition: 0.3s;
	line-height: 0;
}
.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
	color: #003399;
}
.portfolio .portfolio-item:hover .portfolio-info {
	opacity: 1;
	bottom: 0;
}
.portfolio-info h2 {
	padding: 8px;
	font-weight: 600;
	color: #fff;
	border-radius: 12px;
	background: rgba(0, 51, 153, 0.4);
	transition: 0.3s;
}
.portfolio-info i {
	color: #fff;
}
/* ----- CONTACT -----*/
.contact .info-wrap {
	padding: 30px;
}
@media (max-width: 575px) {
	.contact .info-wrap {
		padding: 20px;
	}
}
.contact .info-item {
	margin-bottom: 40px;
}
.contact .info-item i {
	font-size: 20px;
	color: #003399;
	width: 44px;
	height: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
	margin-right: 15px;
}
.contact .info-item h3 {
	padding: 0;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px;
}
.contact .info-item p {
	padding: 0;
	margin-bottom: 0;
	font-size: 18px;
}
.contact .info-item:hover i {
	background-color: #003399;
	color: #fff;
}
.contact .info-item .locatie p,
.contact .info-item .telefoon a,
.contact .info-item .mail a {
	font-size: 18px;
	font-weight: 400;
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
/* ----- LOGO / HERO SPAN TYPOGRAFIE -----*/
#hero span,
.branding h1 {
	font-family: "Times New Roman", serif;
	font-style: italic;
	font-size: 40px;
	color: #003399;
}
/* ----- BUTTON GET STARTED -----*/
.btn-get-started {
	color: #fff;
	background-color: #003399;
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 6px 15px;
	border-radius: 25px;
	transition: 0.5s;
}
.btn-get-started:hover {
	color: #fff;
}
/* ----- VACATURES -----*/
.vacatures span {
	font-weight: 600;
}
.vacatures img {
	display: block;
	margin: 0 auto 48px auto;
	width: 100%;
}
.vacatures iframe {
	display: block;
	margin: 0 auto 48px auto;
	width: 100%;
	min-height: 2200px;
	border-radius: 12px;
	box-shadow: 0 0 30px rgba(0, 51, 153, 0.5);
}
.vacature-item {
	margin-bottom: 32px;
	background: #f0f8ff;
	min-height: 715px;
	padding: 16px;
	border-radius: 12px;
	box-shadow: 0 0 30px rgba(0, 51, 153, 0.5);
}
.vacature-item img {
	max-width: 400px;
}
.vacature-item h3 {
	text-align: center;
}
/* ----- CONTACT FORMS & MAPS -----*/
.contact .form iframe {
	display: block;
	margin: 0 auto 48px auto;
	width: 100%;
	max-width: 900px;
	min-height: 625px;
	border-radius: 12px;
	box-shadow: 0 0 30px rgba(0, 51, 153, 0.2);
}
.contact-maps iframe {
	border: none;
	border-radius: 12px;
	width: 100%;
	height: 289px;
}
/* ----- SECTIE MET AFBEELDING -----*/
#sectie img {
	float: right;
	margin-left: 16px;
	border-radius: 12px;
}
#sectie h2 {
	display: none;
}
@media (max-width: 575px) {
	img {
		width: 100%;
	}
}
/* ----- SERVICE ITEM (generiek) -----*/
.service-item {
	position: relative;
	text-align: center;
}
.service-item .icon {
	font-size: 2em;
	display: inline-block;
	margin-bottom: 10px;
}
.service-item h2 {
	margin-top: 20px;
}
.service-item p {
	margin-top: 10px;
}
/* ----- GROOTHANDEL -----*/
.groothandel .service-item {
	max-height: 350px;
	position: relative;
	text-align: center;
	border: 1px solid #fff;
	border-radius: 12px;
}
.groothandel .service-item:hover {
	border-color: #003399;
}
.groothandel .service-item img {
	max-width: 300px;
}
/* ----- PRODUCT CONTAINER -----*/
.product-container h5 {
	text-align: left;
}
.product-container .eco {
	background: #7cfc00;
	font-size: 20px;
	color: white;
	padding: 0 8px 2px 8px;
	border-radius: 8px;
	text-shadow: 1px 1px #000;
}
.product-container .code {
	background-color: #003399;
	font-size: 20px;
	color: white;
	padding: 0 8px 2px 8px;
	border-radius: 8px;
}
@media (max-width: 768px) {
	.product-container .code {
		color: #fff;
		font-size: 20px;
		font-weight: 400;
	}
}
/* ----- ICON BOX -----*/
.icon-box {
	display: flex;
	padding: 24px;
	flex-direction: column;
	align-items: center;
	text-align: justify;
	box-shadow: 0 0 30px rgba(0, 51, 153, 0.2);
}
.icon-box .description {
	margin: 0;
}
@media only screen and (max-width: 768px) {
	.icon-box img {
		width: 50%;
	}
}

/* ----- PRODUCT AFBEELDINGEN -----*/
#afvalzakken img,
#dispensers img,
#handdoekjes img,
#poetslappen img,
#servetten img,
#toiletpapier img,
#zeep-en-luchtverfrissers img,
#diverse img {
	margin-bottom: 32px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.product-item-afvalzakken,
.product-item-dispensers,
.product-item-handdoekjes,
.product-item-handdoekrollen,
.product-item-onderzoeksbankrollen,
.product-item-poetslappen,
.product-item-servetten,
.product-item-toiletpapier,
.product-item-zeepenlucht,
.product-item-diverse {
	padding: 16px;
	margin-bottom: 20px;
	border-radius: 12px;
	box-shadow: 0 0 30px rgba(0, 51, 153, 0.4);
}
.product-item-afvalzakken h2,
.product-item-dispensers h2,
.product-item-handdoekjes h2,
.product-item-handdoekrollen h2,
.product-item-onderzoeksbankrollen h2,
.product-item-poetslappen h2,
.product-item-servetten h2,
.product-item-toiletpapier h2,
.product-item-zeepenlucht h2,
.product-item-diverse h2 {
	font-size: 22px;
}
/* ----- BUTTON MAPS -----*/
.btn-maps {
	font-weight: 600;
	font-size: 18px;
	color: #fff;
	background-color: #003399;
	letter-spacing: 1px;
	display: inline-block;
	padding: 20px 40px;
	border: 5px solid #fff;
	outline: 5px solid #003399;
	border-radius: 12px;
	transition: 0.5s;
}
.btn-maps:hover {
	color: #ffff00;
	border-color: #ffff00;
	outline-color: #003399;
}
/* ----- CONTACT OPNEMEN -----*/
.contact-opnemen {
	margin-top: 2em;
	text-align: left;
}
.contact-opnemen h2 {
	font-size: 20px;
}
/* ----- SITEMAP -----*/
.sitemap a {
	font-weight: 600;
}
/* ----- ACCORDION -----*/
.accordion-container {
	margin-top: 36px;
	margin-bottom: 36px;
	font-size: 18px;
}
.accordion-item {
	border-top: 1px solid #003399;
	border-bottom: 1px solid #003399;
	border-left: 18px solid #003399;
	border-right: 18px solid #003399;
}
.accordion-header {
	font-style: italic;
	padding: 8px 18px;
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: center;
	hyphens: auto;
	justify-content: space-between;
}
.accordion-arrow {
	margin: 0 27px;
	width: 18px;
	flex-shrink: 0;
	text-align: center;
	font-style: normal;
	font-size: 28px;
	line-height: 1;
	color: #003399;
}
.accordion-arrow::before {
	content: "+";
}
.accordion-arrow.open::before {
	content: "\2212";
}
.accordion-content {
	text-align: justify;
	hyphens: auto;
	padding: 0 18px 18px 18px;
	display: none;
}
.button-center {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.video-wrapper {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.video-wrapper video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ==========================================================
   REINLAND BV - NIEUWE HOMEPAGE
   Aanvullende stijlen voor de nieuwe homepage (voorheen
   homepage-nieuw.css, hier samengevoegd met main.css)
   ========================================================== */
:root {
	--rn-blue: #003399;
	--rn-blue-dark: #00256f;
	--rn-accent: #106eea;
	--rn-text: #1d2939;
	--rn-muted: #003399;
	--rn-light: #f5f8fc;
	--rn-border: #e4eaf2;
	--rn-white: #fff;
	--rn-radius: 18px;
	--rn-shadow: 0 18px 50px rgba(0, 51, 153, 0.1);
}

.homepage-new {
	color: var(--rn-text);
	background: #fff;
	text-align: left;
}
.homepage-new p {
	color: var(--rn-muted);
	line-height: 1.75;
}
.homepage-new h1,
.homepage-new h2,
.homepage-new h3 {
	color: #003399;
	text-align: left;
}
.homepage-new img {
	max-width: 100%;
}
/* .homepage-new .container { max-width:100%; } */

/* Generic */
.rn-section {
	padding: 100px 0;
}
.rn-eyebrow {
	display: inline-block;
	margin-bottom: 13px;
	color: #003399;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.16em;
}
.rn-eyebrow-light {
	color: #003399;
}

.rn-section-heading {
	max-width: 760px;
	margin: 0 auto 48px;
	text-align: center;
}
.rn-section-heading h2 {
	margin: 0 0 16px;
	font-size: clamp(32px, 4vw, 46px);
	line-height: 1.12;
	font-weight: 700;
}
.rn-section-heading p {
	max-width: 680px;
	margin: 0 auto;
	font-size: 17px;
}
.rn-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}
.rn-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 13px 21px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 700;
	transition: 0.25s ease;
	border: 1px solid transparent;
}
.rn-btn:hover {
	transform: translateY(-2px);
}
.rn-btn-primary {
	color: #003399;
	background: #fff;
	box-shadow: 0 10px 25px rgba(0, 51, 153, 0.2);
}
.rn-btn-primary:hover {
	color: #fff;
	background: var(--rn-accent);
}
.rn-btn-light {
	color: #003399;
	background: #fff;
	box-shadow: 0 10px 25px rgba(0, 51, 153, 0.2);
}
.rn-btn-light:hover {
	color: #fff;
	background: var(--rn-accent);
}
.rn-btn-white {
	color: #003399;
	background: #fff;
	box-shadow: 0 10px 25px rgba(0, 51, 153, 0.2);
}
.rn-btn-white:hover {
	color: #fff;
	background: var(--rn-accent);
}
.rn-btn-outline-white {
	color: #003399;
	background: #fff;
	box-shadow: 0 10px 25px rgba(0, 51, 153, 0.2);
}
.rn-btn-outline-white:hover {
	color: #fff;
	background: var(--rn-accent);
}
.rn-text-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #003399;
	font-weight: 700;
	padding: 5px 10px;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0, 51, 153, 0.2);
}
.rn-text-btn:hover {
	color: #fff;
	background: #106eea;
}

/* Hero */
.rn-hero {
	position: relative;
	overflow: hidden;
	padding: 82px 0 90px;
	background: linear-gradient(135deg, #f6f9fd 0%, #fff 62%);
}
.rn-hero:before {
	content: "";
	position: absolute;
	width: 420px;
	height: 420px;
	right: -180px;
	top: -180px;
	border-radius: 50%;
	background: rgba(16, 110, 234, 0.06);
}
.rn-hero-grid {
	display: grid;
	grid-template-columns: 1.02fr 0.98fr;
	gap: 70px;
	align-items: center;
	position: relative;
	z-index: 1;
}
.rn-hero-copy h2 {
	margin: 0 0 24px;
	font-size: clamp(40px, 5vw, 66px);
	line-height: 1.02;
	letter-spacing: -0.035em;
	font-weight: 300;
}
.rn-hero-copy h2 strong {
	font-weight: 800;
}
.rn-lead {
	max-width: 650px;
	margin: 0 0 30px;
	font-size: 18px;
}
.rn-trust-line {
	margin-top: 22px;
	color: #003399;
	font-size: 13px;
}
.rn-trust-line i {
	color: #003399;
}
.rn-hero-media {
	position: relative;
}
.rn-hero-media > img {
	display: block;
	width: 100%;
	height: 510px;
	object-fit: cover;
	border-radius: 24px;
	box-shadow: var(--rn-shadow);
}
.rn-hero-card {
	position: absolute;
	left: -30px;
	bottom: 28px;
	width: 250px;
	padding: 20px;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 10px 25px rgba(0, 51, 153, 0.2);
}
.rn-hero-card span {
	display: block;
	margin-bottom: 5px;
	color: var(--rn-accent);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.13em;
}
.rn-hero-card strong {
	display: block;
	margin-bottom: 12px;
	color: #003399;
	font-size: 18px;
	line-height: 1.25;
}
.rn-hero-card a {
	color: #003399;
	font-size: 13px;
	font-weight: 700;
	padding: 5px 10px;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0, 51, 153, 0.2);
}
.rn-hero-card a:hover {
	color: #fff;
	background: #106eea;
}
/* Services */
.rn-services {
	background: #fff;
}
.rn-service-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.rn-service-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--rn-border);
	border-radius: var(--rn-radius);
	box-shadow: 0 8px 30px rgba(0, 51, 153, 0.05);
	transition: 0.3s ease;
}
.rn-service-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--rn-shadow);
}
.rn-card-image {
	overflow: hidden;
	height: 190px;
}
.rn-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.4s ease;
}
.rn-service-card:hover .rn-card-image img {
	transform: scale(1.04);
}
.rn-card-body {
	padding: 24px;
}
.rn-card-number {
	color: #aab7c9;
	font-size: 12px;
	font-weight: 800;
}
.rn-card-body h3 {
	margin: 7px 0 10px;
	font-size: 23px;
}
.rn-card-body p {
	margin-bottom: 18px;
	font-size: 14px;
}
.rn-card-body > a {
	display: block;
	text-align: center;
}
.rn-card-body a {
	color: #003399;
	font-size: 14px;
	font-weight: 700;
	padding: 5px 0;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0, 51, 153, 0.2);
}
.rn-card-body a:hover {
	color: #fff;
	background: #106eea;
}

/* USP */
.rn-usp {
	padding: 30px 0;
	background: #add8e6;
}
.rn-usp-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.rn-usp-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 10px 22px;
	border-right: 1px solid rgba(255, 255, 255, 0.16);
}
.rn-usp-item:last-child {
	border-right: 0;
}
.rn-usp-item > i {
	color: #003399;
	font-size: 27px;
}
.rn-usp-item strong,
.rn-usp-item span {
	display: block;
	color: #003399;
}
.rn-usp-item strong {
	font-size: 14px;
}
.rn-usp-item span {
	margin-top: 3px;
	color: #003399;
	font-size: 12px;
}

/* Split sections */
.rn-split {
	background: var(--rn-light);
}
.rn-split-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.rn-split-media {
	position: relative;
}
.rn-split-media > img {
	display: block;
	width: 100%;
	height: 480px;
	object-fit: cover;
	border-radius: 22px;
	box-shadow: var(--rn-shadow);
}
.rn-image-badge {
	position: absolute;
	right: -25px;
	bottom: 25px;
	min-width: 210px;
	padding: 17px 20px;
	border-radius: 12px;
	background: #003399;
	box-shadow: 0 12px 35px rgba(0, 51, 153, 0.25);
}
.rn-image-badge strong,
.rn-image-badge span {
	display: block;
	color: #fff;
}
.rn-image-badge strong {
	font-size: 16px;
}
.rn-image-badge span {
	margin-top: 3px;
	color: #cfe0ff;
	font-size: 12px;
}
.rn-split-copy h2 {
	margin: 0 0 18px;
	font-size: clamp(32px, 4vw, 46px);
	line-height: 1.1;
}
.rn-split-copy > p {
	margin-bottom: 24px;
	font-size: 17px;
}
.rn-check-list {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
}
.rn-check-list li {
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
	color: #003399;
	font-size: 15px;
}
.rn-check-list i {
	color: #1e8a50;
	font-size: 18px;
}

/* Video */
.rn-video-section {
	padding: 80px 0;
	background: #add8e6;
}
.rn-video-inner {
	position: relative;
	overflow: hidden;
	min-height: 390px;
	display: flex;
	align-items: center;
	padding: 60px;
	border-radius: 24px;
	background: #add8e6;
}
.rn-video-copy {
	max-width: 90%;
	position: relative;
	z-index: 2;
}
.rn-video-copy h2 {
	margin: 0 0 16px;
	color: #003399;
	font-size: clamp(32px, 4vw, 48px);
	line-height: 1.08;
}
.rn-video-copy p {
	margin-bottom: 24px;
	color: #003399;
}
.rn-video-play {
	position: absolute;
	right: 9%;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.13);
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #003399;
	font-size: 45px;
}
.rn-video-modal-content {
	overflow: hidden;
	background: #000;
	border: 0;
}
.rn-video-modal-content .modal-header {
	background: #000;
	border: 0;
}
.rn-video-modal-content .modal-title {
	color: #003399;
	font-size: 20px;
}
.rn-video-modal-content video {
	display: block;
	width: 100%;
	max-height: 75vh;
}

/* Shop */
.rn-shop {
	background: #fff;
}
.rn-heading-row {
	display: flex;
	justify-content: space-between;
	align-items: end;
	max-width: none;
	text-align: left;
	margin-bottom: 18px;
}
.rn-heading-row h2 {
	max-width: 720px;
}
.rn-shop-intro {
	max-width: 760px;
	margin: 0 0 36px;
	font-size: 17px;
}
.rn-product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.rn-product-card {
	overflow: hidden;
	position: relative;
	min-height: 250px;
	border-radius: 16px;
	background: #edf2f8;
}
.rn-product-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: 0.4s ease;
}
.rn-product-card:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 58%);
}
.rn-product-card:hover img {
	transform: scale(1.04);
}
.rn-product-card span {
	position: absolute;
	z-index: 2;
	left: 18px;
	right: 18px;
	bottom: 17px;
	color: #fff;
	font-size: 17px;
	font-weight: 700;
}
.rn-product-card span i {
	float: right;
	font-size: 16px;
}

/* Renovation */
.rn-renovatie {
	padding: 100px 0;
	background: #add8e6;
}
.rn-split-grid-reverse {
	grid-template-columns: 0.9fr 1.1fr;
}
.rn-copy-light h2 {
	color: #003399;
}
.rn-copy-light > p {
	color: #003399;
}
.rn-media-dark img {
	box-shadow: none;
}

/* Clients */
.rn-clients {
	background: var(--rn-light);
}
.rn-client-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.rn-client-logo {
	min-height: 105px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: #fff;
	border: 1px solid var(--rn-border);
	border-radius: 14px;
}
.rn-client-logo img {
	max-width: 150px;
	max-height: 55px;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.78;
	filter: none;
	opacity: none;
	transition: 0.25s;
}
.rn-client-logo:hover img {
	filter: none;
	opacity: 1;
}
.rn-centered {
	margin-top: 35px;
	text-align: center;
}

/* CTA */
.rn-cta {
	padding: 75px 0;
	background: #add8e6;
}
.rn-cta-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}
.rn-cta h2 {
	margin: 0 0 12px;
	color: #003399;
	font-size: clamp(30px, 4vw, 45px);
}
.rn-cta p {
	max-width: 680px;
	margin: 0;
	color: #003399;
}

/* footer */
.homepage-new .footer-contact {
	color: #fff;
}
.footer .container p {
	color: #fff;
}

/* Mobile */
@media (max-width: 1100px) {
	.rn-hero-grid {
		grid-template-columns: 1fr 1fr;
		gap: 35px;
	}
	.rn-service-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.rn-usp-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.rn-usp-item:nth-child(2) {
		border-right: 0;
	}
	.rn-product-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 767px) {
	.rn-section {
		padding: 70px 0;
	}
	.rn-hero {
		padding: 55px 0 70px;
	}
	.rn-hero-grid,
	.rn-split-grid,
	.rn-split-grid-reverse {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.rn-hero-copy h2 {
		font-size: 42px;
	}
	.rn-hero-media > img {
		height: 360px;
	}
	.rn-hero-card {
		left: 15px;
		bottom: 15px;
		width: 220px;
	}
	.rn-service-grid,
	.rn-product-grid {
		grid-template-columns: 1fr;
	}
	.rn-usp-grid {
		grid-template-columns: 1fr;
	}
	.rn-usp-item {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.16);
		padding: 15px 0;
	}
	.rn-usp-item:last-child {
		border-bottom: 0;
	}
	.rn-split-media > img {
		height: 340px;
	}
	.rn-image-badge {
		right: 15px;
	}
	.rn-video-inner {
		min-height: 480px;
		padding: 38px 28px;
		align-items: flex-start;
	}
	.rn-video-play {
		right: 28px;
		bottom: 28px;
		top: auto;
		transform: none;
		width: 80px;
		height: 80px;
		font-size: 32px;
	}
	.rn-heading-row {
		display: block;
	}
	.rn-heading-row > .rn-text-btn {
		margin-top: 12px;
	}
	.rn-client-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.rn-cta-inner {
		display: block;
	}
	.rn-cta .rn-actions {
		margin-top: 28px;
	}
	.rn-trust-line {
		line-height: 2;
	}
}
@media (max-width: 575px) {
	.rn-hero-copy h2 {
		font-size: 37px;
	}
	.rn-lead {
		font-size: 16px;
	}
	.rn-actions .rn-btn {
		width: 100%;
	}
	.rn-video-inner {
		min-height: 520px;
	}
	.rn-client-grid {
		gap: 10px;
	}
}
