body {
    font-family: aktiv-grotesk, sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #000;
    font-weight: 300;
}

b, strong, .bold {
    font-weight:600;
}

input[type=text], select, textarea {
    font-family: aktiv-grotesk, sans-serif;
    border-radius: 0;
    border: 1px solid #000;
    padding: 5px 10px;
}

input[type=text], select {
    height: 34px;
}

input[type=checkbox] {
    margin-right: 5px;
}

input[type=file] {
    font-family: aktiv-grotesk, sans-serif;
    font-size: 14px;
    background: none;
}

h1, .h1 {
    font-family: termina, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.8em;
    line-height: 1.1;
    text-transform:uppercase;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-bottom: 25px;
}

h2, .h2 {
    font-family: termina, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.6em;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-bottom: 20px;
}

h3 {
    font-family: termina, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.2em;
    line-height: 1.1;
}

h4 {
  font-size: 1em;
  line-height:1;
  font-weight:600;
}

a:hover, a:focus, a:active {
    color: inherit;
}

@media (min-width: 576px) {

    h1 {
        font-size: 2em;
    }

}

@media (min-width: 1200px) {

    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 2.1em;
    }

    h3 {
        font-size: 1.5em;
    }

    /*body {
        font-size: 1.2em;
    }*/

}


@media (min-width: 1600px) {

    h1 {
        font-size: 2.8em;
    }

    h2 {
        font-size: 2.3em;
    }

}


/************ ANIMATIONS **********/

.animationDelay03 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.animationDelay05 {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.animationDelay07 {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.animationDelay09 {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

.animationDelay10 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

@keyframes fadeIn {
    to {
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    to {
        opacity: 1
    }
}

.animatedFadeIn {
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    opacity: 0
}

.fadeIn {
    opacity: 0;
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn;
}

@keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

.animatedFadeInUp {
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    opacity: 0
}

.fadeInUp {
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

@keyframes fadeInLeft {
    from {
        transform: translate3d(40px,0,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

@-webkit-keyframes fadeInLeft {
    from {
        transform: translate3d(40px,0,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

.animatedFadeInLeft {
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    opacity: 0
}

.fadeInLeft {
    opacity: 0;
    animation-name: fadeInLeft;
    -webkit-animation-name: fadeInLeft;
}


/************ HEADER **********/
header {
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;
}

        header.transparent div {
            z-index: 2;
        }

    header #top {
        display: flex;
        justify-content: space-between;
        background-color: #000000;
        border-bottom: 1px solid #C3C3C3;
        padding: 15px 15px 15px 15px;
        z-index: 3;
        position: relative;
        height: 45px;
    }

        header #top > div {
            display: flex;
            font-size: 0.9em;
            color: #d1d1d1;
            line-height: 1.2em;
        }

        header #top .left {
            display:none;
        }

            header #top .left .openinghours {
                padding-left: 20px;
                position: relative;
                transition: color 0.3s ease-in-out;
            }

            header #top .left .openinghours:hover {
                color: white;
            }

                header #top .left .openinghours:before {
                    content: '';
                    position: absolute;
                    left: 0;
                    top: 0px;
                    width: 13px;
                    height: 13px;
                    background-image: url(../images/icon-openinghours.svg);
                    background-repeat: no-repeat;
                    background-size: contain;
                    transition: all 0.3s ease-in-out;
                }

                header #top .left .openinghours:hover:before {
                    background-image: url(../images/icon-openinghours-hover.svg);
                }

        header #top .left .address {
            padding-left: 18px;
            position: relative;
        }

            header #top .left .address:before {
                content: '';
                position: absolute;
                left: 0;
                top: 0px;
                width: 11px;
                height: 13px;
                background-image: url(../images/icon-address.svg);
                background-repeat: no-repeat;
                background-size: contain;
                transition: all 0.3s ease-in-out;
            }

            header #top .left .address:hover:before {
                background-image: url(../images/icon-address-hover.svg);
            }

        header #top a {
            text-decoration: none;
            color: inherit;
            display: inline-block; /*
            border-bottom: 1px solid black;
            transition: border 0.3s ease-in-out;*/
            transition: all 0.3s ease-in-out;
        }

            header #top a:hover, header #top a:focus, header #top a:active {
                /*border-color: #C3C3C3;*/
                color: white;
            }

        header #top .right {
            width: 100%;
            justify-content: space-between;
        }

        header #top .right .mail {
            padding-left: 24px;
            position: relative;
            display: none;
        }

            header #top .right .mail:before {
                content: '';
                position: absolute;
                left: 0;
                top: 0px;
                width: 17px;
                height: 13px;
                background-image: url(../images/icon-mail.svg);
                background-repeat: no-repeat;
                background-size: contain;
                transition: all 0.3s ease-in-out;
            }

            header #top .right .mail:hover:before {
                background-image: url(../images/icon-mail-hover.svg);
            }

        header #top .right .phone {
            padding-left: 23px;
            position: relative;
            display: none;
        }

            header #top .right .phone:before {
                content: '';
                position: absolute;
                left: 0;
                top: -2px;
                width: 18px;
                height: 18px;
                background-image: url(../images/icon-phone.svg);
                background-repeat: no-repeat;
                background-size: contain;
                transition: all 0.3s ease-in-out;
            }

            header #top .right .phone:hover:before {
                background-image: url(../images/icon-phone-hover.svg);
            }

        header #top .right .sidenav {
            display: none;
        }

        header #top .right .sidenav ul {
            display: flex;
            align-items: center;
            margin: 0;
            padding-left: 0;
            list-style: none;
        }

            header #top .right .sidenav ul li {
                margin-right: 25px;
            }

            header #top .right .sidenav ul li:last-child {
                margin-right: 0;
            }

            header #top .right .sidenav ul li a {
                text-transform:lowercase;
            }

        header #top .right .socialmedia ul {
            display: flex;
            align-items: center;
            margin: 0;
            padding-left: 0;
            list-style: none;
        }

            header #top .right .socialmedia ul li {
                margin-right: 8px;
            }

                header #top .right .socialmedia ul li:last-child {
                    margin-right: 0;
                }

            header #top .right .socialmedia ul li a {
                position:relative;
                padding: 0 2px;
            }

                header #top .right .socialmedia ul li a span {
                    display: none;
                }

                header #top .right .socialmedia ul li a:before {
                    content: '';
                    display: inline-block;
                    position: relative;
                    left: 0;
                    top: 0;
                    background-repeat: no-repeat;
                    background-size: contain;
                    transition: all 0.3s ease-in-out;
                }

                header #top .right .socialmedia ul li a.facebook:before {
                    width: 7px;
                    height: 13px;
                    background-image: url(../images/icon-facebook-top.svg);
                }

                header #top .right .socialmedia ul li a.facebook:hover:before {
                    background-image: url(../images/icon-facebook-top-hover.svg);
                }

                header #top .right .socialmedia ul li a.linkedin:before {
                    width: 13px;
                    height: 13px;
                    background-image: url(../images/icon-linkedin-top.svg);
                }

                header #top .right .socialmedia ul li a.linkedin:hover:before {
                    background-image: url(../images/icon-linkedin-top-hover.svg);
                }

                header #top .right .socialmedia ul li a.instagram:before {
                    width: 13px;
                    height: 13px;
                    background-image: url(../images/icon-instagram-top.svg);
                }

                header #top .right .socialmedia ul li a.instagram:hover:before {
                    background-image: url(../images/icon-instagram-top-hover.svg);
                }

                header #top .right .socialmedia ul li a.youtube:before {
                    width: 19px;
                    height: 13px;
                    background-image: url(../images/icon-youtube-top.svg);
                }

                header #top .right .socialmedia ul li a.youtube:hover:before {
                    background-image: url(../images/icon-youtube-top-hover.svg);
                }

        header #top .right .language {
            position: relative;
        }

        header #top .right .language span {
            display:inline-block;
            cursor: pointer;
            padding-right: 15px;
        }

            header #top .right .language span:after {
                content: url(../images/language-arrow-down.svg);
                position: absolute;
                right: 0;
                top: 0px;
            }

            header #top .right .language ul {
                list-style: none;
                margin: 0;
                position: absolute;
                top: 100%;
                right: 0;
                z-index: 5;
                min-width: 100%;
                display: none;
                background-color: black;
                text-align: right;
                padding: 12px 15px 15px 15px;
                line-height: 1.4;
                white-space: nowrap;
            }

            /*header #top .right .language:hover ul {
                display: block;
            }*/

            header #top .right .language ul li {
                margin-bottom:10px;
            }

            header #top .right .language ul li:last-child {
                margin-bottom: 0;
            }

    header #navbar {
        width: 100%;
        padding: 15px 15px 15px 15px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        /*transition: background-color 0.5s ease-in-out;*/
        background-color: #b81f14;
    }

    header.transparent #navbar {
        background-color: transparent;
        position:relative;
    }

        header.transparent #navbar:before {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 150%;
            content: '';
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 55%, rgba(0, 0, 0, 0) 100%);
            z-index: 1;
        }

        header #navbar > div:first-child {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

    header #navbar .logo img {
        height: 60px;
        width: auto;
    }

    header #navbar .btn-nav {
        display: block;
        cursor: pointer;
        padding: 7px 0;
        position: relative;
        width: 30px;
    }

        header #navbar .btn-nav span {
            background-color: white;
            display: block;
            height: 3px;
            opacity: 1;
            transition: all 0.3s ease;
            width: 100%;
        }

        header #navbar .btn-nav:before, header #navbar .btn-nav:after {
            background-color: white;
            content: "";
            display: block;
            height: 3px;
            position: absolute;
            transition: all 0.3s ease;
            width: 100%;
        }

        header #navbar .btn-nav:before {
            left: 0;
            top: 0;
        }

        header #navbar .btn-nav:after {
            bottom: 0;
            left: 0;
        }

    header #navbar .nav {
        width: 100%;
        text-align: center;
        display:none;
    }

        header #navbar .nav ul {
            padding-left: 0;
            list-style: none;
            margin: 0 0 30px 0;
            font-size: 1.1em;
        }

        header #navbar .nav > ul > li {
            margin-top: 10px;
        }

            header #navbar .nav > ul > li > a {
                display: inline-block;
                text-transform: uppercase;
                color: white;
                font-size: 1.1em;
                font-weight: bold;
                text-decoration: none;
                padding: 4px;
                position: relative;
            }

            header #navbar .nav > ul > li > ul {
                margin:0;
            }

                header #navbar .nav > ul > li > ul > li > a {
                    display: inline-block;
                    color: white;
                    font-size: 0.9em;
                    text-decoration: none;
                    padding: 4px;
                    position: relative;
                }

    @media (min-width: 992px) {

        header #top {
            padding-left: 25px;
            padding-right: 25px;
        }

            header #top .left {
                display: flex;
            }

            header #top .left > div {
                margin-right: 50px;
            }

                header #top .left > div:last-child {
                    margin-right: 0;
                }

            header #top .right {
                width: auto;
                justify-content: flex-end;
            }

            header #top .right > div {
                margin-left: 50px;
            }

            header #top .right .sidenav {
                display: block;
            }

        header #navbar {
            padding-left: 25px;
            padding-right: 25px;
        }

            header #navbar .btn-nav {
                display: none;
            }

            header #navbar .nav {
                display: block !important;
                width: auto;
                margin-top: 0;
            }

            header #navbar > div:first-child {
                display: block;
                width: auto;
            }

                header #navbar .nav > ul {
                    display: flex;
                    align-items: center;
                    margin: 0;
                }

            header #navbar .nav > ul.sidenav {
                display: none;
            }

                    header #navbar .nav > ul > li {
                        margin-left: 15px;
                        margin-right: 15px;
                        position: relative;
                        margin-top: 0;
                    }

                        header #navbar .nav > ul > li:first-child {
                            margin-left: 0;
                        }

                        header #navbar .nav > ul > li:last-child {
                            margin-right: 0;
                        }

                        header #navbar .nav > ul > li > a.nav-home > img {
                            position: relative;
                            top: -2px;
                        }

                        header #navbar .nav > ul > li > a {
                            padding: 3px 3px;
                            font-size:0.9em;
                        }

                            header #navbar .nav > ul > li > ul > li > a {
                                font-size: 0.8em;
                            }

                            header #navbar .nav > ul > li > a.has-subnav {
                                margin-right: 16px;
                            }

                                header #navbar .nav > ul > li > a.has-subnav:after {
                                    content: url(../images/nav-arrow-down.svg);
                                    position: absolute;
                                    right: -16px;
                                    top: 1px;
                                }

                            header #navbar .nav > ul > li > a::before {
                                content: "";
                                position: absolute;
                                left: 0;
                                bottom: 0;
                                width: 100%;
                                height: 1px;
                                background: linear-gradient( to right, transparent, currentColor 30%, currentColor 70%, transparent );
                                opacity: 0;
                                transition: opacity 0.3s;
                            }

                            header #navbar .nav > ul > li:hover > a::before, header #navbar .nav > ul > li > a:active::before, header #navbar .nav > ul > li > a:focus::before {
                                opacity: 1;
                            }

            header.transparent #navbar .nav > ul > li > a {
                border-color: transparent;
            }

            header #navbar .nav > ul > li.contact:hover > a {
                color: #eeedec !important;
                background-color: #225001 !important;
            }

        header #navbar .nav > ul > li > ul {
            position: absolute;
            top: 100%;
            left: 0;
            z-index: 10;
            float: left;
            min-width: 100%;
            display: none;
            background-color: #b81f14;
            text-align: left;
            padding: 10px 15px 10px 15px;
            line-height: 1.4;
            white-space: nowrap;
        }

        header.transparent #navbar .nav > ul > li > ul {
            /*background-color: rgba(0,0,0,0.35);*/
            /*background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 35%);*/
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 15%, rgba(0, 0, 0, 0.5) 35%);
        }

        header #navbar .nav > ul > li > ul > li {
            margin-bottom: 5px;
        }

        header #navbar .nav > ul > li > ul > li:last-child {
            margin-bottom: 0;
        }

        header #navbar .nav > ul > li:hover > ul {
            display: block;
        }

    }

    @media (min-width: 1200px) {

        header #navbar .nav > ul > li > a {
            font-size: 1em;
        }

    }

    @media (min-width: 1400px) {

        header #top {
            padding-left: 35px;
            padding-right: 35px;
        }

            header #top .right .mail, header #top .right .phone {
                display: block;
            }

        header #navbar {
            padding-left: 35px;
            padding-right: 35px;
        }

            header #navbar .nav > ul > li > a {
                font-size: 1.1em;
            }

            header #navbar .nav > ul > li > ul > li > a {
                font-size: 0.85em;
            }
    }

    @media (min-width: 1600px) {

        header #top {
            padding-left: 50px;
            padding-right: 50px;
        }

            header #top > div {
                font-size: 0.95em;
            }

        header #navbar {
            padding-left: 50px;
            padding-right: 50px;
        }
    }


