/* ==========================================================================
   LAYOUT
   Basic structure of the website. 
   ========================================================================== */

/*
 * BG
 */

.OBK-bg {
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 5
}
    .OBK-bg:before,
    .OBK-bg:after {
        content: '';
        left: 0;
        position: absolute;
        display: block;
        width: 100%;
    }
    .OBK-bg:before {
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
        height: 100%;
        top: 0;
        z-index: 10;
    }
    .OBK-bg img {
        position: relative;
        z-index: 5
    }
    .OBK-bg:after {
        background-color: #2E1915;
        height: 40%;
        top: 60%;
        z-index: 15;
    }
    

/*
 * PAGE
 */

.OBK-page {
    position: relative;
    z-index: 10;
}

/*
 * HEADER
 */

.OBK-header {
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
}

/*
 * HERO
 */
		
.OBK-hero {
    left: 0;
    position: fixed;
    top: 4.0em;
    width: 100%;
    z-index: 10;
}
    .OBK-hero__wrap {
        position: relative;
    }
        .OBK-hero__wrap:after {
            background: linear-gradient(0deg, rgba(46,25,21,1) 0%, rgba(46,25,21,0) 100%);
            bottom: 0;
            content: '';
            height: 40vh;
            left: 0;
            pointer-events: auto;
            position: absolute;
            width: 100%;
            z-index: 5;
        }
            .OBK-hero__vista,
            .OBK-hero__vista__item {
                height: calc(100vh - 4.0em);
                overflow: hidden;
            }
            .OBK-hero__vista {
                background-color: #000000;
                -webkit-box-shadow: 0 0 0.5em 0 rgba(46,25,21,0.5);
                box-shadow: 0 0 0.5em 0 rgba(46,25,21,0.5);
            }
                .OBK-hero__vista__item {
                    float: left;
                    position: relative;
                    width: 100%;
                }
                    .OBK-hero__vista__item:before {
                        background-color: #000000;
                        content: '';
                        display: block;
                        height: 100%;
                        left: 0;
                        opacity: 0.15;
                        pointer-events: none;
                        position: absolute;
                        top: 0;
                        width: 100%;
                        z-index: 5;
                    }
            .OBK-hero__control-bar {
                left: 0;
                pointer-events: none;
                position: absolute;
                top: 4.0em;
                width: 100%;
                z-index: 20;
            }
                .OBK-hero__control-bar__col.OBK-hero__control-bar__col--logo {
                    margin-right: auto;
                }
                .OBK-hero__control-bar__col.OBK-hero__control-bar__col--lang {
                    margin-right: 3.0em;
                }
                    .OBK-hero__control-bar__logo {
                        display: block;
                        max-width: 25.0em;
                        pointer-events: auto;
                        width: 100%;
                    }
                        .OBK-hero__control-bar__logo img {
                            display: block;
                            height: auto;
                            width: 100%;
                        }
                    .OBK-hero__control-bar__lang {
                        list-style-type: none;
                        margin: 0;
                        padding: 0;
                    }
                        .OBK-hero__control-bar__lang__item {
                            background-color: rgba(0,0,0,0.25);
                            border: 1px solid rgba(255,255,255,0.75);
                            border-radius: 100%;
                            float: left;
                            height: 3.5em;
                            margin-left: 0.5em;
                            overflow: hidden;
                            text-align: center;
                            width: 3.5em;
                        }
                        .OBK-hero__control-bar__lang__item:hover {
                            background-color: rgba(0,0,0,0.5);
                            border-color: #ffffff;
                        }
                        .OBK-hero__control-bar__lang__item:first-child {
                            margin-left: 0;
                        }
                            .OBK-hero__control-bar__lang__link {
                                color: rgba(255,255,255,0.9);
                                font-size: 1.2em;
                                font-weight: 300;
                                line-height: 1.0;
                                pointer-events: auto;
                                white-space: nowrap;
                            }
                            .OBK-hero__control-bar__lang__link:visited {
                                color: rgba(255,255,255,0.9);
                            }
                            .OBK-hero__control-bar__lang__link:hover {
                                color: #ffffff;
                            }
                            .OBK-hero__control-bar__lang__link.OBK-hero__control-bar__lang__link--act {
                                font-weight: 700;
                            }
                .OBK-hero__control-bar__menu {
                    background-color: rgba(0,0,0,0.25);
                    border: 1px solid rgba(255,255,255,0.75);
                    border-radius: 5.0em;
                    color: rgba(255,255,255,0.9);
                    cursor: pointer;
                    height: 3.5em;
                    padding: 1.0em;
                    pointer-events: auto;
                }
                .OBK-hero__control-bar__menu:hover {
                    background-color: rgba(0,0,0,0.5);
                    border-color: #ffffff;
                    color: #ffffff;
                }
                    .OBK-hero__control-bar__menu__title {
                        font-size: 1.2em;
                        font-weight: 300;
                        line-height: 1.0;
                        margin-right: 5px;
                        text-transform: uppercase;
                        white-space: nowrap;
                    }
                    .OBK-hero__control-bar__menu__icon {
                        font-size: 1.4em;
                    }
            .OBK-hero__slogan {
                height: 100%;
                left: 0;
                pointer-events: none;
                position: absolute;
                top: 0;
                width: 100%;
                z-index: 10;
            }
                .OBK-hero__slogan__line {
                    line-height: 0.9;
                    position: relative;
                }
                    .OBK-hero__slogan__line span {
                        display: block;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        white-space: nowrap;
                    }
                .OBK-hero__slogan__line.OBK-hero__slogan__line--normal {
                    color: #ffffff;
                    font-family: 'Bodoni Moda', serif;
                    text-transform: uppercase;
                    z-index: 5;
                }
                    .OBK-hero__slogan__line.OBK-hero__slogan__line--normal span {
                        font-size: 6.0em;
                    }
                .OBK-hero__slogan__line.OBK-hero__slogan__line--special {
                    color: #FF9A66;
                    font-family: 'Meie Script', cursive;
                    margin-top: -2.0em;
                    z-index: 10;
                }
                    .OBK-hero__slogan__line.OBK-hero__slogan__line--special span {
                        font-size: 8.0em;
                    }
            .OBK-hero__showcase {
                bottom: 0;
                left: 0;
                pointer-events: none;
                position: absolute;
                width: 100%;
                z-index: 15;
            }
                .OBK-hero__showcase__col {
                    border-left: 1px solid rgba(255,255,255,0.8);
                    height: 15.0em;
                    max-width: 25%;
                    width: 100%;
                }
                .OBK-hero__showcase__col:first-child {
                    border-left: 0;
                }
                    .OBK-hero__showcase__link,
                    .OBK-hero__showcase__link:visited,
                    .OBK-hero__showcase__link:hover {
                        color: #ffffff;
                    }
                    .OBK-hero__showcase__link {
                        display: block;
                        padding: 0 2.0em;
                        pointer-events: auto;
                        position: relative;
                        width: 100%;
                    }
                        .OBK-hero__showcase__link:before {
                            background: linear-gradient(0, rgba(255,154,102,0.25) 0%, rgba(255,154,102,0) 100%);
                            bottom: 0;
                            content: '';
                            display: block;
                            height: 100%;
                            left: 0;
                            max-height: 0;
                            overflow: hidden;
                            position: absolute;
                            transition: max-height 0.25s ease-out;
                            width: 100%;
                            z-index: 5;
                        }
                        .OBK-hero__showcase__link:hover:before {
                            max-height: 100%;
                        }
                        .OBK-hero__showcase__icon,
                        .OBK-hero__showcase__title {
                            position: relative;
                            z-index: 10;
                        }
                        .OBK-hero__showcase__icon {
                            font-size: 3.5em;
                        }
                        .OBK-hero__showcase__title {
                            margin-top: 1.5em;
                            text-align: center;
                            width: 100%;
                        }
                            .OBK-hero__showcase__title span {
                                display: block;
                                font-family: 'Bodoni Moda', serif;
                                font-size: 2.5em;
                                line-height: 1.0em;
                                overflow: hidden;
                                text-overflow: ellipsis;
                                white-space: nowrap;
                            }

