@import "fonts.css";
@import "usercentrics.css";

:root {
    --main-font: 'Poppins', sans-serif;
    /*--deco-font: 'Yesteryear', cursive;*/
    --deco-font: 'Montez', cursive;

    --green: #ABCB37;
    --purple: #E21F49;
    --orange: #FCB317;
    --blue: #179DD9;
    --white: #fff;
    --black: #000;
    --gray: #F6F6F6;
}

.green {color: var(--green);}
.purple {color: var(--purple);}
.orange {color: var(--orange);}
.blue {color: var(--blue);}
.white {color: var(--white);}
.black {color: var(--black);}
.gray {color: var(--gray);}

.center {text-align: center;}

/*============================= FONTS =============================*/

html {font-size: 16px;}

h1,h2,h3,h4,h5,h6,p, ul li {font-family: var(--main-font); color: var(--black);}


p, .p, ul li {
    font-family: var(--main-font);
    font-size: 16px;
    line-height: 30px;
}
a, .uk-link {
    color: var(--blue);
}
a:hover, .uk-link:hover {
    color: var(--blue);
}
.fs60 {font-size: 60px; line-height: 1.3;}

h1, .h1 {
    font-weight: 500;
    font-size: 51px;
    text-align: center;
    font-family: var(--deco-font);
}
h2, .h2 {
    font-size: 48px;
    font-weight: 500;
    line-height: 63px;
    font-family: var(--deco-font);
}
h3, .h3 {
    font-weight: 600;
    font-size: 21px;
    line-height: 1.3;
}
h5, .h5 {
    font-weight: 600;
    font-size: 21px;
    line-height: 1.4;
}

.curly {
    font-family: var(--deco-font);
    display: block;
    font-size: clamp(2.5rem,10vw,4rem) !important;
    margin-bottom: 0;
    font-weight: normal;
    line-height: 1;
}
.not-curly {
    font-family: var(--main-font);
}


.curly + h1, .curly + h2, .curly + h3 {
    margin-top: 5px;
    font-size: clamp(1.25rem,4vw,1.75rem);
}
/*=========================== FONTS ENDE ==========================*/




/*========================== NAVIGATION ===========================*/

.vd-sticky-wrapper {
    z-index: 9999;
    background-color: var(--white);
}
    .vd-sticky-wrapper.uk-active .vd-navbar {
        padding: 5px 0;
        transition: all 0.3s;
    }

.uk-nav-side > li > a {
    color: var(--black);
}
.vd-navbar {
    background-color: transparent;
    margin: 0;
    padding: 20px 0;
    box-shadow: 0 0 30px rgba(0,0,0,0.2);
    transition: all 0.3s;
}
.vd-logo {
    float: left;
    margin-right: 30px;
}
.vd-navbar .uk-navbar-nav {
    margin-top: 30px;
}
    .vd-navbar .uk-navbar-nav > li {
        padding: 0 22px;
    }
        .uk-navbar-nav > li:hover > a, .uk-navbar-nav > li > a:focus, .uk-navbar-nav > li.uk-open > a {
            background-color: transparent;
            color: var(--black);
        }
        .vd-navbar .uk-navbar-nav > li > a {
            display: block;
            box-sizing: border-box;
            text-decoration: none;
            height: 30px;
            padding: 0;
            line-height: 30px;
            font-family: var(--main-font);
            font-size: 18px;
            color: #000;
        }
            .vd-navbar .uk-navbar-nav > li > a:after {
                content: "";
                display: block;
                width: 0;
                height: 3px;
                transition: all 0.3s;
            }
                .vd-navbar .uk-navbar-nav > li > a:hover:after {
                    width: 100%;
                    transition: all 0.3s;
                }
                .vd-navbar .uk-navbar-nav > li.uk-active > a:after,
                .vd-navbar .uk-navbar-nav > li.uk-open > a:after {
                    width: 100%;
                }
                .vd-navbar .uk-navbar-nav > li:nth-of-type(1) > a:after {background-color: var(--blue);}
                .vd-navbar .uk-navbar-nav > li:nth-of-type(2) > a:after {background-color: var(--purple);}
                .vd-navbar .uk-navbar-nav > li:nth-of-type(3) > a:after {background-color: var(--green);}
                .vd-navbar .uk-navbar-nav > li:nth-of-type(4) > a:after {background-color: var(--orange);}

