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

html {
    margin: 0px;
    scroll-padding-top: 120px;
    scroll-behavior: smooth;
}
body {
    margin: 0px;
}
:root {
    --blue: #00244D;
    --green: #4CA706;
}

p, a, li, span, strong, button, legend {}

textarea {
    resize: none;
}
select {
    -webkit-appearance: none;
}
img {
    max-width: 100%;
    display: block;
}
p {
    font-family: "Poppins", serif;
    font-weight: 300;
}
button:hover {
    cursor: pointer;
}
textarea {
    resize: none;
}
input[type="submit"] {
    -webkit-appearance: none;
}
#main {
    padding-top: 90px;
}
.content {
    padding: 35px 0px;
}
.container {
    width: 100%;
    margin: 0 auto;
    max-width: 1310px;
    padding: 0px 25px;
    box-sizing: border-box;
}
#header {
    background-color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    z-index: 9999;
    height: 90px;
}
#header .logo {
    max-width: 110px;
}
h1, h2 {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 46px;
}
.header-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.mobile-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}
.mobile-nav #hamburger {
    background: none;
    color: black;
    text-decoration: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: normal;
    padding: 8px 20px;
    border-radius: 5px;
    border: 2px solid black;
    text-transform: uppercase;
}
.mobile-nav .cta {
    background-color: var(--green);
    color: white;
    text-decoration: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: normal;
    padding: 8px 20px;
    border-radius: 5px;
    border: 1px solid var(--green);
}
/* Side nav */
#side-nav {
    background-color: white;
    position: fixed;
    z-index: 99999;
    top: 0px;
    right: -100%;
    bottom: 0px;
    width: 85%;
    -webkit-transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#side-nav.show {
    right: 0%;
    -webkit-transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#close-nav {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 36px;
}
#close-nav:hover {
    cursor: pointer;
}
#side-nav .nav-content {
    padding: 25px;
}
#side-nav .nav-content img {
    max-width: 150px;
}
#side-nav ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    margin-top: 75px;
}
#side-nav ul li.main-item {
    color: var(--blue);
    font-size: 20px;
    font-family: "Poppins", serif;
    font-weight: 700;
    font-style: normal;
    margin: 25px 0px;
}
#side-nav ul li a {
    color: var(--blue);
    text-decoration: none;
}
#nav-overlay {
    background-color: rgba(0, 36, 77, 0.8);
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    z-index: -1;
    opacity: 0.0;
}
#nav-overlay.show {
    z-index: 9999;
    opacity: 1.0;
}
.nav {
    display: none;
}
.nav ul {
    width: auto;
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}
.nav ul li.main-item {
    display: inline-block;
    color: var(--blue);
    font-size: 20px;
    font-family: "Poppins", serif;
    font-weight: 700;
    font-style: normal;
    margin: 0px 25px;
}
.nav ul li.main-item.current {
    color: var(--green);
}
.nav ul li.main-item.current a {
    color: var(--green);
}
.nav ul li.main-item a {
    text-decoration: none;
    color: var(--blue);
    font-size: 16px;
    font-family: "Poppins", serif;
    font-weight: 700;
    font-style: normal;
}
.nav ul li.main-item a:hover {
    color: var(--green);
}
.nav ul li.main-item a.cta {
    padding: 10px 15px;
    background-color: var(--green);
    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);
}
.nav ul li.main-item a.cta:hover {
    background-color: var(--green);
    -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.has-submenu {
    position: relative;
}
.nav ul li.has-submenu a.touch-link {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
@media (pointer: fine) {
    .nav ul li.has-submenu a.touch-link {
        background-color: rgba(255,255,255,0.0);
    }
}
@media (hover: none) {
    .nav ul li.has-submenu a.touch-link {
        background-color: rgba(255,255,255,0.0);
    }
}
.nav ul li.has-submenu .sub-menu-head {
    text-align: center;
}
.nav ul li.has-submenu .sub-menu-head i {
    font-size: 22px;
    color: white;
}
.nav ul li.has-submenu .submenu {
    visibility: hidden;
    opacity: 0.0;
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translate(-50%, 0%);
    width: auto;
    min-width: 250px;
    -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.has-submenu:hover {
    cursor: pointer;
}
.nav ul li.has-submenu:hover .submenu {
    top: 30px;
    opacity: 1.0;
    visibility: visible;
    -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.has-submenu .submenu ul {
    padding: 20px 60px 5px 20px;
    margin-top: -10px;
    background-color: white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 5px;
}
.nav ul li.has-submenu .submenu li {
    color: var(--purple);
    margin-bottom: 15px;
}
.nav ul li.has-submenu .submenu li a {
    position: relative;
    color: var(--purple);
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: normal;
    text-transform: initial;
    display: block;
    font-size: 16px;
}
.nav ul li.has-submenu .submenu li a:hover {
    color: var(--gold);
}
.nav ul li.has-submenu .submenu li a i {
    position: absolute;
    right: 10px;
    top: 0px;
    opacity: 0.0;
    font-size: 20px;
    -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.has-submenu .submenu li a:hover i {
    right: -30px;
    opacity: 1.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);
}
.nav .cta {
    background-color: var(--green);
    color: white;
    text-decoration: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: normal;
    padding: 8px 20px;
    border-radius: 5px;
}
.button {
    font-size: 14px;
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: normal;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}
.button.blue {
    background-color: var(--blue);
    color: white;
}
.button.green.inline {
    color: var(--green);
}
#hero {
    margin-bottom: 50px;
}
#hero h1 {
    color: var(--blue);
}
.hero-contents {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 35px;
}
.hero-contents .buttons {
    margin: 50px 0px;
}
.hero-contents .column {
    position: relative;
    max-width: 100%;
}
.hero-contents {
    position: relative;
}
#hero-slider {
    max-width: 100%;
}
.swiper-hero {
    overflow: hidden;
    position: relative;
}
.slider-nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.slider-nav .button {
    background-color: var(--blue);
    color: white;
    border: 0px;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    padding: 10px;
}
.slider-nav .button i {
    font-size: 20px;
    line-height: 20px;
}
.slider-nav .button.prev {
    margin-left: 20px;
}
.slider-nav .button.next {
    margin-right: 20px;
}
.hero-contents .intro-artwork {
    position: absolute;
    top: 50px;
    left: 50px;
    width: calc(100% - 50px);
    z-index: -2;
}
.hero-contents .slider-bg {
    position: absolute;
    top: -15px;
    right: -15px;
    bottom: -15px;
    left: 30px;
    border-radius: 15px;
    border: 8px solid var(--green);
    z-index: -1;
}

#diensten {
    background-color: var(--blue);
}
#diensten .container {
    position: relative;
}
#diensten h2 {
    color: white;
    text-align: center;
    margin-bottom: 50px;
}
#diensten .diensten-slider {
    overflow: hidden;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: -200px;
    z-index: 10;
    padding: 0px 35px;
    padding-bottom: 10px;
}
#diensten .swiper-wrapper {
    margin: 0px 20px;
}
#diensten .swiper-slide {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 10px -5px rgb(0 0 0 / 10%), 0 5px 5px -5px rgb(0 0 0 / 4%);
}
#diensten .slide-content {
    padding: 10px 25px;
	padding-right: 50px;
}
#diensten .slide-content h3 {
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: normal;
    margin: 0px;
    margin-top: 15px;
    font-size: 20px;
}
#diensten .slider-bg {
    width: 150px;
    height: 150px;
    position: absolute;
    top: 70px;
    left: 35px;
    bottom: -100px;
    margin-top: 30px;
    border-radius: 15px;
    border: 8px solid var(--green);
    z-index: 2;
}
#werk {
    padding-top: 100px;
}
#werk h2 {
    color: var(--blue);
    text-align: center;
}
.grid-work {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-direction: column;
    gap: 25px;
}
.grid-work .work-item {
    position: relative;
    width: 100%;
    border-radius: 15px;
}
.grid-work .work-item img {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.grid-work .work-item .hover-bg {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-color: rgba(76,167,6, 0.65);
    border-radius: 15px;
    opacity: 0.0;
    visibility: hidden;
    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);
}
.grid-work .work-item:hover .hover-bg {
    opacity: 1.0 !important;
    visibility: visible !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);
}
.grid-work .work-item .hover-contents .hover {
    position: relative !important;
}
.grid-work .work-item:hover .hover-contents .button {
    opacity: 1.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);
}
.grid-work .work-item .hover-contents {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 5;
}
.grid-work .work-item .hover-contents h3 {
    color: white;
    font-size: 26px;
    font-family: "Poppins", serif;
    font-weight: 700;
    font-style: normal;
    margin: 0px;
    margin-bottom: 20px;
}

