/*
Theme Name: unitcatering
Text Domain: unitcatering
Version: 1.0
Description: Custom WordPress theme for Unit Catering
Tags: catering
Author: Jarmo Roos
Author URI: https://www.lemonscript.nl
Theme URI: https://www.lemonscript.nl
Requires at least: 6.0
Tested up to: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

@font-face {
  font-family: 'Avenir';
  src: url('assets/fonts/Avenir.otf');
}
@font-face {
  font-family: 'MuseoSlab';
  src: url('assets/fonts/Museo-Slab-700.otf');
}
html {
    margin: 0px;
    scroll-padding-top: 90px;
    scroll-behavior: smooth;
}
body {
    margin: 0px;
}
:root {
    --black: #000;
    --white: #FFF;
    --orange: #ED7103;
    --orangeYellow: #F7A23D;
    --green: #43AD4B;
    --textGray: #9F9F9F;
}
h1, h2, h3, h4 {
    font-family: "Montserrat", sans-serif;
}
h2 {
    font-size: 26px;
}
p, a, li, span, strong, button, legend {}
p {
    font-family: "Montserrat", sans-serif;
    line-height: 24px;
}
textarea {
    resize: none;
}
select {
    -webkit-appearance: none;
}
p a {
    color: var(--red);
}
button:hover {
    cursor: pointer;
}
textarea {
    resize: none;
}
input[type="submit"] {
    -webkit-appearance: none;
}
img {
    width: 100%;
}
video {
    width: 100%;
}
#main {
    margin: 0 auto;
}
#main.form {
    background-color: #F9FAFB;
}
.container {
    width: 100%;
    margin: 0 auto;
    max-width: 1310px;
    padding: 0px 25px;
    box-sizing: border-box;
}
.button {
    position: relative;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    padding: 15px 15px 15px 15px;
    border-radius: 100px;
    text-decoration: none;
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.button.white {
    color: white;
    border: 2px solid white;
}
.button.white.transparent:hover {
    background-color: white;
    color: black;
}
.button.with-image {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-right: 55px;
}
.button.with-image img {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 35px;
    border-radius: 100px;
}
.button.with-arrow {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-right: 55px;
}
.button.orange.with-arrow .icon {
    position: absolute;
    right: 8px;
    top: 8px;
    color: var(--orange);
    font-size: 30px;
}
.button.rounded {
    border-radius: 100px;
}
.button.orange.rounded {
    color: var(--orange);
    border: 2px solid var(--orange);
}
.button.no-border {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}
.button.no-border .icon {
    font-size: 25px;
}
.button.black {
    color: black;
}
header {
    transform: translateY(-150px);
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 70px;
    z-index: 9999;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
header .logo svg {
    max-width: 50px;
    height: auto;
}
header .logo svg path {
    fill: white;
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
body.default-page header .logo svg path {
    fill: black;
}
body.sticky-header header .logo svg path {
    fill: black;
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
body.show-mobile-nav header .logo svg path {
    fill: black;
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
header::after {
    content: '';
    position: absolute;
    top: -70px;
    left: 0px;
    right: 0px;
    height: 70px;
    z-index: 1;
    background-color: white;
    box-shadow: 0 5px 10px -5px rgb(0 0 0 / 10%), 0 5px 5px -5px rgb(0 0 0 / 4%);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
body.sticky-header header::after {
    top: 0px;
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
body.show-mobile-nav header::after {
    top: -70px;
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.logo {
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
body.show-mobile-nav .logo {
    margin-left: 15%;
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.header-contents {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
nav {
    display: none;
}
nav ul li {
    display: inline;
    margin: 0px 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}
nav ul li a {
    padding: 15px 15px 15px 15px;
    border-radius: 100px;
    text-decoration: none;
    color: white;
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
nav ul li a:hover {
    background-color: white;
    color: black;
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
body.sticky-header nav ul li a,
body.default-page nav ul li a {
    color: black;
}
body.sticky-header nav ul li a:hover,
body.default-page nav ul li a:hover {
    background-color: black;
    color: white;
}
header .cta {
    display: none;
}
header .cta a {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    text-decoration: none;
    color: white;
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
body.sticky-header header .cta a,
body.default-page header .cta a {
    border: 2px solid black;
    color: black;
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
body.sticky-header header .cta a:hover,
body.default-page header .cta a:hover {
    background-color: black !important;
    color: white !important;
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#hamburger-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}
#hamburger-menu:hover {
    cursor: pointer;
}
#hamburger-menu p {
    font-family: 'MuseoSlab';
    color: white;
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
body.show-mobile-nav #hamburger-menu p {
    color: black;
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#hamburger-menu .ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#hamburger-menu .hamRotate.active {
  transform: rotate(45deg);
}
#hamburger-menu .hamRotate180.active {
  transform: rotate(180deg);
}
#hamburger-menu .line {
  fill:none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke:#fff;
  stroke-width:5.5;
  stroke-linecap:round;
  -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
body.sticky-header #hamburger-menu .line,
body.default-page #hamburger-menu .line {
    stroke: #000;
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
body.show-mobile-nav #hamburger-menu .line {
    stroke: #000;
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#hamburger-menu .ham1 .top {
  stroke-dasharray: 40 139;
}
#hamburger-menu .ham1 .bottom {
  stroke-dasharray: 40 180;
}
#hamburger-menu .ham1.active .top {
  stroke-dashoffset: -98px;
}
#hamburger-menu .ham1.active .bottom {
  stroke-dashoffset: -138px;
}
body.sticky-header #hamburger-menu p,
body.default-page #hamburger-menu p {
    color: black;
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#mobile-menu {
    position: fixed;
    top: 0px;
    right: -95%;
    bottom: 0px;
    width: 90%;
    z-index: 999;
    background-color: white;
    box-shadow: 0 5px 10px -5px rgb(0 0 0 / 10%), 0 5px 5px -5px rgb(0 0 0 / 4%);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
body.show-mobile-nav #mobile-menu {
    right: 0px;
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.mobile-menu-contents {
    padding-top: 100px;
}
.mobile-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
    height: 80vh;
}
.mobile-nav ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}
.mobile-nav ul li {
    text-align: right;
    margin: 15px 0px;
}
.mobile-nav ul li a {
    text-decoration: none;
    color: black;
    font-family: 'MuseoSlab';
    font-size: 28px;
}
.mobile-nav-content {
    text-align: right;
}
#hero {
    position: relative;
}
#hero video {
    object-fit: cover;
    height: 90vh;
}
#hero .overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: rgba(0, 0, 0, 0.5);
}
#hero .hero-contents {
    width: 100%;
    max-width: 600px;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#hero .hero-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px;
}
#hero .hero-text img {
    opacity: 0;
    max-width: 120px;
    height: auto;
}
#hero .hero-contents h1 {
    opacity: 0;
    margin: 0px;
    color: white;
    text-align: center;
    font-size: 38px;
}
#hero .buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
#hero .buttons .button {
    opacity: 0;
    min-width: 120px;
    text-align: center;
}
#trucks {
    position: relative;
    z-index: 10;
    margin-top: -20vh;
    overflow: hidden;
}
.trucks-top-gradient {
    width: 100%;
    height: 20vh;
}
/* .trucks-bottom-gradient {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 200px;
} */
#trucks .bg-color {
    position: absolute;
    top: 20vh;
    left: 0px;
    width: 100%;
    height: 100%;
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#trucks .black-gradient {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 55%;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15));
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#trucks .trucks-top-gradient {
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#swiper-trucks {
    margin-top: -150px;
}
#swiper-trucks .truck-contents {
    position: relative;
    padding-bottom: 135px;
    max-width: 1500px;
    margin: 0 auto;
}
#swiper-trucks .left-gradient {
    display: none;
    position: absolute;
    top: 30%;
    left: 0px;
    bottom: 0px;
    width: 30%;
    z-index: 5;
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#swiper-trucks .right-gradient {
    display: none;
    position: absolute;
    top: 30%;
    right: 0px;
    bottom: 0px;
    width: 30%;
    z-index: 5;
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.truck-image {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.truck-image.fade-out {
    opacity: 0;
    transform: translateY(20px);
}
.truck-image.fade-in {
    opacity: 1;
    transform: translateY(0);
}

#swiper-trucks .truck-text {
    width: 80%;
    max-width: 500px;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 8;
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#swiper-trucks .swiper-navigation {
    width: 95%;
    max-width: 1500px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
}
#swiper-trucks .swiper-navigation i {
    font-size: 36px;
    color: white;
    cursor: pointer;
}
.truck-text.fade-out {
    opacity: 0;
    bottom: 0px;
}
.truck-text.fade-in {
    opacity: 1;
    bottom: 50px !important;
}
#swiper-trucks .truck-text h2 {
    text-align: center;
    margin: 0px;
	font-size: 20px;
}
#swiper-trucks .truck-text p {
    color: white;
    text-align: center;
	font-size: 12px;
	line-height: 16px;
}
#swiper-trucks .truck-bg {
    max-width: 1200px;
    position: absolute;
    top: -75px;
    left: 50%;
    /* bring your own prefixes */
    transform: translate(-50%, 0%);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.truck-bg.fade-out {
    opacity: 0;
    top: -75px;
}
.truck-bg.fade-in {
    opacity: 1;
    top: -25px !important;
}
#evenementen {
    padding-top: 50px;
    padding-bottom: 50px;
}
#evenementen .container {
    padding: 0px;
}
#evenementen h2 {
    margin: 0px;
    margin-top: 35px;
    color: var(--orange);
}
.subheading {
    font-size: 20px;
    margin: 10px 0px 35px 0px;
    color: var(--textGray);
}
.swiper-events {
    width: 100%;
    height: 100%;
    margin-bottom: 50px;
    overflow: hidden;
}
.swiper-events .swiper-wrapper {
    padding-left: 25px;
}
#evenementen .column-contents {
    margin-bottom: 50px;
}
.swiper-events .swiper-slide {
    position: relative;
    border-radius: 20px;
}
.swiper-events .swiper-slide .event-image {
    border-radius: 20px;
    height: 100%;
    object-fit: cover;
}
.swiper-events .swiper-slide .event-video {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 20px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.swiper-events .swiper-slide .event-contents {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.swiper-events .swiper-slide .event-logo {
    max-height: 35px;
    width: auto;
}
.swiper-events .swiper-slide .event-logo.png-logo {
    filter: brightness(0) invert(1);
}
.swiper-events .swiper-slide .event-contents p {
    color: white;
    margin: 0px;
}
.swiper-events .swiper-slide .event-color {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 20px;
}
#evenementen .events-content {
    padding: 0px 25px;
}
#over-ons {
    position: relative;
    margin-top: 35%;
    padding-bottom: 50px;
}
#over-ons h2 {
    color: white;
}
#over-ons p {
    color: white;
}
#over-ons .about-us-image {
    margin-top: -45%;
    margin-bottom: 50px;
}
#over-ons .contents {
    margin-top: -50px;
}
#over-ons .button {
    display: inline-block;
    margin-top: 30px;
}
#duurzaamheid {
    padding-bottom: 50px;
}
#duurzaamheid .image-duurzaamheid {
    position: relative;
}
#duurzaamheid .image-duurzaamheid .gradient {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}
#duurzaamheid h2 {
    margin: 0px;
    color: var(--green);
}