.uk-navbar-nav > li.uk-active > a {
    background-color: transparent;
}

.uk-open > .uk-dropdown-navbar {
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    background-color: #fff;
    margin-top: 4px;
}

.uk-nav-navbar > li > a:hover, .uk-nav-navbar > li > a:focus {
    background-color: var(--green);
}

.social-wrapper-nav {
    float: right;
    margin-top: 23px;
}

.uk-navbar-toggle {
    float: right;
    line-height: 83px;
}
.uk-navbar-toggle:after {
    content: "";
    width: 33px;
    height: 22px;
    background-image: url('../images/mobile-toggle.svg');
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
}

.uk-offcanvas {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    touch-action: none;
    background: transparent;
}
.uk-offcanvas-bar {
    top: 95px;
    background: var(--white);
    background: linear-gradient(0deg, rgba(255,255,255,1) 96%, rgb(224 224 224) 100%);
    padding-top: 40px;
}
.uk-nav-offcanvas > li > a {
    color: var(--black);
    padding: 10px 15px;
    font-size: 18px;
}
.uk-nav-offcanvas ul a {
    color: var(--black);
    padding: 10px 15px;
    font-size: 18px;
}
.uk-nav-offcanvas .uk-parent > a {
    display: none;
}
.uk-nav-offcanvas ul.uk-nav-sub {
    padding: 0;
}
/*======================== NAVIGATION ENDE ========================*/


/*=========================== SECTIONS ============================*/
.vd-container {
    width: 100%;
}

.tm-content {
    padding-top: 80px;
}
.category-description {
    padding-top: 80px;
}
section.angebot {
    padding: 70px 0;
}
    section.angebot h4 {
        text-align: center;
        color: var(--purple);
    }
    section.angebot p {
        text-align: center;
    }
    section.angebot a.uk-button {
        background-color: transparent;
        font-weight: 500;
        font-size: 16px;
        text-align: center;
        color: var(--black);
        background-image: url('../images/mehr-erfahren-arrow.png');
        background-repeat: no-repeat;
        background-position: calc(100% - 10px) center;
        padding-right: 50px;
        transition: all 0.3s;
    }
    section.angebot a.uk-button:hover {
        background-position: 100% center;
        transition: all 0.3s;
    }
section.kundenstimmen {
    padding: 120px 0;
    background-image: url('../images/kundenstimmen-bg.jpg');
}
    section.kundenstimmen ul.uk-slider li {
    }
        section.kundenstimmen .kundenstimme-wrapper {
            background-color: var(--white);
            padding: 45px 55px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 370px;
            text-align: center;
        }

            section.kundenstimmen .kundenstimme-wrapper .content{
                width: 100%;
            }
        section.kundenstimmen h4 {
            margin-top: 10px;
        }
        section.kundenstimmen .kundenstimme-name {
            font-family: var(--deco-font);
            font-size: 30px;
            line-height: 1;
            color: var(--black);
        }
            section.kundenstimmen .uk-slidenav-position .uk-slidenav {
                display: block;
            }
            section.kundenstimmen .uk-slidenav-position .uk-slidenav-previous {
                left: -100px;
                width: 22px;
            }
                section.kundenstimmen .uk-slidenav-previous:before {
                    content: "";
                    width: 22px;
                    height: 62px;
                    background-image: url('../images/arrow-left-white.svg');
                    display: block;
                    background-position: center;
                }

            section.kundenstimmen .uk-slidenav-position .uk-slidenav-next {
                right: -100px;
                width: 22px;
            }
                section.kundenstimmen .uk-slidenav-next:before {
                    content: "";
                    width: 22px;
                    height: 62px;
                    background-image: url('../images/arrow-right-white.svg');
                    display: block;
                    background-position: center;
                }