/************ MOBILE MENU **********/
@media (max-width: 991px) {

    .mobile-nav-open header.transparent #navbar {
        background-color: #b81f14;
    }

    .mobile-nav-open header.transparent:before {
        display:none;
    }

    .mobile-nav-open header #navbar .btn-nav:before {
        transform: rotate(45deg) translateX(5px) translateY(5px);
    }

    .mobile-nav-open header #navbar .btn-nav span {
        opacity: 0;
    }

    .mobile-nav-open header #navbar .btn-nav:after {
        transform: rotate(-45deg) translateX(5px) translateY(-5px);
    }

    .mobile-nav-open header {
        position:relative;
    }

        .mobile-nav-open header.transparent #navbar:before {
            display:none;
        }

    .mobile-nav-open header #top {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10;
    }

        .mobile-nav-open header #navbar > div:first-child {
            position: fixed;
            top: 45px;
            left: 0;
            width: 100%;
            background-color: #b81f14;
            padding:15px 15px 20px 15px;
            z-index:10;
        }


        .mobile-nav-open header #navbar .nav {
            display: block;
            margin-top: 120px;
        }

    .mobile-nav-open main, .mobile-nav-open footer {
        display:none;
    }

}

/************ FOOTER **********/

footer a {
    text-decoration:none;
}

        footer a:hover, footer a:focus, footer a:active {
            color: inherit;
        }

.footer {
    background-color: #B81F14;
    color: white;
    padding-top: 50px;
    padding-bottom: 20px;
    font-size: 0.95em;
}

    .footer .logo, .footer .address, .footer .contact, .footer .newsletter {
        text-align: center;
        padding-bottom: 30px;
    }

        .footer .contact a {
            display: inline-block;
            position:relative;
        }

        .footer .contact a:before {
            transition: all 0.3s ease-in-out;
            border-bottom: 1px solid white;
            content: "";
            position: absolute;
            left: 0;
            bottom: 1px;
            width: 100%;
            height: 1px;
            opacity: 0;
        }

            .footer .contact a:hover:before, .footer .contact a:focus:before, .footer .contact a:active:before {
                opacity: 0.7;
            }

    .footer .contact, .footer .newsletter {
        font-weight:600;
    }

    .footer .logo img {
        height: 60px;
    }

    .footer .newsletter .newsletter-text {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 15px;
    }

        .footer .newsletter .newsletter-form {
            display: flex;
            align-items: center;
            justify-content:center;
        }

            .footer .newsletter .newsletter-form input {
                border: 1px solid white;
                background-color: #B81F14;
                padding: 3px 35px 3px 15px;
                height: 32px;
                -webkit-border-radius: 20px;
                -moz-border-radius: 20px;
                border-radius: 20px;
                width: 250px;
            }

                .footer .newsletter .newsletter-form input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
                    color: white;
                    opacity: 1; /* Firefox */
                }

                .footer .newsletter .newsletter-form input:-ms-input-placeholder { /* Internet Explorer 10-11 */
                    color: white;
                }

                .footer .newsletter .newsletter-form input::-ms-input-placeholder { /* Microsoft Edge */
                    color: white;
                }

            .footer .newsletter .newsletter-form button {
                background-color: white;
                color: #B81F14;
                text-transform: uppercase;
                font-size: 0.9em;
                height: 32px;
                margin-left: -25px;
                -webkit-border-radius: 20px;
                -moz-border-radius: 20px;
                border-radius: 20px;
                padding: 3px 15px;
                cursor: pointer;
            }

    .footer .newsletter .newsletter-error, .footer .newsletter .newsletter-confirmation {
        display: none;
        margin-top: 10px;
    }

.bottom {
    background-color: #B81F14;
    color: white;
    padding-bottom: 15px;
    font-size: 0.85em;
}

    .bottom .wrapper {
        border-top: 1px solid #C3C3C3;
        padding-top: 15px;
    }

    .bottom .legal, .bottom .socialmedia {
        text-align: center;
    }

    .bottom .legal {
        padding-bottom: 12px;
    }

    .bottom .legal ul {
        padding-left: 0;
        margin: 0;
        list-style: none;
    }

        .bottom .legal ul li.madeby {
            display: none;
        }

        .bottom .legal ul li a {
            display: inline-block;
            position: relative;
        }

            .bottom .legal ul li a:before {
                transition: all 0.3s ease-in-out;
                border-bottom: 1px solid white;
                content: "";
                position: absolute;
                left: 0;
                bottom: 2px;
                width: 100%;
                height: 1px;
                opacity: 0;
            }

        .bottom .legal ul li a:hover:before, .bottom .legal ul li a:focus:before, .bottom .legal ul li a:active:before {
            opacity: 0.7;
        }

    .bottom .socialmedia {
        display: flex;
        align-items: center;
        justify-content:center;
        margin-top: 10px;
    }

        .bottom .socialmedia > span {
            text-transform: uppercase;
            padding-right: 15px;
            font-size: 0.95em;
        }

        .bottom .socialmedia ul {
            display: flex;
            align-items: center;
            margin: 0;
            padding-left: 0;
            list-style: none;
        }

            .bottom .socialmedia ul li {
                margin-right: 8px;
                line-height: 1;
            }

                .bottom .socialmedia ul li a {
                    position: relative;
                }

                    .bottom .socialmedia ul li a span {
                        display: none;
                    }

                    .bottom .socialmedia ul li a:before {
                        content: '';
                        display: inline-block;
                        position: relative;
                        left: 0;
                        top: 0;
                        background-repeat: no-repeat;
                        background-size: contain;
                        width: 24px;
                        height: 24px;
                    }

                    .bottom .socialmedia ul li a.facebook:before {
                        background-image: url(../images/icon-facebook-bottom.svg);
                    }

                    .bottom .socialmedia ul li a.linkedin:before {
                        background-image: url(../images/icon-linkedin-bottom.svg);
                    }

                    .bottom .socialmedia ul li a.instagram:before {
                        background-image: url(../images/icon-instagram-bottom.svg);
                    }

                    .bottom .socialmedia ul li a.youtube:before {
                        background-image: url(../images/icon-youtube-bottom.svg);
                    }

@media (min-width: 768px) {

    .bottom .wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

        .bottom .legal {
            padding-bottom: 0;
            display: flex;
        }

            .bottom .legal ul {
                display: flex;
                align-items: center;
            }

        .bottom .copyright, .bottom .legal ul li {
            margin-right: 30px;
        }

        .bottom .legal ul li:last-child {
            margin-right: 0;
        }

    .bottom .socialmedia {
        margin-top: 0;
    }

}

@media (min-width: 992px) {

    .footer {
        padding-bottom: 50px;
    }

    .footer .container {
        display:flex;
        flex-wrap: wrap;
    }

        .footer .logo, .footer .address, .footer .contact, .footer .newsletter {
            text-align: left;
        }

        .footer .logo {
            width: 35%;
            padding-right: 60px;
        }

        .footer .address {
            width: 35%;
            padding-right: 60px;
        }

        .footer .contact {
            width: 30%;
        }

        .footer .newsletter {
            width: 65%;
            margin-left: 35%;
            padding-right: 60px;
            padding-bottom:0;
        }

            .footer .newsletter .newsletter-text {
                padding-left: 0;
                padding-right: 0;
            }

            .footer .newsletter .newsletter-form {
                justify-content: flex-start;
            }

    .bottom {
        line-height: 1;
    }

        .bottom .legal ul li a:before {
            bottom: -3px;
        }

    .bottom .legal {
        display: flex;
    }

        .bottom .legal ul li.madeby {
            display: block;
        }

}

@media (min-width: 1200px) {

        .footer .logo {
            width: 25%;
        }

        .footer .address {
            width: 23%;
        }

        .footer .contact {
            width: 22%;
        }

        .footer .newsletter {
            width: 30%;
            padding-right: 0;
            margin-left: 0;
        }

}


/************ MAIN **********/

a.primary-button, button.primary-button, .primary-buttons a,
a.primary-button-with-arrow, button.primary-button-with-arrow, .primary-buttons-with-arrows a {
    display: inline-block;
    text-decoration: none;
    border: 1px solid #B81F14;
    color: #B81F14;
    background-color: transparent;
    padding: 3px 20px 3px 20px;
    height: 32px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

    a.primary-button:hover, a.primary-button:active, a.primary-button:focus,
    a.primary-button-with-arrow:hover, a.primary-button-with-arrow:active, a.primary-button-with-arrow:focus,
    button.primary-button:hover, button.primary-button:active, button.primary-button:focus,
    button.primary-button-with-arrow:hover, button.primary-button-with-arrow:active, button.primary-button-with-arrow:focus,
    .primary-buttons a:hover, .primary-buttons a:active, .primary-buttons a:focus,
    .primary-buttons-with-arrows a:hover, .primary-buttons-with-arrows a:active, .primary-buttons-with-arrows a:focus {
        background-color: #B81F14;
        color: white;
    }

    a.primary-button-with-arrow svg, button.primary-button-with-arrow svg, .primary-buttons-with-arrows a svg {
        height: 12px;
        width: auto;
        top: -1px;
        position: relative;
        margin-left: 5px;
    }

.primary-button-with-arrow svg path, .primary-buttons-with-arrows a svg path {
    transition: all 0.3s ease-in-out;
}

    .primary-button-with-arrow:hover svg path, .primary-button-with-arrow:focus svg path, .primary-button-with-arrown:active svg path,
    .primary-buttons-with-arrows a:hover svg path, .primary-buttons-with-arrows a:focus svg path, .primary-buttons-with-arrows a:active svg path {
        stroke: white;
    }


a.secondary-button, button.secondary-button, .secondary-buttons a {
    display: inline-block;
    text-decoration: none;
    border: 1px solid black;
    padding: 3px 20px 3px 20px;
    height: 32px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

    a.secondary-button:hover, a.secondary-button:active, a.secondary-button:focus,
    button.secondary-button:hover, button.secondary-button:active, button.secondary-button:focus,
    .secondary-buttons a:hover, .secondary-buttons a:active, .secondary-buttons a:focus {
        border: 1px solid #B81F14;
        color: #B81F14;
    }

.headerimg {
    margin-top: 45px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
    position:relative;
    margin-bottom:25px;
}

    .headerimg:after {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 75px;
        content: '';
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255,255, 0.5) 40%, rgba(255, 255,255, 1) 100%);
        z-index: 1;
    }

