/*
Theme Name: Transport Groep Gelderland
Theme URI: https://www.agrio.nl
Author: Agrio Uitgeverij B.V.
Author URI: https://www.agrio.nl
Description: A lightweight theme by Agrio.
Version: 2.8.1.1693553573
Updated: 2026-06-29 07:32:53

*/
/* DEFAULTS */
:root {
	--primary-color : #3C3431;
	--secondary-color:  #A47C68;
	--text-color: #BF9566;
	--white-color:  #fff;
	--black-color:  #000;
	--primary-font: 'Manrope';
	--clr-neon: var(--secondary-color);
  	--clr-bg: hsl(323 21% 16%);
}
body {
	margin: 0px!important;
}
a:hover {
	color: var(--accent);
}

body, a, span, b {
	font-family: var(--textfont);
}
a {
    text-decoration: none!important;
}
a:hover {
    text-decoration: underline;
}
.full-container, .container {
	padding: 0px 30px;
}
.d-flex {
	display: flex;
}
.a-center {
	align-items: center;
}
.j-center {
	justify-content: center;
}
.full-w {
    width: 100%;
}

/* RESPONSIVE DEFAULTS */
@media screen and (max-width:767px) {
    .d-flex {
        flex-direction: column;
    }
    .a-center {
        align-items: baseline;
    }
}

/* TGG Figma implementation */
:root {
	--tgg-blue: #007ec2;
	--tgg-green: #5ca747;
	--tgg-cta: #00934a;
	--tgg-dark: #141d22;
	--tgg-light: #eeeeee;
	--tgg-white: #ffffff;
	--tgg-max: 1296px;
	--tgg-font: Manrope, Arial, sans-serif;
}

body {
	background: var(--tgg-white);
	color: var(--tgg-dark);
	font-family: var(--textfont);
	font-size: var(--textfont);
	line-height: 1.65;
}

h1, 
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--headfont);
}

img {
	max-width: 100%;
	height: auto;
}

.tgg-container {
	width: min(var(--tgg-max), calc(100% - 48px));
	margin-inline: auto;
}

.section-buttons {
	display: flex;
    flex-wrap: wrap;
	gap: 18px;
}

.tgg-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	border: 1px solid currentColor;
	padding: 14px 16px;
	font-weight: 600;
	font-size: 18px;
	line-height: 1;
	text-decoration: none !important;
	background: var(--tgg-white);
	color: var(--tgg-dark);
}

.tgg-btn::after {
    content: "";
    width: 18px;
    height: 18px;
    flex-shrink: 0;

    background-color: currentColor;

    -webkit-mask: url("assets/images/arrow-right.svg") center/contain no-repeat;
            mask: url("assets/images/arrow-right.svg") center/contain no-repeat;
	transition: transform 0.25s ease;
}

.tgg-btn:hover::after,
.tgg-btn:focus-visible::after {
    transform: translateX(4px);
}

.tgg-btn--green {
	background: var(--accent);
	color: var(--tgg-white);
	border-color: var(--tgg-cta);
}

.tgg-btn--green:hover,
.tgg-btn--green:focus-visible {
    background: var(--accenthover);
	color: var(--tgg-white);
	border-color: var(--tgg-cta);
}

.tgg-btn--blue {
	background: var(--accent);
	color: var(--tgg-white);
	border-color: var(--tgg-cta);
}

.tgg-btn--blue:hover,
.tgg-btn--blue:focus-visible {
    background: var(--accenthover);
	color: var(--tgg-white);
	border-color: var(--tgg-cta);
}

.tgg-btn--white {
	background: var(--tgg-white);
	color: var(--tgg-dark);
	border-color: var(--tgg-white);
}

.tgg-cta-bar .tgg-btn--white {
	background: var(--tgg-white);
	color: var(--tgg-dark);
	border-color: var(--tgg-white);
} 

.tgg-mobile-menu__button {
    padding: 24px;
}

.tgg-mobile-menu__button .tgg-btn {
    width: 100%;
    justify-content: center;
}

.tgg-mobile-menu__button-item {
    margin-top: 24px;
    padding: 0 20px;
}

.tgg-mobile-menu__button-item {
    list-style: none;
    margin: 20px 20px 20px !important;
    padding: 0;
}

.tgg-mobile-menu__button-item .tgg-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    margin: 0;
    padding: 18px 24px;

    background: #00934A;
    color: #fff;
    box-sizing: border-box;
}

.tgg-mobile-menu__button-item .tgg-btn:hover,
.tgg-mobile-menu__button-item .tgg-btn:focus-visible {
    background: #008145;
    color: #fff;
}

.tgg-mobile-menu__button-item .tgg-btn::after {
    display: none;
}

.tgg-mobile-menu__button-item > .tgg-btn {
    display: flex;
    width: 100%;
    justify-content: space-between;
    box-sizing: border-box;
}

.tgg-lead {
	font-size: 18px;
	line-height: 1.65;
}

.tgg-muted {
	color: rgba(0, 0, 0, .7);
}

.tgg-header-pad {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1000;
	width: min(1320px, calc(100% - 24px));
	padding: 12px;
	pointer-events: none;
}

.tgg-header {
	min-height: 80px;
	background: var(--tgg-white);
	box-shadow: 0 4px 6px rgba(0, 0, 0, .08);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-right: 20px;
	pointer-events: auto;
}

.tgg-header__brand {
	display: inline-flex;
	align-items: center;
	margin-left: 15px;
}

.tgg-header__logo {
	width: 117px;
	height: 70px;
	object-fit: contain;
}

.tgg-header__nav ul {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tgg-header__nav a {
	height: 80px;
	display: flex;
	align-items: center;
	padding: 0 20px;
	font-weight: 600;
	font-size: 18px;
	color: var(--tgg-dark);
	text-decoration: none !important;
}

.tgg-header__nav .current-menu-item > a,
.tgg-header__nav .current_page_item > a,
.tgg-header__nav a:hover {
	color: var(--tgg-blue);
}

.tgg-header__toggle {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
}

.tgg-header__toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--tgg-dark);
}

.tgg-page-banner {
	background: var(--tgg-blue);
	color: var(--tgg-white);
	padding: 160px 0 70px;
}

.tgg-page-banner h1 {
	color: var(--tgg-white);
	font-size: 54px;
	line-height: 1.2;
}

.tgg-page-banner .breadcrumbs,
.tgg-page-banner .breadcrumbs a {
	color: var(--tgg-white);
}

.tgg-hero {
	height: 773px;
	background: var(--tgg-blue);
	position: relative;
	overflow: hidden;
}

.tgg-hero__image {
	position: absolute;
	left: 0;
	top: 0;
	width: 52%;
	height: 100%;
	object-fit: cover;
}

.tgg-hero__slice {
	position: absolute;
	left: 49%;
	top: 0;
	height: 100%;
	width: 119px;
	object-fit: cover;
}

.tgg-hero__content {
	position: absolute;
	left: 56.35%;
	top: 100px;
	width: 524px;
	max-width: calc(100% - 48px);
	color: var(--tgg-white);
}

.tgg-hero h1 {
	color: var(--tgg-white);
	font-size: 60px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0;
}

.tgg-hero .tgg-lead,
.tgg-working .tgg-lead,
.tgg-story .tgg-lead {
	margin: 26px 0;
}

.tgg-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.tgg-intro {
	padding: 100px 0;
}

.tgg-intro h2,
.tgg-working h2,
.tgg-story h2,
.tgg-news h2 {
	font-size: 46px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0;
}