#socials h2 {
    background: linear-gradient(45deg, #FFC250, #A331C1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-size: 20px;
}
#socials .socials-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
#socials .social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
#socials .social-links a {
    width: 25px;
    height: 25px;
}

#werkenbij {
    background-color: var(--orangeYellow);
    padding-top: 50px;
}
#werkenbij h2 {
    color: white;
    margin: 0px;
}
#werkenbij .subheading {
    color: black;
    font-weight: 600;
}
#werkenbij .button {
    display: inline-block;
    margin-top: 15px;
}
#werkenbij .work-image {
    display: block;
}
#footer {
    border-top: 1px solid black;
    position: relative;
    padding-bottom: 50px;
}
#footer .footer-logo {
    max-width: 50px;
    height: auto;
    position: absolute;
    top: 0px;
    left: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
}
#footer .footer-bg {
    position: relative;
}
#footer .gradient {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

/* iPad Portrait */
@media only screen and (min-width: 768px) {
    #hero .hero-contents h1 {
        font-size: 48px;
    }
    #swiper-trucks .truck-contents {
        padding-bottom: 35px;
    }
	#socials h2 {
		font-size: 34px;
	}
    #werkenbij {
        position: relative;
        margin-top: 150px;
        padding-top: 100px;
        padding-bottom: 100px;
    }
    #werkenbij .contents {
        width: 70%;
    }
    #werkenbij .work-image {
        position: absolute;
        bottom: 0px;
        right: 0px;
        width: 500px;
    }
    #footer {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    #footer .footer-bg {
        position: absolute;
        top: 0px;
        right: 0px;
        bottom: 0px;
        width: 40%;
    }
    #footer .gradient {
        background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    }
    #footer .footer-bg img {
        height: 100%;
        object-fit: cover;
    }
}