section.cta {
    padding: 50px 0;
    background: linear-gradient(78deg, #e43648 0%, #fcb317 42.67%, #abcb37 75.72%, #358867 100%);
}
    section.cta a {
        margin: 0 auto;
        background-color: transparent;
        color: var(--white);
        border-color: var(--white);
        font-weight: bold;
        border: 2px solid var(--white) !important;
    }
        section.cta a:hover {
            color: var(--orange);
            background-color: var(--white) !important;
        }
        section.cta p:last-of-type {
            margin-bottom: 0;
        }

footer {
    padding: 50px 0;
}
    footer .uk-nav-side > li > a,
    footer .uk-nav-side .uk-nav-header {
        color: var(--black);
        font-size: 16px;
        padding: 0;
        line-height: 30px;
        text-transform: none;
        font-weight: 400;
    }
    footer div p:last-of-type {
        margin-bottom: 0;
    }
    footer .uk-nav-side > li.uk-active > a {
        background: transparent;
        color: var(--black);
        font-weight: 600;
    }
    footer .uk-nav-side ul a {
        color: var(--black);
    }

section.disclaimer {
    padding: 50px 0;
    background-color: var(--gray);
}
    section.disclaimer .disclaimer-nav ul li {
        display: inline-block;
        border-right: 1px solid var(--black);
        padding: 0 20px;
    }
        section.disclaimer .disclaimer-nav ul li a {
            padding: 0;
            background-color: transparent;
        }
            section.disclaimer .disclaimer-nav ul li a:hover {
                color: var(--black);
            }
                section.disclaimer .disclaimer-nav ul li a:after {
                    content: "";
                    width: 0;
                    height: 1px;
                    background-color: var(--black);
                    display: block;
                    transition: all 0.3s;
                }
                section.disclaimer .disclaimer-nav ul li a:hover:after {
                    width: 100%;
                    transition: all 0.3s;
                }
        section.disclaimer .disclaimer-nav ul li:first-of-type {
            padding: 0 20px 0 0;
        }
        section.disclaimer .disclaimer-nav ul li:last-of-type {
            border-right: 0;
        }
        .made-by {float: right;}
            .made-by p {font-size: 14px; margin: 0; line-height: 1;}
            .made-by a {
                text-decoration: none;
                display: inline-block;
                padding: 0;
            }
                .made-by a:after {
                    content: "";
                    width: 0;
                    height: 1px;
                    background-color: var(--blue);
                    display: block;
                    transition: all 0.3s;
                }
                .made-by a:hover:after {
                    width: 100%;
                    transition: all 0.3s;
                }
/*========================= SECTIONS ENDE =========================*/




/*=========================== ELEMENTE ============================*/
a.cta-button, section.cta a, input[type="submit"], .wp-block-button__link {
    font-family: var(--main-font);
    font-size: 18px;
    display: table;
    padding: 9px 40px;
    border: solid 1px;
    border-radius: 50px;
    transition: all 0.3s;
    cursor: pointer;
    line-height: 1.66;
}
a.cta-button:hover, section.cta a:hover, input[type="submit"]:hover, .wp-block-button__link:hover {
    background-color: transparent;
    transition: all 0.3s;
    text-decoration: none;
}
a.cta-button.invert {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

a.cta-button.green, .wp-block-button__link {
    background-color: var(--green);
    color: var(--white);
    margin: 0 auto;
}
.post-teaser-wrapper:hover a.cta-button.green, .wp-block-button__link:hover {
    background-color: transparent;
    color: var(--green);
}
input[type="submit"] {
    background-color: var(--blue);
    color: var(--white);
}
input[type="submit"]:hover {
    background-color: transparent;
    color: var(--blue);
}

.vd-slideshow:after {
    content: '';
    width: 100%;
    height: 315px;
    background-image: url('../images/slider-border.png');
    background-position: center bottom;
    display: block;
    margin-top: -315px;
    position: relative;
    clip-path: polygon(0% 0%, 34% 41%, 66% 42%, 100% 26%, 100% 100%, 0% 100%);
}

.vd-slideshow .slider-item-wrapper {
    height: calc(100vw / 16 * 9);
    max-height: 800px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
    .vd-slideshow p {color: var(--white); font-size: 18px;}

    .vd-slideshow .vd-slider-overlay {
        background-color: rgba(255, 255, 255, 0.5);
        background: linear-gradient(21deg, rgba(255,255,255, 0.74) 0%, #ffffff00 100%);
        padding: clamp(17px, 3vw, 40px) clamp(20px, 3vw, 50px);
        border-radius: 20px;
    }


    .vd-slideshow .vd-slider-overlay > * {
        color: #000;
    }
    .vd-slideshow .vd-slider-overlay h3 {
        margin-bottom: 0;
    }
    .vd-slideshow .vd-slider-overlay a.cta-button  {
        margin-top: 25px;
    }
    .vd-slideshow .vd-slider-overlay span {
        display: block;
        margin-bottom: 5px;
    }

    .vd-slideshow .uk-slidenav-position .uk-slidenav {
        display: block;
        position: absolute;
        top: 50%;
        z-index: 1;
        margin-top: -30px;
        width: auto;
    }
        .vd-slideshow .uk-slidenav-position .uk-slidenav-previous {
            left: 100px;
        }
            .vd-slideshow .uk-slidenav-previous:before {
                content: "";
                width: 22px;
                height: 62px;
                background-image: url('../images/arrow-left-white.svg');
                display: block;
                background-position: center;
            }

        .vd-slideshow .uk-slidenav-position .uk-slidenav-next {
            right: 100px;
        }
            .vd-slideshow .uk-slidenav-next:before {
                content: "";
                width: 22px;
                height: 62px;
                background-image: url('../images/arrow-right-white.svg');
                display: block;
                background-position: center;
            }

.wide-image {
    padding: 150px 0;
    /*height: calc(100vh - 164px);*/
    height: calc(100vw / 16 * 9);
    max-height: 730px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
}
    .wide-image.small {
        padding: 100px 0;
    }
    .wide-image-content {
        max-width: 800px;
    }
        .wide-image-content p {
            color: var(--white);
        }
    .wide-image-deco-bar {
        width: 100%;
        height: 7px;
        background: linear-gradient(78deg, #e43648 0%, #fcb317 42.67%, #abcb37 75.72%, #358867 100%);

    }
/*========================= ELEMENTE ENDE =========================*/




/*=========================== LEISTUNGEN ==========================*/

section.leistungen-slider {
    padding: 120px 0 0 0;
}

.post-teaser-wrapper {
    border-radius: 20px;
    background-color: #F6F6F6;
    padding-bottom: 30px;
}
    .post-teaser-wrapper figure {
        border-radius: 20px 20px 0 0;
    }
    .post-teaser-wrapper .post-teaser-image {
        height: calc(100vw / 16 * 9);
        max-height: 230px;
        border-radius: 20px 20px 0 0;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
        .post-teaser-wrapper .post-teaser-image img {
            opacity: 0;
        }

    .post-teaser-wrapper .post-teaser-content {
        padding: 50px 20px 20px 20px;
        text-align: center;
    }
        .leistungen-slider .post-teaser-content {
            min-height: 170px;
        }
        .post-teaser-wrapper .post-teaser-content p {
            margin-bottom: 0;
        }



.post-full-image {
    height: calc(100vw / 16 * 9);
    max-height: 630px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
}
.post-full-content-wrapper {
    max-width: 90%;
    background-color: #fff;
    margin-top: -50px;
    padding: 50px;
    box-sizing: border-box;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 10px;
}




        section.leistungen-slider .uk-slidenav-position .uk-slidenav {
            display: block;
        }
        section.leistungen-slider .uk-slidenav-position .uk-slidenav-previous {
            left: -100px;
            width: 22px;
        }
            section.leistungen-slider .uk-slidenav-previous:before {
                content: "";
                width: 22px;
                height: 62px;
                background-image: url('../images/arrow-left-green.svg');
                display: block;
                background-position: center;
            }

        section.leistungen-slider .uk-slidenav-position .uk-slidenav-next {
            right: -100px;
            width: 22px;
        }
            section.leistungen-slider .uk-slidenav-next:before {
                content: "";
                width: 22px;
                height: 62px;
                background-image: url('../images/arrow-right-green.svg');
                display: block;
                background-position: center;
            }
/*======================== LEISTUNGEN ENDE ========================*/




/*============================ PODCAST ============================*/
.podcast-list-wrapper article+article {
    margin-top: 30px;
}
.podcast-teaser-wrapper {
    background-color: #fff;
    padding: 50px;
    box-sizing: border-box;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 10px;
}
    .podcast-teaser-wrapper h2 {
        font-size: 30px;
    }

    .podcast-teaser-wrapper .podcast-teaser-image {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 10px;
    }
    .podcast-teaser-wrapper iframe {
        border-radius: 10px;
    }

    .podcast-teaser-content {
        height:66px;
        overflow: hidden;
        transition: all 0.3s;
        margin-top: 20px;
    }
    .show-content .podcast-teaser-content {
        height: auto;
        transition: all 0.3s;
    }
    .podcast-teaser-text {
        padding-bottom: 20px;
    }

    .post-teaser-buttons {
        background: rgb(255,255,255);
        background: linear-gradient(0deg, rgba(255,255,255,1) 30%, rgba(255,255,255,0) 100%);
        margin-top: -77px;
        display: block;
        position: relative;
        padding: 60px 0 0 0;
    }
    .show {display: block !important;}
    .show-content .show {display: none !important;}
    .hide {display: none !important;}
    .show-content .hide {display: block !important;}

    .podcast-teaser-wrapper a.show-more-button {
        font-family: var(--main-font);
        font-size: 15px;
        color: #000;
        margin-top: 20px;
        text-transform: uppercase;
        font-weight: 600;
    }
/*========================== PODCAST ENDE =========================*/




/*============================ FORMULAR ===========================*/
input[type="text"],
input[type="email"] {
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    border: solid 1px #c6c6c6;
    padding-left: 20px;
    border-radius: 3px;
}
textarea {
    width: 100%;
    height: 120px;
    box-sizing: border-box;
    border: solid 1px #c6c6c6;
    padding: 20px;
    border-radius: 3px;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none !important;
    border: 1px solid var(--green);
}

form p:first-of-type {
    margin: 0;
}
/*========================= FORMULAR ENDE =========================*/




/*====================== SOCIAL MEDIA ICONS =======================*/
.social-icon-wrapper {
    width: 34px;
    height: 34px;
    border-radius: 5px;
    text-align: center;
    line-height: 33px;
    display: inline-block;
    border: solid 2px;
    transition: all 0.3s;
}
.social-icon-wrapper.facebook {background-color: var(--blue);border-color:var(--blue);}
.social-icon-wrapper.instagram {background-color: var(--purple);border-color:var(--purple);}
.social-icon-wrapper.phone {background-color: var(--green);border-color:var(--green);}
.social-icon-wrapper.mail {background-color: var(--orange);border-color:var(--orange);}

.social-icon-wrapper:hover.facebook {background-color: transparent; transition: all 0.3s;}
.social-icon-wrapper:hover.facebook svg {stroke: var(--blue); transition: all 0.3s;}

.social-icon-wrapper:hover.instagram {background-color: transparent; transition: all 0.3s;}
.social-icon-wrapper:hover.instagram svg {stroke: var(--purple); transition: all 0.3s;}

.social-icon-wrapper:hover.phone {background-color: transparent; transition: all 0.3s;}
.social-icon-wrapper:hover.phone svg {stroke: var(--green); transition: all 0.3s;}

.social-icon-wrapper:hover.mail {background-color: transparent; transition: all 0.3s;}
.social-icon-wrapper:hover.mail svg {stroke: var(--orange); transition: all 0.3s;}


.social-icon-wrapper svg {
    stroke: #fff;
    width: 28px;
    height: 28px;
    transition: all 0.3s;
}
.offcanvas-social-wrapper {
    padding: 35px 0 0 15px;
}
/*=================== SOCIAL MEDIA ICONS ENDE =====================*/



@media screen and (min-width: 1920px) {
    html {
        background-color: #f5f5f5;
    }
    body {
        max-width: 1920px;
        box-shadow: 0 0 40px rgba(0,0,0,0.1);
        margin: 0 auto;
        background-color: var(--white);
    }
}
@media screen and (max-width: 1250px) {
    .vd-navbar .uk-navbar-nav > li {
        padding: 0 15px;
    }
    .vd-navbar .uk-navbar-nav > li > a {
        font-size: 16px;
    }
    section.leistungen-slider .uk-slidenav-position .uk-slidenav-previous,
    section.kundenstimmen .uk-slidenav-position .uk-slidenav-previous {
        left: 0;
    }
    section.leistungen-slider .uk-slidenav-position .uk-slidenav-next,
    section.kundenstimmen .uk-slidenav-position .uk-slidenav-next {
        right: 0;
    }

    h1, .h1 {
        font-size: 42px;
    }
    h2, .h2 {
        font-size: 36px;
        line-height: 1.3;
    }
    .fs60 {
        font-size: 42px;
        line-height: 1.3;
    }
}
@media screen and (max-width: 1000px) {
    .vd-slideshow p {
        font-size: 16px;
    }
    h3, .h3 {
        font-size: 18px;
    }
    section.angebot,
    section.kundenstimmen,
    footer {
        padding: 40px 0;
    }
    section.leistungen-slider,
    .tm-content {
        padding: 100px 0 0 0;
    }
    .vd-slideshow:after {
        clip-path: none;
    }
}
@media screen and (max-width: 940px) {
    .vd-navbar .social-wrapper-nav {
        display: none;
    }
}
@media screen and (max-width: 768px) {
    .vd-navbar {
        padding: 5px 0;
    }
    .wide-image {
        padding: 60px 20px;
    }
    h1, .h1, .fs60 {
        font-size: 33px;
        line-height: 1.3;
    }
    h2, .h2 {
        font-size: 27px;
        line-height: 1.3;
    }
    h3, .h3 {
        font-size: 18px;
    }
    .vd-slideshow .slider-item-wrapper {
        /*height: 60vh;*/
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
    a.cta-button, section.cta a, input[type="submit"] {
        font-size: 16px;
        padding: 7px 30px;
    }
    .made-by {
        float: none;
        margin-top: 30px;
    }
    footer .uk-width-large-1-4 h5 {
        margin-top: 24px;
    }
    footer .uk-width-large-1-4:first-of-type h5 {
        margin-top: 0;
    }

    .post-full-image {
        border-radius: 10px 10px 0 0;
    }
    .post-full-content-wrapper {
        margin-top: 0;
        max-width: 100%;
        padding: 25px;
        border-radius: 0 0 10px 10px;
    }
    ul, ol {
        padding-left: 20px;
    }
    .podcast-teaser-wrapper {
        padding: 25px;
    }
}
@media screen and (max-width: 600px) {
    .vd-slideshow:after {
        background-size: contain;
        background-repeat: no-repeat;
        margin-top: -100px;
        height: 100px;
    }
    section.disclaimer .disclaimer-nav ul li {
        display: block;
        border-right: 0;
        padding: 0;
    }
}
@media screen and (max-width: 400px) {
    h1, .h1, .fs60, h2, .h2 {
        font-size: 27px;
    }
    h3, .h3 {
        font-size: 18px;
    }
    .vd-slideshow .slider-item-wrapper {
        /*height: 60vh;*/
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
    p, footer .uk-nav-side > li > a, footer .uk-nav-side .uk-nav-header, .made-by p, .vd-slideshow p, ul li, ol li {
        font-size: 14px;
        line-height: 1.5;
        font-weight: 400;
    }
    .leistungen-slider .post-teaser-content {
        min-height: 140px;
    }
    nav.vd-navbar .vd-container {
        padding: 0 15px;
    }
    .uk-navbar-content, .uk-navbar-brand, .uk-navbar-toggle {
        padding: 0 0 0 15px;
    }
    .vd-logo {
        margin-right: 10px;
    }
    .vd-container {
        padding: 0 15px;
    }
}