#footer {
    background-color: var(--blue);
    position: relative;
}
#footer .content {
    position: relative;
    z-index: 2;
}
#footer h2 {
    color: white;
    text-align: center;
}
#footer p {
    color: white;
}
#footer p a {
    color: white;
    text-decoration: none;
}
#footer .socket {
    margin-top: 75px;
}
#footer .socket p {
    font-size: 13px;
}
#footer .footer-artwork {
    position: absolute;
    top: 0px;
    left: 50%;
    height: 100%;
    transform: translate(-50%, 0%);
}

/* iPad Portrait */
@media only screen and (min-width: 768px) {
	.button {
		font-size: 16px;
	}
    .grid-work {
        justify-content: flex-start;
        flex-direction: row;
        gap: 2%;
    }
    .grid-work .work-item {
        position: relative;
        width: 49%;
    }
}

/* iPad Landscape */
@media only screen and (min-width: 1024px) {
    #main {
        padding-top: 120px;
    }
    #header {
        height: 120px;
    }
    #header .logo {
        max-width: 220px;
    }
    .content {
        padding: 50px 0px;
    }
    .mobile-nav {
        display: none;
    }
    .nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
        gap: 20px;
    }
    .hero-contents .intro-artwork {
        width: 600px;
    }
    #footer .content {
        padding: 25px 0px;
    }
}

@media only screen and (min-width: 1200px) {
    .hero-contents {
        justify-content: space-between;
        flex-direction: row;
        align-items: center;
    }
    .hero-contents .column {
        width: 38%;
    }
    .hero-contents .column.slider {
        width: 55%;
    }
    .hero-contents .slider-bg {
        border: 8px solid var(--green);
    }
    .grid-work .work-item {
        width: 32%;
    }
}

@media only screen and (min-width: 1300px) {
    .hero-contents .intro-artwork {
        width: 800px;
    }
}

@media only screen and (min-width: 1320px) {
    .hero-contents .slider-bg {
        top: -30px;
        right: -30px;
        bottom: -30px;
        left: 30px;
    }
    #diensten .slider-bg {
        width: 250px;
        height: 250px;
        top: 0px;
        left: 0px;
    }
}


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

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