main ul {
    padding-left: 1.2em;
}

.review-slider {
    background-color: #EBEEF0;
}

    .review-slider .review .image {
        padding-bottom: 65%;
        position: relative;
        background-color: white;
        overflow: hidden;
    }

        .review-slider .review .image img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease-in-out;
        }

    .review-slider .review .text {
        padding: 35px 25px;
    }

        .review-slider .review .text .quote {
            font-weight: 600;
            font-size: 1.1em;
            line-height: 1.6;
            position: relative;
            padding-top: 24px;
        }

            .review-slider .review .text .quote:before {
                content: '';
                position: absolute;
                left: -6px;
                top: 0;
                width: 30px;
                height: 18px;
                background-image: url(../images/icon-quote.svg);
                background-repeat: no-repeat;
                background-size: contain;
            }

        .review-slider .review .text .name {
            margin-top: 20px;
            font-family: termina, sans-serif;
            font-weight: 700;
            color: #B81F14;
            font-size: 0.9em;
        }

    .review-slider .glide__arrows {
        display: none;
    }

@media (min-width: 768px) {

    .headerimg {
        height: 400px;
    }

        .headerimg:after {
            height: 100px;
        }

    .review-slider .glide__slide {
        height: auto;
    }

    .review-slider .review {
        display: flex;
        height: 100%;
    }

        .review-slider .review > div {
            width: 50%;
        }

        .review-slider .review .image {
            padding-bottom: 0;
        }
    

}

@media (min-width: 992px) {

    .headerimg {
        height: 450px;
    }

        .headerimg:after {
            height: 110px;
        }

    .review-slider .review {
        min-height: 300px;
    }

        .review-slider .review .text {
            padding: 40px 40px;
            max-width: 800px;
        }

}

@media (min-width: 1200px) {

    .headerimg {
        height: 500px;
        margin-bottom: 40px;
    }

    .headerimg + section h1 {
        margin-bottom: 35px;
    }

        .headerimg:after {
            height: 125px;
        }

    .review-slider .review {
        min-height: 400px;
    }

        .review-slider .review .text {
            padding: 50px 50px 120px 50px;
        }

            .review-slider .review .text .quote {
                font-size: 1.2em;
                padding-top: 24px;
            }

                .review-slider .review .text .quote:before {
                    width: 34px;
                    height: 20px;
                }

            .review-slider .review .text .name {
                font-size: 1em;
            }

    .review-slider {
        position: relative;
    }

        .review-slider .glide__arrows {
            display: block;
            position: absolute;
            bottom: 35px;
            left: calc(50% + 50px);
            display: flex;
        }

            .review-slider .glide__arrows .glide__arrow {
                cursor: pointer;
            }

                .review-slider .glide__arrows .glide__arrow:hover > svg > g > g {
                    fill: #B82013;
                }

        .review-slider .glide__arrows .glide__arrow:hover > svg > path {
            stroke: white;
        }

        .review-slider .glide__arrows .glide__arrow--right {
            margin-left: 15px;
        }



}

@media (min-width: 1400px) {

    .headerimg {
    }

    .review-slider .review .text {
        padding: 75px 60px 130px 60px;
    }

    .review-slider .review {
        min-height: 450px;
    }

    .review-slider .glide__arrows {
        bottom: 45px;
        left: calc(50% + 60px);
    }

}

@media (min-width: 1600px) {

    .headerimg {
        height: 600px;
    }

        .headerimg:after {
            height: 150px;
        }

    .review-slider .review .text .quote {
        font-size: 1.3em;
        padding-top: 28px;
    }

        .review-slider .review .text .quote:before {
            width: 38px;
            height: 24px;
        }

    .review-slider .review .text .name {
        font-size: 1.1em;
    }


}

@media (min-width: 1800px) {

    .headerimg {
        height: 650px;
    }

}

/************ HOME **********/

.b-home .fullscreen {
    height: 100vh;
    min-height: 450px;
    max-height: 600px;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #EBEEF0;
}

    .b-home .fullscreen .video-wrapper {
        width: 100%;
        height: 100%;
        position:relative;
    }

    .b-home .fullscreen video {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: -10;
        overflow: hidden;
    }

.b-home main h2 {
    text-transform: uppercase;
}

.b-home .intro {
    background-color: #EBEEF0;
}

    .b-home .intro .text {
        max-width: 1000px;
        width: 100%;
        padding: 50px 15px;
    }


    .b-home .intro .image > div {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 300px;
    }

.b-home .categories {
    margin-top: 60px;
    margin-bottom: 30px;
}

    .b-home .categories > div > div {
        padding-bottom: 65%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        margin-bottom: 30px;
        cursor: pointer;
        transition: opacity 0.3s;
    }

    .b-home .categories > div > div:hover {
        opacity:0.85;
    }

        .b-home .categories > div > div h2 {
            position: absolute;
            top: 20px;
            left: 20px;
            padding-right: 40px;
        }

            .b-home .categories > div > div h2:after {
                content: '';
                position: absolute;
                right: 0;
                top: 0px;
                width: 25px;
                height: 25px;
                background-image: url(../images/icon-arrow-black.svg);
                background-repeat: no-repeat;
                background-size: contain;
                transition: all 0.3s ease-in-out;
            }

        /*.b-home .categories > div > div:hover h2:after {
            background-image: url(../images/icon-arrow-black-hover.svg);
        }*/

.b-home .buy-sell {
    margin-top: 60px;
    margin-bottom: 60px;
}

    .b-home .buy-sell .links  {
        margin-top: 30px;
    }

    .b-home .buy-sell .links > div {
        border-top: 1px solid #C3C3C3;
    }

        .b-home .buy-sell .links > div:last-child {
            border-bottom: 1px solid #C3C3C3;
        }

        .b-home .buy-sell .links > div a {
            display: block;
            font-family: termina, sans-serif;
            font-weight: 700;
            font-size: 1.1em;
            line-height: 1.4;
            text-transform: uppercase;
            text-decoration: none;
            padding: 17px 0 14px 0;
            padding-right: 70px;
            position: relative;
            transition: color 0.3s ease-in-out;
        }

            .b-home .buy-sell .links > div a:hover {
                color: #B81F14;
            }

            .b-home .buy-sell .links > div a:before {
                content: '';
                position: absolute;
                right: 0;
                top: calc(50% - 15px);
                width: 30px;
                height: 30px;
                background-image: url(../images/icon-arrow-link.svg);
                background-repeat: no-repeat;
                background-size: contain;
                transition: all 0.3s ease-in-out;
            }

            /*.b-home .buy-sell .links > div a:hover:before {
                background-image: url(../images/icon-arrow-link-hover.svg);
            }*/

.b-home .new-cars {
    margin-top: 50px;
    margin-bottom: 30px;
    background-color: #B82013;
    background-color: #B82013;
    padding-top: 60px;
    padding-bottom: 70px;
}

    .b-home .new-cars .title h2 {
        color: white;
    }

    .b-home .new-cars .title a.primary-button {
        border: 1px solid white;
        color: white;
    }

        .b-home .new-cars .title a.primary-button:hover, .b-home .new-cars .title a.primary-button:active, .b-home .new-cars .title a.primary-button:focus {
            background-color: white;
            color: #B81F14;
        }

    .b-home .new-cars .slider {
        margin-top: 25px;
    }

    .b-home .new-cars .glide__track {
        z-index: 2;
        position: relative;
    }

    .b-home .new-cars .glide__arrows {
        display: none;
    }

    .b-home .new-cars .glide__slide {
        background-color: #C65248;
        color: white;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        overflow:hidden;
        cursor: pointer;
    }

        .b-home .new-cars .glide__slide .image {
            background-color:white;
            overflow:hidden;
        }

            .b-home .new-cars .glide__slide .image img {
                width: 100%;
                aspect-ratio: 16 / 9;
                object-fit: cover;
                transition: transform 0.4s ease-in-out;
            }

        .b-home .new-cars .glide__slide:hover .image img {
            transform: scale(1.03);
        }

        .b-home .new-cars .glide__slide .info {
            padding: 15px;
        }

            .b-home .new-cars .glide__slide .info .title {
                font-family: termina, sans-serif;
                font-weight: 700;
                font-size: 0.9em;
            }

            .b-home .new-cars .glide__slide .info .title a {
                text-decoration: none;
            }

            .b-home .new-cars .glide__slide .info .price {
                font-size: 0.9em;
            }

    .b-home .new-cars .glide__arrows {
        position: absolute;
        top: -50px;
    }

        .b-home .new-cars .glide__arrows > div {
            width: 30px;
            height: 30px;
            z-index: 2;
            cursor: pointer;
        }

.b-home main .newsletter {
    margin-top: 60px;
    margin-bottom: 60px;
}

.b-home main .newsletter .text {
    font-weight:600;
}

    .b-home main .newsletter .subscribe {
        margin-top: 20px;
    }

    .b-home main .newsletter .subscribe .form {
        display: flex;
        align-items: center;
    }

        .b-home main .newsletter .subscribe .form input {
            border: 1px solid black;
            padding: 3px 35px 3px 15px;
            height: 32px;
            -webkit-border-radius: 20px;
            -moz-border-radius: 20px;
            border-radius: 20px;
            width: 250px;
        }

        .b-home main .newsletter .subscribe .form button {
            background-color: #B81F14;
            color: white;
            text-transform: uppercase;
            font-size: 0.85em;
            height: 32px;
            margin-left: -25px;
            -webkit-border-radius: 20px;
            -moz-border-radius: 20px;
            border-radius: 20px;
            padding: 3px 15px;
            cursor: pointer;
        }

        .b-home main .newsletter .subscribe .newsletter-error, .b-home main .newsletter .subscribe .newsletter-confirmation {
            display: none;
            margin-top: 10px;
        }

.b-home .socialfeed {
    background-color: #EBEEF0;
    padding-top: 60px;
    padding-bottom: 70px;
}

.b-home .socialfeed .title h2 {
    margin-bottom: 15px;
}

    .b-home .socialfeed .links ul {
        display: flex;
        align-items: center;
        margin: 0;
        padding-left: 0;
        list-style: none;
    }

        .b-home .socialfeed .links ul li {
            margin-right: 8px;
        }

            .b-home .socialfeed .links ul li a {
                position: relative;
            }

                .b-home .socialfeed .links ul li a span {
                    display: none;
                }

                .b-home .socialfeed .links ul li a:before {
                    content: '';
                    display: inline-block;
                    position: relative;
                    left: 0;
                    top: 0;
                    background-repeat: no-repeat;
                    background-size: contain;
                    width: 32px;
                    height: 32px;
                }

                .b-home .socialfeed .links ul li a.facebook:before {
                    background-image: url(../images/icon-facebook-red.svg);
                }

                .b-home .socialfeed .links ul li a.linkedin:before {
                    background-image: url(../images/icon-linkedin-red.svg);
                }

                .b-home .socialfeed .links ul li a.instagram:before {
                    background-image: url(../images/icon-instagram-red.svg);
                }

                .b-home .socialfeed .links ul li a.youtube:before {
                    background-image: url(../images/icon-youtube-red.svg);
                }

.b-home .banners {
    background-color: #EBEEF0;
    padding-bottom: 40px;
}

