@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@900&display=swap');

:root {
	--background-main: #1E1E1E;
    --background-content: #1F1F1F;
	--background-footer: #0B0C0A;
	--background-slider: #1A1B1A;
	--background-input: #383838;

	--background-section: linear-gradient(116.75deg, #272727 33.25%, #373737 136.52%);

	--background-card: linear-gradient(163.02deg, #2C2D2C 21.65%, #20211F 111.04%);
	--card-shadow: 5px 10px 20px rgba(132, 189, 0, 0.05);

	--color-primary: #84BD00;
	--color-white: #FFF;
	--color-error: #c13636;

	--color-text-hover: #CCC;
	
	--color-hr: #3F3E45;
}
@media (max-width: 1024px) {
	:root {
		--background-slider: #262626;
	}
}

* {
    margin: 0;
    padding: 0;
}
*,
*::after,
*::before {
	box-sizing: border-box;
}

html {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;    
}
body, html {
    background: var(--background-main);
	color: var(--color-white);
}
a {
	text-decoration: none;
	color: var(--color-white);
}
a:hover {
	text-decoration: none;
	color: var(--color-text-hover);
}
h1 {
	font-size: 2.5rem;
	font-weight: 900;
	text-transform: uppercase;
	color: var(--color-white);
}
button:focus {
	outline: none;
}
.button-transparent {
	background: transparent;
	border: 2px solid var(--color-primary);
	color: var(--color-primary);
	text-transform: uppercase;
	font-weight: 900;
	font-size: 0.8rem;
	padding: 0.5rem 1rem;
	border-radius: 5px;
	cursor: pointer;
	transition: 0.3s ease;
}
.button-transparent:hover {
	background: var(--color-primary);
	color: var(--color-white);
}

/* SCROLLBAR */
/* width */
::-webkit-scrollbar {
	width: 10px;
}
  
/* Track */
::-webkit-scrollbar-track {
	background: #757575;
}
   
/* Handle */
::-webkit-scrollbar-thumb {
	background: #3d3d3d;
}
  
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #454545; 
}

/* button header */
.button-css {
	cursor: pointer;
	background: var(--color-primary);
	border: none;
	padding: 0.5rem 1rem;
	margin: 0;
	position: relative;
	display: inline-block;
}

.button-css::before,
.button-css::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.button--calypso {
	overflow: hidden;
	border-radius: 5px;
	color: #fff;
}

.button--calypso span {
	font-family: 'Poppins', sans-serif;
	font-weight: 900;
	font-size: 1rem;
	color: var(--color-white);

	text-transform: uppercase;
	display: block;
	position: relative;
	z-index: 10;
}

.button--calypso:hover span {
	animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}

@keyframes MoveScaleUpInitial {
	to {
		transform: translate3d(0,-105%,0) scale3d(1,2,1);
		opacity: 0;
	}
}

@keyframes MoveScaleUpEnd {
	from {
		transform: translate3d(0,100%,0) scale3d(1,2,1);
		opacity: 0;
	}
	to {
		transform: translate3d(0,0,0);
		opacity: 1;
	}
}

.button--calypso::before {
	content: '';
	background: #000;
	width: 120%;
	height: 0;
	padding-bottom: 120%;
	top: -110%;
	left: -10%;
	border-radius: 50%;
	transform: translate3d(0,68%,0) scale3d(0,0,0);
}

.button--calypso:hover::before {
	transform: translate3d(0,0,0) scale3d(1,1,1);
	transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.button--calypso::after {
    content: '';
    background: #000;
    transform: translate3d(0,-100%,0);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.button--calypso:hover::after {
	transform: translate3d(0,0,0);
	transition-duration: 0.05s;
	transition-delay: 0.4s;
	transition-timing-function: linear;
}






/* HEADER */
header {
    position: fixed;
    width: 100vw;
	max-width: 1140px;
    z-index: 1000;
	transition: 0.3s ease;
}
header .box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
}
header .box .titel a {
	font-size: 1.5rem;
    letter-spacing: 2.5px;
}
header .box .titel a span {
    font-size: 1.5rem;
    color: var(--color-primary);
}
header .nav-desktop a, .dropbtn {
	color: white;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}
header .nav-desktop a:hover {
	color: var(--color-text-hover);
	text-decoration: none;
}
header .nav-desktop a.active-url, button.active-url {
	color: var(--color-primary);
}

/* Dropdown Button */
.dropbtn {
	background-color: transparent;
	color: white;
	border: none;
}
.dropdown {
	position: relative;
	display: inline-block;
}
.dropdown-content {
	display: none;
	position: absolute;
	background-color: var(--background-main);
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}
.dropdown-content a {
	color: white;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}
.dropdown-content a:hover, .dropdown:hover .dropbtn {color: var(--color-text-hover);}
.dropdown:hover .dropdown-content {display: block;}



.nav-mobile {
	display: none;
}

@media (max-width: 1024px) {
	.nav-mobile {
		display: block;
	}
	.nav-desktop {
		display: none;
	}
}
.wrapper-menu {
    width: 20px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
	-webkit-transition: -webkit-transform 330ms ease-out;
    -moz-transition: transform 330ms ease-out;
    -o-transition: transform 330ms ease-out;
    transition: transform 330ms ease-out;
}
.wrapper-menu.open {
    transform: rotate(-45deg);  
}
.line-menu {
    background-color: #fff;
    border-radius: 5px;
    width: 100%;
    height: 2px;
}
.line-menu.half {
    width: 50%;
}
.line-menu.start {
	-webkit-transition: -webkit-transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    -moz-transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    -o-transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: right;
}
.open .line-menu.start {
    transform: rotate(-90deg) translateX(1px);
}
.line-menu.end {
    align-self: flex-end;
	-webkit-transition: -webkit-transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    -moz-transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    -o-transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: left;
}
.open .line-menu.end {
    transform: rotate(-90deg) translateX(-1.5px);
}
header .nav-mobile ul {
    list-style: none;
    position: absolute;
    background-color: #222;
    width: 100vw;
    height: 100vh;
    left: 100%;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: -9;
    overflow-x: hidden;
    transition: .5s left;
}
header .nav-mobile ul.open {
    left: 0;
}
header .nav-mobile ul a {
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: .2rem;
    text-decoration: none;
    color: white;
    text-transform: lowercase;
    padding: 20px;
    display: block;
}
header .nav-mobile ul a.active-url {
	color: var(--color-primary);
}
/* EINDE HEADER */


/* SLIDER */
.logos-slider {
	background: var(--background-slider);
}
.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
/* EINDE SLIDER */


/* FOOTER */
footer {
	background-color: var(--background-footer);
	padding: 50px 0 10px 0;
	color: var(--color-text-hover);
}
.footer-bottom-middle a {
	color: var(--color-primary);
}
.footer-bottom-middle a:hover {
	color: var(--color-white);
}
footer a {
	color: var(--color-text-hover);
}
footer a:hover {
	color: var(--color-primary);
	transition: 0.3s ease;
}
footer ul {
	list-style: none;
}
footer h6 {
	text-transform: uppercase;
	font-weight: 900;
	color: var(--color-primary);
}
footer i {
	font-size: 1.5rem;
	color: var(--color-primary);
}
footer i:hover {
	color: var(--color-text-hover);
	transition: 0.3s ease;
}
hr {
	border: 1px solid var(--color-hr);
}
.footer-mobile {
	display: none;
}
@media (max-width: 750px) {
	.footer-mobile {
		display: block;
	}
	.footer-desktop {
		display: none;
	}
}

.button-go {
	pointer-events: auto;
	cursor: pointer;
	background: none;
	border: none;
	padding: 1.5rem 3rem;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	position: relative;
	display: inline-block;
}

.button-go::before,
.button-go::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.button-go span {
	color: var(--color-primary);
}
.button--fenrir {
	background: none;
	padding: 0;
	-webkit-clip-path: circle(50% at 50% 50%);
	clip-path: circle(50% at 50% 50%);
	width: 120px;
	height: 120px;
	text-transform: uppercase;
	font-weight: 900;
}

.progress {
	position: absolute;
	background: none;
	width: 100px;
	height: 100px;
	top: calc(50% - 50px);
	left: calc(50% - 50px);
	transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.button--fenrir:hover .progress {
	transform: scale3d(1.2, 1.2, 1);
}

.progress__circle,
.progress__path {
	fill: none;
	stroke: var(--color-primary);
	stroke-width: 2px;
}

.button--fenrir:focus-visible .progress__circle {
	fill: rgba(252,196,63,0.4);
}

.progress__path {
	stroke: var(--color-text-hover);
	stroke-dasharray: 1;
	stroke-dashoffset: 1;
	transition: stroke-dashoffset 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.button--fenrir:hover .progress__path {
	stroke-dashoffset: 0;
}

/* EINDE FOOTER */

/* HOME (HERO) */
.hero {
	background:
		/* top, transparent black, faked with gradient */ 
		linear-gradient(
			rgba(0, 0, 0, 0.7), 
			rgba(0, 0, 0, 0.7)
		),
		/* bottom, image */
		url('../images/home.png');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	height: 100vh;
	max-height: 500px;

	display: flex;
	align-items: center;
}
.hero h1 span{
	color: var(--color-primary);
}
/* EINDE HOME (HERO) */

/* HOME (DIENSTEN / CARDS) */
.home-diensten {
	background: var(--background-content);
	max-width: 1140px;
	margin: 0 auto;
}
.home-diensten .card {
	background-color: var(--background-card);
	border-radius: 10px;
	box-shadow: var(--card-shadow);

	color: var(--color-text-hover);
}
.image-container {
	position: relative;
}
  
.image-container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.3);
}
.home-diensten .card .card-title {
	color: var(--color-primary);
	font-weight: 900;
}
.home-diensten .card .underline {
	height: 1px;
	width: 60px;
	background-color: var(--color-primary);
	margin-bottom: 1rem;
}
.home-diensten .card .card-text {
	color: var(--color-white);
	font-weight: 400;
}
/* EINDE HOME (DIENSTEN / CARDS) */


/* WIE ZIJN WIJ */
.page-title {
	max-width: 1140px;
	height: 230px;

	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.page-title.wiezijnwij {
	background:
		/* top, transparent black, faked with gradient */ 
		linear-gradient(
			rgba(0, 0, 0, 0.7), 
			rgba(0, 0, 0, 0.7)
		),
		/* bottom, image */
		url('../images/wiezijnwij.png');
}
.page-title h1 {
	color: var(--color-primary);
}

.about {
	color: var(--color-text-hover);
}
.about > div {
	padding: 0 150px;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px;
}
.about .top-section {
	background: var(--background-section);
}
.about .bottom-section {
	background: var(--background-content);
}
.about .top-section img, .about .bottom-section img {
	height: 300px;
}
.about .about-title {
	font-size: 1.1rem;
	font-weight: 900;
	color: var(--color-primary);
	text-transform: uppercase;
}
.about .about-text {
	line-height: 1.8rem;
}
.about .about-text span {
	color: var(--color-white);
	font-weight: 600;
}
@media (max-width: 1100px) {
	.about > div {
		padding: 0 50px;
	}
}
@media (max-width: 750px) {
	.about > div {
		padding: 0 20px;
		flex-direction: column;
	}
}

/* EINDE WIE ZIJN WIJ */

/* CONTACT */
.page-title.contact {
	background:
		/* top, transparent black, faked with gradient */ 
		linear-gradient(
			rgba(0, 0, 0, 0.7), 
			rgba(0, 0, 0, 0.7)
		),
		/* bottom, image */
		url('../images/contact.png');
}

.contact-item {
	margin: 0 auto;
	display: flex;
	align-items: stretch;
	justify-content: center;

	padding: 80px 0;

	color: var(--color-text-hover);
	background: var(--background-content);
}
.contact-info {
	overflow: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;

	padding: 0 20px;

	background: #2C2D2C;
	box-shadow: 5px 10px 20px rgba(132, 189, 0, 0.05);
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}
.contact-info .contact-method {
	display: flex;

	flex-direction: column;
	gap: 10px;
}
.contact-info .contact-method .contact-method-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.contact-info .contact-method .contact-method-item .contact-method-item-icon {
	font-size: 1.5rem;
	color: var(--color-primary);
}
.contact-info .contact-method .contact-method-item .contact-method-item-text {
	font-size: 1.1rem;
	font-weight: 600;

	text-transform: uppercase;
	letter-spacing: 2px;
}

.contact-info .contact-socials {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}
.contact-info .contact-socials .contact-socials-item:hover a i {
	color: var(--color-text-hover);
}
.contact-info .contact-socials a i {
	font-size: 3rem;
	color: var(--color-primary);
	transition: 0.3s ease;
}
.contact-form {
	overflow: auto;
	max-width: 700px;
	padding: 20px 30px;

	background: linear-gradient(163.02deg, #2C2D2C 21.65%, #20211F 111.04%);
	box-shadow: 5px 10px 20px rgba(132, 189, 0, 0.05);
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}
.contact-form .contact-title {
	font-size: 1.1rem;
	font-weight: 900;
	color: var(--color-primary);
	text-transform: uppercase;
}
.contact-form .contact-description {
	font-weight: 400;
}
.contact-form form .contact-form-group {
	width: 100%;
	display: flex;
	gap: 20px;
}
.contact-form form .contact-form-item {
	padding-top: 10px;
}
.contact-form form .contact-form-item textarea {
	width: 100%;
}
.contact-form form .contact-form-item .form-title {
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--color-primary);

	padding-bottom: 5px;
}
.contact-form form input, .contact-form form select {
	width: 250px;
}
form input, form textarea, form select {
	width: 100%;
	padding: 10px;

	color: var(--color-text-hover);
	background: var(--background-input);
	border: none;
	border-radius: 5px;
}
form input, form textarea, form select:focus {
	outline: none;
}
.error-message {
	color: var(--color-error);
	font-size: 0.8rem;
	padding-bottom: 5px;
}
.success-contact i {
	color: var(--color-primary);
	font-size: 1.2rem;
}
.success-contact .success-message {
	color: var(--color-primary);
	font-weight: 600;
}
@media (max-width: 1024px) {
	.contact-item {
		max-width: 700px;
		margin: 0 auto;
		flex-direction: column;
		align-items: center;
	}
	.contact-info {
		width: 100%;
		padding: 20px 0;	
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		border-bottom-left-radius: 0;
	}
	.contact-form {
		max-width: fit-content;
		padding: 20px;
		margin: 0 auto;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
	}
	.contact-form form .contact-form-group {
		justify-content: space-between;
	}
	form textarea {
		height: 100px;
	}
	.contact-button {
		display: flex;
	}
	.contact-button .button-transparent {
		margin: 10px 0 0 0;
		width: 200px;
	}
	.contact-form form input, .contact-form form select {
		width: 300px;
	}
}
@media (max-width: 750px) {
	.contact-item {
		max-width: 90vw;
	}
	.contact-form form input, .contact-form form select {
		width: 100%;
	}
	.contact-form form .contact-form-group {
		width: 100%;
		display: block;
		gap: 0;
	}
}
/* EINDE CONTACT */

/* ------- SERVICE ------- */
/* AIRCONDITIONING */
.page-title.airconditioning {
	background:
		/* top, transparent black, faked with gradient */ 
		linear-gradient(
			rgba(0, 0, 0, 0.7), 
			rgba(0, 0, 0, 0.7)
		),
		/* bottom, image */
		url('../images/title-airconditioning.png');
	background-position: center right;
}
/* ZONNEPANELEN */
.page-title.zonnepanelen {
	background:
		/* top, transparent black, faked with gradient */ 
		linear-gradient(
			rgba(0, 0, 0, 0.7), 
			rgba(0, 0, 0, 0.7)
		),
		/* bottom, image */
		url('../images/title-zonnepanelen.png');
	background-position: center center;
}
/* WARMTEPOMP */
.page-title.warmtepomp {
	background:
		/* top, transparent black, faked with gradient */ 
		linear-gradient(
			rgba(0, 0, 0, 0.7), 
			rgba(0, 0, 0, 0.7)
		),
		/* bottom, image */
		url('../images/title-warmtepomp.png');
	background-position: center center;
}
/* LAADPAAL */
.page-title.laadpaal {
	background:
		/* top, transparent black, faked with gradient */ 
		linear-gradient(
			rgba(0, 0, 0, 0.7), 
			rgba(0, 0, 0, 0.7)
		),
		/* bottom, image */
		url('../images/title-laadpaal.png');
	background-position: center center;
}
.service-title {
	font-size: 1.1rem;
	font-weight: 900;
	color: var(--color-primary);
	text-transform: uppercase;
}
.service-subtitle {
	font-size: 1rem;
	font-weight: 900;
	color: var(--color-primary);
	text-transform: uppercase;
}
.service-text {
	color: var(--color-text-hover);
	line-height: 25px;
}
.service span {
	color: var(--color-text-hover);
}
.service .top-section, .service .bottom-section {
	padding: 75px 30px;
}
.service .top-section {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5vw;

	background: var(--background-content);
}
.service .top-section-left {
	max-width: 500px;
}
.service .top-section-right {
	display: flex;
	align-items: center;
	flex-direction: column;
}
.service .top-section-right .image-container img {
	border-radius: 5px;
}
.service .top-section-right .checkmarks .checkmark i {
	font-size: 1.5rem;
	color: var(--color-primary);
}
.service .top-section-right .checkmarks .checkmark {
	display: flex;
	align-items: center;
	gap: 5px;
}

.service .bottom-section {
	display: flex;
	align-items: center;
	flex-direction: column;	
	
	background: var(--background-section);
}
.service .bottom-section .service-text {
	max-width: 700px;
	text-align: center;
}
@media (max-width: 750px) {
	.service .top-section {
		flex-direction: column;
	}
}