/* Document */
html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}
body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #595656;
    background-color: #faf6f6;
}

/* Heading */
h1, h2, h3, h4, h5, h6 {
    color: #383435;
}
h1 {
    margin: 0 0 25px;
    font-size: 30px;
    font-weight: 400;
    color: #d6363d;
}
h2 {
    margin: 5px 0 20px;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.2;
}
h3 {
    margin: 5px 0 10px;
    font-size: 19px;
    font-weight: 600;
}
h4 {
    margin: 0 0 5px;
    font-size: 17px;
    font-weight: 600;
}

/* Paragraph */
p {
    margin: 10px 0 25px;
}

/* Hyperlink */
a {
    color: #349ddf;
}
a:hover,
a:focus {
    color: #349ddf;
}
a:focus {
    text-decoration: none;
}

/* Address */
address {
    line-height: 1.7;
}

/* List */
ul, ol {
    margin: 0 0 25px;
}

/* Lines */
hr {
    position: relative;
    margin: 40px 0;
    border-top-color: #ebeef0;
}
hr.space-top-small {
    margin-top: 20px;
}
hr.space-bottom-small {
    margin-bottom: 20px;
}
hr.space-top-xsmall {
    margin-top: 10px;
}
hr.space-bottom-xsmall {
    margin-bottom: 10px;
}
hr.space-top-collapse {
    margin-top: 0;
}
hr.space-bottom-collapse {
    margin-bottom: 0;
}

/* Images */
img[align="left"] {
    margin: 20px 30px 20px 0;
    max-width: 50%;
    height: auto;
    float: left;
}
img[align="right"] {
    margin: 20px 0 20px 30px;
    max-width: 50%;
    height: auto;
    float: right;
}

/* Blockquote */
blockquote {
    padding: 0 10%;
    font-size: 32px;
    font-weight: 300;
    font-style: italic;
    color: #949191;
    text-align: center;
    line-height: normal;
    border: none;
}
blockquote:after {
    font-family: Georgia, Times, 'Times New Roman', serif;
    font-size: 100px;
    color: #e4e0e1;
    vertical-align: -50px;
    line-height: 0;
    content: '”';
    display: inline-block;
}