.tgg-intro__text {
	padding: 0 30px;
	margin-bottom: 50px;
}

.tgg-intro__text .tgg-lead {
	margin-top: 24px;
}

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

.tgg-usps__list {
	width: 856px;
	margin-right: -196px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.tgg-usp {
	position: relative;
	padding-left: 30px;
	padding-right: 110px;
}

.tgg-usp__card {
	background: var(--tgg-light);
	padding: 35px 25px 35px 45px;
	box-shadow: inset -7px 0 0 var(--tgg-blue);
}

.tgg-usp__card h3,
.tgg-small-card__body h3 {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0;
}

.tgg-usp__card p,
.tgg-small-card__body p {
	margin: 6px 0 0;
	color: rgba(0, 0, 0, .7);
}

.tgg-usp__icon {
	position: absolute;
	left: 0;
	top: 50%;
	width: 59px;
	transform: translateY(-50%);
}

.tgg-usps__image {
	width: 636px;
	height: 624px;
	object-fit: cover;
	z-index: 1;
}

.tgg-working {
	background: var(--tgg-green);
	padding: 100px 0;
	color: var(--tgg-white);
}

.tgg-working__inner {
	display: flex;
	gap: 24px;
	align-items: flex-start;
}

.tgg-working__copy {
	flex: 1;
	padding-right: 80px;
}

.tgg-small-card {
	width: 417px;
	color: var(--tgg-dark);
	text-decoration: none !important;
	display: flex;
    flex-direction: column;
}

.tgg-small-card > img {
	display: block;
	height: 325px;
	width: 100%;
	object-fit: cover;
	object-position: center;
	margin-bottom: -50px;
}

.tgg-small-card__body {
	flex: 1;
    display: flex;
    flex-direction: column;
	min-height: 120px;
	margin: 0 20px;
	background: var(--tgg-white);
	color: var(--tgg-dark);
	padding: 24px;
	box-shadow: 0 -6px 0 var(--tgg-green);
	position: relative;
}
.tgg-story {
	padding: 100px 0 0;
}

.tgg-story__inner {
	display: flex;
	align-items: center;
}

.tgg-story__image {
	width: 636px;
	height: 550px;
	object-fit: cover;
	margin-right: -50px;
}

.tgg-story__copy {
	background: var(--tgg-white);
	flex: 1;
	padding: 80px 50px;
	position: relative;
}

.tgg-story__copy span {
	color: var(--tgg-blue);
	font-family: var(--headfont);
}

.tgg-news {
	padding: 0 0 50px;
	margin: 50px 0px;
}

.tgg-news h2 {
	text-align: center;
	margin-bottom: 50px;
}

.tgg-news__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.tgg-news-card {
	min-height: 460px;
	position: relative;
	display: flex;
	align-items: flex-end;
	padding: 20px;
	background-size: cover;
	background-position: center;
	text-decoration: none !important;
}

.tgg-news-card__title {
	background: var(--tgg-white);
	width: 100%;
	padding: 18px;
	display: flex;
	justify-content: space-between;
	gap: 18px;
	color: var(--tgg-dark);
}

.tgg-news-card__title::after {
	content: "+";
	color: var(--tgg-blue);
	font-weight: 700;
	font-size: 22px;
}

.tgg-news-card__title h3 {
	font-size: 21px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0;
}

@media (max-width: 1100px) {
	.tgg-container {
		width: min(100% - 32px, var(--tgg-max));
	}

	.tgg-header {
		min-height: 72px;
		padding: 10px 14px;
		width: 100%;
	}

	.tgg-header__brand {
		margin-left: 0;
	}

	.tgg-header__nav,
	.tgg-header__button {
		display: none;
	}

	.tgg-header__toggle {
		display: inline-flex;
	}

	.tgg-hero {
		height: auto;
		padding: 120px 0 70px;
	}

	.tgg-hero__image,
	.tgg-hero__slice,
	.tgg-hero__content {
		position: relative;
		left: auto;
		top: auto;
		width: min(100% - 32px, var(--tgg-max));
		margin-inline: auto;
	}

	.tgg-hero__image {
		height: auto;
		margin-bottom: 30px;
	}

	.tgg-hero__slice {
		display: none;
	}

	.tgg-hero h1 {
		font-size: 44px;
	}

	.tgg-intro h2,
	.tgg-working h2,
	.tgg-story h2,
	.tgg-news h2 {
		font-size: 36px;
	}

	.tgg-usps,
	.tgg-working__inner,
	.tgg-story__inner,
	.tgg-cta-bar,
	.tgg-footer__inner {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}

	.tgg-usps__list {
		width: 100%;
		margin: 0;
	}

	.tgg-usp {
		padding-right: 0;
	}

	.tgg-usps__image,
	.tgg-story__image {
		width: 100%;
		height: auto;
		margin: 0;
	}

	.tgg-working__copy {
		padding-right: 0;
	}

	.tgg-small-card {
		width: 100%;
	}

	.tgg-news__grid {
		grid-template-columns: 1fr;
	}

	.tgg-story__copy {
		padding: 40px 0;
	}
}
/* Default hamburger menu */
header {
	position: relative;
}
.header nav {
	display: none;
}
.woocommerce {
	font-family: var(--textfont);
}
.header,
.content
 {
	text-align: center;
}
.header {
	font-size: 16px;
	font-weight: bold;
	line-height: 50px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	height: 50px;
	padding: 0 50px;
}
.header.fixed {
	position: fixed;
	top: 0;
	left: 0;
}
.header a {
	display: none;
}
.header a:before,
.header a:after {
	content: '';
	display: block;
	background: var(--accent);
	height: 2px;
}
.header a span {
	background: var(--accent);
	display: block;
	height: 2px;
	margin: 6px 0;
}
.content {
	padding: 150px 50px 50px 50px;
}
.contact-info {
	display: none;
}
@media screen and (min-width:992px) {
	.header {
		display:none;
	}
}
@media screen and (max-width:767px) {
	.header a {
		display: block;
		width: 34px;
		height: 18px;
		padding: 11px;
		margin: 5px;
		position: absolute;
		top: 15px;
		right: 15px;
	}
	header a > img {
		height: 50px;
	}
	#menu a:hover {
		color:white!important;
	}
	.post-block img, .services .post-block {
		width: 100%;
	}
	.buttonHome:not(.slide-info .buttonHome) {
		text-align: center;
		width: 100%;
		padding: 15px 0px!important;
		justify-content: center!important;
		max-width: 100%!important;
	}
	header {
		display: flex;
		height: 82px;
	}
	header > .full-container {
		display: flex;
		align-items: center;
	}
	.services .posts-blocks {
		gap: 30px!important;
	}
	.section-title, .services h2, .projects h2, .testimonial-title {
		font-size: 28px!important;
	}
	.slide-info {
		width: max-content!important;
	}
/* 	.contact-info {
		display: block!important;
		position: absolute;
		bottom: 30px;
		left: 30px;
		z-index: 99999;
	} */
/* 	.contact-info span, .contact-info b, .contact-info a {
		width: 100%!important;
		font-size: 14px;
		padding: 0px!important;
	} */
	.contact-info .phone, .contact-info .email {
		display: flex!important;
		align-items: center;
		margin-top: 13px!important;
	}
	.contact-info a {
		font-weight: 600;
	}
	.contact-info :after {
		display: none!important;
	}
	.contact-info .social-icon {
		float: left;
		width: 50px;
		max-width: 50px;
	}
	.contact-info i {
		font-size: 20px;
		margin-right: 10px;
		color: var(--accent);
	}
	.contact-info .social-icon i {
		font-size: 24px;
		margin-top: 30px;
		color: var(--accent);
	}
	header .topbar {
		display: none;
	}
}