.b-home .banners > div {
    text-align: center;
}

    .b-home .banners img {
        margin: 10px 30px 25px 0px;
        max-height: 80px;
        max-width: 220px;
        /*-webkit-filter: grayscale(100%);
        filter: grayscale(100%);
        opacity: 0.8;*/
    }

        .b-home .banners img:hover {
            /*-webkit-filter: none;
            filter: none;
            opacity: 1;
            transition: all 0.1s ease-in-out;*/
        }

    .b-home .banners a:last-child img {
        margin-right: 0;
    }



@media (min-width: 576px) {
    .b-home .intro .image > div {
        height: 350px;
    }

    .b-home .categories > div > div h2 {
        top: 35px;
        left: 35px;
    }

    .b-home main .newsletter .subscribe .form input {
        width: 320px;
    }
}

@media (min-width: 768px) {

    .b-home .fullscreen {
        max-height: 700px;
    }

    .b-home .intro .image > div {
        height: 450px;
    }

    .b-home .intro .text {
        padding: 50px 30px;
    }

    .b-home .categories {
        display: flex;
    }

        .b-home .categories > div {
            width: 50%;
        }

        .b-home .categories > div:nth-child(odd) {
            padding-right: 15px;
        }

            .b-home .categories > div:nth-child(even) {
                padding-left: 15px;
            }


            .b-home .categories > div > div {
                margin-bottom: 0;
            }

                .b-home .categories > div > div h2 {
                    top: 20px;
                    left: 20px;
                }

                .b-home .categories > div > div h2:after {
                    display:none;
                }

    .b-home .buy-sell .links > div {
        width: 600px;
    }

    .b-home .new-cars .title {
        display:flex;
        align-items:center;
        justify-content:space-between;
    }

        .b-home .new-cars .title h2 {
            margin-bottom: 0;
        }

    .b-home .new-cars .slider {
        margin-top: 30px;
    }

    .b-home .socialfeed .title {
        display:flex;
        justify-content:space-between;
    }

    .b-home .banners img {
        margin: 10px 50px 25px 0px;
        max-height: 90px;
    }

}

@media (min-width: 992px) {

    .b-home .fullscreen {
        max-height: 800px;
    }


    .b-home .intro .image > div {
        height: 500px;
    }

    .b-home .categories > div > div h2 {
        top: 25px;
        left: 25px;
    }

    .b-home .categories > div > div h2:after {
        display: block;
        right: 0;
        top: 0px;
        width: 26px;
        height: 26px;
    }

}


@media (min-width: 1200px) {

    .b-home .fullscreen {
        min-height: 800px;
        max-height: none;
    }

    .b-home .intro {
        display: flex;
        justify-content: center;
        flex-direction: row-reverse;
    }

        .b-home .intro .text {
            padding: 90px 75px;
            width: 50%;
        }

        .b-home .intro .image {
            width: 50%;
        }

            .b-home .intro .image > div {
                width: 100%;
                height: 100%;
            }

    .b-home .categories > div:nth-child(odd) {
        padding-right: 25px;
    }

    .b-home .categories > div:nth-child(even) {
        padding-left: 25px;
    }

    .b-home .categories > div > div h2 {
        top: 35px;
        left: 35px;
        padding-right: 45px;
    }

    .b-home .categories > div > div h2:after {
        width: 32px;
        height: 32px;
    }

    .b-home .buy-sell > div {
        display:flex;
    }

        .b-home .buy-sell > div > div {
            width: 50%;
        }

        .b-home .buy-sell .text {
            padding-right: 50px;
        }

        .b-home .buy-sell .links {
            margin-top: 5px;
            padding-left: 50px;
        }

        .b-home .buy-sell .links > div {
            width: 100%;
        }

            .b-home .buy-sell .links > div a {
                text-align:right;
            }

    .b-home .new-cars .glide__arrows > div {
        width: 32px;
        height: 32px;
    }

        .b-home .new-cars .glide__arrows > div > svg {
            width: 32px;
            height: 32px;
        }

    .b-home .new-cars .glide__arrows .glide__arrow:hover > svg > g > g {
        fill: white;
    }

    .b-home .new-cars .glide__arrows .glide__arrow:hover > svg > path {
        stroke: #B82013;
    }

    .b-home main .newsletter > div {
        display: flex;
    }

        .b-home main .newsletter > div > div {
            width: 50%;
        }

    .b-home main .newsletter .text {
        padding-right: 50px;
    }

    .b-home main .newsletter .subscribe {
        margin-top: 0;
        padding-left: 50px;
    }

        .b-home main .newsletter .subscribe .form input {
            width: 350px;
        }

}

@media (min-width: 1400px) {

    .b-home .intro .text {
        padding: 120px 100px;
    }

    .b-home .buy-sell .text {
        padding-right: 0;
    }

    .b-home .buy-sell .links {
        padding-left: 100px;
    }



}

@media (min-width: 1600px) {

    .b-home .categories {
        padding-left: 0;
        padding-right: 0;
    }

    .b-home .new-cars .slider {
        position: relative;
    }

    .b-home .new-cars .glide__arrows {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-between;
    }

    .b-home .new-cars .glide__arrow--left {
        position: relative;
        left: -50px;
        top: 35%;
        cursor: pointer;
    }

    .b-home .new-cars .glide__arrow--right {
        position: relative;
        right: -50px;
        top: 35%;
        cursor: pointer;
    }


}

/************ FOR SALE **********/

.b-forsale .intro {
    margin-bottom: 50px;
}

.b-forsale .intro > div {
    margin-bottom: 15px;
    /*max-width: 980px;*/
}

.b-forsale .filter {
    background-color: #EBEEF0;
    padding-top: 30px;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.b-forsale .filter .form .row > div {
    padding-bottom: 10px;
    display:flex;
    align-items:center;
}

    .b-forsale .filter .form .row > div label {
        width: 100px;
        font-weight: 600;
    }

    .b-forsale .filter .form .row > div input, .b-forsale .filter .form .row > div select {
        border: none;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
    }

    .b-forsale .filter .form .row > div > input, .b-forsale .filter .form .row > div > select, .b-forsale .filter .form .row > div > .range {
        width: calc(100% - 100px);
    }

    .b-forsale .filter .form .row > div > .range {
        display: flex;
        align-items:center;
    }

    .b-forsale .filter .form .row > div > .range > input {
        width: calc(50% - 10px);
    }

        .b-forsale .filter .form .row > div > .range > span {
            width: 20px;
            text-align:center;
        }

    .b-forsale .filter .form button {
        margin-left: 100px;
        min-width: 120px;
    }

.b-forsale .sort {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 35px;
}

.b-forsale .sort .count {
    display:none;
}

.b-forsale .sort .sort-wrapper {
    padding-left: 32px;
    position:relative;
}

    .b-forsale .sort .sort-wrapper:before {
        content: '';
        position: absolute;
        left: 0;
        top: 7px;
        width: 24px;
        height: 20px;
        background-image: url(../images/icon-sort.svg);
        background-repeat: no-repeat;
        background-size: contain;
    }

.b-forsale .list {
    margin-bottom: 65px;
}

.b-forsale .list .item {
    cursor: pointer;
    margin-bottom: 30px;
}

    .b-forsale .list .item .image {
        background-color: white;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        overflow: hidden;
    }

        .b-forsale .list .item .image .new {
            background-color: #B81F14;
            color: #fff;
            padding: 6px 12px;
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 11px;
            line-height: 1;
            text-transform: uppercase;
            display: block;
            -webkit-border-radius: 20px;
            -moz-border-radius: 20px;
            border-radius: 20px;
        }

        .b-forsale .list .item .image img {
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            transition: transform 0.4s ease-in-out;
        }

.b-forsale .list .item:hover .image img {
    transform: scale(1.03);
}

    .b-forsale .list .item .info {
        padding: 10px 15px 0 15px;
    }

.b-forsale .list .item .info .title {
    font-family: termina, sans-serif;
    font-weight: 700;
    font-size: 0.9em;
}

        .b-forsale .list .item .info .title a {
            text-decoration:none;
        }

        .b-forsale .list .item .info .price {
            font-size: 0.9em;
            color: #B81F14;
            font-weight: 500;
        }

            .b-forsale .list .item .info .price .previous-price {
                position: relative;
                display: inline-block;
                margin-right: 10px;
                color: black;
            }

                .b-forsale .list .item .info .price .previous-price:before {
                    top: 50%;
                    background: #B81F14;
                    opacity: .7;
                    content: '';
                    width: 107%;
                    position: absolute;
                    height: .1em;
                    border-radius: .1em;
                    left: -2%;
                    white-space: nowrap;
                    display: block;
                    transform: rotate(-15deg);
                }

@media (min-width: 600px) {

    .b-forsale .list {
        display: flex;
        flex-wrap: wrap;
        padding-left: 10px;
        padding-right: 10px;
    }

        .b-forsale .list > div {
            width: calc(50% - 20px);
            margin-left: 10px;
            margin-right: 10px;
        }

}



@media (min-width: 768px) {

    .b-forsale .filter .form .row {
        display: flex;
        align-items: center;
    }

    .b-forsale .filter .form .row > div {
        width: 50%;
    }

        .b-forsale .filter .form .row > div:first-child {
            padding-right: 25px;
        }

        .b-forsale .filter .form .row > div:last-child {
            padding-left: 25px;
        }

    .b-forsale .sort {
        justify-content: space-between;
    }

    .b-forsale .sort .count {
        display: block;
    }

    .b-forsale .list {
        padding-left: 15px;
        padding-right: 15px;
    }

        .b-forsale .list > div {
            width: calc(50% - 30px);
            margin-left: 15px;
            margin-right: 15px;
        }

}


@media (min-width: 992px) {

    .b-forsale .filter .form .row > div:first-child {
        padding-right: 35px;
    }

    .b-forsale .filter .form .row > div:last-child {
        padding-left: 35px;
    }

    .b-forsale .filter .form .row > div label {
        width: 120px;
    }

    .b-forsale .filter .form .row > div > input, .b-forsale .filter .form .row > div > select, .b-forsale .filter .form .row > div > .range {
        width: calc(100% - 120px);
    }

    .b-forsale .filter .form button {
        margin-left: 120px;
    }

    .b-forsale .list > div {
        width: calc(33.33% - 30px);
    }

}

@media (min-width: 1200px) {

    .b-forsale .intro {
        display:flex;
    }

    .b-forsale .intro > div {
        width: 50%;
    }

        .b-forsale .intro > div:first-child {
            padding-right: 50px;
        }

        .b-forsale .intro > div:last-child {
            padding-left: 50px;
        }

    .b-forsale .filter .form .row > div:first-child {
        padding-right: 50px;
    }

    .b-forsale .filter .form .row > div:last-child {
        padding-left: 50px;
    }

    .b-forsale .list {
        padding-left: 25px;
        padding-right: 25px;
    }

}

@media (min-width: 1400px) {

    .b-forsale .filter .form .row > div:first-child {
        padding-right: 75px;
    }

    .b-forsale .filter .form .row > div:last-child {
        padding-left: 75px;
    }

    .b-forsale .list > div {
        width: calc(25% - 30px);
    }

}


@media (min-width: 1600px) {

    .b-forsale .intro > div:first-child {
        padding-right: 75px;
    }

    .b-forsale .intro > div:last-child {
        padding-left: 75px;
    }

}




/************ FOR SALE DETAIL **********/

.b-forsale-detail .headerimg {
    background-position: center center;
    position:relative;
}

.b-forsale-detail .headerimg .buttons {
    display:none;
}

.b-forsale-detail .title {
}

.b-forsale-detail .title h1 {
    margin-bottom: 10px;
}

.b-forsale-detail .title .price {
    font-size: 1.3em;
    color: #B81F14;
    font-weight: 500;
}

    .b-forsale-detail .title .price .previous-price {
        position: relative;
        display: inline-block;
        margin-right: 20px;
        color: black;
    }

        .b-forsale-detail .title .price .previous-price:before {
            top: 50%;
            background: #B81F14;
            opacity: .7;
            content: '';
            width: 107%;
            position: absolute;
            height: .1em;
            border-radius: .1em;
            left: -2%;
            white-space: nowrap;
            display: block;
            transform: rotate(-15deg);
        }


.b-forsale-detail .exterior-interior {
}

    .b-forsale-detail .exterior-interior .exterior {
        width: 100%;
        margin-top: 30px;
        padding-bottom: 56%;
        position: relative;
    }

        .b-forsale-detail .exterior-interior .exterior .Sirv {
            position: absolute;
            height: 100%;
            width: 100%;
        }

            .b-forsale-detail .exterior-interior .exterior .Sirv .spin-figure {
                max-width: none !important;
                max-height: none !important;
                width: 100%;
            }

            .b-forsale-detail .exterior-interior .exterior .Sirv .spin-figure canvas {
                width: 100% !important;
                height: auto !important;
            }

    .b-forsale-detail .exterior-interior .interior {
        width: 100%;
        margin-top: 30px;
        height: 320px;
        position: relative;
    }

        .b-forsale-detail .exterior-interior .interior #panorama {
            position: absolute;
            height: 100%;
            width: 100%;
        }