/* Text color */
.text-primary { color: #d6363d; }
.text-light { color: #989495; }
.text-dark { color: #1d1818; }
.text-white { color: #fff; }
.text-danger { color: #da4e32; }

/* Text size */
.small { font-size: 90%; }
.smaller { font-size: 80%; }
.smallest { font-size: 70%; }

/* Background color */
.bg-primary { background-color: #d6363d; }
.bg-white { background-color: #fff; }
.bg-light { background-color: #faf6f6; }

/* Button */
.btn {
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.3;
    border-radius: 2px;
    border: 1px solid transparent;
}
.btn:hover,
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
    outline: none;
    border-color: transparent;
    box-shadow: none;
}
.btn.btn-big {
    padding: 15px;
    font-size: 17px;
}
.btn.btn-primary {
    color: #fff;
    background-color: #349ddf;
}
.btn.btn-primary:hover {
    border-color: transparent;
    background-color: #d89b3c;
}
.btn.btn-white {
    color: #349ddf;
    background-color: #fff;
}
.btn [class*="icon-arrow-"] {
    font-size: 14px;
    vertical-align: -1px;
    line-height: 0;
    display: inline-block;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transition: -webkit-transform .15s ease-in-out;
    -moz-transition: -moz-transform .15s ease-in-out;
    -ms-transition: -ms-transform .15s ease-in-out;
    transition: transform .15s ease-in-out;
}
.btn:hover .icon-arrow-right {
    transform: translateX(3px);
    -webkit-transform: translateX(3px);
    -moz-transform: translateX(3px);
    -ms-transform: translateX(3px);
}
.btn.btn-primary.more,
.btn.btn-primary.less{
    margin: 0 auto;
    float: none;
    background: url('../images/more.png') no-repeat center;

}

/* Forms */
.form-field h2 {
    color: #737467;
}
.control-label,
.form-horizontal .control-label {
    padding-top: 9px;
    padding-bottom: 5px;
    font-size: 17px;
    font-weight: normal;
    text-align: left;
    line-height: normal;
}
.form-control {
    height: 40px;
    padding: 8px;
    font-size: 17px;
    color: #595656;
    border: 1px solid #dcd7d8;
    border-radius: 0;
    box-shadow: none;
}
.form-control.noborder {
    border-color: transparent;
}
textarea.form-control {
    height: 160px;
    resize: vertical;
}
.form-control.error {
    border-color: #da4e32;
}
.form-control:focus {
    border-color: #349ddf;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
}
.form-group {
    margin-bottom: 10px;
}
.form-msg {
    padding-top: 5px;
    font-size: 12px;
    white-space: nowrap;
}
.form-msg ul {
    margin: 0;
    padding: 0;
    list-style-position: inside;
}
.form-msg li {
    line-height: normal;
}
input[type="radio"],
input[type="checkbox"] {
    margin-top: 8px;
}

/* Table */
.table tbody tr th,
.table tbody tr td {
    padding-left: 0;
    padding-right: 0;
    border-color: #ebeef0;
}

/* Container */
.container,
.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

/* Content */
.content img {
    max-width: 100%;
    height: auto;
    display: block;
}
.content-medium {
    max-width: 1024px;
}
.content-small {
    max-width: 768px;
}

/* Content padding */
.content-padding {
    padding-top: 30px;
    padding-bottom: 30px;
}
.content-padding-small {
    padding-top: 10px;
    padding-bottom: 10px;
}
.content-padding > h1:last-child,
.content-padding > p:last-child,
.content-padding > ul:last-child,
.content-padding > ol:last-child,
.content-padding-small > h1:last-child,
.content-padding-small > p:last-child,
.content-padding-small > ul:last-child,
.content-padding-small > ol:last-child {
    margin-bottom: 0;
}

/* Spacer */
.spacer {
    height: 30px;
    clear: both;
}
.spacer-large {
    height: 60px;
    clear: both;
}
.spacer-small {
    height: 15px;
    clear: both;
}
.spacer-xsmall {
    height: 5px;
    clear: both;
}

/* Row */
.row {
    margin-left: -15px;
    margin-right: -15px;
}
.row.gutter-small {
    margin-left: -10px;
    margin-right: -10px;
}
.row.gutter-xsmall {
    margin-left: -5px;
    margin-right: -5px;
}
.row.gutter-collapse {
    margin-left: 0;
    margin-right: 0;
}

/* Columns */
.row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}
.row.gutter-small > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}
.row.gutter-xsmall > [class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
}
.row.gutter-collapse > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

/* Layout container */
.layout-container {
    margin-bottom: 30px;
}

/* Block */
.block {
    padding: 20px;
}

/* Phone */
.phone {
    padding: 0 10px;
    height: 38px;
    line-height: 38px;
    border-radius: 19px;
}

/* Price */
.price {
    font-size: 19px;
    font-weight: 700;
    color: #d6363d;
}

/* Required */
.required {
    margin: 0 -100% 0 3px;
    width: 4px;
    height: 4px;
    text-indent: -1234em;
    vertical-align: 1px;
    border-radius: 50%;
    background-color: #da4e32;
    display: inline-block;
}

/* Cover */
.cover {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.cover img {
    width: 100%;
    display: block;
}
.cover img.landscape {
    height: 50%;
}
.cover.fit img.landscape {
    max-width: 50%;
    max-height: 50%;
    height: auto;
}

.cover.fit img.portrait {
    width: auto;
    max-width: 50%;
    max-height: 50%;
}

/* Social */
.social {
    position: relative;
    margin: 0 5px;
    width: 20px;
    height: 24px;
    font-size: 13px;
    color: #fff;
    line-height: 24px;
    text-align: center;
    background-color: #d6363d;
    display: inline-block;
}
.social:before,
.social:after {
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    content: '';
    border-style: solid;
    border-width: 0 0 24px 8px;
    border-color: transparent transparent #d6363d transparent;
    display: block;
}
.social:after {
    left: auto;
    right: -8px;
    border-width: 24px 8px 0 0;
    border-color: #d6363d transparent transparent transparent;
}
.social.social-facebook {
    background-color: #3b5999;
}
.social.social-facebook:before {
    border-color: transparent transparent #3b5999 transparent;
}
.social.social-facebook:after {
    border-color: #3b5999 transparent transparent transparent;
}
.social.social-twitter {
    background-color: #32ccfe;
}
.social.social-twitter:before {
    border-color: transparent transparent #32ccfe transparent;
}
.social.social-twitter:after {
    border-color: #32ccfe transparent transparent transparent;
}
.instagram {
    width: 15px;
}
.social.social-instagram {
    background-color: #9537BB;
}
.social.social-instagram:before {
    border-color: transparent transparent #9537BB transparent;
}
.social.social-instagram:after {
    border-color: #9537BB transparent transparent transparent;
}
.social:hover {
    color: #fff;
    background-color: #d63254;
}
.social:hover:before {
    border-color: transparent transparent #d63254 transparent;
}
.social:hover:after {
    border-color: #d63254 transparent transparent transparent;
}

/* Share items */
.share-items {
    font-size: 0;
}

/* Share */
.share {
    margin-right: 10px;
    vertical-align: middle;
    display: inline-block;
}

/* Call-to-action */
.cta {
    margin-bottom: 20px;
    padding: 20px 10px;
    max-width: 300px;
    font-size: 13px;
    color: #fff;
    text-align: center;
    line-height: normal;
    background-color: #349ddf;
    display: block;
}
.cta:hover {
    color: #fff;
    text-decoration: none;
    background-color: #d89b3c;
}
.cta.cta-secondary {
    background-color: #c8640f;
}
.cta.cta-secondary:hover {
    background-color: #349ddf;
}
.cta .cta-title {
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 1;
    display: block;
}
.cta .btn {
    margin-top: 15px;
    display: block;
}
.cta .btn:after {
    margin-left: 5px;
    content: '\e800';
    font-family: 'kreeft';
    font-size: 12px;
    color: inherit;
    display: inline-block;
}

/* Usp */
.usp {
    margin: 0;
    padding: 0;
    list-style: none;
}
.usp li {
    margin: 0 0 10px;
    padding: 0 0 0 24px;
    line-height: normal;
}
.usp li:before {
    margin: -1px 0 0 -24px;
    width: 20px;
    height: 20px;
    content: '\e803';
    font-family: 'kreeft';
    font-size: 15px;
    color: #fff;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    background-color: #d63254;
    display: block;
    float: left;
}

/* Search bar */
.search-bar {
    position: relative;
}
.search-bar input[type="search"] {
    padding-right: 40px;
}
.search-bar button {
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 1px;
    border-color: transparent;
    background-color: #fff;
}
.search-bar button:hover {
    color: #d6363d;
}

/* Wrapper */
.wrapper {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1000px;
    min-height: 100%;
}

/* Header */
.header {
    position: relative;
    padding-top: 10px;
    width: 100%;
    z-index: 999;
}
.header .header-block {
    position: absolute;
    right: 0;
    margin-top: -13px;
}
.header .header-search {
    width: 260px;
    float: left;
}
.header .header-phone {
    margin-left: 10px;
    float: left;
}
.header .social-items {
    position: absolute;
    right: 0;
    bottom: 0;
    padding-right: 4px;
    font-size: 0;
    background-color: #fff;
    float: right;
    z-index: 2;
}
.header .social-items:before {
    position: absolute;
    left: -10px;
    width: 0;
    height: 0;
    content: '';
    border-style: solid;
    border-width: 0 0 28px 10px;
    border-color: transparent transparent #fff transparent;
}
.header .social-items .social:first-child {
    margin-left: 2px;
}
.header .logo {
    margin-right: -20px;
    float: right;
}
.header .header-login {
    padding-top: 1px;
    text-decoration: underline;
    float: right;
}
.header .header-cart {
    float: right;
}
/*
.header .header-shop{
    display: inline-block;
    padding: 0px 10px;
    margin-top: -5px;
}
.header .header-webshop {
    margin-top: -10px;
    display: inline-block;
    padding: 0 10px;
    width:100%;
}
.header .header-shop .header-login-container {
    text-align: right;
    font-size: 13px;
}
.header .header-shop .header-cart-container {
    display: inline-block;
    text-align: right;
}
*/

/* Footer */
.footer {
    margin: 40px -20px 0;
}
.footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}

/* Logo */
.logo {
    width: 194px;
    display: block;
}
.logo img {
    width: 100%;
    height: auto;
}

/* Nav */
.nav ul {
    margin: 0;
    padding: 0;
}
.nav li {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Menu main */
.menu-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-left: -1234em;
    z-index: 999;
    transition: margin 0s .6s;
}
.menu-open .menu-main {
    margin-left: 0;
    transition-delay: 0s;
}
.menu-main:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-color: #000;
    z-index: 1;
    opacity: 0;
    transition: opacity .3s .3s;
}
.menu-open .menu-main:before {
    opacity: .65;
    transition-delay: 0s;
}
.menu-main .menu-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    background-color: #faf6f6;
    overflow: hidden;
    overflow-y: auto;
    z-index: 2;
    transform: translate3d(-110%, 0, 0);
    -webkit-transform: translate3d(-110%, 0, 0);
    -moz-transform: translate3d(-110%, 0, 0);
    -ms-transform: translate3d(-110%, 0, 0);
    transition: transform .4s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    -webkit-transition: -webkit-transform .4s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    -moz-transition: -moz-transform .4s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    -ms-transition: -ms-transform .4s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
.menu-open .menu-main .menu-container {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}
.menu-main .menu-container > ul:first-child {
    margin-top: 0;
}
.menu-main .menu-main-top,
.menu-main .menu-main-bottom {
    padding: 20px;
}
.menu-main ul {
    background-color: #fff;
}
.menu-main li {
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, .08);
}
.menu-main li:first-child {
    border-top: none;
}
.menu-main ul button {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    width: 20px;
    height: 42px;
    font-size: 14px;
    color: #696970;
    border: none;
    background-color: transparent;
    outline: none;
    transition: transform .2s ease-in-out;
    -webkit-transition: -webkit-transform .2s ease-in-out;
    -moz-transition: -moz-transform .2s ease-in-out;
    -ms-transition: -ms-transform .2s ease-in-out;
}
.menu-main ul li.touch-open > button,
.menu-main ul li.active > button {
    color: #fff;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
}
.menu-main ul a {
    padding: 10px 20px;
    color: #696970;
    font-weight: 600;
    line-height: normal;
    display: block;
}
.menu-main ul a:hover {
    color: #d63254;
    text-decoration: none;
}
.menu-main ul li.touch-open > a {
    color: #fff;
    background-color: #d6363d;
}
.menu-main ul li.active > a {
    color: #fff;
    text-decoration: none;
    background-color: #d89b3c;
}
.menu-main ul ul {
    position: relative;
    background-color: #faf6f6;
    display: none;
}
.menu-main ul li.touch-open > ul {
    display: block;
}
.menu-main ul ul a {
    font-size: 15px;
    color: #595656;
}
.menu-main ul ul a:hover {
    color: #d6363d;
    background-color: #f3eded;
}
.menu-main ul ul ul {
    background-color: #ede3d7;
}

/* Menu footer */
.menu-footer h3 {
    margin-bottom: 20px;
}
.menu-footer h3 a {
    color: inherit;
}
.menu-footer ul li {
    border-top: 1px solid rgba(0, 0, 0, .1);
}
.menu-footer ul li:first-child {
    border-top: none;
}
.menu-footer ul a {
    padding: 5px;
    font-size: 14px;
    color: #f3d3d5;
    line-height: normal;
    display: block;
}
.menu-footer ul a:hover {
    color: #fff;
}
.menu-footer ul li.active > a {
    color: #fff;
    background-color: #d89b3c;
}

/* Menu toggler */
.menu-toggler {
    position: relative;
    margin: -18px 0 0 -20px;
    padding: 0;
    min-width: 60px;
    height: 60px;
    border: none;
    background-color: transparent;
    display: block;
    float: left;
    outline: none;
    z-index: 999;
}
.menu-toggler span {
    margin: 2px auto;
    width: 20px;
    height: 3px;
    text-indent: -1234em;
    background-color: #383435;
    display: block;
    -webkit-transition: opacity .2s, background-color .2s, -webkit-transform .2s;
    -moz-transition: opacity .2s, background-color .2s, -moz-transform .2s;
    -ms-transition: opacity .2s, background-color .2s, -ms-transform .2s;
    transition: opacity .2s, background-color .2s, transform .2s;
}
.menu-open .menu-toggler span {
    background-color: #d6363d;
}
.menu-open .menu-toggler span:first-child {
    -webkit-transform: rotate(45deg) translate(4px, 4px);
    -moz-transform: rotate(45deg) translate(4px, 4px);
    -ms-transform: rotate(45deg) translate(4px, 4px);
    transform: rotate(45deg) translate(4px, 4px);
}
.menu-open .menu-toggler span:first-child + span {
    opacity: 0;
}
.menu-open .menu-toggler span:last-child {
    -webkit-transform: rotate(-45deg) translate(3px, -3px);
    -moz-transform: rotate(-45deg) translate(3px, -3px);
    -ms-transform: rotate(-45deg) translate(3px, -3px);
    transform: rotate(-45deg) translate(3px, -3px);
}

/* Breadcrumb */
.breadcrumb ul {
    border-bottom: 1px solid #ebeef0;
    white-space: nowrap;
    overflow: hidden;
    overflow-x: auto;
}
.breadcrumb li {
    height: 40px;
    font-size: 11px;
    color: #595656;
    line-height: 40px;
    display: inline-block;
}
.breadcrumb li:before {
    margin-right: 2px;
    content: '\e800';
    font-family: 'kreeft';
    font-size: 12px;
    color: #595656;
    vertical-align: -1px;
    display: inline-block;
}
.breadcrumb li:first-child:before {
    display: none;
}
.breadcrumb a {
    height: 100%;
    color: #595656;
    text-decoration: underline;
    display: inline-block;
}
.breadcrumb a:hover {
    color: #d6363d;
    text-decoration: none;
}

/* Visual */

.visual .visual-image {
    width: 100%;
    height: 100%;
    /*overflow: hidden;*/
}

/* Slider */
.slider {
    position: relative;
}
.slider .slider-slides {
    position: relative;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

/* Slide */
.slide {
    position: relative;
    margin-right: -100%;
    width: 100%;
    height: 100%;
    display: none;
    float: left;
}
.slide:first-child {
    display: block;
}
.slide .slide-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Pagination  */
.pagination ul {
    font-size: 0;
    text-align: center;
}
.pagination li {
    padding: 1px;
    display: inline-block;
}
.pagination a {
    height: 30px;
    width: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #595656;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #ebeef0;
    display: block;
}
.pagination a:hover {
    color: #d6363d;
    border-color: #faf6f6;
    background-color: #faf6f6;
}
.pagination li.active a {
    color: #fff;
    border-color: #d89b3c;
    background-color: #d89b3c;
}

/* List */
.list {
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
}
.list li {
    margin: 0;
    padding: 0;
    line-height: 1.4;
    border-top: 1px solid rgba(0, 0, 0, .06);
}
.list .list-heading {
    padding: 15px 20px;
}
.list .list-title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
}
.list .list-title a {
    color: #595656;
    display: block;
}
.list .list-title a:hover {
    color: #d6363d;
    text-decoration: none;
}
.list .list-body {
    padding: 0 20px 20px;
}
.list .list-body p {
    margin: 0 0 15px;
}
.list .list-body a {
    color: #d6363d;
}

/* Product list */
.product-list li:hover,
.product-list li.collapse-open {
    background-color: #f3eded;
}
.product-list .list-title {
    height: 42px;
    line-height: 42px;
}
.product-list .list-title .icon-arrow-right {
    display: inline-block;
    transition: transform .2s ease-in-out;
    -webkit-transition: -webkit-transform .2s ease-in-out;
    -moz-transition: -moz-transform .2s ease-in-out;
    -ms-transition: -ms-transform .2s ease-in-out;
}
.product-list li.collapse-open .list-title .icon-arrow-right {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
}
.product .list-body {
    padding-top: 10px;
}
.product-list .price {
    height: 42px;
    font-size: 15px;
    line-height: 42px;
}
.product-list .btn {
    min-width: 130px;
}

/* News list */
.news-list li:first-child {
    border-top: none;
}
.news-list li:hover,
.news-list li.collapse-open {
    background-color: #f3eded;
}
.news-list .list-heading {
    cursor: pointer;
}
.news-list .list-title {
    font-weight: 600;
    font-size: 14px;
}
.news-list .list-title a {
    color: #d6363d;
    display: block;
}
.news-list .list-heading:hover .list-title a {
    color: #595656;
}
.news-list .news-list-date {
    font-size: 11px;
    color: #797171;
    line-height: normal;
    display: block;
}

/* News archive */
.news-archive {
    margin: 0;
    padding: 0;
    list-style: none;
}
.news-archive li {
    border-bottom: 1px solid #ebeef0;
}
.news-archive li:first-child {
    border-top: 1px solid #ebeef0;
}
.news-archive a {
    padding: 10px 0;
    display: block;
}
.news-archive a:hover {
    text-decoration: none;
}
.news-archive .news-archive-title {
    margin: 0;
}
.news-archive a:hover .news-archive-title {
    color: #d63254;
}
.news-archive .news-archive-date {
    display: block;
}

/* Article date */
.article-date {
    position: relative;
    top: -20px;
    display: block;
}

/* Blocks */
.blocks {
    margin: -10px -10px 10px;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}
.blocks:after {
    content: '';
    clear: both;
    display: block;
}
.blocks li {
    margin: 0 0 20px;
    padding: 10px;
    width: 100%;
    font-size: 15px;
    line-height: 1.4;
    cursor: pointer;
    float: left;
}
.blocks li:hover {
    color: #fff;
    background-color: #d6363d;
}
.blocks > li:nth-child(3n+1) {
    /*clear: both;*/
}
.blocks h2 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #d6363d;
}
.blocks li:hover h2 {
    color: #fff;
}
.blocks p {
    margin: 0;
}

/* Directions panel */
.directions-panel .directions-panel-placeholder {
    line-height: normal;
    display: block;
}
.directions-panel table {
    width: 100%;
}
.directions-panel td {
    padding: 10px;
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: #414242;
    border-top: 1px solid #e4eae8;
    border-bottom: none;
}
.directions-panel .adp-placemark {
    border: none;
    background-color: transparent;
}
.directions-panel .adp-placemark td {
    font-weight: 600;
    color: #414242;
    border: none;
}
.directions-panel .adp-summary {
    font-weight: 600;
    color: #414242;
}
.directions-panel .adp-legal {
    font-size: 11px;
    color: #949191;
}
.directions-panel .adp-substep .adp-stepicon {
    top: 3px;
}
.directions-panel img {
    max-width: none;
}

/* Locatie */
.locatie {
    border-top: 1px solid rgba(0, 0, 0, .1);
}
.locatie p {
    padding: 5px;
    font-size: 14px;
    color: #f3d3d5;
    line-height: normal;
    display: block;
}
.locatie b {
    font-size: 15px;
    color: #fff;
}
.locatie a {
    text-decoration: underline;
    color: #f3d3d5;
}
.locatie .see-more {
    padding: 0 10px;
}
.locatie .see-more a {
    padding: 5px;
    font-size: 14px;
    color: #f3d3d5;
    line-height: normal;
    display: block;
}
/* VisualMedia */
.vm {
    height: 30px;
    width: 30px;
    position:relative;
    bottom: 25px;
    display: inline-block;
    float: right;
}
.vm img {
    width: auto;
    height: 100%;
    max-height: 100%;
}
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {

    /* Wrapper */
    .wrapper {
        padding: 20px 30px;
    }

    /* Header */
    .header {
        margin-bottom: 10px;
        padding-top: 0;
    }
    .header:after {
        position: absolute;
        left: 5%;
        right: 0;
        bottom: 0;
        height: 24px;
        content: '';
        background-color: #d6363d;
        display: block;
        z-index: 1;
    }
    .header .logo {
        position: relative;
        margin: 0;
        float: left;
        z-index: 2;
    }

    /* Footer */
    .footer {
        margin: 40px 0 0;
    }
    .footer .footer-bottom {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    /* Logo */
    .logo {
        width: 262px;
    }

    /* Menu toggler */
    .menu-toggler {
        margin-right: -40px;
    }

    /* Visual */
    .visual {
        margin: 0;
    }

    /* Blocks */
    .blocks li {
        max-width: 50%;
        height: 200px\9;
        flex: 0 0 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
    }

    /* Map */
    .map {
        width: 100%;
        height: 350px;
    }
    .map.map-small {
        height: 250px;
    }

}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {

    /* Social */
    .social {
        margin: 0 6px;
        height: 28px;
        line-height: 28px;
    }
    .social:before,
    .social:after {
        left: -10px;
        border-width: 0 0 28px 10px;
    }
    .social:after {
        left: auto;
        right: -10px;
        border-width: 28px 10px 0 0;
    }

    /* Header */
    .header:after {
        height: 28px;
    }
    .header .header-block {
        margin-top: -5px;
    }

    /* Logo */
    .logo {
        margin-left: 0;
        width: 304px;
    }

    /* Menu main */
    .menu-main {
        position: relative;
        margin-left: 0;
        z-index: 999;
    }
    .menu-main .menu-container {
        position: relative;
        padding: 0;
        width: auto;
        background-color: #d6363d;
        overflow: visible;
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        transition: none;
        -webkit-transition: none;
        -moz-transition: none;
        -ms-transition: none;
    }
    .menu-main ul {
        background-color: transparent;
    }
    .menu-main ul li {
        border-top-color: rgba(0, 0, 0, .1);
    }
    .menu-main ul button {
        height: 32px;
        font-size: 12px;
        color: #fff;
    }
    .menu-main ul a {
        padding: 8px 20px;
        font-size: 13px;
        color: #fff;
    }
    .menu-main ul a:hover {
        color: #fff;
        background-color: #ba272e;
    }
    .menu-main ul li.active > ul {
        display: block;
    }
    .menu-main ul ul a {
        font-size: 13px;
    }

    /* Visual */


    /* Blocks */
    .blocks li {
        max-width: 33.33333%;
        height: 250px\9;
        flex: 0 0 33.33333%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
    }

    /* Map */
    .map {
        width: 100%;
        height: 400px;
    }
    .map.map-small {
        height: 300px;
    }

}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {



}
.stap-banner {
    transition: all 0.5s ease;
    position: relative;
    width: 212px;
    height: 170px;
}
