@charset "UTF-8";
/*@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300&display=swap');*/
.dl-menuwrapper {
    width: 100%;
    float: left;
    position: relative;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    -webkit-perspective-origin: 50% 200%;
    perspective-origin: 50% 200%;
}

    .dl-menuwrapper:first-child {
        margin-right: 100px;
    }

    .dl-menuwrapper button {
        background: #ccc;
        border: none;
        width: 48px;
        height: 45px;
        text-indent: -900em;
        overflow: hidden;
        position: relative;
        cursor: pointer;
        outline: none;
    }

        .dl-menuwrapper button:after {
            content: '';
            position: absolute;
            width: 68%;
            height: 5px;
            background: #fff;
            top: 10px;
            left: 16%;
            box-shadow: 0 10px 0 #fff,0 20px 0 #fff;
        }

    .dl-menuwrapper ul {
        padding: 0;
        list-style: none;
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }

    .dl-menuwrapper li {
        position: relative;
    }

        .dl-menuwrapper li a {
            display: block;
            position: relative;
            padding: 15px 20px;
            font-size: 16px;
            line-height: 20px;
            font-weight: 300;
            color: #fff;
            outline: none;
        }

.no-touch .dl-menuwrapper li a:hover {
    background: rgba(255,248,213,.1);
}

.dl-menuwrapper li.dl-top > a {
    padding-left: 30px;
    background: rgba(0,0,0,.1);
}

.dl-menuwrapper li.dl-back:after, .dl-menuwrapper li.dl-top:after, .dl-menuwrapper li > a:not(:only-child):after {
    position: absolute;
    top: 0;
    line-height: 50px;
    speak: none;
    -webkit-font-smoothing: antialiased;
}