/* HEADER */
@media screen and (max-width:767px) {
	.main .menu-container, header .search, header .shop-menu {
		display: none!important;
	}
	header .icons span {
		display: none;
	}
	header .main .icons {
		position: absolute;
    	right: 30px;
	}
	header .main .icons a {
		margin-left: 20px!important;
	}
	header .main .icons i {
		font-size: 20px;
	}
	.shop .main img {
		max-width: 120px;
    	margin-left: 75px;
	}
}
header .shop .main .column img {
	max-width: 250px!important;
}
header .flex {
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
	align-items: center;
}
header .main {
	padding: 0px 0px;
}
header .flex .column {
	flex-grow: 1;
}
header li.menu-item {
	margin: 0;
    padding: 0px 15px;
    margin-right: 15px; /* Adjust the spacing between menu items */
    list-style-type: none;
}
header .menu a {
	color: var(--primary);
	text-transform: uppercase;
}
.menu-main-menu-container .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center; /* This centers the menu items */
}
.menu-main-menu-container {
	display: flex;
    justify-content: right;
	align-items: center;
}
.menu-main-menu-container .menu li:last-child {
    margin-right: 0; /* Remove margin from the last item */
}
.menu-main-menu-container .menu a {
    text-decoration: none;
    font-weight: 400;
    display: block;
    transition: color 0.3s; /* Add a smooth transition effect */
}
.menu-main-menu-container .menu .sub-menu {
	position: absolute;
    display: none; /* Hide the sub-menu by default */
	padding: 0px;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.1); /* Add a slight shadow for depth */
}
.menu-main-menu-container .menu-item-has-children:hover .sub-menu {
    display: block; /* Show the sub-menu when the parent menu item is hovered */
}
.menu-main-menu-container .menu .sub-menu li {
    display: block;
    margin: 0;
    padding: 0;
}
header .topbar {
	background: var(--topbarbg);
}
.page-id-79 header .topbar{
	display: none;
}
header .topbar-inner {
	max-width: 800px;
	padding: 8px 0px;
}
header .topbar .topbar-inner i {
	font-size: 15px;
	color: var(--accent);
}
@media screen and (max-width:992px) {
    header .header-delivery {
        display: none!important;
    }
    header .shop .main .column img {
        max-width: 160px!important;
    }
}
header .header-delivery {
	margin-right: 50px;
}
header .header-delivery-content {
	font-size: 12px;
}
header .header-delivery .delivery-date {
	display: block;
}
header .main .header-delivery .order-time {
	font-weight: bold;
}
header .main .header-delivery .delivery-date {
	font-weight: bold;
}
header .main .header-delivery svg {
	stroke: var(--accent);
	margin-right: 6px;
}
.page-id-79 .column.search{
	display: none;
}
.page-id-79 .column.icons a{
	display: none;
}
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp{
	padding: 0px;
}
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
	padding-left: 44px;
    font-size: 14px !important;
	line-height: 100% !important;
}
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit{
	left: 10px;
	top: 8px;
}
.topbar .usp {
	display: flex;
	justify-content: left;
	align-items: center;
}
.topbar .icon {
	font-size:0px!important;
}
.topbar .icon {
	margin-right: 3px;
}
.topbar svg {
	stroke: var(--accent);
}
.topbar .text {
	font-size: 12px;
}
.primary-button {
	background: var(--accent);
	color: #fff;
	padding: 10px 20px;
	margin-left: 50px;
}
.primary-button:hover {
	color: #fff;
}
.main .icons {
	display: flex;
	justify-content: right;
}
.main .icons svg {
	display: flex;
    margin-left: auto;
    margin-right: auto;
	color: var(--textcolor);
	margin-bottom: -7px;
}
.main .icons span {
	font-size: 11px;
	color: var(--textcolor);
}
.main .icons a {
	margin-left: 15px;
}
.shop-menu {
	background: linear-gradient(109.7deg,var(--primary) 5.7%, #FF9900 92.4%);
	padding: 10px 0px;
}
.page-id-79 .shop-menu{
	display: none;
}
.shop-menu .menu {
	list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
.shop-menu a {
	color: #fff!important;
}
header .search {
	width: 400px;
}
.cart-block {
    position: relative;
}
.contact-data {
	position: fixed;
	left: 20px;
	bottom: 50px;
	z-index: 21;
	width: calc(100% + var(--mm-spn-panel-offset));
	padding-right: var(--mm-spn-panel-offset);
	line-height: var(--mm-spn-line-height);
	overflow: visible;
	overflow-y: visible;
	overflow-y: visible;
	overflow-y: auto;
	background: inherit;
	-webkit-transition: left .3s ease 0s;
	-o-transition: left .3s ease 0s;
	transition: left .3s ease 0s;
	cursor: default;
}
.contact-data svg {
	margin-right: 10px;
}
.contact-data a {
	padding: 4px 0px!important;
}

/* FOOTER */
.footer-container {
	display: flex;
    flex-direction: column;
    align-items: center;
	margin-top: 50px;
}
@media screen and (min-width:767px) {
	.footer-top {
		width: 90%;
		max-width: 1250px!important;
		height: 200px;
		background-color: var(--footertopbg);
		margin-bottom: -100px;
		position: relative;
		z-index: 100;
	}
}
@media screen and (max-width:767px) {
	.footer-top {
		width: 60%;
		background-color: var(--footertopbg);
		margin-bottom: -100px;
		position: relative;
		padding: 30px 0px;
		z-index: 100;
	}
	.footer-top > div {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
}

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

.nieuwsbrief_input-box {
    position: relative;
    display: inline-block;
}
.nieuwsbrief h3 {
	font-size: 18px;
	font-weight: 700;
}
.nieuwsbrief p {
	font-size: 16px;
	font-weight: 400;
}

[type=button], [type=submit], button {
	border: none;
}

.footer-logo {
	margin-bottom: 25px;
}

.social-media-list {
	display: flex;
}
@media screen and (min-width: 767px) {
	.email-input {
		height: 60px;
		width: 400px;
		padding-left: 25px;
	}
	.footer-middle {
		width: 100%;
		height: auto;
		color: var(--textcolor);
		background-color: var(--footermiddlebg);
		padding: 50px 0px;
	}
	.nieuwsbrief_input-box .buttonHome {
		position: absolute;
		top: 5px;
		right: 5px;
		height: 85%;
	}
}
@media screen and (max-width:767px) {
	.footer-middle-container {
		flex-direction: column;
	}
	.footer-top {
		width: 100%!important;
	}
	.footer-middle {
		width: 100%;
		height: auto;
		color: var(--black);
		background-color: var(--footermiddlebg);
	}
	.nieuwsbrief {
		flex-direction: column;
	}
	.email-input {
		height: 54px;
		font-size: 14px;
	}
	.nieuwsbrief_input-box .buttonHome {
		position: relative;
	}
	.menu-footer {
		margin-bottom: 25px;
	}
	.menu-footer > img {
		display: none;
	}
	.footer-middle-container {
		flex-direction: column!important;
		gap: 20px!important;
	}
}

.footer-middle-container {
	display: flex;
	flex-direction: row;
	gap: 50px;
	padding-top: 100px;
}

.footer-bottom {
	width: 100%;
	height: 80px;
	color: var(--textcolor);
	background-color: var(--footerbottombg);
}

.menu-footer {
	width: 100%;
}

.social-media-icon {
	margin-right: 10px;
	color: var(--white-color);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--footerbottombg);
	display: flex;
	align-items: center;
    justify-content: center;
}

.social-media-icon:hover {
	color: var(--footertopbg);
	background-color: var(--white-color);
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.5s;
    transition-property: all;
}

.widget-title {
	color: var(--white-color);
}

ol {
	list-style-type: none;
	padding: 0 !important;
	margin: 0;
}

.footer-menu-li {
	margin-bottom: 10px;
}

.footer-menu-item {
	color: #fff;
}
.footer-menu-item:hover {
	color: var(--white-color);
	transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.3s;
    transition-property: all;
}

.contact-div {
	display: flex;
	padding: 5px 0px;
}

.contact-icon {
	color: var(--footertopbg);
	margin-right: 10px;
	width: 40px;
	height: 24px;
	background-color: var(--footerbottombg);
	display: flex;
	align-items: center;
    justify-content: center;
}

.contact-info {
	display: flex;
	flex-direction: column;
}

/* .special-border-bottom:before {
	position: absolute;
    height: 2px;
    width: 40px;
    content: "";
    background-color: var(--footertopbg);
}

.special-border-bottom:after {
    position: absolute;
    height: 2px;
    width: 4px;
    content: "";
    background-color: var(--white-color);
} */

/* SERVICES BLOCK */
@media screen and (min-width:767px) {
	.services {
		position: relative;
		padding: 120px 0px 0px 0px;
		margin-bottom: 100px;
		z-index: 1;
	}
	.all-services {
		position: relative;
		padding: 120px 0px 120px 0px;
		background-color: #fff!important;
		max-height: 100%!important;
		margin-bottom: 0px!important;
		z-index: 1;
	}
	.services-head > div {
		width: 50%;
	}
}
@media screen and (max-width:767px) {
	.services {
		position: relative;
		padding: 120px 0px 0px 0px;
		margin-bottom: 250px;
		z-index: 1;
	}
	.services-head > div {
		width: 100%;
	}
}
.services .posts-blocks {
	gap: 100px;
	flex-wrap: wrap;
}
.services h3 {
	position: relative;
	display: inline-block;
	color: var(--accent);
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
}
.services h2 {
	font-size: 40px;
	line-height: 48px;
	font-weight: 700;
	margin-top: 1px;
	color: var(--primary);
}
.services h4 {
	color: var(--primary);
	transition: all 500ms ease;
}
.post-content {
	position: relative;
	display: block;
	background-color: var(--secondary);
	padding: 32px 40px 29px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}
.post-block:hover .post-content {
	background-color: rgb(255, 255, 255);
	box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.post-block:hover h4 {
	color: var(--accent);
}
.services .post-block {
	box-shadow: 0px 3px 6px #00000026;
}
@media screen and (min-width:767px) {
	.post-block {
		width: 28.1%;
	}
	.post-block img {
		max-width: 100%;
		min-height: 290px;
		max-height: 290px;
		object-fit: cover;
		width: 100%;
	}
}
.post-block p {
	font-size: 16px;
	color: var(--primary);
}
.post-block img {
	max-width: 100%;
}
.titles {
	position: relative;
	margin-bottom: 50px;
}
.line:before {
	position: absolute;
	bottom: -9px;
	left: 0;
	height: 3px;
	width: 40px;
	content: "";
	background-color: var(--ambed-base, var(--accent));
}
.line:after {
	position: absolute;
	bottom: -9px;
	left: 45px;
	height: 3px;
	width: 4px;
	content: "";
	background-color: var(--black-color);
}
.brown-label {
	position: absolute;
	top: -18px;
	right: 30px;
	color: var(--white-color);
	font-size: 12px;
	font-weight: 500;
	background-color: var(--accent);
	padding: 8px 20px 8px;
	z-index: 2;
}
/* SLIDER BLOCK */
.slide-info {
	width: 80%;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 100;
	transform: translateY(-50%) translateX(-50%);
}
.slide-info h2 {
	font-size: 46px;
	color: var(--white-color);
	font-weight: 900;
	line-height: 46px;
	text-transform: uppercase;
	margin-top: 8px;
	margin-bottom: 47px;
	text-shadow: -3px 3px 6px #0000004f;
}
.slide-info p {
	font-size: 14px;
	color: var(--white-color);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	text-shadow: -1px 1px 3px #333;
}
.slideBanner-bg {
	height: 80vh;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.hero-slider__nav {
	width: 100%;
}
@media screen and (max-width: 767px) {
	.hero-slider__nav {
		display: none;
	}
	.slideBanner-bg {
		height: 350px!important;
	}
	.slide-info h2 {
		font-size: 18px!important;
	}
}
.hero-button-prev  {
	position: absolute;
	top: 33%;
	left: 0px;
	right: auto;
	bottom: auto;
	z-index: 100;
	width: 60px;
	height: 180px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--white-color);
	font-size: 20px;
	background-color: rgba(var(--ambed-white-rgb, 255, 255, 255), 0.2);
	margin: 0;
	text-align: center;
	transition: all 500ms ease;
}
.hero-button-next {
	position: absolute;
	top: 33%;
	left: auto;
	right: 0px;
	bottom: auto;
	z-index: 100;
	width: 60px;
	height: 180px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--white-color);
	font-size: 20px;
	background-color: rgba(var(--ambed-white-rgb, 255, 255, 255), 0.2);
	margin: 0;
	text-align: center;
	transition: all 500ms ease;
}
.services .buttonHome {
	margin-top: 70px;
}
.buttonHome {
	display: flex;
    align-items: center;
	position: relative;
    background-color: var(--primary);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 700;
    padding: 15px 50px 15px;
	max-width: max-content;
    z-index: 1;
}
.footer-buttons {
	flex-direction: row;
	gap: 20px;
}
.buttonHome svg {
	margin-right: 10px;
}
.buttonHome:hover {
	color: var(--white-color);
}
.buttonHome:after, .wpcf7-submit:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 3px;
	background-color: var(--accent);
	transition-delay: 0.1s;
	transition-timing-function: ease-in-out;
	transition-duration: 0.5s;
	transition-property: all;
	opacity: 1;
	z-index: -1;
}
.buttonHome:hover:after, .wpcf7-submit:hover:after {
	opacity: 1;
	width: 100%;
}
.menu-footer > .widget-title {
	font-size: 18px;
	font-weight: bold;
    text-transform: uppercase;
	position: relative;
	margin-bottom: 25px;
}
.menu-footer > .widget-title:before {
	position: absolute;
    bottom: -9px;
    left: 0;
    height: 3px;
    width: 40px;
    content: "";
    background-color: var(--ambed-base, var(--accent));
}
.menu-footer > .widget-title:after {
	position: absolute;
    bottom: -9px;
    left: 45px;
    height: 3px;
    width: 4px;
    content: "";
    background-color: var(--ambed-white, #ffffff);
}

/* Banner block */
.banner-bg {
	height: 250px;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
@media screen and (max-width:767px) {
	.banner-bg {
		height: 125px!important;
	}
}
.banner-text {
	color: var(--textcolor);
	font-weight: 500;
}
	
.banner-title {
	color: var(--white-color);
	font-weight: 900;
}

/* section block */
.section-container {
	display: flex;
	justify-content: center;
	margin: 50px auto;
}
.left-section-block {
	width: 50%;
	margin-right: 50px;
}
.right-section-block {
	width: 50%;
}

.section-top-text  {
	color: var(--accent);
    font-size: 16px;
	font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}
.section-sub-title {
	color: var(--primary);
	margin-bottom: 30px;
	font-weight: bold;
}

.section-title {
	position: relative;
	margin-top: 15px;
	margin-bottom: 50px;
	font-size: 40px;
    line-height: 48px;
    font-weight: 700;
}
.section-text {
	font-size: 16px;
    line-height: 34px;
}
.right-section-block {
	position: relative;
}
@media screen and (min-width:767px) {
	.right-section-block {
		margin-top: 75px;
	}
}
@media screen and (max-width: 767px) {
	.section-container {
		flex-direction: column;
		align-items: center;
	}
	.left-section-block {
		width: 100%;
		margin-right: 0;
		margin-bottom: 50px;
	}
	.right-section-block {
		width: 100%;
	}
	.section-img1 {
		width: 100%;
		position: relative;
	}
	.section-img2 {
		display: none;
	}
}
@media screen and (min-width: 767px) {
	#parallax-banner {
		position: relative;
		min-height: 500px; 
		background-attachment: fixed;
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		margin-top: 50px;
	}
}
@media screen and (max-width:767px) {
	#parallax-banner {
		position: relative;
		min-height: 500px; 
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		margin-top: 50px;
	}
	.parallax-container {
		position: relative;
		display: flex;
		align-items: center;
		flex-direction: column;
		min-height: 500px;
		max-width: 1200px;
		margin: 0 auto;
		z-index: 1;
	}
	.parallax-title {
		font-size: 24px!important;
	}
	.left, .right {
		width: 100%!important;
		padding: 15px;
	}
	.parallax-container ul {
		padding-left: 0px!important;
	}
}
.parallax-container {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 500px;
	max-width: 1430px;
	margin: 0 auto;
	z-index: 1;
}
.left, .right {
	width: 50%;
}
.parallax-title {
	font-size: 50px;
    color: #fff;
    font-weight: 600;
    line-height: 60px;
    margin-top: 28px;
}
.parallax-container svg {
	margin-right: 15px;
}
.parallax-container li {
	display: flex;
	background: #0000004f;
	font-size: 18px;
    color: #fff;
	font-weight: 400;
	list-style: none;
	padding: 15px 30px;
	font-family: "Rubik";
}
.parallax-container li:nth-child(2), .parallax-container li:nth-child(4) {
	background: #ffffff24;
}
#parallax-banner:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: #0000004f;
    z-index: 0;
}

