

/* Filename: /var/www/html/wp-content/themes/marksaanhangerwereld/less/0.base.less */

html, body, div, applet, object, iframe,
blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input {
	margin: 0;
	padding: 0;
	border: 0;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	overscroll-behavior-x: none;
	overflow: hidden;
	overflow-y: scroll;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

html, body {
	font-family: @main-font;
	margin: 0;
	padding: 0;
	font-size: 14px;
	width: 100%;
	height: 100%;
	font-weight: 400;
	line-height: 22px;

}

h1 {
	@media only screen and (max-width: @screen__m) {
        line-height: 32px;
    }
}

img {
	@media only screen and (max-width: @screen__m) {
        height: auto;
    }
}

* {
	box-sizing: border-box;
}

*:focus {
    outline: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: inherit;

	@media only screen and (max-width: @screen__l) {
        padding: 0px 15px;
    }
}

a {
	color: @default-link-color;
	text-decoration: underline;
	font-weight: bold;
}

p {
	margin: 0 0 1em;
	font-size: 16px;

	@media only screen and (max-width: @screen__m) {
		font-size: 14px;
		line-height: 22px;
	}
}

label {

}

textarea, input {
	margin: 0em;
    padding: 1px 0px;
	border-width: 2px;
    border-style: inset;
    border-color: initial;
    border-image: initial;
	padding: 10px;
	width: 100%;
	border-width: 1px;
	font-family: @main-font;
}

button, input[type=submit] {
	padding: 12px;
	color: white;
	background-color: @dfeault-button-color;
	border: 0px;
	width: 100%;
	cursor: pointer;
	text-transform: uppercase;
	font-family: @main-font;
	font-weight: 700;
	transition: 0.3s ease;

	&.ag-button {
		padding: 12px !important;

		b {
			background: transparent !important;
			border-radius: 0;
			padding: 0;
			margin-top: 0;
		}
	}
}
button:hover, input[type=submit]:hover {
	background-color: @dfeault-button-color-hover;
}


/* Filename: /var/www/html/wp-content/themes/marksaanhangerwereld/less/1.utils.less */

@screen__xxs: 320px;
@screen__xs: 480px;
@screen__s: 640px;
@screen__m: 769px;
@screen__l: 1024px;
@screen__xl: 1440px;

.clear:before, .clear:after {
	content: " ";
	display: table;
}
.clear:after { clear: both; }
.floatl { float: left; }
.floatr { float: right; }

.tstart { text-align: left; }
.tmid { text-align: center; }
.tend { text-align: right; }

.h100 { height: 100%; }

.col-2 { width: 50%; }
.col-3 { width: 33.33%; }
.col-4 { width: 25%; }

.row-2 { height: 50%; }
.row-3 { height: 33.33%; }
.row-4 { height: 25%; }

.flex { display: flex; }

.relative { position: relative; }
.absolute { position: absolute; }


/* Filename: /var/www/html/wp-content/themes/marksaanhangerwereld/less/2.color.less */

//Font
@main-font: 'Montserrat', serif;

//Default`
@main-background-color: #222222;
@default-link-color: #222222;

//Company
@pri-main-company-color: #a31a1a;


//Footer
@default-footer-link-color: #999999;
@default-footer-link-color-hover: #a31a1a;

//button
@dfeault-button-color: #a31a1a;
@dfeault-button-color-hover: #c21111;


/* Filename: /var/www/html/wp-content/themes/marksaanhangerwereld/less/3.main.less */

main {
    margin-top: 96px;

    @media only screen and (max-width: @screen__m) {
        margin-top: 60px;
    }
}


/* Filename: /var/www/html/wp-content/themes/marksaanhangerwereld/less/4.nav.less */

nav {
    width: 100%;

    @media only screen and (max-width: @screen__m) {
        background-color: white;
        position: fixed;
        left: 0px;
        top: 60px;
        right: 0px;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden;
    }

    .header-menu {
        display: inline-block;
    }

    ul {
        list-style-type: none;
        height: 100%;

        li {
            display: inline-block;
            border-top: 4px solid transparent;
            transition: 0.1s linear;
            height: 100%;
            padding-right: 10px;
            padding-left: 10px;
            font-weight: bold;
            height: 96px;

            @media only screen and (max-width: @screen__m) {
                width: 100%;
                min-height: 50px;
                height: auto;
                text-align: center;
                padding-right: 0px;
                padding-left: 0px;
                line-height: initial;
                height: auto;
            }


            @media only screen and (min-width: @screen__m) and (max-width: @screen__l) {
                padding-right: 8px;
                padding-left: 8px;
            }

            &.current-menu-item{
                border-top: 4px solid @pri-main-company-color;
            }

            .sub-menu {
                display: none;
                line-height: initial;
                height: auto;
            }

            a {
                display: inline-block;
                text-transform: uppercase;
                line-height: 50px;
            }
        }

        li {

            .sub-menu {
                background-color: white;
                position: absolute;
                min-width: 120px;
                max-width: 200px;
                height: auto;
                text-align: left;
                box-shadow: 0px 4px 10px 0px rgba(34,34,34,0.07);

                @media only screen and (max-width: @screen__m) {
                    // position: initial;
                    width: ~"calc(100% - 20px)";
                    margin: 10px;
                    min-width: 120px;
                    max-width: 100%;
                    box-shadow: initial;
                    border: 1px solid @pri-main-company-color;
                    border-bottom: 1px solid @pri-main-company-color;
                }

                li {
                    width: 100%;
                    line-height: 42px;
                    border-top: 0px;
                    height: auto;

                    @media only screen and (max-width: @screen__m) {
                        height: auto;
                    }

                    &:hover {

                        background-color: @pri-main-company-color;

                        a {
                            color: white !important;
                        }
                    }
                }
            }
        }

        li:hover {
            border-top: 4px solid @pri-main-company-color;

            .sub-menu {
                display: block;

            }
        }

        li::before {
          content: "";
          display: inline-block;
          height: 100%;
          vertical-align: middle;
          width: 0px;
        }
    }
}


/* Filename: /var/www/html/wp-content/themes/marksaanhangerwereld/less/5.assets.less */

blockquote {
    border-top: 3px solid #ebeced;
    border-bottom: 3px solid #ebeced;
    text-align: center;
    padding: 30px 10%;

    p {
        font-size: 32px !important;
        line-height: 40px !important;
        font-weight: 100;
        font-style: italic;
    }

    cite {
        
    }
}


/* Filename: /var/www/html/wp-content/themes/marksaanhangerwereld/less/10.header.less */

.admin-bar {
    header {
        top: 31px;
    }
}

header {
    width: 100%;
    height: 96px;
    box-shadow: 0px 4px 10px 0px rgba(34,34,34,0.07);
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 99;

    @media only screen and (max-width: @screen__m) {
        height: 60px;
    }

    a {
        text-decoration: none;
    }

    .upper{
        width: 100%;
        height: 44px;
        background-color: @main-background-color;
    }

    .main{
        width: 100%;
        height: 100%;
        background-color: #ffffff;

        .container {
            @media only screen and (max-width: @screen__m) {
                padding: 0px;
            }
        }

        .logo{
            width: 160px;
            display: inline-block;
            height: 100%;
            padding: 10px;

            @media only screen and (max-width: @screen__m) {
                margin: 0 auto;
                text-align: center;
                padding-left: 30px;
            }

            a{
                display: block;
                width: inherit;
                height: inherit;
            }

            img{
                height: 100%;
            }
        }

        .menu-toggle {
            display: none;

            @media only screen and (max-width: @screen__m) {
                display: block;
                font-size: 26px;
                float:right;
                height: 60px;
                width:60px;
                padding: 18px;
            }
        }

        nav{
            width: ~"calc(100% - 100px);";
            display: inline-block;
            height: auto;


            &.active {
                @media only screen and (max-width: @screen__l) {
                    height: ~"calc(100% - 60px)";
                }
            }


            @media only screen and (max-width: @screen__m) {
                width: 100% !important;
                max-width: 100% !important;
                height: 0px;
                overflow: scroll;
            }

            @media only screen and (min-width: @screen__m) and (max-width: @screen__l) {
                font-size: 12px;
                overflow: scroll;
            }
        }
    }
}


/* Filename: /var/www/html/wp-content/themes/marksaanhangerwereld/less/11.footer.less */

footer {
    background-color: @main-background-color;
    padding: 20px;

    @media only screen and (max-width: @screen__m) {
        padding: 20px 0px 0px 0px;
    }

    a {
        color: @default-footer-link-color;
        text-decoration: none;
    }

    .flex {
        @media only screen and (max-width: @screen__m) {
            display: block;
        }
    }

    section {

        .links, .products, .social {
            @media only screen and (max-width: @screen__m) {
                width: 100%;
                text-align: center;
            }
        }
    }

    a:hover {
        color: @default-footer-link-color-hover;
        text-decoration: underline;
    }

    h2 {
        font-size: 16px;
        font-weight: 900;
        text-transform: uppercase;
        font-style: normal;
        text-decoration: none;
        line-height: 1.7em;
        letter-spacing: 0px;
        color: white;
    }

    .top {
        padding: 40px 0px;

        @media only screen and (max-width: @screen__m) {
            width: 100%;
            padding: 0px;
        }

        .newsletter {
            padding-right: 5%;

            @media only screen and (max-width: @screen__m) {
                width: 100%;
                padding-right: 0%;
            }

            h2 {
                font-size: 30px;
                font-weight: 900;
                line-height: 1.33em;
                letter-spacing: 0px;
            }

            p {
                color: white;
            }

            span.EMAIL-label {
                display: none;
            }

            .yikes-easy-mc-email {
                width: ~"calc(100% - 200px)";
                display: inline-block;
                margin-right: 3px;
                height: 39px;
                border: 0px;

                @media only screen and (max-width: @screen__m) {
                    width: 100%;
                    margin-bottom: 10px;
                }
            }
            .yikes-easy-mc-submit-button {
                width: 150px;
                display: inline-block;

                @media only screen and (max-width: @screen__m) {
                    width: 100%;
                }
            }

            .textwidget {
                padding-top: 32px;
                color : white;
                font-size: 16px;
                line-height: 1.7em;
            }
        }

        .brands {
            padding-left: 5%;

            @media only screen and (max-width: @screen__m) {
                display: block;
                width: 100%;
                padding-left: 0%;
            }

            .logo {
                width: 25%;
                display: inline-block;
                overflow: hidden;
                padding: 10px;
                vertical-align: middle;

                img {
                    width: 80% !important;
                    filter: grayscale(100%);
                    max-height: 80%;
                }
            }
        }
    }

    .bottom {
        .menu {

            ul {
                padding: 0;

                li {
                    font-size: 14px;
                    font-weight: 900;
                    line-height: 32px;
                }
            }
        }

        .social {

            img {
                height: 40px;
                margin-right: 5px;
            }
        }
    }

    .copyright {
        padding: 40px 0px 10px 0px;
        text-align: center;

        color: @default-footer-link-color;

        @media only screen and (max-width: @screen__m) {
            padding: 20px 0px 20px 0px;
        }
    }




}


/* Filename: /var/www/html/wp-content/themes/marksaanhangerwereld/less/100.home.less */

.home-hero {
    background-color: #7d7a78;
    height: 480px;
    margin-bottom: 50px;
    border-bottom: 8px solid @pri-main-company-color;
    position: relative;

    @media only screen and (max-width: @screen__m) {
        height: 200px;
        margin-bottom: 15px;
    }

    @media only screen and (min-width: @screen__m) and (max-width: @screen__l) {
        height: 350px;
        margin-bottom: 15px;
    }

    .hero-image {
        overflow: hidden;
        width: 100%;
        height: 100%;

        img {
            object-fit: cover;
            width: 100%;
            height: 100%;
        }

    }

    .hero-content{
        position: absolute;
        top: 30px;
        width: 100%;

        .hero-description {
            text-align: center;

            h2 {
                color: white;
                font-size: 46px;

            }

            p {
                font-size: 24px;
                color: white;
                line-height: 36px;
            }
        }

        .hero-action {
            display: flex;
            text-align: center;
            margin: 0 auto;

            button {
                margin: 20px;
                max-width: 300px;
            }
        }
    }

}


/* Filename: /var/www/html/wp-content/themes/marksaanhangerwereld/less/105.contact.less */

.contact {

    .map {
        width: 100%;
        height: 400px;
    }

    .context {


        .container {
            display: flex;
            @media only screen and (max-width: @screen__m) {
                display: block;
            }
        }

        .content {
            width: ~"calc(100% - 400px)";
            padding-top: 20px;
            padding-right: 50px;

            @media only screen and (max-width: @screen__m) {
                width: 100%;
            }

            table {
                width: 100%;
                margin-bottom: 20px;

                tr {

                    td {
                        line-height: 32px;
                    }
                }
            }
        }

        .form {
            padding: 30px;
            width: 400px;
            box-shadow: 0px 4px 10px 0px rgba(34,34,34,0.07);
            background-color: white;
            position: relative;
            top: -20px;

            @media only screen and (max-width: @screen__m) {
                width: 100%;
                top: 0px;
                padding: 0px;
                box-shadow: initial;
            }
        }
    }

}


/* Filename: /var/www/html/wp-content/themes/marksaanhangerwereld/less/information-no-header.less */

.page-template-informatie-no-header {

    .information {
        position: relative;

        .title-wrapper {
            position: relative;
            z-index: 2;
            width: 1200px;
            margin: 0 auto;
            max-width: 1200px;
            text-align: center;
            padding: 20px 0px;

            @media only screen and (max-width: @screen__l) {
                max-width: 100%;
                width: 100%;
                right: 0px;
                top: 0px;
                position: relative;
                padding: 0px;
            }

            .title {
                display: inline-block;
                font-size: 32px;

                @media only screen and (max-width: @screen__m) {
                    background-color: @pri-main-company-color;
                    color: white;
                    display: inline-block;
                    padding: 0px;
                    font-size: 22px;
                    margin: 0px;
                    text-align: center;
                    width: 100%;
                }
            }
        }


        .context {
            position: relative;
            z-index: 1;
            width: 100%;

            * {
                max-width: 1200px;
                margin: 0 auto;
            }

            img {
                max-width: 100%;
                width: 100% !important;
            }

            .wp-block-columns {
                margin-bottom: 30px;

                .wp-block-image:last-child {
                    margin: 0px 0px 0px 20px;
                }

                .wp-block-image:first-child {
                    margin: 0px 20px 0px 0px;
                }
            }

            figure {

                figcaption {
                    text-align: center;
                    font-size: 16px;
                }
            }

            figure.hero{
                width: 100% !important;
                max-width: 100% !important;
                height: 600px;
                margin-bottom: 20px;
                overflow: hidden;

                img {
                    height: 600px;
                    object-fit: cover;
                    width: 100% !important;
                    max-width: 100% !important;
                    border-bottom: 8px solid @pri-main-company-color;
                }
            }

            ul {
                list-style-type: inherit;

                @media only screen and (max-width: @screen__l) {
                    padding-left: 15px;
                }

                li {
                    margin-left: 18px;
                    font-size: 16px;
                    line-height: 32px;

                    @media only screen and (max-width: @screen__l) {
                        font-size: 14px;
                        line-height: 22px;
                    }
                }
            }

            p {
                font-size: 16px;
                line-height: 32px;
                margin-top: 15px;
                margin-bottom: 15px;

                @media only screen and (max-width: @screen__l) {
                    font-size: 14px;
                    line-height: 22px;
                    padding: 0px 15px 0px 15px;
                }
            }

            h2 {
                font-size: 30px;
                margin-bottom: 30px;
                margin-top: 40px;

                @media only screen and (max-width: @screen__m) {
                    padding: 0px 15px 0px 15px;
                    line-height: 32px;
                    margin-bottom: 0px;
                    margin-top: 10px;
                }
            }

            h3 {
                font-size: 20px;
                margin-bottom: 10px;
                margin-top: 40px;

                @media only screen and (max-width: @screen__m) {
                    padding: 0px 15px 0px 15px;
                    margin-bottom: 0px;
                    margin-top: 10px;
                }
            }

        }
    }
}


/* Filename: /var/www/html/wp-content/themes/marksaanhangerwereld/less/information.less */

.page-template-informatie {

    .information {
        position: relative;

        .title-wrapper {
            position: absolute;
            z-index: 2;
            width: 1200px;
            margin: 0 auto;
            max-width: 1200px;
            right: ~"calc( (100% - 1200px) / 2 )";
            top: 510px;

            @media only screen and (max-width: @screen__l) {
                right: initial;
                left: 0px;
            }

            @media only screen and (max-width: @screen__m) {
                max-width: 100%;
                width: 100%;
                right: 0px;
                top: 0px;
                position: relative;
            }

            .title {
                background-color: @pri-main-company-color;
                color: white;
                display: inline-block;
                padding: 20px 30px;
                font-size: 32px;

                @media only screen and (max-width: @screen__m) {
                    font-size: 22px;
                    margin: 0px;
                    text-align: center;
                    width: 100%;
                }
            }
        }


        .context {
            position: relative;
            z-index: 1;
            width: 100%;

            * {
                max-width: 1200px;
                margin: 0 auto;

                @media only screen and (max-width: @screen__l) {
                    max-width: 100%;
                    margin: 0px;
                }
            }

            .wp-block-column:not(:only-child) {
                @media only screen and (min-width: 600px) and (max-width: 781px) {
                    flex-basis: ~"calc(50% - 0em)" !important;
                }
            }

            p {
                @media only screen and (max-width: @screen__l) {
                    padding: 0px 15px 0px 15px;
                    box-sizing: border-box;
                }
            }

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

            .wp-block-columns {
                margin-bottom: 30px;

                // @media only screen and (max-width: @screen__m) {
                //     padding: 0px 15px 0px 15px;
                // }

                .wp-block-image:last-child {
                    margin: 0px 0px 0px 20px;

                    @media only screen and (max-width: @screen__m) {
                        margin: 0px;
                    }
                }

                .wp-block-image:first-child {
                    margin: 0px 20px 0px 0px;

                    @media only screen and (max-width: @screen__m) {
                        margin: 0px;
                    }
                }
            }

            figure {

                figcaption {
                    text-align: center;
                    font-size: 16px;
                }
            }

            figure.hero{
                width: 100% !important;
                max-width: 100% !important;
                height: 600px;
                margin-bottom: 20px;
                overflow: hidden;

                @media only screen and (max-width: @screen__m) {
                    height: 200px;
                }

                img {
                    height: 600px;
                    object-fit: cover;
                    width: 100% !important;
                    max-width: 100% !important;
                    border-bottom: 8px solid @pri-main-company-color;

                    @media only screen and (max-width: @screen__m) {
                        height: 200px;
                    }
                }
            }

            p {
                font-size: 16px;
                line-height: 32px;
                margin-top: 15px;
                margin-bottom: 15px;

                @media only screen and (max-width: @screen__m) {
                    font-size: 14px;
                    line-height: 22px;
                }
            }

            h2 {
                font-size: 30px;
                margin-bottom: 30px;
                margin-top: 40px;


                @media only screen and (max-width: @screen__l) {
                    padding: 0px 15px 0px 15px;
                    line-height: 32px;
                    margin-bottom: 0px;
                    margin-top: 10px;
                }
            }

            h3 {
                font-size: 20px;
                margin-bottom: 10px;
                margin-top: 40px;

                @media only screen and (max-width: @screen__l) {
                    padding: 0px 15px 0px 15px;
                    margin-bottom: 0px;
                    margin-top: 10px;
                }
            }

            .spc-block {
                margin-top: 25px;
            }
        }
    }
}