@media only screen and (min-width: 990px) {
    #over-ons {
        margin-top: 0px;
        padding-top: 150px;
        padding-bottom: 150px;
    }
    #over-ons .about-us-image {
        width: 900px;
        margin-top: 0px;
        position: absolute;
        bottom: 0px;
        right: -400px;
        top: -100px;
        z-index: 3;
    }
    #over-ons .gradient-bg {
        position: absolute;
        width: 100%;
        height: 50%;
        top: 50%;
        z-index: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15));
    }
    #over-ons .container {
        position: relative;
        z-index: 2;
    }
    #over-ons .contents {
        width: 500px;
    }
}

/* iPad Landscape */
@media only screen and (min-width: 1024px) {
    h2 {
        font-size: 42px;
    }
    nav {
        display: flex;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    header .cta {
        display: flex;
    }
    #hamburger-menu {
        display: none;
    }
    #hero .hero-contents {
        max-width: 800px;
    }
    #hero .hero-contents h1 {
        font-size: 58px;
    }
	#swiper-trucks .truck-text h2 {
		font-size: 28px;
	}
	#swiper-trucks .truck-text p {
		font-size: 16px;
		line-height: 24px;
	}
    #evenementen {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    #evenementen .container {
        padding: 0px 25px;
    }
    #evenementen .columns {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #evenementen .columns .column {
        width: 48%;
    }
    #evenementen .events-content {
        width: 40% !important;
    }
    #evenementen .column-contents {
        position: sticky;
        top: 150px;
        left: 0px;
        margin-bottom: 150px;
    }
    #evenementen .company-events .events-content {
        order: 1;
    }
    #evenementen .company-events .events {
        order: 2;
    }
    .swiper-events {
        height: 1000px;
        margin-bottom: 100px;
    }
    .swiper-events .swiper-wrapper {
        padding-left: 0px;
    }
    .swiper-events .swiper-slide .event-contents {
        justify-content: space-between;
        align-items: end;
        gap: 0px;
    }
    #duurzaamheid {
        position: relative;
        padding-top: 100px;
        padding-bottom: 100px;
        z-index: 3;
        background-color: white;
    }
    #duurzaamheid .image-duurzaamheid {
        position: absolute;
        top: 0px;
        right: 0px;
        bottom: 0px;
        width: 35%;
    }
    #duurzaamheid .image-duurzaamheid img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #duurzaamheid .image-duurzaamheid .gradient {
        background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    }
    #duurzaamheid .contents {
        width: 60%;
    }
    #socials {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    #werkenbij {
        margin-top: 150px;
    }
    #werkenbij .work-image {
        width: 600px;
        right: 100px;
    }
    #footer .footer-columns {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 100px;
    }
}

@media only screen and (min-width: 1200px) {
    header {
        height: 90px;
    }
    header::after {
        top: -90px;
        height: 90px;
    }
    #swiper-trucks .truck-contents {
        padding-bottom: 0px;
    }
    #trucks .black-gradient {
        height: 50%;
    }
    #swiper-trucks h2 {
        font-size: 32px;
    }
    #over-ons .about-us-image {
        right: -200px;
    }
}

@media only screen and (min-width: 1500px) {
    #swiper-trucks .left-gradient,
    #swiper-trucks .right-gradient {
        display: block;
    }
    #over-ons .about-us-image {
        right: -100px;
    }
    #over-ons .contents {
        width: 600px;
    }
}

@media only screen and (max-width: 1023px) {
    
}

@media only screen and (max-width: 1023px) {
    .swiper-events .swiper-wrapper {
        height: 350px;
    }
    .swiper-events .swiper-slide {
        height: 350px;
    }
}