/* testimonials */
.testimonial-container {
	display: flex;
	justify-content: center;
	flex-direction: column;
	margin: 100px 0;
	max-width: 1430px;
	margin: 100px auto;
}

.testimonial-top {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.testimonial-bottom {
	margin-top: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.testimonial-top-text {
	position: relative;
    display: inline-block;
    color: var(--accent);
    font-size: 16px;
	font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.testimonial-title {
	position: relative;
	font-weight: 700;
	font-size: 40px;
}
.testimonial-title:before {
	position: absolute;
	bottom: -17px;
	left: 0px;
	height: 3px;
	width: 40px;
	content: "";
	background-color: var(--ambed-base, var(--accent));
}
.testimonial-title:after {
	position: absolute;
	bottom: -17px;
	left: 50px;
	height: 3px;
	width: 4px;
	content: "";
	background-color: var(--black-color);
}

.testimonial-quote {
	height: 57px;
    width: 57px;
    background-color: var(--ambed-bdr-color, #e2ddda);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--ambed-base, #a47c68);
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    position: absolute;
    top: -30px;
    left: 40px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonialSwiper {
	width: 100%;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
}
.testimonial-slide:hover {
	transform: translateY(-10px)!important;
}
.testimonial-slide:hover .testimonial-quote {
	background-color: var(--accent)!important;
}
.testimonial-slide:hover .testimonial-quote svg {
	stroke: #fff!important;
}
.testimonial-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: flex;
	justify-content: flex-end;
	flex-direction: column;
	background-color: var(--secondary);
	margin-top: 43px;
    margin-bottom: 33px;
	box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.15);
	min-height: 390px;
	transform: translateZ(0);
	-webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-review-block {
	width: 100%;
	border-bottom: 1px solid var(--textcolor);
}

.testimonial-customer {
	display: flex;
	margin-top: 50px;
	padding: 0px 40px 40px 40px;
}

.customer-img {
	width: 75px;
	height: 75px;
	border-radius: 50px;
	margin-right: 20px;
}

.customer-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.customer-role {
	color: var(--textcolor);
}
@media screen and (min-width:767px) {
	.testimonial-review-text {
		min-height: 163px;
		padding: 40px 40px 0px 40px;
	}
}
.testimonial-bottom .swiper-scrollbar {
	background: var(--secondary)!important;
	width: 300px !important;
	height: 10px !important;
	z-index: 100 !important;
}
.swiper-scrollbar-drag {
	background: var(--accent)!important;
}

@media screen and (max-width:767px) { 
	.testimonial-top {
		align-items: start!important;
	}
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
	position: relative !important;
}


/* Nieuws */

.tgg-news--archive {
    padding: 100px 0;
}

.tgg-news__archive-title {
    margin: 0 0 48px;
}

.tgg-news--archive .tgg-news__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
	width: 100%;
}

.tgg-news-card-wrapper {
    min-width: 0;
}

.tgg-news--archive .tgg-news-card {
    display: flex;
    min-height: 460px;
    text-decoration: none;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.tgg-news--archive .tgg-news-card__title h2 {
    margin: 0;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

/* Paginering */
.tgg-pagination {
    margin-top: 48px;
}

.tgg-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tgg-pagination .page-numbers {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    padding: 8px 14px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid currentColor;
}

.tgg-pagination .page-numbers.current {
    font-weight: 700;
}

/* Tablet */
@media (max-width: 1024px) {
    .tgg-news--archive .tgg-news__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Smartphone */
@media (max-width: 767px) {
    .tgg-news--archive {
        padding: 64px 0;
    }

    .tgg-news__archive-title {
        margin-bottom: 32px;
    }

    .tgg-news--archive .tgg-news__grid {
        grid-template-columns: 1fr;
    }

    .tgg-news--archive .tgg-news-card {
        min-height: 340px;
    }
}

/* PROJECTS BLOCK */
@media screen and (min-width:767px) {
	.projects {
		position: relative;
		padding: 120px 0px 120px 0px;
		background-color: var(--secondary);
		z-index: 1;
	}
	.projects-head > div {
		width: 50%;
	}
}
@media screen and (max-width:767px) {
	.projects {
		position: relative;
		padding: 60px 0px 0px 0px;
		background-color: var(--secondary);
		margin-bottom: 50px;
		z-index: 1;
	}
	.projects-head > div {
		width: 100%;
	}
}
.projects .posts-blocks {
	justify-content:space-between;
	flex-wrap: wrap;
	gap: 30px;
}
.projects h3 {
	position: relative;
	display: inline-block;
	color: var(--accent);
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
}
.projects h2 {
	font-size: 40px;
	line-height: 48px;
	font-weight: 700;
	margin-top: 1px;
	color: var(--primary);
}
.projects h4 {
	color: var(--primary);
	min-height: 58px;
	transition: all 500ms ease;
}
.projects .post-content {
	position: relative;
    display: block;
    background-color: var(--ambed-white, #ffffff);
    padding: 49px 20px 20px;
    clip-path: polygon(0 1%, 100% 17%, 100% 100%, 0% 100%);
    margin-left: 15px;
    margin-right: 15px;
    margin-top: -40px;
	margin-bottom: 30px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}
.projects .post-block:hover .post-content {
	background-color: rgb(255, 255, 255);
	box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.projects .post-block:hover h4 {
	color: var(--accent);
}
@media screen and (min-width:767px) {
	.projects .post-block {
		width: 23%;
	}
	.projects .post-block img {
		max-width: 100%;
		min-height: 236px;
		max-height: 236px;
		object-fit: cover;
		width: 100%;
	}
}
@media screen and (max-width:767px) {
	.projects .post-block {
		width: 100%;
	}
	.projects .post-block img {
		max-width: 100%;
		min-height: 200px;
		max-height: 236px;
		object-fit: cover;
		width: 100%;
	}
}
.projects.post-block img {
	max-width: 100%;
}
.projects .titles {
	position: relative;
	margin-bottom: 50px;
}
section.projects:after {
    content: "";
    background-image: url(/wp-content/uploads/2024/04/blog-two-bg.jpg);
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    top: 0px;
    position: absolute;
    opacity: 0.1;
}

/* SINGLE PROJECT PAGE */
.project-container {
	max-width: 1320px;
	margin: 0 auto;
	background: #fff;
	margin-top: 50px;
	padding: 15px;
}
.single-project .footer-top {
	background-color: #fff!important;
}

.breadcrumbs, .breadcrumbs a {
	color: #fff;
}
.footer-bottom > div {
	display: flex;
    justify-content: space-between;
}
.footer-bottom span, .footer-bottom a {
	color: #797979!important;
	font-size: 12px!important;
}
/* CONTACT BLOCK */
.contact {
	padding: 30px 0px;
}

.contact h1 {
	position: relative;
	font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    margin-top: 1px;
    color: var(--primary);
}

@media screen and (min-width:767px) {
	.contact-flex {
		display: flex;
		justify-content: space-between;
	}
	.contact-form {
		display: flex;
		flex-direction: column;
		width: 70%;
	}
}


.contact-list {
	padding-left: 0px;
}
.contact-list li {
	list-style: none;
}
.contact-list p {
	font-size: 18px;
    color: var(--primary);
    font-weight: 500;
	-webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.contact-list a {
	color: var(--primary);
}
.contact-list a:hover {
	color: var(--accent);
}
.contact-list span {
	font-size: 15px;
	color: var(--textcolor);
    margin-bottom: -13px;
    display: block;
}
@media screen and (max-width:767px) {
	.contact-flex {
		display: flex;
		flex-direction: column;
	}
	.contact-form {
		display: flex;
		flex-direction: column;
		width: 100%;
	}
}

/* CONTACT FORM */
.flex-form {
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
	gap: 2%;
}
.flex-form p {
	margin: 8px 0px!important;
}
.half {
	width: 48%;
}
.full {
	width: 98%;
}

.swiper-pagination-bullet-active {
	background: var(--accent)!important;
}
.swiper-pagination-bullets.swiper-pagination-horizontal {
	bottom: -20px!important;
}
.right-section-block .swiper {
	padding-bottom: 20px;
}


.menu-main-menu-container .menu .sub-menu {
	padding-top: 10px;
	z-index: 100;
	background-color: white;
}

.menu-main-menu-container .menu .sub-menu li {
	padding: 15px;
	border-bottom: 1px solid lightgray;
}

.menu-main-menu-container .menu .sub-menu li:hover {
	background-color: #f2eeeb;
	transition: background-color .3s ease;
}

.menu-main-menu-container .menu-item-has-children:hover .sub-menu {
	display: none;
}
.cmplz-cookiebanner .cmplz-buttons .cmplz-btn {
	font-family: "Rubik"!important;
}
@media (min-width: 768px) {
    .cmplz-cookiebanner {
        grid-row-gap: 5px!important;
    }
	header #menu-main-menu > li {
		padding: 50px 15px;
	}
	.menu-main-menu-container .menu .sub-menu {
		top: 108px;
	}
}
.grecaptcha-badge {
	display: none;
}
.smaller-container {
	padding: 30px 30px 30px 30px;
	max-width: 1297px;
	margin: 0 auto;
}


/* TGG mobile menu - Mmenu Light */
.tgg-mobile-menu {
    display: none;
}

.tgg-header__toggle {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.tgg-header__toggle:focus-visible {
    outline: 3px solid var(--tgg-blue);
    outline-offset: 3px;
}

@media (max-width: 1100px) {
    .tgg-mobile-menu.mm-spn {
        display: block;
        background: var(--tgg-white);
    }

    .mm-ocd__content {
        width: min(88vw, 440px);
        max-width: 440px;
        background: var(--tgg-white);
    }

    .tgg-mobile-menu.mm-spn a,
    .tgg-mobile-menu.mm-spn span {
        font-family: var(--tgg-font);
        font-size: 18px;
        font-weight: 600;
    }

    .tgg-mobile-menu.mm-spn .current-menu-item > a {
        color: var(--tgg-blue);
    }

    .tgg-mobile-menu.mm-spn li::before,
    .tgg-mobile-menu.mm-spn.mm-spn--navbar::before {
        border-color: var(--tgg-blue);
        opacity: 1;
    }

    .tgg-mobile-menu.mm-spn.mm-spn--navbar::after {
        color: var(--tgg-dark);
        font-weight: 700;
        opacity: 1;
    }

    .tgg-mobile-menu__contact {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 5;
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 20px;
        background: var(--tgg-blue);
    }

    .tgg-mobile-menu__contact a {
        padding: 0 !important;
        color: var(--tgg-white) !important;
        font-size: 15px !important;
    }

    body.tgg-menu-is-open .tgg-header__toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body.tgg-menu-is-open .tgg-header__toggle span:nth-child(2) {
        opacity: 0;
    }

    body.tgg-menu-is-open .tgg-header__toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .tgg-header__toggle span {
        transition: transform .2s ease, opacity .2s ease;
    }
}

/* Content twee kolloms */

.content-two-columns {
    width: 100%;
	margin: 30px 0px;
}

.content-two-columns__inner {
    width: 100%;
    max-width: 1296px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
}

.content-two-columns--50-50 .content-two-columns__inner {
    grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.content-two-columns--60-40 .content-two-columns__inner {
    grid-template-columns: 3fr 2fr;
	gap: 30px;
}

.content-two-columns--40-60 .content-two-columns__inner {
    grid-template-columns: 2fr 3fr;
	gap: 30px;
}

.content-two-columns--75-25 .content-two-columns__inner {
    grid-template-columns: 3fr 1fr;
	gap: 30px;
}

.content-two-columns--25-75 .content-two-columns__inner {
    grid-template-columns: 1fr 3fr;
	gap: 30px;
}

.content-two-columns__content {
    min-width: 0;
}

.content-two-columns__title {
    margin-top: 0;
}

.content-two-columns__text {
    width: 100%;
}

.content-two-columns__text > :first-child {
    margin-top: 0;
}

.content-two-columns__text > :last-child {
    margin-bottom: 0;
}

.content-two-columns__button {
    margin-top: 30px;
}

.content-two-columns__button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.content-two-columns__aside {
    min-width: 0;
}

.content-two-columns__box {
    width: 100%;
    padding: 30px;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

.content-two-columns__box-title {
    margin-top: 0;
}

.content-two-columns__box-content > :first-child {
    margin-top: 0;
}

.content-two-columns__box-content > :last-child {
    margin-bottom: 0;
}

.content-two-columns__box-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.content-two-columns__box-content li {
    margin-bottom: 10px;
}

.content-two-columns__box-content li:last-child {
    margin-bottom: 0;
}


.content-two-columns__image {
    width: 100%;
    margin: 0;
}

.content-two-columns__image-img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 767px) {

.content-two-columns__inner {
        grid-template-columns: 1fr;}

.content-two-columns--50-50 .content-two-columns__inner {
    grid-template-columns: 1fr 1fr;
}

.content-two-columns--60-40 .content-two-columns__inner {
    grid-template-columns: 1fr;
}

.content-two-columns--40-60 .content-two-columns__inner {
    grid-template-columns: 1fr;
}

.content-two-columns--75-25 .content-two-columns__inner {
    grid-template-columns: 1fr;
}

.content-two-columns--25-75 .content-two-columns__inner {
    grid-template-columns: 1fr;
}
.content-two-columns__aside {
    margin: 15px;
}
.content-two-columns__content {
	padding: 15px;}
}



/* Vacatures -------------------------------------------------------------- */

.tgg-vacancies-archive,
.tgg-vacancies {
	width: 100%;
}

.tgg-vacancies {
	padding: 70px 0 90px;
}

.tgg-vacancy-card {
	min-width: 0;
}

.tgg-vacancy-card--no-image {
	background: var(--tgg-blue);
}

.tgg-vacancy-card .tgg-news-card__title h2 {
	font-size: 21px;
	font-weight: 500;
	line-height: 1.35;
	margin: 0;
	color: var(--tgg-dark);
}

.tgg-vacancies__empty {
	grid-column: 1 / -1;
	margin: 0;
	text-align: center;
}

.tgg-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 45px;
}

.tgg-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	background: var(--tgg-white);
	color: var(--tgg-dark);
	text-decoration: none;
}

.tgg-pagination .page-numbers.current,
.tgg-pagination a.page-numbers:hover,
.tgg-pagination a.page-numbers:focus-visible {
	background: var(--tgg-blue);
	color: var(--tgg-white);
}

.vacancy-application {
background: var(--tgg-green);
padding: 30px 15px;}

.vacancy-application__inner h2 {
	color: var(--tgg-white);	
}

@media (min-width: 701px) and (max-width: 1100px) {
	.tgg-vacancies__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.tgg-vacancies {
		padding: 45px 0 65px;
	}

	.tgg-vacancy-card {
		min-height: 380px;
	}
}

/* =========================================================
   TGG FOOTER
   ========================================================= */

.tgg-footer {
	position: relative;
	margin-top: 75px;
	background: var(--tgg-dark);
	color: var(--tgg-white);
}

/*
 * Extra ruimte boven de footerinhoud wanneer de CTA aanwezig is.
 * De CTA schuift gedeeltelijk over de donkere footer heen.
 */
.tgg-footer--has-cta {
	margin-top: 133px;
}

/* =========================================================
   CTA-BALK
   ========================================================= */

.tgg-cta-bar {
	position: relative;
	box-sizing: border-box;
	max-width: calc(100% - 48px);
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	background: var(--tgg-blue);
	color: var(--tgg-white);
	padding: 35px 50px;
	top: -40px;
	margin-top: -58px;
	margin-bottom: -58px;
}

.tgg-cta-bar__title {
	width: min(900px, 100%);
	margin: 0;
	color: var(--tgg-white);
	font-size: 24px;
	font-weight: 500;
	line-height: 1.35;
}

/* =========================================================
   DONKERE FOOTERACHTERGROND
   ========================================================= */

.tgg-footer__main {
	background: var(--tgg-dark);
	color: var(--tgg-white);
}

/*
 * Zonder CTA is minder ruimte boven de footerinhoud nodig.
 */
.tgg-footer:not(.tgg-footer--has-cta) .tgg-footer__main {
	padding-top: 0;
}

/* =========================================================
   FOOTERKOLOMMEN
   ========================================================= */

.tgg-footer__inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 48px;
	padding-top: 128px;
	padding-bottom: 70px;
}

/*
 * Wanneer er geen CTA is, hoeft de footerinhoud niet zo ver
 * naar beneden geplaatst te worden.
 */
.tgg-footer:not(.tgg-footer--has-cta) .tgg-footer__inner {
	padding-top: 70px;
}

.tgg-footer__about {
	max-width: 520px;
}

.tgg-footer__logo-link {
	display: inline-block;
	line-height: 0;
}

.tgg-footer__logo {
	display: block;
	width: 108px;
	height: auto;
	margin-bottom: 20px;
}

.tgg-footer p {
	margin-top: 0;
	margin-bottom: 18px;
	color: var(--tgg-white);
}

.tgg-footer a,
.tgg-footer li {
	color: var(--tgg-white);
}

.tgg-footer a {
	text-decoration: none;
}

.tgg-footer a:hover {
	color: var(--tgg-green);
	text-decoration: underline;
}

/* =========================================================
   FOOTERKOLOMTITELS
   ========================================================= */

.tgg-footer__col h3 {
	margin: 0 0 14px;
	color: var(--tgg-white);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
}

/* =========================================================
   FOOTERMENU
   ========================================================= */

.tgg-footer__menu,
.tgg-footer__col ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.tgg-footer__menu li,
.tgg-footer__col li {
	margin: 0 0 5px;
	padding: 0;
}

.tgg-footer__menu a,
.tgg-footer__col li a {
	display: inline-block;
	color: var(--tgg-white);
}

/*
 * Voorkomt dat oude algemene menu-CSS extra margins of
 * horizontale uitlijning op het footermenu toepast.
 */
.tgg-footer .menu-item {
	margin-right: 0;
	padding: 0;
}

/* =========================================================
   CONTACTGEGEVENS
   ========================================================= */

.tgg-footer__widget {
	margin-bottom: 20px;
}

.tgg-footer__widget:last-child {
	margin-bottom: 0;
}

.tgg-footer__col a[href^="tel:"],
.tgg-footer__col a[href^="mailto:"] {
	color: var(--tgg-green);
}

.tgg-footer__col a[href^="tel:"]:hover,
.tgg-footer__col a[href^="mailto:"]:hover {
	color: var(--tgg-white);
}

/* =========================================================
   SOCIAL MEDIA
   ========================================================= */

.tgg-socials {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 20px;
}

.tgg-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: var(--tgg-white);
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease;
}

.tgg-socials a:hover {
	border-color: var(--tgg-green);
	background: var(--tgg-green);
	color: var(--tgg-white);
	text-decoration: none;
}

.tgg-footer__bottom {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-top: 22px;
	padding-bottom: 30px;
	color: var(--tgg-white);
	font-size: 13px;
}

.tgg-footer__bottom strong,
.tgg-footer__bottom span,
.tgg-footer__bottom a {
	color: var(--tgg-white);
	font-size: 13px;
}

.tgg-footer__bottom a:hover {
	color: var(--tgg-green);
}


@media (max-width: 1100px) {
	.tgg-footer {
		margin-top: 60px;
	}

	.tgg-footer--has-cta {
		margin-top: 105px;
	}

	.tgg-cta-bar {
		flex-direction: column;
		align-items: flex-start;
		padding: 30px;
		margin-top: -45px;
		margin-bottom: -45px;
	}

	.tgg-footer__inner {
		display: grid;
		grid-template-columns: 1.5fr 1fr 1fr;
		gap: 32px;
		padding-top: 110px;
	}

	.tgg-footer:not(.tgg-footer--has-cta) .tgg-footer__inner {
		padding-top: 60px;
	}
}

/* Smartphone styling */

@media (max-width: 767px) {
	.tgg-footer {
		margin-top: 50px;
	}

	.tgg-footer--has-cta {
		margin-top: 85px;
	}

	.tgg-cta-bar {
		width: min(100% - 32px, var(--tgg-max));
		gap: 22px;
		padding: 28px 24px;
		margin-top: -35px;
		margin-bottom: -35px;
	}

	.tgg-cta-bar__title {
		font-size: 21px;
	}

	.tgg-cta-bar .tgg-btn {
		width: 100%;
		box-sizing: border-box;
	}

	.tgg-footer__inner {
		display: flex;
		flex-direction: column;
		gap: 35px;
		padding-top: 90px;
		padding-bottom: 45px;
	}

	.tgg-footer:not(.tgg-footer--has-cta) .tgg-footer__inner {
		padding-top: 50px;
	}

	.tgg-footer__about {
		max-width: none;
	}

	.tgg-footer__bottom {
		flex-wrap: wrap;
		padding-top: 20px;
		padding-bottom: 24px;
	}
}

/* Zeer kleine schermen */

@media (max-width: 480px) {
	.tgg-cta-bar {
		padding: 24px 20px;
	}

	.tgg-cta-bar__title {
		font-size: 19px;
	}

	.tgg-footer__bottom {
		gap: 6px;
	}

	.tgg-footer__bottom span {
		display: none;
	}

	.tgg-footer__bottom a {
		width: 100%;
	}
}


/* =========================================
   CTA Linkblokken
========================================= */

.tgg-cta-links {
    padding: 60px 0;
}

.tgg-cta-links__title {
    margin: 0 0 20px;
}

.tgg-cta-links__text {
    max-width: 900px;
    margin-bottom: 36px;
}

.tgg-cta-links__text > *:first-child {
    margin-top: 0;
}

.tgg-cta-links__text > *:last-child {
    margin-bottom: 0;
}


/* =========================================
   Buttons container
========================================= */

.tgg-cta-links__buttons {
    display: grid;
    gap: 28px;
    align-items: stretch;
}


/*
 * 1 button:
 * vaste breedte en links uitgelijnd
 */
.tgg-cta-links__buttons--1 {
    grid-template-columns: minmax(0, 340px);
}


/*
 * 2 buttons:
 * beide vaste breedte
 */
.tgg-cta-links__buttons--2 {
    grid-template-columns: repeat(2, minmax(0, 340px));
}


/*
 * 3 buttons:
 * beschikbare breedte verdelen
 */
.tgg-cta-links__buttons--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}


/*
 * 4 buttons:
 * beschikbare breedte verdelen
 */
.tgg-cta-links__buttons--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}


/* =========================================
   Button / link
========================================= */

.tgg-cta-link {
    --cta-link-color: #007ec2;

    position: relative;

    display: flex;
    align-items: center;

    min-height: 82px;

    padding: 18px 24px 18px 60px;

    border: 2px solid var(--cta-link-color);

    color: var(--cta-link-color);
    text-decoration: none;

    font-weight: 600;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}


/* =========================================
   Icoon
========================================= */

.tgg-cta-link__icon {
    position: absolute;

    left: -22px;
    top: 50%;

    width: 56px;
    height: 56px;

    transform: translateY(-50%);

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

    background: #fff;
}


/*
 * Afbeelding blijft netjes binnen het vlak.
 */
.tgg-cta-link__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* =========================================
   Tekst
========================================= */

.tgg-cta-link__label {
    display: block;
}


/* =========================================
   Hover / focus
========================================= */

.tgg-cta-link:hover,
.tgg-cta-link:focus-visible {
    background-color: var(--cta-link-color);
    color: #fff;
}

.tgg-cta-link:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 4px;
}


/* =========================================
   Tablet
========================================= */

@media (max-width: 1024px) {

    .tgg-cta-links__buttons--3,
    .tgg-cta-links__buttons--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================
   Mobiel
========================================= */

@media (max-width: 700px) {

    .tgg-cta-links {
        padding: 40px 0;
    }

    .tgg-cta-links__buttons--1,
    .tgg-cta-links__buttons--2,
    .tgg-cta-links__buttons--3,
    .tgg-cta-links__buttons--4 {
        grid-template-columns: 1fr;
    }

    .tgg-cta-link {
        width: auto;
        min-height: 74px;

        margin-left: 20px;

        padding:
            16px
            20px
            16px
            52px;
    }

    .tgg-cta-link__icon {
        left: -20px;

        width: 50px;
        height: 50px;
    }

}

.contact__header {
    margin-bottom: 50px;
}

.contact__title {
    margin-top: 0;
}

.contact__description {
    max-width: 900px;
}

.contact__description > :first-child {
    margin-top: 0;
}

.contact__description > :last-child {
    margin-bottom: 0;
}


/*
 * Standaard:
 * formulier links
 * contactgegevens rechts
 */

.contact__form {
    grid-column: 1;
}

.contact__options {
    grid-column: 2;
}


/*
 * Contactkader links
 */

.contact--box-left .contact__options {
    grid-column: 1;
    grid-row: 1;
}

.contact--box-left .contact__form {
    grid-column: 2;
    grid-row: 1;
}


/*
 * Contactkader
 */

.contact-options {
    width: 100%;
    box-sizing: border-box;
}

.contact-list {
    margin: 0;
    padding: 40px;
    list-style: none;
    border: 1px solid #ddd;
}

.contact-list li {
    margin: 0;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.contact-list li:first-child {
    padding-top: 0;
}

.contact-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.contact-list span {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-list p {
    margin: 0;
}


/*
 * Mobiel
 */

@media (max-width: 767px) {

    .contact__header {
        margin-bottom: 35px;
    }

    .contact__columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact__form,
    .contact__options,
    .contact--box-left .contact__form,
    .contact--box-left .contact__options {
        grid-column: 1;
    }

    .contact--box-left .contact__options {
        grid-row: 1;
    }

    .contact--box-left .contact__form {
        grid-row: 2;
    }

    .contact-list {
        padding: 30px;
    }
}


/* CF7 Contactformulier */

.wpcf7-form {
  width: 100%;
}

.wpcf7-row {
  display: flex;
  gap: 20px;
}

.wpcf7-col {
  flex: 1;
}

.wpcf7-full {
  width: 100%;
}

.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  box-sizing: border-box;
  padding: 15px;
  background-color: var(--tgg-light);
  font-family: var(--textfont);
  color: var(--textcolor);
  border: 1px solid #ddd;
}

.wpcf7-form textarea {
  resize: vertical;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: #999;
  opacity: 1;
}

.wpcf7-form-control-wrap {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.wpcf7-submit {
	display: flex;
    align-items: center;
	cursor: pointer;
	padding: 15px;
    background-color: var(--primary);
    color: var(--white-color);
    max-width: max-content;
	font-family: var(--textfont);
}

@media (max-width: 767px) {
  .wpcf7-row {
    flex-direction: column;
    gap: 15px;
  }
}