.dl-menuwrapper li.dl-top:after {
    left: 10px;
    color: rgba(212,204,198,.3);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.dl-menuwrapper li > a:after {
    right: 10px;
    color: rgba(0,0,0,.15);
}

.dl-menuwrapper .dl-menu {
    margin: 0;
    position: absolute;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

    .dl-menuwrapper .dl-menu.dl-menu-toggle {
        transition: all .3s ease;
    }

    .dl-menuwrapper .dl-menu.dl-menuopen {
        opacity: 1;
        pointer-events: auto;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

.dl-menuwrapper li .dl-submenu {
    display: none;
}

.dl-menu.dl-subview li, .dl-menu.dl-subview li .dl-submenu, .dl-menu.dl-subview li.dl-subviewopen > a, .dl-menu.dl-subview li.dl-subview > a, .dl-menu.dl-subview li.dl-subviewopen > .arrow, .dl-menu.dl-subview li.dl-subview > .arrow {
    display: none;
}

    .dl-menu.dl-subview li.dl-subview, .dl-menu.dl-subview li.dl-subview > .dl-submenu, .dl-menu.dl-subview li.dl-subviewopen, .dl-menu.dl-subview li.dl-subviewopen > .dl-submenu, .dl-menu.dl-subview li.dl-subviewopen > .dl-submenu > li {
        display: block;
    }

.dl-menuwrapper > .dl-submenu {
    position: absolute;
    width: 100%;
    top: 50px;
    left: 0;
    margin: 0;
}

.dl-menu.dl-animate-out-1 {
    -webkit-animation: MenuAnimOut1 .4s;
    animation: MenuAnimOut1 .4s;
}

.dl-menu.dl-animate-out-2 {
    -webkit-animation: MenuAnimOut2 .3s ease-in-out;
    animation: MenuAnimOut2 .3s ease-in-out;
}

.dl-menu.dl-animate-out-3 {
    -webkit-animation: MenuAnimOut3 .4s ease;
    animation: MenuAnimOut3 .4s ease;
}

.dl-menu.dl-animate-out-4 {
    -webkit-animation: MenuAnimOut4 .4s ease;
    animation: MenuAnimOut4 .4s ease;
}

.dl-menu.dl-animate-out-5 {
    -webkit-animation: MenuAnimOut5 .4s ease;
    animation: MenuAnimOut5 .4s ease;
}

@-webkit-keyframes MenuAnimOut1 {
    50% {
        -webkit-transform: translateZ(-250px) rotateY(30deg);
    }

    75% {
        -webkit-transform: translateZ(-372.5px) rotateY(15deg);
        opacity: .5;
    }

    100% {
        -webkit-transform: translateZ(-500px) rotateY(0deg);
        opacity: 0;
    }
}

@-webkit-keyframes MenuAnimOut2 {
    100% {
        -webkit-transform: translateX(-100%);
        opacity: 0;
    }
}

@-webkit-keyframes MenuAnimOut3 {
    100% {
        -webkit-transform: translateZ(300px);
        opacity: 0;
    }
}

@-webkit-keyframes MenuAnimOut4 {
    100% {
        -webkit-transform: translateZ(-300px);
        opacity: 0;
    }
}

@-webkit-keyframes MenuAnimOut5 {
    100% {
        -webkit-transform: translateY(40%);
        opacity: 0;
    }
}

@keyframes MenuAnimOut1 {
    50% {
        -webkit-transform: translateZ(-250px) rotateY(30deg);
        transform: translateZ(-250px) rotateY(30deg);
    }

    75% {
        -webkit-transform: translateZ(-372.5px) rotateY(15deg);
        transform: translateZ(-372.5px) rotateY(15deg);
        opacity: .5;
    }

    100% {
        -webkit-transform: translateZ(-500px) rotateY(0deg);
        transform: translateZ(-500px) rotateY(0deg);
        opacity: 0;
    }
}

@keyframes MenuAnimOut2 {
    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes MenuAnimOut3 {
    100% {
        -webkit-transform: translateZ(300px);
        transform: translateZ(300px);
        opacity: 0;
    }
}

@keyframes MenuAnimOut4 {
    100% {
        -webkit-transform: translateZ(-300px);
        transform: translateZ(-300px);
        opacity: 0;
    }
}

@keyframes MenuAnimOut5 {
    100% {
        -webkit-transform: translateY(40%);
        transform: translateY(40%);
        opacity: 0;
    }
}

.dl-menu.dl-animate-in-1 {
    -webkit-animation: MenuAnimIn1 .3s;
    animation: MenuAnimIn1 .3s;
}

.dl-menu.dl-animate-in-2 {
    -webkit-animation: MenuAnimIn2 .3s ease-in-out;
    animation: MenuAnimIn2 .3s ease-in-out;
}

.dl-menu.dl-animate-in-3 {
    -webkit-animation: MenuAnimIn3 .4s ease;
    animation: MenuAnimIn3 .4s ease;
}

.dl-menu.dl-animate-in-4 {
    -webkit-animation: MenuAnimIn4 .4s ease;
    animation: MenuAnimIn4 .4s ease;
}

.dl-menu.dl-animate-in-5 {
    -webkit-animation: MenuAnimIn5 .4s ease;
    animation: MenuAnimIn5 .4s ease;
}

@-webkit-keyframes MenuAnimIn1 {
    0% {
        -webkit-transform: translateZ(-500px) rotateY(0deg);
        opacity: 0;
    }

    20% {
        -webkit-transform: translateZ(-250px) rotateY(30deg);
        opacity: .5;
    }

    100% {
        -webkit-transform: translateZ(0) rotateY(0deg);
        opacity: 1;
    }
}

@-webkit-keyframes MenuAnimIn2 {
    0% {
        -webkit-transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        opacity: 1;
    }
}

@-webkit-keyframes MenuAnimIn3 {
    0% {
        -webkit-transform: translateZ(300px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0);
        opacity: 1;
    }
}

@-webkit-keyframes MenuAnimIn4 {
    0% {
        -webkit-transform: translateZ(-300px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0);
        opacity: 1;
    }
}

@-webkit-keyframes MenuAnimIn5 {
    0% {
        -webkit-transform: translateY(40%);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        opacity: 1;
    }
}

@keyframes MenuAnimIn1 {
    0% {
        -webkit-transform: translateZ(-500px) rotateY(0deg);
        transform: translateZ(-500px) rotateY(0deg);
        opacity: 0;
    }

    20% {
        -webkit-transform: translateZ(-250px) rotateY(30deg);
        transform: translateZ(-250px) rotateY(30deg);
        opacity: .5;
    }

    100% {
        -webkit-transform: translateZ(0) rotateY(0deg);
        transform: translateZ(0) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes MenuAnimIn2 {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes MenuAnimIn3 {
    0% {
        -webkit-transform: translateZ(300px);
        transform: translateZ(300px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

@keyframes MenuAnimIn4 {
    0% {
        -webkit-transform: translateZ(-300px);
        transform: translateZ(-300px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

@keyframes MenuAnimIn5 {
    0% {
        -webkit-transform: translateY(40%);
        transform: translateY(40%);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-1 {
    -webkit-animation: SubMenuAnimIn1 .4s ease;
    animation: SubMenuAnimIn1 .4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-2 {
    -webkit-animation: SubMenuAnimIn2 .3s ease-in-out;
    animation: SubMenuAnimIn2 .3s ease-in-out;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-3 {
    -webkit-animation: SubMenuAnimIn3 .4s ease;
    animation: SubMenuAnimIn3 .4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-4 {
    -webkit-animation: SubMenuAnimIn4 .4s ease;
    animation: SubMenuAnimIn4 .4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-5 {
    -webkit-animation: SubMenuAnimIn5 .4s ease;
    animation: SubMenuAnimIn5 .4s ease;
}

@-webkit-keyframes SubMenuAnimIn1 {
    0% {
        -webkit-transform: translateX(50%);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        opacity: 1;
    }
}

@-webkit-keyframes SubMenuAnimIn2 {
    0% {
        -webkit-transform: translateX(100%);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        opacity: 1;
    }
}

@-webkit-keyframes SubMenuAnimIn3 {
    0% {
        -webkit-transform: translateZ(-300px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0);
        opacity: 1;
    }
}

@-webkit-keyframes SubMenuAnimIn4 {
    0% {
        -webkit-transform: translateZ(300px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0);
        opacity: 1;
    }
}

@-webkit-keyframes SubMenuAnimIn5 {
    0% {
        -webkit-transform: translateZ(-200px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0);
        opacity: 1;
    }
}

@keyframes SubMenuAnimIn1 {
    0% {
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes SubMenuAnimIn2 {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes SubMenuAnimIn3 {
    0% {
        -webkit-transform: translateZ(-300px);
        transform: translateZ(-300px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

@keyframes SubMenuAnimIn4 {
    0% {
        -webkit-transform: translateZ(300px);
        transform: translateZ(300px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

@keyframes SubMenuAnimIn5 {
    0% {
        -webkit-transform: translateZ(-200px);
        transform: translateZ(-200px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-1 {
    -webkit-animation: SubMenuAnimOut1 .4s ease;
    animation: SubMenuAnimOut1 .4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-2 {
    -webkit-animation: SubMenuAnimOut2 .3s ease-in-out;
    animation: SubMenuAnimOut2 .3s ease-in-out;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-3 {
    -webkit-animation: SubMenuAnimOut3 .4s ease;
    animation: SubMenuAnimOut3 .4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-4 {
    -webkit-animation: SubMenuAnimOut4 .4s ease;
    animation: SubMenuAnimOut4 .4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-5 {
    -webkit-animation: SubMenuAnimOut5 .4s ease;
    animation: SubMenuAnimOut5 .4s ease;
}

@-webkit-keyframes SubMenuAnimOut1 {
    0% {
        -webkit-transform: translateX(0%);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(50%);
        opacity: 0;
    }
}

@-webkit-keyframes SubMenuAnimOut2 {
    0% {
        -webkit-transform: translateX(0%);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(100%);
        opacity: 0;
    }
}

@-webkit-keyframes SubMenuAnimOut3 {
    0% {
        -webkit-transform: translateZ(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateZ(-300px);
        opacity: 0;
    }
}

@-webkit-keyframes SubMenuAnimOut4 {
    0% {
        -webkit-transform: translateZ(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateZ(300px);
        opacity: 0;
    }
}

@-webkit-keyframes SubMenuAnimOut5 {
    0% {
        -webkit-transform: translateZ(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateZ(-200px);
        opacity: 0;
    }
}

@keyframes SubMenuAnimOut1 {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
        opacity: 0;
    }
}

@keyframes SubMenuAnimOut2 {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes SubMenuAnimOut3 {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateZ(-300px);
        transform: translateZ(-300px);
        opacity: 0;
    }
}

@keyframes SubMenuAnimOut4 {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateZ(300px);
        transform: translateZ(300px);
        opacity: 0;
    }
}

@keyframes SubMenuAnimOut5 {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateZ(-200px);
        transform: translateZ(-200px);
        opacity: 0;
    }
}

.no-js .dl-menuwrapper .dl-menu {
    position: relative;
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

.no-js .dl-menuwrapper li .dl-submenu {
    display: block;
}

.no-js .dl-menuwrapper li.dl-top {
    display: none;
}

.no-js .dl-menuwrapper li > a:not(:only-child) {
    background: rgba(0,0,0,.1);
}

    .no-js .dl-menuwrapper li > a:not(:only-child):after {
        content: '';
    }

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}

    .slick-list:focus {
        outline: none;
    }

    .slick-list.dragging {
        cursor: pointer;
        cursor: hand;
    }

.slick-slider .slick-track, .slick-slider .slick-list {
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

    .slick-track:before, .slick-track:after {
        content: "";
        display: table;
    }

    .slick-track:after {
        clear: both;
    }

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.slick-loading .slick-list {
    background: #fff url('/fonts/Slickslider/ajax-loader.gif') center center no-repeat;
}

.slick-prev, .slick-next {
    position: absolute;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    background: transparent;
    color: transparent;
    top: 50%;
    -webkit-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    transform: translate(0,-50%);
    padding: 0;
    border: none;
    outline: none;
}

    .slick-prev:hover, .slick-next:hover, .slick-prev:focus, .slick-next:focus {
        outline: none;
        background: transparent;
        color: transparent;
    }

        .slick-prev:hover:before, .slick-next:hover:before, .slick-prev:focus:before, .slick-next:focus:before {
            opacity: 1;
        }

    .slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
        opacity: .25;
    }

    .slick-prev:before, .slick-next:before {
        font-family: "slick";
        font-size: 20px;
        line-height: 1;
        color: #fff;
        opacity: .75;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

@font-face {
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;
    src: url('/fonts/Slickslider/slick.eot?');
    src: url('/fonts/Slickslider/slick.eot?#iefix') format('embedded-opentype'),url('/fonts/Slickslider/slick.woff') format('woff'),url('/fonts/Slickslider/slick.ttf') format('truetype'),url('/fonts/Slickslider/slick.svg#slick') format('svg');
}

.slick-prev {
    left: -25px;
}

[dir="rtl"] .slick-prev {
    left: auto;
    right: -25px;
}

.slick-prev:before {
    content: "←";
}

[dir="rtl"] .slick-prev:before {
    content: "→";
}

.slick-next {
    right: -25px;
}

[dir="rtl"] .slick-next {
    left: -25px;
    right: auto;
}

.slick-next:before {
    content: "→";
}

[dir="rtl"] .slick-next:before {
    content: "←";
}

.slick-dotted .slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

    .slick-dots li {
        position: relative;
        display: inline-block;
        height: 20px;
        width: 20px;
        margin: 0 5px;
        padding: 0;
        cursor: pointer;
    }

        .slick-dots li button {
            border: 0;
            background: transparent;
            display: block;
            height: 20px;
            width: 20px;
            outline: none;
            line-height: 0;
            font-size: 0;
            color: transparent;
            padding: 5px;
            cursor: pointer;
        }

            .slick-dots li button:hover, .slick-dots li button:focus {
                outline: none;
            }

                .slick-dots li button:hover:before, .slick-dots li button:focus:before {
                    opacity: 1;
                }

            .slick-dots li button:before {
                position: absolute;
                top: 0;
                left: 0;
                content: "•";
                width: 20px;
                height: 20px;
                font-family: "slick";
                font-size: 6px;
                line-height: 20px;
                text-align: center;
                color: #000;
                opacity: .25;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
            }

        .slick-dots li.slick-active button:before {
            color: #000;
            opacity: .75;
        }

.btn {
    color: #414141;
    padding: 6px 15px;
    font-size: 20px;
    border-radius: 0;
    border: 2px solid #757575;
}

    .btn:hover, .btn.grey:hover {
        border-color: #f00;
        color: #f00;
    }

    .btn.white {
        border-color: #fff;
        color: #fff;
    }

        .btn.white:hover {
            background-color: #f00;
        }

    .btn.red {
        border-color: #f00;
        color: #f00;
    }

        .btn.red:hover {
            border-color: #757575;
            color: #757575;
        }

.arrow-red:before {
    position: absolute;
    content: ' ';
    background-color: transparent;
    width: 0;
    height: 0;
    border-right: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 22px solid #f00;
}

.arrow-red:hover:before {
    border-left: 22px solid #414141;
}

.arrow-red-small:before {
    position: absolute;
    content: ' ';
    background-color: transparent;
    width: 0;
    height: 0;
    border-right: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 11px solid #f00;
    left: 30px;
    bottom: 15px;
}

.arrow-red-small.prod:before {
    left: 15px;
    bottom: 50px;
}

.arrow-red-small.next:before {
    right: 25px;
    left: auto;
}

.arrow-red-small.prev:before {
    border-right: 11px solid #f00;
    border-left: 0;
    left: 26px;
}

.arrow-red-small.prev:hover:before {
    border-right: 11px solid #414141;
    border-left: 0;
}

.arrow-red-small:hover:before {
    border-left: 11px solid #414141;
}

.arrow-red-small.title:before {
    left: 15px;
    bottom: 0;
}

.img-slider .slick-prev:before, .img-slider-alt .slick-prev:before {
    top: 12px;
    left: 12px;
}

.img-slider .slick-next:before, .img-slider-alt .slick-next:before {
    top: 12px;
    left: 14px;
}

.branch .arrow-red-small:before {
    left: 15px;
    bottom: 0;
}

.download .arrow-red-small:before {
    bottom: 75px;
}

.btn-img {
    border: 1px solid #757575;
    font-weight: 300;
    background-repeat: no-repeat;
    background-position: right 1px center;
    padding: 7px 60px 7px 20px !important;
    height: 45px;
}

.btn-cad {
    background-image: url(/images/ic-pen.png);
}

.btn-dld {
    background-image: url(/images/ic-dld.png);
}

.btn-img.grey {
    background-color: #f1f1f1;
}

.btn-img:hover {
    color: #f00 !important;
    border: 1px solid #f00;
}

@media(min-width: 992px) {
    .btn {
        padding: 6px 30px;
    }
}

body, html {
    color: #414141;
    font-family: "roboto";
    font-size: 18px;
    font-weight: 300;
    overflow-x: hidden;
}

body {
    background-color: #fff;
}

.footer-top a {	
    color: #fff;	
    text-decoration: none;	
}	
.footer-menu a {	
    color: #757575;	
    text-decoration:none;	
}

::-webkit-input-placeholder {
    color: #414141;
}

::-moz-placeholder {
    color: #414141;
}

:-ms-input-placeholder {
    color: #414141;
}

:-moz-placeholder {
    color: #414141;
}

.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.wide-container {
    width: 100%;
}

h1, h2, h3, h4, h5 {
    color: #414141;
    margin-top: 0;
    margin-bottom: 5px;
}

.intro h1, .intro h2 {
    font-size: 30px;
}

    .intro h1 strong, h2 strong, h3 strong {
        font-weight: 700;
    }

h1 {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 300;
}

h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

h3 {
    font-size: 25px;
    margin-bottom: 5px;
}

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

ul, ol {
    padding-left: 0;
}

li {
    list-style: none;
}

iframe {
    max-width: 100%;
}

.content {
    padding-bottom: 25px;
}

    .content li {
        margin-left: 20px;
        list-style-position: inside;
    }

    .content ul {
        padding-left: 0;
    }

        .content ul li {
            list-style-type: circle;
        }

    .content ol li {
        list-style-type: decimal;
        padding-left: 1px;
    }

    .content a {
        color: #414141 !important;
        text-decoration: underline !important;
    }

        .content a.btn {
            text-decoration: none !important;
        }

    .content table th, .content .content table td {
        padding: 5px 5px 5px 0;
    }

    .content img, .content img.contentImage {
        margin: 1%;
        max-width: 98%;
    }

        .content img.contentImage {
            width: 100%;
            margin: 10px 0;
        }

    .content h2 {
        font-size: 26px;
        margin-bottom: 20px;
        margin-top: 5px;
        font-weight: 300;
    }

    .content h3 {
        font-size: 26px;
        margin-bottom: 10px;
        margin-top: 5px;
        font-weight: 300;
    }

.logo {
    z-index: 1080;
    position: relative;
}

a {
    color: inherit;
}

p {
    margin: 0;
}

a:focus, a:hover {
    text-decoration: none;
    color: inherit;
}

.line-through {
    text-decoration: line-through;
}

.p10 {
    padding: 10px;
}

.pt5 {
    padding-top: 5px;
}

.pt10 {
    padding-top: 10px;
}

.pt15 {
    padding-top: 15px;
}

.pt20 {
    padding-top: 20px;
}

.pt30 {
    padding-top: 30px;
}

.pt50 {
    padding-top: 50px !important;
}

.pb5 {
    padding-bottom: 5px;
}

.pb20 {
    padding-bottom: 20px;
}

.pb50 {
    padding-bottom: 50px !important;
}

.pl0 {
    padding-left: 0;
}

.pl15 {
    padding-left: 15px;
}

.pr0 {
    padding-right: 0;
}

.pr5 {
    padding-right: 5px;
}

.mr0 {
    margin-right: 0;
}

.mr10 {
    margin-right: 10px;
}

.mr20 {
    margin-right: 20px;
}

.ml10 {
    margin-left: 10px;
}

.ml15 {
    margin-left: 15px;
}

.mt0 {
    margin-top: 0;
}

.mt5 {
    margin-top: 5px;
}

.mt10 {
    margin-top: 10px;
}

.mt15 {
    margin-top: 15px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px !important;
}

.mt40 {
    margin-top: 40px !important;
}

.mt50 {
    margin-top: 50px !important;
}

.mt60 {
    margin-top: 50px !important;
}

.mt100 {
    margin-top: 100px !important;
}

.mb0 {
    margin-bottom: 0;
}

.mb5 {
    margin-bottom: 5px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb15 {
    margin-bottom: 15px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px !important;
}

.mb40 {
    margin-bottom: 40px !important;
}

.mb50 {
    margin-bottom: 50px !important;
}

.mb80 {
    margin-bottom: 80px !important;
}

.fnt10 {
    font-size: 10px;
}

.fnt14 {
    font-size: 14px;
}

.fnt16 {
    font-size: 16px;
}

.fnt18 {
    font-size: 18px;
}

.fnt20 {
    font-size: 20px;
}

.fnt22 {
    font-size: 22px;
}

.fnt23 {
    font-size: 23px;
}

.fnt24 {
    font-size: 24px;
    line-height: 28px;
}

.fnt26 {
    font-size: 26px;
    line-height: 30px;
}

.fnt28 {
    font-size: 28px;
}

.fnt30 {
    font-size: 30px;
}

.fnt32 {
    font-size: 32px;
}

.fnt36 {
    font-size: 36px;
}

.fnt40 {
    font-size: 40px;
}

.fnt44 {
    font-size: 44px;
}

.clickable {
    cursor: pointer;
}

.text-center {
    text-align: center;
}

.fntLight {
    font-weight: 300;
}

.fntRegular {
    font-weight: 400;
}

.fntBold {
    font-weight: 700;
}

.clr-white {
    color: #fff;
}

.clr-grey {
    color: #757575;
}

.clr-grey-light {
    color: #e2e2e2;
}

.clr-red {
    color: #f00;
}

.bg-grey {
    background-color: #757575;
}

.bg-white {
    background-color: #fff;
}

.bg-grey-light {
    background-color: #e2e2e2;
}

.bg-red {
    background-color: #f00;
}

.bg-black {
    background-color: #414141;
}

.red-line {
    width: 100%;
    background-color: #f00;
    height: 10px;
}

.bg-waves {
    background: url(/images/waves-repeat.png) right top;
}

.head-red {
    background-color: #f00;
    color: #fff;
    padding: 10px 15px;
    font-size: 18px;
}

.img-holder {
    overflow: hidden;
}

    .img-holder img {
        -moz-transition: all .3s;
        -webkit-transition: all .3s;
        transition: all .3s;
    }

    .img-holder:hover img {
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

.sitemap > ul {
    margin-left: 20px;
}

.sitemap ul ul {
    padding-left: 15px;
}

.sitemap li {
    list-style: disc;
}

    .sitemap li a {
        color: #414141;
    }

.intro {
    margin-top: 90px;
    margin-bottom: 40px;
}

.body {
    margin-bottom: 60px;
    margin-top: 20px;
}

.intro .content {
    padding-top: 30px;
}

.content-module .module {
    margin-top: 40px;
    margin-bottom: 40px;
}

.sitemap ul li strong {
    font-weight: normal;
}

.home-help {
    padding-top: 50px;
    margin-top: 40px;
}

    .home-help h2 {
        font-size: 48px;
        padding-bottom: 50px;
        font-weight: 300;
    }

    .home-help .people-holder {
        min-height: 550px;
        padding-top: 300px;
        position: relative;
    }

        .home-help .people-holder .name {
            margin-top: 20px;
            font-size: 24px;
            margin-bottom: 0;
            font-weight: 700;
        }

        .home-help .people-holder .fg-people {
            background-repeat: no-repeat;
            background-position: center bottom;
            min-height: 550px;
            width: 100%;
            position: absolute;
            top: 0;
            background-position: left bottom;
        }

        .home-help .people-holder .fg-people-1 {
            left: -1015px;
        }

        .home-help .people-holder .fg-people-2 {
            width: 57%;
            right: -1015px;
        }

        .home-help .people-holder .red-line {
            max-width: 310px;
        }

.usp-items .inside {
    background-color: #d81f13 !important;
    color: #fff !important;
    width: 100%;
}

    .usp-items .inside .usp-title {
        font-size: 12px;
        text-transform: uppercase;
    }

    .usp-items .inside .usp {
        padding: 15px 70px 15px 15px;
        background-color: #fff;
        color: #414141;
        background-position: right 10px center;
        background-repeat: no-repeat;
        margin-top: 15px;
        min-height: 97px;
    }

        .usp-items .inside .usp .usp-item-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .usp-items .inside .usp .usp-item-text {
            font-size: 14px;
            text-transform: uppercase;
        }

.slick-prev, .slick-next {
    top: -50px;
    border: 1px solid #e2e2e2;
    width: 50px;
    height: 50px;
}

    .slick-prev, .slick-prev:hover {
        left: 15px;
    }

    .slick-next, .slick-next:hover {
        right: 15px;
    }

        .slick-prev:before, .slick-next:before {
            position: absolute;
            content: ' ';
            background-color: transparent;
            width: 0;
            height: 0;
            border-right: 0;
            top: 17px;
            left: 20px;
        }

    .slick-prev:before {
        left: 17px;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-right: 13px solid #f00;
    }

    .slick-prev:hover:before {
        border-right: 13px solid #414141;
    }

    .slick-next:before {
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 13px solid #f00;
    }

    .slick-next:hover:before {
        border-left: 13px solid #414141;
    }

.branch-slider {
    margin-top: 60px;
}

.banner {
    padding: 20px 0;
    color: #fff;
    margin-bottom: 60px;
}

    .banner .text {
        font-size: 30px;
        padding-top: 8px;
        padding-bottom: 20px;
        line-height: 30px;
        text-align: center;
    }

    .banner .banner-link {
        text-align: center;
    }

.download {
    margin-bottom: 30px;
}

    .download .inside {
        background-color: #f1f1f1;
        background-repeat: no-repeat;
        background-position: bottom 45px left 15px;
        padding: 15px;
    }

        .download .inside .text {
            min-height: 212px;
            padding-bottom: 40px;
        }

            .download .inside .text .link {
                display: block;
                margin-bottom: 15px;
                font-size: 24px;
                font-weight: 400;
            }

        .download .inside .red-line {
            position: absolute;
            bottom: 0;
            width: 95%;
        }

        .download .inside:hover .red-line {
            background-color: #414141;
        }

.branch {
    margin-bottom: 30px;
}

    .branch .inside {
        padding: 15px;
        background-color: #f1f1f1;
    }

        .branch .inside .text {
            background-repeat: no-repeat;
            background-position: bottom left 15px;
            padding-bottom: 30px;
            font-size: 14px;
        }

            .branch .inside .text .link {
                display: block;
                margin-bottom: 12px;
                font-size: 18px;
                font-weight: 400;
            }

        .branch .inside:hover .text .red-line {
            background-color: #414141;
        }

.search-result {
    margin-bottom: 30px;
}

    .search-result .inside {
        padding: 15px;
        background-color: #f1f1f1;
    }

        .search-result .inside .title {
            background-repeat: no-repeat;
            background-position: bottom left 15px;
        }

            .search-result .inside .title .link {
                font-size: 20px;
                display: block;
                margin-bottom: 30px;
                font-weight: 700;
            }

        .search-result .inside .text {
            padding-bottom: 30px;
            font-size: 18px;
        }

.img-text-holder {
    position: relative;
    display: inline-block;
}

.img-text {
    position: absolute;
    background-color: #fff;
    top: 0;
    padding: 5px 10px;
}

.contact-details {
    font-size: 20px;
}

    .contact-details h2 {
        font-size: 25px;
        font-weight: 700;
        padding-top: 30px;
        text-transform: uppercase;
    }

    .contact-details .telephone, .contact-details .mail {
        background-position: left center;
        padding-left: 23px;
        background-repeat: no-repeat;
        margin-bottom: 5px;
        display: block;
    }

@media(min-width: 1200px) {
    .auto-clear .col-lg-1:nth-child(12n+1) {
        clear: left;
    }

    .auto-clear .col-lg-2:nth-child(6n+1) {
        clear: left;
    }

    .auto-clear .col-lg-3:nth-child(4n+1) {
        clear: left;
    }

    .auto-clear .col-lg-4:nth-child(3n+1) {
        clear: left;
    }

    .auto-clear .col-lg-6:nth-child(odd) {
        clear: left;
    }
}

@media(min-width: 992px) and (max-width:1199px) {
    .auto-clear .col-md-1:nth-child(12n+1) {
        clear: left;
    }

    .auto-clear .col-md-2:nth-child(6n+1) {
        clear: left;
    }

    .auto-clear .col-md-3:nth-child(4n+1) {
        clear: left;
    }

    .auto-clear .col-md-4:nth-child(3n+1) {
        clear: left;
    }

    .auto-clear .col-md-6:nth-child(odd) {
        clear: left;
    }
}

@media(min-width: 768px) and (max-width:991px) {
    .auto-clear .col-sm-1:nth-child(12n+1) {
        clear: left;
    }

    .auto-clear .col-sm-2:nth-child(6n+1) {
        clear: left;
    }

    .auto-clear .col-sm-3:nth-child(4n+1) {
        clear: left;
    }

    .auto-clear .col-sm-4:nth-child(3n+1) {
        clear: left;
    }

    .auto-clear .col-sm-6:nth-child(odd) {
        clear: left;
    }
}

@media(max-width: 767px) {
    .auto-clear .col-xs-1:nth-child(12n+1) {
        clear: left;
    }

    .auto-clear .col-xs-2:nth-child(6n+1) {
        clear: left;
    }

    .auto-clear .col-xs-3:nth-child(4n+1) {
        clear: left;
    }

    .auto-clear .col-xs-4:nth-child(3n+1) {
        clear: left;
    }

    .auto-clear .col-xs-6:nth-child(odd) {
        clear: left;
    }
}

.grid-section div.grijs {
    background: url(/images/waves-repeat.png) right top;
}

.umb-grid .container {
    padding-top: 30px;
    padding-bottom: 30px;
}

@media(max-width: 768px) {
    .search-result .inside .title {
        background-image: none !important;
    }
}

@media(max-width: 992px) {
    .home-help {
        margin-top: 0;
    }

        .home-help .people-holder {
            min-height: 305px;
            padding-top: 200px;
        }

            .home-help .people-holder .col-xs-6 {
                padding-left: 0;
                padding-right: 0;
            }

            .home-help .people-holder .name {
                font-size: 18px;
            }

            .home-help .people-holder .telephone {
                font-size: 16px;
            }

            .home-help .people-holder .fg-people {
                background-size: contain;
                min-height: 0;
                height: 200px;
                width: 50%;
                top: -20px;
                background-position: center bottom;
            }

            .home-help .people-holder .fg-people-1 {
                left: 0;
            }

            .home-help .people-holder .fg-people-2 {
                right: 0;
            }

    .header-slider .slick-dots {
        display: none !important;
    }

    .breadcrumb {
        display: none !important;
    }

    .header-title {
        margin-top: 30px;
    }

        .header-title h1 {
            font-size: 22px;
        }
}

@media(min-width: 768px) {
    .content img.contentImage {
        max-width: 100%;
        width: inherit;
        float: right;
        margin: 0 0 10px 10px;
    }
}

@media(min-width: 768px) AND (max-width:992px) {
    .container {
        width: 100%;
    }
}

@media(min-width: 992px) AND (max-width:1200px) {
    .container {
        width: 100%;
    }
}

@media(min-width: 992px) {
    .equal-row {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }

    .flex-md {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }

    .text-center-mob {
        text-align: left;
    }

    .flow-right:after {
        position: absolute;
        top: 0;
        right: -1000px;
        bottom: 0;
        left: 99%;
        content: " ";
        z-index: 1;
    }

    .flow-left:before {
        position: absolute;
        top: 0;
        bottom: 0;
        left: -1000px;
        content: " ";
        z-index: 1;
        width: 1000px;
    }

    .flow-left.white:before {
        background-color: #fff;
    }

    .intro {
        margin-top: 60px;
        margin-bottom: 40px;
    }

    .banner .text {
        text-align: left;
        padding-top: 6px;
        padding-bottom: 8px;
        float: left;
    }

    .banner .banner-link {
        text-align: left;
        float: right;
    }

    .contact-details {
        padding-left: 30px;
    }

        .contact-details h2 {
            font-size: 30px;
            padding-top: 60px;
        }

    .no-intro {
        top: -265px;
        position: relative;
        padding-top: 1px;
        margin-bottom: -265px;
    }

    .branch-slider {
        margin-top: 20px;
    }

        .branch-slider .slick-prev, .branch-slider .slick-next {
            top: 310px !important;
        }

    .images-right {
        margin-top: 310px;
    }
}

.nav > li > a {
    padding-left: 10px;
    padding-right: 12px;
    line-height: 18px;
}

.navbar-header {
    z-index: 1100;
    padding: 0 15px;
    background-color: #fff;
}

.mob-icon {
    float: right;
    background-repeat: no-repeat;
    background-position: center center;
    width: 42px;
    height: 42px;
    margin-top: 5px;
    margin-left: 10px;
}

.navbar-toggle {
    margin-right: 10px;
    border: 1px solid #e2e2e2;
    border-radius: 0;
    padding: 9px 5px 3px;
    float: left;
    margin-bottom: 15px;
    margin-top: 5px;
}

    .navbar-toggle .icon-bar {
        background-color: #f00;
        width: 32px;
        height: 2px;
        border-radius: 0;
        margin-bottom: 5px;
    }

.navbar-holder {
    margin-top: 30px;
    float: right;
    padding-left: 0;
    padding-right: 0;
    height: 62px;
}

.navbar-container {
    padding: 0;
}

.nav-holder {
    padding: 0 15px;
}

#navbar {
    width: 100%;
    max-width: 700px;
    height: 62px !important;
    padding: 24px 0;
    padding-left: 10px;
}

.navbar-nav > li > a {
    padding-top: 9px;
    padding-bottom: 7px;
    font-weight: 400;
}

#navbar a {
    font-size: 18px;
}

#navbar .dropdown-menu {
    border: 0;
    min-width: 320px;
    padding: 0;
}

    #navbar .dropdown-menu li {
        border-bottom: 1px solid #e2e2e2;
        position: relative;
    }

        #navbar .dropdown-menu li .new-count, #navbar .dropdown-menu li .new-label {
            top: 0;
            right: 0;
        }

        #navbar .dropdown-menu li:first-child {
            border-top: 1px solid #e2e2e2;
        }

.navbar-nav > li.active a, .navbar-nav > li:hover a, .navbar-nav > li.open a, .navbar-nav > li a:hover, .navbar-nav > li a:focus {
    color: #414141;
    background-color: #fff;
}

.navbar-nav > li.active > a, .navbar-nav > li:hover > a, .dropdown-menu > .active > a:hover {
    color: #f00;
    background-color: transparent !important;
}

.navbar-nav li:hover > a {
    color: #f00;
}

.dropdown-menu > li > a {
    padding: 7px 15px 5px;
    font-weight: 400;
}

#navbar .dropdown-menu > li.overview > a, .dl-submenu li.overview > a {
    font-size: 12px;
    padding: 10px 15px 8px 30px;
}

.lazy.dropdown {
    background-repeat: no-repeat;
    background-position: right center;
    margin-right: 10px;
}

.dl-menuwrapper {
    top: -60px;
    background-color: #414141;
    height: 1000px;
    overflow: hidden;
    display: none;
}

    .dl-menuwrapper.open {
        display: block;
    }

    .dl-menuwrapper .dl-menu {
        background-color: #414141;
        width: 100%;
        padding-bottom: 1000px;
        overflow: hidden;
    }

    .dl-menuwrapper li a {
        padding: 10px 15px;
        font-size: 18px;
        border-bottom: 4px solid #fff;
        text-transform: uppercase;
        font-weight: 400;
    }

.logos {
    margin: 35px 0;
}

    .logos .logo:first-child {
        margin-right: 20px;
    }

.logo-mobile {
    margin: 10px;
}

.logo-mobile-scan {
    padding-top: 15px;
}

.icon-phone {
    background: url(/images/phone.png) center no-repeat;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-top: 20px;
    margin-right: 15px;
    float: right;
}

.mob-head {
    text-align: center;
    padding: 5px;
    position: relative;
    color: #fff;
    padding-bottom: 20px;
}

    .mob-head #parent {
        margin: 7px 0;
        display: inline-block;
        font-size: 18px;
        padding: 0 8px;
        text-transform: uppercase;
    }

    .mob-head .btn {
        font-size: 15px;
        padding: 4px 6px;
    }

.mobile-close {
    margin-top: 3px;
    text-transform: uppercase;
    margin-right: 8px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding-top: 10px;
    font-weight: 700;
    color: #f00;
    background-color: #fff;
}

.dl-back {
    background: url(/images/arrow-red-small-left.png) #fff center no-repeat;
    width: 40px;
    height: 40px;
    display: inline-block;
    cursor: pointer;
    margin-top: 3px;
}

.dl-menuwrapper li.has-submenu > a, .dl-menuwrapper li.has-submenu > a:hover {
    background: url(/images/arrow-right-white.png) center right 15px no-repeat;
}

.prev, .next {
    border: 1px solid #e2e2e2;
    width: 35px;
    height: 35px;
    background-repeat: no-repeat;
    background-position: center left 8px;
    display: inline-block;
}

.next {
    background-position: center left 12px;
}

.numbers {
    margin-top: 27px;
}

    .numbers a {
        color: #414141;
        font-size: 18px;
        background-color: #fff;
        border: 1px solid #414141;
        padding: 4px 10px;
        margin-right: 10px;
    }

        .numbers a.active {
            background-color: #f00;
            color: #fff;
        }

.new-count, .new-label {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #757575;
    padding: 1px 4px;
    font-size: 11px;
    color: #fff;
    z-index: 99;
}

.new-label {
    text-transform: uppercase;
    font-size: 12px;
    padding: 2px 6px;
    right: 10px;
}

.mob-icon {
    border: 1px solid #e2e2e2;
    padding: 5px;
}

.search-popout {
    display: none;
    position: absolute;
    width: 320px;
    top: 0;
    right: 0;
}

    .search-popout input {
        border: 1px solid #e2e2e2;
        margin-bottom: 0;
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-image: url(/images/search.png);
        padding: 10px;
    }

    .search-popout button {
        position: absolute;
        right: 0;
        height: 42px;
        width: 40px;
        border: 0;
        background-color: transparent;
    }

    .search-popout.show {
        display: block;
    }

.ezsearch-form input.text-input {
    border: 1px solid #414141;
    margin-bottom: 0;
    background-repeat: no-repeat;
    background-position: right 2px center;
    padding: 12px;
}

.ezsearch-form .button {
    position: absolute;
    right: 20px;
    height: 42px;
    width: 40px;
    border: 0;
    background-color: transparent;
}

.breadcrumb {
    padding: 0;
    margin-bottom: 10px;
    background-color: transparent;
    border-radius: 0;
    max-width: 300px;
    margin-top: 10px;
    display: inline-block;
}

    .breadcrumb > li + li:before {
        content: "|";
        color: #414141;
       /* padding: 0 5px 0 0;*/
    }

    .breadcrumb a {
        font-size: 12px;
    }

    .breadcrumb li.active a {
        color: #f00;
    }

#btn-search {
    border: 1px solid #e2e2e2;
    padding: 11px 10px 10px;
    cursor: pointer;
}

@media(min-width: 768px) {
    .navbar-toggle {
        display: inherit;
    }

    .navbar-header {
        width: 100%;
    }
}

@media(min-width: 992px) {
    .navbar-toggle {
        display: none;
    }

    .navbar-container {
        padding: 0 15px;
    }

    .navbar-fixed-top {
        background-color: #fff;
    }

        .navbar-fixed-top.scrolled {
            position: fixed;
        }

            .navbar-fixed-top.scrolled .navbar-holder {
                margin-top: 0;
            }

            .navbar-fixed-top.scrolled .logos {
                margin: 25px 0;
            }

                .navbar-fixed-top.scrolled .logos img {
                    height: 40px;
                    width: auto;
                }
}

@media(min-width: 992px) AND (max-width:1200px) {
    .logos {
        max-width: 35%;
    }

        .logos img {
            max-width: 45%;
        }
}

@media(min-width: 1200px) {
    .logos .logo:first-child {
        margin-right: 40px;
    }
}

.header-image {
    background-position: center center;
    background-size: cover;
    height: 350px;
    width: 100%;
    margin-top: 140px;
}

.header-title {
    max-width: 250px;
}

.header-text {
    font-size: 36px;
    line-height: 40px;
    padding: 40px 15px 40px 0;
}

.header-mob {
    width: 100%;
    background-position: center center;
    background-size: cover;
    height: 260px;
    margin-top: 112px;
}

.header-holder {
    padding-right: 0;
    margin-top: 65px;
}

.header-overlay-holder {
    position: absolute;
    top: 140px;
    width: 100%;
    overflow: hidden;
}

    .header-overlay-holder .hth {
        display: none;
        z-index: 1000;
        position: absolute;
        left: -2000px;
    }

    .header-overlay-holder.home h1 {
        display: none;
    }

.header-overlay {
    height: 350px;
    background-repeat: no-repeat;
    background-position: left top;
}

.overlay-text {
    margin-top: 30px;
}

.header-slider .slick-dots {
    width: 1170px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: right;
    position: relative;
}

    .header-slider .slick-dots li {
        margin-right: 25px;
    }

        .header-slider .slick-dots li button {
            top: -80px;
            position: absolute;
            z-index: 1000;
        }

            .header-slider .slick-dots li button:before {
                background-color: transparent;
                width: 0;
                height: 0;
                border-right: 0;
                border-top: 13px solid transparent;
                border-bottom: 13px solid transparent;
                border-left: 22px solid #f00;
            }

            .header-slider .slick-dots li button:hover:before {
                border-left: 22px solid #414141;
            }

        .header-slider .slick-dots li.slick-active button:before {
            background-color: transparent;
            border-left: 22px solid #fff;
            cursor: default;
        }

@media(max-width: 992px) {
    .header-image {
        height: 250px;
    }

    .header-overlay-holder {
        width: 250px;
        height: 250px;
    }

        .header-overlay-holder .header-overlay {
            background-position: right top;
            height: 250px;
        }

    .header-text {
        font-size: 20px;
        line-height: 25px;
        padding-top: 20px;
    }
}

@media(min-width: 992px) {
    .header-holder {
        padding-right: 15px;
        margin-top: 0;
    }

    .header-image {
        position: relative;
        height: 615px;
        width: 100%;
        margin-top: 140px;
    }

        .header-image.home {
            height: 350px;
        }

    .header-text {
        font-size: 36px;
        line-height: 40px;
    }

    .flow-left.header-overlay:before {
        background: url(/images/waves-repeat.png) repeat-x right top;
    }

    .flow-right.bg-waves {
        background-position: left top;
    }

        .flow-right.bg-waves:after {
            background: url(/images/waves-repeat.png) left top;
        }

    .overlay-text {
        position: relative;
        margin-top: -265px;
    }

        .overlay-text .content {
            background-color: #fff;
            padding: 40px 20px 15px 15px;
            min-height: 265px;
            margin-bottom: 0;
        }
}

input, textarea {
    border: none;
    box-shadow: none;
    outline: none;
    color: #414141;
    background-color: #f1f1f1;
    padding: 11px 10px;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
    width: 100%;
    border-radius: 0;
    border: 1px solid #757575;
}

.required {
    color: #f00;
    margin-left: 5px;
}

textarea {
    height: 227px;
    margin-bottom: 16px;
}

input[type=checkbox], input[type=radio] {
    width: 18px;
}

input::-ms-clear {
    display: none;
}

label {
    font-weight: 300;
}

select {
    border: 1px solid #757575;
    box-shadow: none;
    outline: none;
    color: #414141;
    background-color: #f1f1f1;
    padding: 10px;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 2px;
    width: 100%;
    border-radius: 0;
}

.validation-summary-errors {
    text-align: left;
}

.form-item {
    background-color: #f1f1f1;
    padding: 10px;
    margin-bottom: 20px;
}

    .form-item.prod-details {
        margin-bottom: 36px;
    }

.form-result {
    padding: 10px;
    border: 1px solid #757575;
    background-color: #fff;
}

    .form-result p {
        margin: 0;
    }

.input-validation-error {
    border: 1px solid #f00;
}

.bootstrap-filestyle {
    margin-bottom: 20px;
}

    .bootstrap-filestyle input {
        background-color: #f1f1f1 !important;
        border-radius: 0;
        border-right: 1px solid #757575;
        border-top: 1px solid #757575;
        border-bottom: 1px solid #757575;
        border-left: 0;
        height: 45px;
        background: url(/images/ic-play.png) no-repeat center right 3px;
    }

    .bootstrap-filestyle .btn {
        border-left: 1px solid #757575;
        border-top: 1px solid #757575;
        border-bottom: 1px solid #757575;
        border-right: 0;
        background-color: #f1f1f1;
        font-weight: 300;
        font-size: 18px;
        height: 45px;
        padding: 8px 10px;
    }

.quote-form .btn-img {
    margin-top: 16px;
}

.slider-holder {
    background-color: #757575;
    padding: 20px 0 30px;
}

.slider {
    margin-top: 25px;
}

.case {
    height: 394px !important;
    background-position: right top;
    background-repeat: no-repeat;
    cursor: pointer;
    outline: none !important;
}

.slider-holder .case {
    width: 290px !important;
    margin-right: 20px;
}

.slider-holder .slick-dots {
    top: -75px;
    height: 80px;
    display: none !important;
}

.slick-dots li {
    margin: 0;
}

    .slick-dots li button:before {
        background-color: #fff;
        border: 1px solid #757575;
        content: " ";
        width: 8px;
        height: 9px;
        opacity: 1;
    }

    .slick-dots li.slick-active button:before {
        background-color: #414141;
        opacity: 1;
    }

.case-overlay {
    width: 100%;
    height: 80px;
    margin-top: 314px;
    background-color: #757575;
    color: #fff;
    padding: 10px 15px;
    display: inline-block;
    position: relative;
}

.case:nth-child(even) .case-overlay {
    background-color: #757575;
}

.case-overlay h3 {
    color: #fff;
    text-transform: uppercase;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.case-holder {
    margin: 60px auto 60px;
}

    .case-holder .case {
        margin-bottom: 30px;
    }

    .case-holder h2 {
        margin-bottom: 20px;
    }

.case-overview {
    padding: 60px 0;
    background-color: #757575;
}

    .case-overview .case {
        margin-bottom: 40px;
    }

.filter {
    background-color: #757575;
    padding: 35px 0 20px;
}

.filter-item {
    background-color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid #fff;
    height: 42px;
    margin-bottom: 15px;
}

    .filter-item.selected:after {
        content: " ";
        position: absolute;
        background: url(/images/tick.png) no-repeat center center;
        height: 45px;
        width: 45px;
        display: block;
        right: 8px;
        top: -9px;
    }

    .filter-item .text {
        float: left;
        padding: 10px;
    }

    .filter-item .check {
        background-color: #757575;
        width: 40px;
        height: 40px;
        float: right;
    }

.mockup-holder {
    background-color: #757575;
    padding: 60px 0;
}

#mockup {
    height: 314px;
    width: 930px;
    margin: 0 auto;
    background: no-repeat;
    max-width: 100%;
}

.screenshot-holder {
    background-color: #757575;
    padding: 60px 0;
}

.screenshots {
    position: relative;
    height: 685px;
    width: 100%;
}

.scr {
    position: absolute;
    max-width: 50%;
    height: auto;
}

#scr-1 {
    bottom: 0;
    left: 25%;
    z-index: 60;
}

#scr-2 {
    left: 0;
    top: 25%;
    z-index: 50;
}

#scr-3 {
    top: 0;
    right: 0;
    z-index: 50;
}

.case-txt {
    padding: 40px 15px;
}

.solution {
    float: left;
    font-size: 24px;
    margin: 10px 80px 0 0;
}

    .solution i {
        color: #757575;
        margin-right: 5px;
    }

@media(min-width: 992px) {
    .slider-holder {
        padding: 50px 0;
    }

    .case {
        height: 430px !important;
    }

    .slider-holder .case {
        width: 920px !important;
        margin-right: 110px;
    }

    .case-overlay {
        width: 440px;
        padding: 20px;
        height: auto;
        margin-top: 40px;
        min-height: 135px;
    }

        .case-overlay::after {
            content: " ";
            background: url(/images/arrow-orange.png) no-repeat center center;
            height: 31px;
            width: 21px;
            left: 440px;
            top: 50%;
            position: absolute;
            z-index: 900;
            margin-top: -15px;
        }

    .case-overview .case-overlay::after {
        left: 440px;
    }

    .case:nth-child(even) .case-overlay::after {
        background: url(/images/arrow-blue.png) no-repeat center center;
    }

    .slider .slick-dots {
        display: block !important;
    }

    #mockup {
        height: 640px;
        width: 1100px;
    }
}

@media(min-width: 1200px) {
    .slider {
        left: -217px;
        margin-right: -217px;
    }

    .slider-holder .slick-dots {
        margin-left: 108px;
    }
}

.topical.home-topical {
    padding-left: 0;
    padding-right: 0;
}

    .topical.home-topical .top-item:nth-child(2) {
        display: none;
    }

.topical .top-item {
    margin-bottom: 30px;
}

    .topical .top-item .inside {
        padding: 15px;
        background-color: #e2e2e2;
        background-repeat: no-repeat;
        background-position: left 15px bottom 15px;
        padding-bottom: 40px;
    }

        .topical .top-item .inside .top {
            font-size: 12px;
            padding-bottom: 15px;
            text-transform: uppercase;
        }

            .topical .top-item .inside .top a {
                color: #f00;
            }

        .topical .top-item .inside h3 {
            font-size: 18px;
            padding-bottom: 20px;
            font-weight: 700;
        }

        .topical .top-item .inside .text {
            font-size: 14px;
        }

    .topical .top-item:hover .red-line {
        background-color: #414141;
    }

@media(min-width: 992px) {
    .topical.home-topical {
        padding-left: 15px;
        padding-right: 15px;
    }

        .topical.home-topical .top-item:nth-child(2) {
            display: flex;
        }

    .topical .top-item .inside {
        padding-bottom: 15px;
    }
}

.cat-slider {
    margin-top: 80px;
    margin-bottom: 60px;
}

    .cat-slider .cat {
        padding: 20px;
        border-top: 10px solid #f00;
        border-bottom: 10px solid #e2e2e2;
    }

        .cat-slider .cat .img-holder {
            min-height: 180px;
        }

        .cat-slider .cat img {
            display: inline-block;
        }

        .cat-slider .cat:hover {
            border-top: 10px solid #e2e2e2;
            border-bottom: 10px solid #f00;
        }

.img-slider, .img-slider-alt {
    margin-bottom: 80px;
}

    .img-slider .slick-prev, .img-slider-alt .slick-prev, .img-slider .slick-next, .img-slider-alt .slick-next {
        top: auto;
        bottom: -75px;
        width: 40px;
        height: 40px;
    }

    .img-slider .slick-prev, .img-slider-alt .slick-prev {
        left: 0;
        background-position: left 11px center !important;
    }

    .img-slider .slick-next, .img-slider-alt .slick-next {
        right: 0;
    }

    .img-slider-alt a {
        padding: 15px;
    }

.products {
    margin-bottom: 60px;
}

    .products .prod {
        margin-bottom: 50px;
        background-repeat: no-repeat;
        background-position: left bottom;
        padding-bottom: 30px;
    }

        .products .prod .img-holder {
            margin-bottom: 20px;
        }

            .products .prod .img-holder img {
                width: 100%;
                height: auto;
            }

        .products .prod .text {
            margin-top: 15px;
        }

        .products .prod:hover .red-line {
            background-color: #414141;
        }

.prod-right .content {
    padding: 15px 10px;
}

.prod-right .related-product {
    margin: 20px 0;
    display: block;
}

#popup-cad {
    display: none;
    width: 680px;
    max-width: 100%;
    padding: 30px 30px;
}

    #popup-cad .fancybox-close-small {
        color: #fff;
        background-color: #f00;
        margin: 2px;
    }

    #popup-cad .cad-err {
        color: #f00;
        display: none;
    }

@media(min-width: 992px) {
    .prod-right {
        padding-left: 0;
    }
}

.footer-top {
    background-color: #757575;
    padding: 25px 0 30px;
}

.social-media {
    margin-bottom: 20px;
}

.soc {
    display: inline-block;
    margin-right: 2px;
    width: 31px;
    height: 31px;
    background-repeat: no-repeat;
    background-position: center center;
}

footer {
    position: relative;
}

    footer .btns .btn {
        border: 1px solid #414141;
        min-width: 280px;
        float: none;
    }

.news-letter-form {
    position: relative;
}

    .news-letter-form .btn {
        padding: 6px 18px;
        position: absolute;
        right: 5px;
        top: 5px;
    }

.grecaptcha-badge {
    display: none;
}

.grecaptcha-disclaimer {
    font-size: 10px;
}

.news-letter-form input {
    width: 100%;
    background-color: #757575;
    color: #fff;
    border: 4px solid #fff;
}

    .news-letter-form input::-webkit-input-placeholder {
        color: #fff;
    }

    .news-letter-form input::-moz-placeholder {
        color: #fff;
    }

    .news-letter-form input:-ms-input-placeholder {
        color: #fff;
    }

    .news-letter-form input:-moz-placeholder {
        color: #fff;
    }

footer .footer-part {
    margin-bottom: 30px;
    color: #fff;
}

.footer-part-1 {
    font-size: 14px;
}

.white-line {
    background-color: #fff;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 10px;
    left: 0;
}

.footer-part-1, .footer-part-3 {
    padding-bottom: 30px;
}

footer .footer-part h2 {
    color: #fff;
    font-size: 24px;
}

footer .footer-part:last-child {
    margin-bottom: 0;
}

.footer-bottom {
    padding: 15px 0;
}

.footer-menu li {
    display: inline-block;
    font-size: 14px;
    padding-right: 20px;
    color: #757575;
    margin-bottom: 5px;
}

    .footer-menu li .ipsis {
        position: relative;
        top: -2px;
        margin-right: 5px;
    }

.triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 330px 210px 0 210px;
    border-color: #f00 transparent transparent transparent;
    position: absolute;
    top: -30px;
}

.triangle-text {
    color: #fff;
    text-align: center;
    position: absolute;
    font-size: 36px;
    padding: 0 80px;
    width: 420px;
    line-height: 42px;
}

@media(min-width: 768px) {
    footer .footer-part1 {
        margin-bottom: 40px;
    }
}

@media(min-width: 992px) {
    .footer-top {
        padding: 30px 0 25px;
    }

    .white-line {
        left: inherit;
        max-width: 360px;
    }

    footer .footer-part {
        margin-bottom: 0;
    }

    .home-help .people-holder .name {
        margin-top: 25px;
    }
}