/*
 * MAIN
 */

.OBK-main {
    margin-top: 100vh;
    overflow: hidden;
    position: relative;
    z-index: 20;
}
    .OBK-main__wrap:before {
        background-color: #2E1915;
        content: '';
        height: 100%;
        left: 0;
        position: absolute;
        top: 60vh;
        width: 100%;
        z-index: 5
    }
    .OBK-main__content {
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 0.5em 0 rgba(46,25,21,0.5);
        box-shadow: 0 0 0.5em 0 rgba(46,25,21,0.5);
        min-height: 100vh;
        padding: 6.0em 0;
        position: relative;
        z-index: 10;
    }

/*
 * FOOTER
 */

.OBK-footer {
    background-color: #2E1915;
    position: relative;
    z-index: 30;
}
    .OBK-footer__row {
        background-color: #ffffff;
    }
    .OBK-footer__row--top {
        overflow: hidden;
    }
    .OBK-footer__row--center {
        position: relative;
    }
    .OBK-footer__row--center:before {
        background-color: #FFCC9A;
        content: '';
        height: 0.8em;
        display: block;
        pointer-events: none;
        position: absolute;
        right: 0;
        top: -0.4em;
        width: 32.5em;
        z-index: 5;
    }
    .OBK-footer__row--bottom {
        padding: 2.0em 0;
    }
        .OBK-footer__col {
            padding: 2.0em 4.0em;
        }
        .OBK-footer__col--slogan {
            padding-bottom: 0 !important;
            padding-top: 0 !important;
            width: 100%;
        }
        .OBK-footer__col--contact,
        .OBK-footer__col--reviews,
        .OBK-footer__col--links,
        .OBK-footer__col--weather {
            width: 25%;
        }
        .OBK-footer__col--contact,
        .OBK-footer__col--reviews {
            background-color: #2E1915;
            color: #ffffff;
            min-height: 25.0em;
        }
        .OBK-footer__col--reviews {
            padding-right: 10.0em;
        }
        .OBK-footer__col--links {
            padding-left: 10.0em;
        }
        .OBK-footer__col--credits {
            width: 65%;
        }
        .OBK-footer__col--publisher {
            width: 35%;
        }
            .OBK-footer__slogan {
                text-align: right;
            }
                .OBK-footer__slogan span {
                    color: #FF9A66;
                    display: block;
                    font-family: 'Meie Script', cursive;
                    font-size: 8.0em;
                    line-height: 1.0;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                }
            .OBK-footer__contact span,
            .OBK-footer__contact address,
            .OBK-footer__contact a {
                font-size: 1.4em;
                line-height: 1.8;
            }
            .OBK-footer__contact a,
            .OBK-footer__contact a:visited,
            .OBK-footer__contact a:hover {
                color: #FF9A66;
            }
            .OBK-footer__contact a:hover {
                text-decoration: underline !important;
            }
            .OBK-footer__reviews__quote span {
                font-size: 1.8em;
            }
            .OBK-footer__reviews__portals {
                margin-top: 2.0em;
            }
                .OBK-footer__reviews__portal {
                    margin-left: 2.0em;
                }
                .OBK-footer__reviews__portal:first-child {
                    margin-left: 0;
                }
                .OBK-footer__reviews__portal:hover {
                    color: #FF9A66;
                }
                    .OBK-footer__reviews__icon {
                        font-size: 2.0em;
                    }
            .OBK-footer__links {
                list-style-type: none;
                margin: 0;
                padding: 0;
            }
                .OBK-footer__links__item {
                    margin-top: 2.0em;
                }
                .OBK-footer__links__item:first-child {
                    margin-top: 0;
                }
                    .OBK-footer__links__link {
                        font-size: 1.6em;
                        font-weight: 700;
                        text-transform: uppercase;
                    }
                    .OBK-footer__links__link:hover {
                        color: #FF9A66;
                    }
            .OBK-footer__weather {
                width: 100%;
            }
                .OBK-footer__weather #meteoprovbz_widget {
                    width: 100% !important;
                }
                    .OBK-footer__weather #meteoprovbz_widget table,
                    .OBK-footer__weather #meteoprovbz_widget table tr,
                    .OBK-footer__weather #meteoprovbz_widget table tr th,
                    .OBK-footer__weather #meteoprovbz_widget table tr td {
                        border: 0 !important;
                    }
                    .OBK-footer__weather #meteoprovbz_widget table {
                        width: 100% !important;
                    }
                        .OBK-footer__weather #meteoprovbz_widget table tr th {
                            text-align: center !important;
                        }
                            .OBK-footer__weather #meteoprovbz_widget img {
                                max-width: 75px;
                            }
            .OBK-footer__credits {
                list-style-type: none;
                margin: 0;
                padding: 0;
            }
                .OBK-footer__credits__item {
                    border-left: 2px solid #333333;
                    float: left;
                    line-height: 1.0;
                    padding: 0 1.0em;
                }
                .OBK-footer__credits__item:first-child {
                    border-left: 0;
                }
                    .OBK-footer__credits__link,
                    .OBK-footer__credits__text {
                        font-size: 1.2em;
                        font-weight: 700;
                        text-transform: uppercase;
                    }
                    .OBK-footer__credits__link,
                    .OBK-footer__credits__link:visited,
                    .OBK-footer__credits__text {
                        color: #333333;
                    }
                    .OBK-footer__credits__link:hover {
                        color: #FF9A66;
                    }
            .OBK-footer__publisher {
                text-align: right;
            }
                .OBK-footer__publisher a {
                    font-size: 1.2em;
                    font-weight: 700;
                    line-height: 1.0;
                    text-transform: uppercase;
                }
                .OBK-footer__publisher a:hover {
                    color: #FF9A66;
                }