.b-forsale-detail .description .specs {
    margin-top: 50px;
    background-color: #EBEEF0;
    padding: 20px;
}

.b-forsale-detail .description .specs > div {
    display:flex;
    margin-bottom: 7px;
}

    .b-forsale-detail .description .specs > div:last-child {
        margin-bottom: 0;
    }

    .b-forsale-detail .description .specs > div > strong {
        width: 160px;
    }

    .b-forsale-detail .description .specs > div > span {
        flex: 1 1 0;
        padding-right: 15px;
    }

.b-forsale-detail .description .tabs {
    margin-top: 50px;
}

    .b-forsale-detail .description .tabs .tab-titles {
        margin-top: 50px;
        display: flex;
        width: 100%;
    }

        .b-forsale-detail .description .tabs .tab-titles > a {
            flex: 1;
            text-decoration: none;
            padding: 10px;
            background-color: white;
            font-weight:600;
            text-align: center;
            border-top: 1px solid #EBEEF0;
            border-left: 1px solid #EBEEF0;
        }

        .b-forsale-detail .description .tabs .tab-titles > a:last-child {
            border-right: 1px solid #EBEEF0;
        }

        .b-forsale-detail .description .tabs .tab-titles > a.active {
            background-color: #EBEEF0;
        }

    .b-forsale-detail .description .tabs .tab-content > div {
        background-color: #EBEEF0;
        padding: 25px;
    }

.b-forsale-detail .opinion {
    margin-top: 50px;
    background-color: #EBEEF0;
}

    .b-forsale-detail .opinion .image {
        display:none;
    }

    .b-forsale-detail .opinion .text {
        background-color: #EBEEF0;
        padding: 25px;
    }

        .b-forsale-detail .opinion .text > div:first-child {
            position: relative;
            padding-top: 20px;
            font-weight:500;
        }

        .b-forsale-detail .opinion .text > div:first-child:before {
            content: '';
            position: absolute;
            left: -6px;
            top: 0;
            width: 30px;
            height: 18px;
            background-image: url(../images/icon-quote.svg);
            background-repeat: no-repeat;
            background-size: contain;
        }

    .b-forsale-detail .opinion .text .author {
        font-family: termina, sans-serif;
        font-weight: 700;
        color: #B81F14;
        margin-top: 15px;
    }


.b-forsale-detail .media {
    margin-top: 60px;
}


.b-forsale-detail .media .wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

    .b-forsale-detail .media .wrapper a {
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        overflow: hidden;
        position:relative;
    }

    .b-forsale-detail .media .wrapper a.video:before {
        width: 100%;
        height: 100%;
        position:absolute;
        content:'';
        background-color: rgba(0,0,0,0.2);
        z-index:1;
    }

        .b-forsale-detail .media .wrapper a > img {
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            transition: transform 0.4s ease-in-out;
        }

        .b-forsale-detail .media .wrapper a:hover > img:first-child {
            transform: scale(1.03);
        }

        .b-forsale-detail .media .wrapper a > img.play {
            height: 50px;
            width: 50px;
            position: absolute;
            left: calc(50% - 25px);
            top: calc(50% - 25px);
            z-index:2;
        }

        .b-forsale-detail .media a.primary-button svg {
            height: 14px;
            width: auto;
            top: -2px;
            position: relative;
            margin-left: 5px;
        }

            .b-forsale-detail .media a.primary-button svg line {
                transition: all 0.3s ease-in-out;
            }

    .b-forsale-detail .media a.primary-button:hover svg line, .b-forsale-detail .media a.primary-button:focus svg line, .b-forsale-detail .media a.primary-button:active svg line {
        stroke: white;
        stroke-width: 2;
    }

.b-forsale-detail .call-to-action {
    margin-top: 60px;
    background-color: #EBEEF0;
}

    .b-forsale-detail .call-to-action .text .wrapper {
        padding: 40px 25px;
    }

    .b-forsale-detail .call-to-action .text h2 {
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    .b-forsale-detail .call-to-action .text .primary-buttons-with-arrows a {
        margin-top: 15px;
        margin-right: 15px;
    }

    .b-forsale-detail .call-to-action .image {
        display: none;
    }


.b-forsale-detail .review-slider {
    margin-top: 60px;
}

.b-forsale-detail .related {
    margin-top: 60px;
    margin-bottom: 50px;
}

    .b-forsale-detail .related h2 {
        text-transform: uppercase;
    }

    .b-forsale-detail .related .slider {
        margin-top: 25px;
    }

    .b-forsale-detail .related .glide__track {
        z-index: 2;
        position: relative;
    }

    .b-forsale-detail .related .glide__arrows {
        display: none;
    }

    .b-forsale-detail .related .glide__slide {
        cursor: pointer;
    }

        .b-forsale-detail .related .glide__slide .image {
            background-color: white;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            border-radius: 5px;
            overflow: hidden;
        }

            .b-forsale-detail .related .glide__slide .image img {
                width: 100%;
                aspect-ratio: 16 / 9;
                object-fit: cover;
                transition: transform 0.4s ease-in-out;
            }

        .b-forsale-detail .related .glide__slide:hover .image img {
            transform: scale(1.03);
        }

        .b-forsale-detail .related .glide__slide .info {
            padding: 10px 15px;
        }

            .b-forsale-detail .related .glide__slide .info .title {
                font-family: termina, sans-serif;
                font-weight: 700;
                font-size: 0.9em;
            }

            .b-forsale-detail .related .glide__slide .info .title a {
                text-decoration: none;
            }

            .b-forsale-detail .related .glide__slide .info .price {
                font-size: 0.9em;
                color: #B81F14;
                font-weight: 500;
            }

                .b-forsale-detail .related .glide__slide .info .price .previous-price {
                    position: relative;
                    display: inline-block;
                    margin-right: 10px;
                    color: black;
                }

                .b-forsale-detail .related .glide__slide .info .price .previous-price:before {
                    top: 50%;
                    background: #B81F14;
                    opacity: .7;
                    content: '';
                    width: 107%;
                    position: absolute;
                    height: .1em;
                    border-radius: .1em;
                    left: -2%;
                    white-space: nowrap;
                    display: block;
                    transform: rotate(-15deg);
                }

    .b-forsale-detail .related .glide__arrows {
        position: absolute;
        top: -50px;
    }

        .b-forsale-detail .related .glide__arrows > div {
            width: 30px;
            height: 30px;
            z-index: 2;
            cursor: pointer;
        }


@media (min-width: 576px) {

    .b-forsale-detail .title .price {
        font-size: 1.4em;
    }

    .b-forsale-detail .exterior-interior .interior {
        height: 375px;
    }

    .b-forsale-detail .opinion {
        display: flex;
    }

    .b-forsale-detail .opinion .image {
        display: block;
        width: 175px;
    }

    .b-forsale-detail .opinion .text {
        flex: 1;
    }

    .b-forsale-detail .description .specs > div > strong {
        width: 200px;
    }

    .b-forsale-detail .media .wrapper {
        grid-template-columns: 1fr 1fr 1fr;
    }

}

@media (min-width: 768px) {

    .b-forsale-detail .exterior-interior .interior {
        height: 450px;
    }

    .b-forsale-detail .description .specs {
        padding: 30px;
    }

    .b-forsale-detail .description .tabs .tab-content > div {
        padding: 30px;
    }

    .b-forsale-detail .description .tabs .tab-titles > a {
        font-size: 1.1em;
    }

    .b-forsale-detail .opinion .text {
        padding: 35px;
    }

    .b-forsale-detail .call-to-action .text .wrapper {
        padding: 45px 35px;
    }

    .b-forsale-detail .related .slider {
        margin-top: 30px;
    }

}

@media (min-width: 992px) {

    .b-forsale-detail .headerimg .buttons {
        position: absolute;
        right: 20px;
        bottom: 15px;
        z-index: 2;
        display: flex;
    }

        .b-forsale-detail .headerimg .buttons a {
            margin-left: 15px;
        }

        .b-forsale-detail .headerimg .buttons a.photos {
            
        }

            .b-forsale-detail .headerimg .buttons a.photos svg {
                height: 14px;
                width: auto;
                top: -2px;
                position: relative;
                margin-right: 5px;
            }

            .b-forsale-detail .headerimg .buttons a.photos svg path {
                transition: all 0.3s ease-in-out;
            }

            .b-forsale-detail .headerimg .buttons a.photos:hover svg path, .b-forsale-detail .headerimg .buttons a.photos:focus svg path, .b-forsale-detail .headerimg .buttons a.photos:active svg path {
                fill: white;
            }

            .b-forsale-detail .headerimg .buttons a.video {
            }

                .b-forsale-detail .headerimg .buttons a.video svg {
                    height: 18px;
                    width: auto;
                    top: -1px;
                    position: relative;
                    margin-right: 5px;
                }

                    .b-forsale-detail .headerimg .buttons a.video svg > g > path {
                        transition: all 0.3s ease-in-out;
                    }

                .b-forsale-detail .headerimg .buttons a.video:hover svg > g > path, .b-forsale-detail .headerimg .buttons a.video:focus svg > g > path, .b-forsale-detail .headerimg .buttons a.video:active svg > g > path {
                    fill: white;
                }

                .b-forsale-detail .headerimg .buttons a.video svg > g > g {
                    transition: all 0.3s ease-in-out;
                }

                .b-forsale-detail .headerimg .buttons a.video:hover svg > g > g, .b-forsale-detail .headerimg .buttons a.video:focus svg > g > g, .b-forsale-detail .headerimg .buttons a.video:active svg > g > g {
                    stroke: white;
                }

    .b-forsale-detail .title {
        display:flex;
        justify-content:space-between;
        align-items:center;
    }

        .b-forsale-detail .title h1 {
            margin-bottom: 0;
            flex: 1;
        }

        .b-forsale-detail .title .price {
            white-space: nowrap;
            padding-left: 100px;
        }

       /* .b-forsale-detail .exterior-interior .exterior {
            display: block;
            height: 250px;
            width: 50%;
            overflow: hidden;
        }*/


    .b-forsale-detail .exterior-interior {
        display: flex;
    }

        .b-forsale-detail .exterior-interior .exterior {
            width: calc(50% - 25px);
            margin-right: 25px;
            padding-bottom: 27%;
        }

        .b-forsale-detail .exterior-interior .interior {
            width: calc(50% - 25px);
            margin-left: 25px;
            height: auto;
            padding-bottom: 27%;
        }

    .b-forsale-detail .description .specs {
        columns: 2;
        column-gap: 50px;
    }

        .b-forsale-detail .description .specs > div {
            break-inside: avoid;
        }

    .b-forsale-detail .media .wrapper {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .b-forsale-detail .call-to-action {
        display: flex;
        flex-direction: row-reverse;
    }

        .b-forsale-detail .call-to-action > div {
            width: 50%;
        }

    .b-forsale-detail .call-to-action .text {
        align-self: center;
    }

    .b-forsale-detail .call-to-action .text .wrapper {
        max-width: 680px;
    }

    .b-forsale-detail .call-to-action .image {
        display: block;
        min-height: 320px;
    }

    .b-forsale-detail .call-to-action .image > div {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 100%;
    }

    .b-forsale-detail .related h2 {
        margin-bottom:0;   
    }



}


@media (min-width: 1200px) {

    .b-forsale-detail .headerimg .buttons {
        right: 25px;
    }

    .b-forsale-detail .title .price {
        font-size: 1.5em;
    }

    .b-forsale-detail .description {
        display: flex;
    }

    .b-forsale-detail .description > div:first-child {
        width:50%;
        padding-right: 25px;
    }

    .b-forsale-detail .description > div:last-child {
        width: 50%;
        padding-left: 25px;
    }

        .b-forsale-detail .description .specs {
            columns: 1;
            column-gap: 0;
        }

        .b-forsale-detail .description .tabs {
            margin-top: 0;
        }

    .b-forsale-detail .call-to-action .image {
        display: block;
        min-height: 360px;
    }

    .b-forsale-detail .related .glide__arrows > div {
        width: 32px;
        height: 32px;
    }

        .b-forsale-detail .related .glide__arrows > div > svg {
            width: 32px;
            height: 32px;
        }

    .b-forsale-detail .related .glide__arrows .glide__arrow:hover > svg > g > g {
        fill: white;
    }

    .b-forsale-detail .related .glide__arrows .glide__arrow:hover > svg > path {
        stroke: #B82013;
    }

}

@media (min-width: 1400px) {

    .b-forsale-detail .headerimg {
        height: auto;
        padding-bottom: 40%;
    }

    .b-forsale-detail .exterior-interior .exterior {
        display: block;
        max-height: 375px;
        overflow: hidden;
    }

    .b-forsale-detail .description .specs {
        padding: 35px;
    }

    .b-forsale-detail .call-to-action .image {
        display: block;
        min-height: 420px;
    }

    .b-forsale-detail .description .tabs .tab-content > div {
        padding: 35px;
    }

    .b-forsale-detail .call-to-action .text .wrapper {
        padding: 50px 50px;
    }

}

@media (min-width: 1600px) {

    .b-forsale-detail .headerimg .buttons {
        right: calc(3% + 25px);
        bottom: 45px;
    }

    .b-forsale-detail .call-to-action .image {
        display: block;
        min-height: 450px;
    }

    .b-forsale-detail .related .slider {
        position: relative;
    }

    .b-forsale-detail .related .glide__arrows {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-between;
    }

    .b-forsale-detail .related .glide__arrow--left {
        position: relative;
        left: -50px;
        top: 35%;
        cursor: pointer;
    }

    .b-forsale-detail .related .glide__arrow--right {
        position: relative;
        right: -50px;
        top: 35%;
        cursor: pointer;
    }

}


/*********** CONTACT *************/

.b-contact .text {
    margin-bottom: 50px;
}

.b-contact .text h4 {
    margin-top: 30px;
}

.b-contact .text table {
    margin-bottom: 12px;
}

.b-contact .text table tr td {
    width: auto !important;
    padding-right: 50px;
    vertical-align:top;
}

    .b-contact .text table tr > td:last-child {
        padding-right: 0px;
    }

.b-contact .text .primary-buttons-with-arrows {
    margin-top: 15px;
}

.b-contact .text .primary-buttons-with-arrows a {
    margin-right: 15px;
}

.b-contact .form {
    background-color: #EBEEF0;
    padding: 25px 20px;
    margin-bottom: 50px;
    max-width: 700px;
}

    .b-contact .form > form > div {
        margin-bottom: 10px;
    }

/*    .b-contact .form > form > div:last-child {
        margin-bottom: 0px;
    }*/

    .b-contact .form input[type="text"], .b-contact .form select, .b-contact .form textarea {
        border: none;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        width: 100%;
    }

    .b-contact .form input[type="checkbox"] {
        position:relative;
        top: 1px;
    }

.b-contact .googlemap {
    margin-top: 50px;
}

@media (min-width: 1200px) {

    .b-contact .maincontent {
        display: flex;
        margin-top: 40px;
    }

        .b-contact .maincontent .text {
            width: calc(50% - 50px);
            margin-right: 50px;
        }

        .b-contact .maincontent .form {
            width: calc(50% - 50px);
            margin-left: 50px;
        }

    .b-contact .text h4:first-child {
        margin-top: 0;
    }

    .b-contact .form {
        padding: 35px 30px;
    }

}


/*********** SERVICES *************/

.b-services main {
    padding-bottom: 25px;
}

.b-services .maincontent .block {
    margin-bottom: 35px;
}

.b-services .maincontent .block .text {
    margin-bottom: 35px;
}

    .b-services .maincontent .block .image, .b-services .block .video {
        margin-bottom: 35px;
    }

.b-services .maincontent .block .image img {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.b-services .maincontent .block .video a {
    position: relative;
    display: inline-block;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
}

.b-services .maincontent .block .video a:before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: '';
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.b-services .maincontent .block .video a > img.play {
    height: 60px;
    width: 60px;
    position: absolute;
    left: calc(50% - 30px);
    top: calc(50% - 30px);
    z-index: 2;
}

.b-services .media {
    margin-top: 50px;
    margin-bottom: 35px;
}

    .b-services .media .wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

        .b-services .media .wrapper a {
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            border-radius: 5px;
            overflow: hidden;
            position: relative;
        }

            .b-services .media .wrapper a.video:before {
                width: 100%;
                height: 100%;
                position: absolute;
                content: '';
                background-color: rgba(0,0,0,0.1);
                z-index: 1;
            }

            .b-services .media .wrapper a > img {
                width: 100%;
                height: auto;
                aspect-ratio: 16 / 9;
                object-fit: cover;
                transition: transform 0.4s ease-in-out;
            }

            .b-services .media .wrapper a:hover > img:first-child {
                transform: scale(1.03);
            }

            .b-services .media .wrapper a > img.play {
                height: 50px;
                width: 50px;
                position: absolute;
                left: calc(50% - 25px);
                top: calc(50% - 25px);
                z-index: 2;
            }

@media (min-width: 576px) {

    .b-services .media .wrapper {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .b-services .maincontent .block .video a > img.play {
        height: 80px;
        width: 80px;
        left: calc(50% - 40px);
        top: calc(50% - 40px);
    }
}



@media (min-width: 768px) {

    .b-services .maincontent .block .image img, .b-services .maincontent .block .video img {
        max-width: 600px;
    }

}

@media (min-width: 992px) {

    .b-services .media .wrapper {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media (min-width: 1200px) {

    .b-services main {
        padding-bottom: 35px;
    }

    .b-services .maincontent .block {
        display: flex;
        margin-bottom: 60px;
    }

    .b-services .maincontent .block.block-reverse {
        display: flex;
        flex-direction: row-reverse;
    }

        .b-services .maincontent .block .text {
            width: calc(60% - 30px);
            margin-right: 30px;
            margin-bottom: 0;
        }

        .b-services .maincontent .block .image, .b-services .maincontent .block .video {
            width: calc(40% - 30px);
            margin-left: 30px;
            margin-bottom: 0;
        }

        .b-services .maincontent .block.block-reverse .text {
            width: calc(60% - 30px);
            margin-left: 30px;
            margin-right: 0;
        }

        .b-services .maincontent .block.block-reverse .image, .b-services .maincontent .block.block-reverse .video {
            width: calc(40% - 30px);
            margin-right: 30px;
            margin-left: 0;
        }

        .b-services .maincontent .block .image img, .b-services .maincontent .block .video img {
            max-width: 100%;
        }

    .b-services .media {
        margin-bottom: 60px;
    }

}



/*********** HOE KOPEN *************/

.b-info-buying .maincontent .block {
    margin-bottom: 35px;
}

    .b-info-buying .maincontent .block .text {
        margin-bottom: 35px;
    }

    .b-info-buying .maincontent .block .image, .b-info-buying .maincontent .block .video {
        margin-bottom: 35px;
    }

        .b-info-buying .maincontent .block .image img {
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            border-radius: 5px;
        }

        .b-info-buying .maincontent .block .video a {
            position: relative;
            display: inline-block;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            border-radius: 5px;
            overflow: hidden;
        }

            .b-info-buying .maincontent .block .video a:before {
                width: 100%;
                height: 100%;
                position: absolute;
                content: '';
                background-color: rgba(0, 0, 0, 0.35);
                z-index: 1;
            }

            .b-info-buying .maincontent .block .video a > img.play {
                height: 60px;
                width: 60px;
                position: absolute;
                left: calc(50% - 30px);
                top: calc(50% - 30px);
                z-index: 2;
            }

.b-info-buying .maincontent .block {
    margin-bottom: 35px;
}

.b-info-buying .highlight {
    margin-top: 50px;
    background-color: #EBEEF0;
}

    .b-info-buying .highlight .text {
        padding-top: 35px;
        padding-bottom: 35px;
    }

        .b-info-buying .highlight .text h2 {
            text-transform: uppercase;
        }

    .b-info-buying .highlight .image img {
        width: 100%;
    }

@media (min-width: 576px) {

    .b-info-buying .maincontent .block .video a > img.play {
        height: 80px;
        width: 80px;
        left: calc(50% - 40px);
        top: calc(50% - 40px);
    }


}



@media (min-width: 768px) {

    .b-info-buying .maincontent .block .image img, .b-info-buying .maincontent .block .video img {
        max-width: 600px;
    }
}

@media (min-width: 992px) {

}

@media (min-width: 1200px) {

    .b-info-buying .maincontent .block {
        display: flex;
        margin-bottom: 60px;
    }

        .b-info-buying .maincontent .block.block-reverse {
            display: flex;
            flex-direction: row-reverse;
        }

        .b-info-buying .maincontent .block .text {
            width: calc(60% - 30px);
            margin-right: 30px;
            margin-bottom: 0;
        }

        .b-info-buying .maincontent .block .image, .b-info-buying .maincontent .block .video {
            width: calc(40% - 30px);
            margin-left: 30px;
            margin-bottom: 0;
        }

        .b-info-buying .maincontent .block.block-reverse .text {
            width: calc(60% - 30px);
            margin-left: 30px;
            margin-right: 0;
        }

        .b-info-buying .maincontent .block.block-reverse .image, .b-info-buying .maincontent .block.block-reverse .video {
            width: calc(40% - 30px);
            margin-right: 30px;
            margin-left: 0;
        }

        .b-info-buying .maincontent .block .image img, .b-info-buying .maincontent .block .video img {
            max-width: 100%;
        }



    .b-info-buying .highlight {
        display: flex;
    }

        .b-info-buying .highlight > div {
            width: 50%;
        }

        .b-info-buying .highlight .text {
            display: flex;
            justify-content: flex-end;
            padding-top: 50px;
            padding-bottom: 50px;
        }

            .b-info-buying .highlight .text > div {
                padding-right: 60px;
                max-width: 640px;
            }

            .b-info-buying .highlight .text h2 {
                font-size: 2em;
            }

        .b-info-buying .highlight .image img {
            height: 100%;
            object-fit: cover;
        }


}


/*********** STALLING *************/

.b-storage main {
    padding-bottom: 60px;
}

.b-storage .maincontent .block {
    margin-bottom: 35px;
}

    .b-storage .maincontent .block .text {
        margin-bottom: 35px;
    }

    .b-storage .maincontent .block .image, .b-storage .maincontent .block .video {
        margin-bottom: 35px;
    }

        .b-storage .maincontent .block .image img {
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            border-radius: 5px;
        }

        .b-storage .maincontent .block .video a {
            position: relative;
            display: inline-block;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            border-radius: 5px;
            overflow: hidden;
        }

            .b-storage .maincontent .block .video a:before {
                width: 100%;
                height: 100%;
                position: absolute;
                content: '';
                background-color: rgba(0, 0, 0, 0.35);
                z-index: 1;
            }

            .b-storage .maincontent .block .video a > img.play {
                height: 60px;
                width: 60px;
                position: absolute;
                left: calc(50% - 30px);
                top: calc(50% - 30px);
                z-index: 2;
            }

.b-storage .maincontent .block {
    margin-bottom: 35px;
}

.b-storage .pricing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px 0;
    margin-bottom: 35px;
}

    .b-storage .pricing > div {
        background-color: #EBEEF0;
        padding: 25px;
        max-width: 600px;
    }

@media (min-width: 576px) {

    .b-storage .maincontent .block .video a > img.play {
        height: 80px;
        width: 80px;
        left: calc(50% - 40px);
        top: calc(50% - 40px);
    }

}



@media (min-width: 768px) {

    .b-storage .maincontent .block .image img, .b-storage .maincontent .block .video img {
        max-width: 600px;
    }

}

@media (min-width: 992px) {

    .b-storage .pricing {
        grid-template-columns: 1fr 1fr;
        gap: 15px 15px;
    }

        .b-storage .pricing > div {
            max-width: none;
        }

}

@media (min-width: 1200px) {

    .b-storage .maincontent .block {
        display: flex;
        margin-bottom: 60px;
    }

        .b-storage .maincontent .block.block-reverse {
            display: flex;
            flex-direction: row-reverse;
        }

        .b-storage .maincontent .block .text {
            width: calc(60% - 30px);
            margin-right: 30px;
            margin-bottom: 0;
        }

        .b-storage .maincontent .block .image, .b-storage .maincontent .block .video {
            width: calc(40% - 30px);
            margin-left: 30px;
            margin-bottom: 0;
        }

        .b-storage .maincontent .block.block-reverse .text {
            width: calc(60% - 30px);
            margin-left: 30px;
            margin-right: 0;
        }

        .b-storage .maincontent .block.block-reverse .image, .b-storage .maincontent .block.block-reverse .video {
            width: calc(40% - 30px);
            margin-right: 30px;
            margin-left: 0;
        }

        .b-storage .maincontent .block .image img, .b-storage .maincontent .block .video img {
            max-width: 100%;
        }

    .b-storage .pricing {
        grid-template-columns: 1fr 1fr 1fr;
    }

        .b-storage .pricing > div {
            padding: 30px;
        }

}

/*********** FAQ *************/

.b-faq main {
    padding-bottom: 25px;
}

.b-faq .maincontent .category {
    margin-top: 10px;
    margin-bottom: 40px;
}

.b-faq .maincontent .category h2 {
    color: #B81F14;
    font-size: 1.4em;
    margin-bottom: 25px;
}

.b-faq .maincontent .category .faq-item {
    border-top: 1px solid #707070;
    padding: 15px 15px;
}

.b-faq .maincontent .category .faq-item:last-child {
    border-bottom: 1px solid #707070;
}

.b-faq .maincontent .category .faq-item .question {
    font-size: 1.1em;
    font-weight: 700;
    padding-right: 60px;
    position:relative;
    cursor: pointer;
}

    .b-faq .maincontent .category .faq-item .question:after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 29px;
        height: 29px;
        background: url("../images/btn-faq.svg") no-repeat center;
        background-size: contain;
        transform: rotate(45deg);
        transition: all 0.3s ease-in-out;
    }

    .b-faq .maincontent .category .faq-item .question.active:after {
        transform: rotate(0deg);
    }

.b-faq .maincontent .category .faq-item .answer {
    display:none;
    padding-top:4px;
}

    .b-faq .maincontent .category .faq-item .answer p, .b-faq .maincontent .category .faq-item .answer ul {
        margin-bottom: 4px;
    }

@media (min-width: 1200px) {

    .b-faq main {
        padding-bottom: 35px;
    }

    .b-faq .maincontent {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 60px;
    }

}

/************ VIDEOS **********/

.b-videos .intro {
    margin-bottom: 50px;
}

    .b-videos .intro > div {
        margin-bottom: 15px;
        /*max-width: 980px;*/
    }

.b-videos .filter {
    background-color: #EBEEF0;
    padding-top: 30px;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

    .b-videos .filter .form .row > div {
        padding-bottom: 10px;
        display: flex;
        align-items: center;
    }

        .b-videos .filter .form .row > div label {
            width: 100px;
            font-weight: 600;
        }

        .b-videos .filter .form .row > div input, .b-videos .filter .form .row > div select {
            border: none;
            -webkit-border-radius: 4px;
            -moz-border-radius: 4px;
            border-radius: 4px;
        }

        .b-videos .filter .form .row > div > input, .b-videos .filter .form .row > div > select, .b-videos .filter .form .row > div > .range {
            width: calc(100% - 100px);
        }

        .b-videos .filter .form .row > div > .range {
            display: flex;
            align-items: center;
        }

            .b-videos .filter .form .row > div > .range > input {
                width: calc(50% - 10px);
            }

            .b-videos .filter .form .row > div > .range > span {
                width: 20px;
                text-align: center;
            }

    .b-videos .filter .form button {
        margin-left: 100px;
        width: 120px;
    }

.b-videos .filter-2 {
    margin-bottom: 25px;
}

    .b-videos .filter-2 .secondary-buttons a {
        text-transform: none;
        margin-right: 25px;
        margin-bottom: 15px;
        padding: 2px 20px 2px 20px;
        height: 30px;
    }

    .b-videos .filter-2 .secondary-buttons a.active {
        border: 1px solid #B81F14;
        color: #B81F14;
    }

.b-videos .list {
    margin-bottom: 65px;
}

    .b-videos .list .item {
        cursor: pointer;
        margin-bottom: 30px;
    }

        /*.b-videos .list .item .image {
            background-color: white;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            border-radius: 5px;
            overflow: hidden;
            position:relative;
        }*/

            .b-videos .list .item .image a {
                display:block;
                -webkit-border-radius: 5px;
                -moz-border-radius: 5px;
                border-radius: 5px;
                overflow: hidden;
                position: relative;
            }

            .b-videos .list .item .image a:before {
                width: 100%;
                height: 100%;
                position: absolute;
                content: '';
                background-color: rgba(0, 0, 0, 0.1);
                z-index: 1;
            }

            .b-videos .list .item .image a > img.play {
                height: 50px;
                width: 50px;
                position: absolute;
                left: calc(50% - 25px);
                top: calc(50% - 25px);
                z-index: 2;
            }

            .b-videos .list .item .image a > img:first-child {
                width: 100%;
                aspect-ratio: 16 / 9;
                object-fit: cover;
            }

        .b-videos .list .item .title {
            padding: 10px 15px 0 15px;
        }

            .b-videos .list .item .title {
                font-family: termina, sans-serif;
                font-weight: 700;
                font-size: 0.9em;
            }

                .b-videos .list .item .title a {
                    text-decoration: none;
                }

@media (min-width: 600px) {

    .b-videos .list {
        display: flex;
        flex-wrap: wrap;
        padding-left: 10px;
        padding-right: 10px;
    }

        .b-videos .list > div {
            width: calc(50% - 20px);
            margin-left: 10px;
            margin-right: 10px;
        }
}



@media (min-width: 768px) {

    .b-videos .filter .form .row {
        display: flex;
        align-items: center;
    }

        .b-videos .filter .form .row > div:nth-child(1) {
            width: 40%;
            padding-right: 50px;
        }

            .b-videos .filter .form .row > div:nth-child(1) > label {
                width: 75px;
            }

            .b-videos .filter .form .row > div:nth-child(1) > select {
                width: calc(100% - 75px);
            }

        .b-videos .filter .form .row > div:nth-child(2) {
            width: 40%;
            padding-right: 50px;
        }

        .b-videos .filter .form .row > div:nth-child(3) {
            width: 20%;
        }

    .b-videos .filter .form button {
        margin-left: 0;
        width: 120px;
    }

    .b-videos .list {
        padding-left: 15px;
        padding-right: 15px;
    }

        .b-videos .list > div {
            width: calc(50% - 30px);
            margin-left: 15px;
            margin-right: 15px;
        }
}


@media (min-width: 992px) {

    .b-videos .list > div {
        width: calc(33.33% - 30px);
    }
}

@media (min-width: 1200px) {

    .b-videos .intro {
        display: flex;
    }

        .b-videos .intro > div {
            width: 50%;
        }

            .b-videos .intro > div:first-child {
                padding-right: 50px;
            }

            .b-videos .intro > div:last-child {
                padding-left: 50px;
            }

    .b-videos .list {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (min-width: 1400px) {

    .b-videos .list > div {
        width: calc(25% - 30px);
    }
}


@media (min-width: 1600px) {

    .b-videos .intro > div:first-child {
        padding-right: 75px;
    }

    .b-videos .intro > div:last-child {
        padding-left: 75px;
    }
}


/************ REVIEWS **********/

.b-reviews .intro {
    margin-bottom: 40px;
}

    .b-reviews .intro > div {
        margin-bottom: 15px;
        /*max-width: 980px;*/
    }

.b-reviews .tabs {
    margin-bottom: 40px;
}

.b-reviews .tabs h2 {
    margin:0;
    font-size: 1.2em;
    text-transform: uppercase;
}

.b-reviews .tabs h2 a {
    display: block;
    border: 1px solid #707070;
    text-decoration: none;
    text-align: center;
    padding: 10px;
}

    .b-reviews .tabs a.active, .b-reviews .tabs a:hover, .b-reviews .tabs a:focus, .b-reviews .tabs a:active {
        border: 1px solid #B81F14;
        background-color: #B81F14;
        color: white;
    }

    .b-reviews .tabs h2:first-child a {
        border-bottom-width: 0px;
    }

    .b-reviews .tabs h2:last-child a {
        border-top-width: 0px;
    }

.b-reviews .list {
}

    .b-reviews .list .item {
        padding-bottom: 35px;
        border-bottom: 1px solid #707070;
        margin-bottom: 40px;
    }

        .b-reviews .list .item:last-child {
            padding-bottom: 0;
            border-bottom: 0;
            margin-bottom: 60px;
        }

        .b-reviews .list .item .text {
            margin-bottom: 15px;
        }

        .b-reviews .list .item .text h3 {
            font-size: 1.2em;
            margin-bottom: 20px;
        }

        .b-reviews .list .item .image img {
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            border-radius: 5px;
            max-width:250px;
        }


@media (min-width: 768px) {

    .b-reviews .tabs {
        display:flex;
    }

    .b-reviews .tabs h2 {
        width: calc(50% - 15px);
    }

        .b-reviews .tabs > h2:first-child {
            margin-right: 15px;
        }

            .b-reviews .tabs > h2:first-child a {
                border-bottom-width: 1px;
            }

        .b-reviews .tabs > h2:last-child {
            margin-left: 15px;
        }

            .b-reviews .tabs > h2:last-child a {
                border-top-width: 1px;
            }

    .b-reviews .list .item {
        display:flex;
        flex-direction: row-reverse;
    }

    .b-reviews .list .item .text {
        margin-bottom:0;
        flex: 1;
        padding-left: 30px;
    }

        .b-reviews .list .item .text > div {
            max-width: 980px;
        }

        .b-reviews .list .item .image {
            width: 250px;
        }

            .b-reviews .list .item .image img {
                max-width: 100%;
            }

}


@media (min-width: 992px) {

}

@media (min-width: 1200px) {

    .b-reviews .intro {
        display: flex;
    }

        .b-reviews .intro > div {
            width: 50%;
        }

            .b-reviews .intro > div:first-child {
                padding-right: 50px;
            }

            .b-reviews .intro > div:last-child {
                padding-left: 50px;
            }

    .b-reviews .list .item .image {
        width: 300px;
    }

    .b-reviews .tabs {
        margin-bottom: 50px;
    }

    .b-reviews .tabs h2 a {
        padding: 12px;
    }

    .b-reviews .list .item {
        padding-bottom: 45px;
        margin-bottom: 50px;
    }

    .b-reviews .list .item .text {
        padding-left: 50px;
    }


}

@media (min-width: 1400px) {


}


@media (min-width: 1600px) {

    .b-reviews .intro > div:first-child {
        padding-right: 75px;
    }

    .b-reviews .intro > div:last-child {
        padding-left: 75px;
    }
}



/************ EVENTS **********/

.b-events .intro {
    margin-bottom: 40px;
}

    .b-events .intro > div {
        margin-bottom: 15px;
        /*max-width: 980px;*/
    }

.b-events .tabs {
    margin-bottom: 35px;
}

    .b-events .tabs h2 {
        margin: 0;
        font-size: 1.2em;
        text-transform: uppercase;
    }

        .b-events .tabs h2 a {
            display: block;
            border: 1px solid #707070;
            text-decoration: none;
            text-align: center;
            padding: 10px;
        }

    .b-events .tabs a.active, .b-events .tabs a:hover, .b-events .tabs a:focus, .b-events .tabs a:active {
        border: 1px solid #B81F14;
        background-color: #B81F14;
        color: white;
    }

    .b-events .tabs h2:first-child a {
        border-bottom-width: 0px;
    }

    .b-events .tabs h2:last-child a {
        border-top-width: 0px;
    }

.b-events .list {
    padding-bottom:25px;
}

    .b-events .list .item {
        padding-bottom: 35px;
        border-bottom: 1px solid #707070;
        margin-bottom: 35px;
    }

        .b-events .list .item:last-child {
            padding-bottom: 0;
            border-bottom: 0;
            margin-bottom: 60px;
        }

        .b-events .list .item .text {
            max-width: 980px;
        }

            .b-events .list .item .text h3 {
                font-size: 1.4em;
                line-height: 1.5;
                margin-bottom: 15px;
            }

                .b-events .list .item .text h3 span {
                    font-size: 0.8em;
                    color: #B81F14;
                }

        .b-events .list .item .images {
            margin-top: 15px;
        }

        .b-events .list .item .images a {
            display:inline-block;
            margin-top: 10px;
            margin-right: 10px;
        }

            .b-events .list .item .images a img {
                -webkit-border-radius: 5px;
                -moz-border-radius: 5px;
                border-radius: 5px;
            }


@media (min-width: 768px) {

    .b-events .tabs {
        display: flex;
    }

        .b-events .tabs h2 {
            width: calc(50% - 15px);
        }

        .b-events .tabs > h2:first-child {
            margin-right: 15px;
        }

            .b-events .tabs > h2:first-child a {
                border-bottom-width: 1px;
            }

        .b-events .tabs > h2:last-child {
            margin-left: 15px;
        }

            .b-events .tabs > h2:last-child a {
                border-top-width: 1px;
            }

}


@media (min-width: 992px) {
}

@media (min-width: 1200px) {

    .b-events .intro {
        display: flex;
    }

        .b-events .intro > div {
            width: 50%;
        }

            .b-events .intro > div:first-child {
                padding-right: 50px;
            }

            .b-events .intro > div:last-child {
                padding-left: 50px;
            }
   

    .b-events .tabs {
        margin-bottom: 45px;
    }

        .b-events .tabs h2 a {
            padding: 12px;
        }

    .b-events .list .item {
        padding-bottom: 45px;
        margin-bottom: 45px;
    }

}

@media (min-width: 1400px) {
}


@media (min-width: 1600px) {

    .b-events .intro > div:first-child {
        padding-right: 75px;
    }

    .b-events .intro > div:last-child {
        padding-left: 75px;
    }
}



/************ EVENT **********/

.b-event .maincontent {
    padding-bottom: 60px;
}

.b-event .maincontent h1 {
    margin-bottom: 10px;
}

.b-event .maincontent h2 {
    color: #B81F14;
    margin-bottom: 15px;
    font-size:1.2em;
}

.b-event .maincontent  .text {
    margin-bottom: 40px;
}

    .b-event .maincontent .text a.primary-button {
        margin-top: 15px;
    }

.b-event .maincontent img {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}


@media (min-width: 768px) {

    .b-event .maincontent {
        display: flex;
        flex-direction: row-reverse;
        padding-bottom: 75px;
    }

        .b-event .maincontent .text {
            margin-bottom: 0;
            flex: 1;
            padding-left: 30px;
        }

        .b-event .maincontent .image {
            width: 250px;
        }

        .b-event .maincontent .image img {
            max-width: 100%;
        }
}


@media (min-width: 992px) {

    .b-event .maincontent .image {
        width: 300px;
    }

 
}

@media (min-width: 1200px) {

    .b-event .maincontent h1 {
        margin-bottom: 15px;
    }

    .b-event .maincontent h2 {
        margin-bottom: 20px;
        font-size: 1.4em;
    }

    .b-event .maincontent .image {
        width: 350px;
    }

    .b-event .maincontent .text {
        padding-left: 50px;
    }
}

@media (min-width: 1400px) {

    .b-event .maincontent .image {
        width: 450px;
    }
}


@media (min-width: 1600px) {
}




/************ KLANTEN ZOEKEN **********/

.b-searched .intro {
    margin-bottom: 40px;
   /* max-width: 980px;*/
}

.b-searched .list {
    padding-bottom: 25px;
}

    .b-searched .list .item {
        padding-bottom: 35px;
        border-bottom: 1px solid #707070;
        margin-bottom: 35px;
    }

        .b-searched .list .item:first-child {
            padding-top: 35px;
            border-top: 1px solid #707070;
            margin-top: 35px;
        }

        .b-searched .list .item .text {
            max-width: 980px;
        }

            .b-searched .list .item .text h3 {
                font-size: 1.4em;
                line-height: 1.5;
                margin-bottom: 15px;
            }

        .b-searched .list .item .images {
            margin-top: 15px;
        }

            .b-searched .list .item .images a {
                display: inline-block;
                margin-top: 10px;
                margin-right: 10px;
            }

                .b-searched .list .item .images a img {
                    -webkit-border-radius: 5px;
                    -moz-border-radius: 5px;
                    border-radius: 5px;
                }


@media (min-width: 768px) {
}


@media (min-width: 992px) {
}

@media (min-width: 1200px) {

    .b-searched .list .item {
        padding-bottom: 45px;
        margin-bottom: 45px;
    }
}

@media (min-width: 1400px) {
}


@media (min-width: 1600px) {

}


/*********** GEZOCHT: FORMULIER *************/

.b-searched-form main {
    padding-bottom: 25px;
}

.b-searched-form .intro {
    margin-bottom: 40px;
    /*max-width: 980px;*/
}

.b-searched-form .form {
    background-color: #EBEEF0;
    padding: 25px 20px;
    margin-bottom: 50px;
    max-width: 1200px;
}

    .b-searched-form .form > form {
    }

        .b-searched-form .form > form > div {
            margin-bottom: 10px;
        }

            .b-searched-form .form > form > div.row {
                margin-bottom: 0;
            }

        .b-searched-form .form > form > div.row > div {
            margin-bottom: 10px;
        }

    .b-searched-form .form input[type="text"], .b-searched-form .form select, .b-searched-form .form textarea {
        border: none;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        width: 100%;
    }

    .b-searched-form .form input[type="checkbox"] {
        position: relative;
        top: 1px;
    }

@media (min-width: 768px) {

    .b-searched-form .form > form > div.row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 20px;
    }

}


@media (min-width: 1200px) {


    .b-searched-form .text h4:first-child {
        margin-top: 0;
    }

    .b-searched-form .form {
        padding: 35px 30px;
    }

        .b-searched-form .form > form > div.row {
            gap: 0 30px;
        }
}


/************ VACATURES **********/

.b-jobs .intro {
    margin-bottom: 40px;
    /*max-width: 980px;*/
}

.b-jobs .intro a.primary-button {
    margin-top: 15px;
}

.b-jobs .list {
    padding-bottom: 25px;
}

    .b-jobs .list .item {
        padding-bottom: 35px;
        border-bottom: 1px solid #707070;
        margin-bottom: 35px;
    }

        .b-jobs .list .item:first-child {
            padding-top: 35px;
            border-top: 1px solid #707070;
            margin-top: 35px;
        }

        .b-jobs .list .item .text {
            max-width: 980px;
        }

            .b-jobs .list .item .text h3 {
                font-size: 1.4em;
                line-height: 1.5;
                margin-bottom: 15px;
            }

            .b-jobs .list .item .text .primary-button {
                margin-top: 15px;
            }


@media (min-width: 768px) {
}


@media (min-width: 992px) {
}

@media (min-width: 1200px) {

    .b-jobs .list .item {
        padding-bottom: 45px;
        margin-bottom: 45px;
    }
}

@media (min-width: 1400px) {
}


@media (min-width: 1600px) {
}



/*********** TEKST *************/

.b-text main {
    padding-bottom: 60px;
}

.b-text .intro {
    margin-bottom: 40px;
    /*max-width: 980px;*/
}

.b-text .maincontent .video a {
    position: relative;
    display: inline-block;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
}

    .b-text .maincontent .video a:before {
        width: 100%;
        height: 100%;
        position: absolute;
        content: '';
        background-color: rgba(0, 0, 0, 0.35);
        z-index: 1;
    }

    .b-text .maincontent .video a > img.play {
        height: 60px;
        width: 60px;
        position: absolute;
        left: calc(50% - 30px);
        top: calc(50% - 30px);
        z-index: 2;
    }

    .b-text .maincontent .image img {
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
    }

@media (min-width: 576px) {

    .b-text .maincontent .video a > img.play {
        height: 80px;
        width: 80px;
        left: calc(50% - 40px);
        top: calc(50% - 40px);
    }
}








    /*********** GLIDE *************/

    @media (min-width: 1200px) {
    }

    /**********************/


    @media (min-width: 576px) {
    }

    @media (min-width: 768px) {
    }


    @media (min-width: 992px) {
    }

    @media (min-width: 1200px) {
    }

    @media (min-width: 1400px) {
    }

    @media (min-width: 1600px) {
    }

/************ COOKIE BAR (COOKIEYES) **********/

.cky-consent-bar {
    color: #000 !important;
    line-height: 1.4 !important;
}

.cky-btn:hover {
    opacity: 1 !important;
}

.cky-btn-accept.cky-btn, .cky-btn-reject.cky-btn, .cky-btn-customize.cky-btn {
    padding: 7px 14px !important;
    border-color: #438A11 !important;
    font-weight: normal !important;
    transition: all 0.3s ease-in-out;
}

.cky-btn-customize {
    color: #438A11 !important;
}

.cky-btn-accept.cky-btn, .cky-btn-reject.cky-btn {
    color: #fff !important;
    background-color: #438A11 !important;
}

    .cky-btn-accept.cky-btn:hover, .cky-btn-accept.cky-btn:active, .cky-btn-accept.cky-btn:focus,
    .cky-btn-reject.cky-btn:hover, .cky-btn-reject.cky-btn:active, .cky-btn-reject.cky-btn:focus {
        background-color: #225001 !important;
        border-color: #225001 !important;
    }

.cky-btn-customize.cky-btn {
    color: #438A11 !important;
}

    .cky-btn-customize.cky-btn:hover, .cky-btn-customize.cky-btn:active, .cky-btn-customize.cky-btn:focus {
        color: #225001 !important;
        border-color: #225001 !important;
    }

.cky-consent-bar .cky-btn-customize::after {
    display: none !important;
}

.cky-btn-preferences.cky-btn {
    color: #212121 !important;
    border-color: #212121 !important;
    background-color: transparent !important;
}

/****** TO TOP *****/
#toTop {
    display: none;
    position: fixed;
    right: 15px;
    bottom: 25px;
    transform: rotate(-90deg);
    z-index: 999;
    text-decoration: none;
}

    #toTop > svg {
        width: 32px;
        height: 32px;
    }

    #toTop:hover > svg > g > g {
        fill: #b81f14;
        stroke: #fff;
    }

    #toTop:hover > svg > g > g > circle:first-child {
        stroke: #fff;
    }

    #toTop:hover > svg > path {
        /*fill: #b81f14;*/
        stroke: #fff;
    }

@media (min-width: 768px) {
    #toTop {
        bottom: 40px;
    }
}

@media (min-width: 992px) {

        #toTop > svg {
            width: 36px;
            height: 36px;
        }
}

@media (min-width: 1600px) {
    #toTop {
        right: 40px;
    }
}

    
/****** FANCYBOX *****/
.fancybox-caption {
    text-align: center;
}


/****** MODAL *****/
.popup {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.popup-content {
    position: relative;
    background-color: white;
    color: black;
    margin: auto;
    padding: 0;
    max-width: 515px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: animatetop;
    animation-duration: 0.4s;
}

.popup-header {
    /*background-color: black;*/
    height: 42px;
}

.popup-close {
    float: right;
    font-size: 28px;
    line-height: 28px;
    margin: 6px 12px;
    cursor: pointer;
}

.popup-title {
}

.popup-body {
    padding: 0 30px 35px 30px;
    font-size: 1.1em;
    line-height: 1.6em;
}

.popup-body-title {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 2.9em;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

    .popup-body-title span {
        color: white;
    }

.popup-body-text p:last-child {
    margin-bottom: 0;
}

.popup-body-text a {
    color: black;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .popup {
        padding-top: 150px;
    }
}