/*
 * CONTACT
 */

.OBK-contact {
    position: fixed;
    right: 8.0em;
    top: 50%;
    transform: translateY(-50%);
    z-index: 60;
}
    .OBK-contact__item,
    .OBK-contact__item:visited,
    .OBK-contact__item:hover {
        color: #ffffff;
    }
    .OBK-contact__item {
        display: block;
        position: relative;
        margin-top: 2.0em;
    }
    .OBK-contact__item--mail {
        z-index: 5
    }
    .OBK-contact__item:first-child {
        margin-top: 0;
    }
        .OBK-contact__item__title,
        .OBK-contact__item__symbol {
            border: 1px solid #ffffff;
            height: 5.0em;
            overflow: hidden;
        }
            .OBK-contact__item__title span {
                font-size: 1.6em;
                line-height: 1.0em;
                white-space: nowrap;
            }
        .OBK-contact__item__title {
            background-color: rgba(0,0,0,0.5);
            border-radius: 5.0em;
            margin-right: 1.0em;
            padding: 0 1.5em;
            pointer-events: none;
            position: absolute;
            top: 0;
            right: 100%;
            visibility: hidden;
            z-index: 5;
        }
        .OBK-contact__item:hover .OBK-contact__item__title {
            visibility: visible;
        }
        .OBK-contact__item__symbol {
            border-radius: 100%;
            -webkit-box-shadow: 0 0 0.5em 0 rgba(0,0,0,0.75);
            box-shadow: 0 0 0.5em 0 rgba(0,0,0,0.75);
            width: 5.0em;
        }
        .OBK-contact__item--mail .OBK-contact__item__symbol {
            animation: contact-mail 6s infinite;
            background-color: #ff5701; 
        }
        .OBK-contact__item--tel .OBK-contact__item__symbol {
            animation: contact-tel 6s infinite;
            background-color: #A63800;
        }
            .OBK-contact__item__icon {
                font-size: 1.8em;
            }

/*
 * CONTROLS
 */

.OBK-controls {
    bottom: 0;
    color: #333333;
    height: 100%;
    left: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    position: fixed;
    transition: max-height 0.25s ease-out;
    transition-delay: 0.5s;
    width: 100vw;
    z-index: 60;
}
.OBK-controls a,
.OBK-controls a:visited {
    color: #333333;
}
.OBK-controls a:hover {
    color: #ff5701;
}
.OBK-controls.JS-open {
    max-height: 100%;
    pointer-events: auto;
    transition-delay: 0s;
}
    .OBK-controls__frame {
        background-color: #ffffff;
        height: 100%;
        padding: 0;
        transition: padding 0.5s ease-out;
        transition-delay: 0s;
        width: 100%;
    }
    .OBK-controls.JS-open .OBK-controls__frame {
        padding: 4.0em;
        transition-delay: 0.25s;
    }
        .OBK-controls__wrap {
            background-color: #FFCC9A;
            height: 100%;
            position: relative;
            width: 100%;
        }
            .OBK-controls__close {
                background-color: #ffffff;
                height: 4.0em;
                cursor: pointer;
                position: absolute;
                right: 0;
                top: 0;
                width: 4.0em;
                z-index: 5;
            }
            .OBK-controls__close:hover {
                background-color: #ff5701;
                color: #ffffff;
            }
                .OBK-controls__close__icon {
                    font-size: 3.5em;
                }
            .OBK-controls__scroll-area {
                height: 100%;
                opacity: 0;
                padding: 4.0em;
                transition: opacity 0.5s ease-out;
                transition-delay: 0s;
                width: 100%;
            }
                .OBK-controls__scroll-area > div {
                    max-height: 100%;
                    overflow-y: auto;
                    width: 100%;
                }
            
            .OBK-controls.JS-open .OBK-controls__scroll-area {
                opacity: 1;
                transition-delay: 0.75s;
            }
                .OBK-controls__menu {
                    width: 100%;
                }
                    .OBK-controls__menu__list {
                        list-style-type: none;
                        margin: 0;
                        padding: 0;
                    }
                        .OBK-controls__menu__item {
                            margin-top: 3.0em;
                            text-align: center;
                        }
                        .OBK-controls__menu__item:first-child {
                            margin-top: 0;
                        }
                            .OBK-controls__menu__link {
                                font-size: 3.0em;
                                font-weight: 900;
                                line-height: 1.0;
                                text-transform: uppercase;
                            }
                            .OBK-controls__menu__item.OBK-controls__menu__item--act .OBK-controls__menu__link {
                                color: #ff5701;
                            }
                .OBK-controls__social {
                    margin-top: 10.0em;
                    width: 100%;
                }
                    .OBK-controls__social__link {
                        margin-left: 2.0em;
                    }
                    .OBK-controls__social__link:first-child {
                        margin-left: 0;
                    }
                        .OBK-controls__social__icon {
                            font-size: 3.0em;
                        }     