/*!
 * fullPage 2.9.2
 * https://github.com/alvarotrigo/fullPage.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 */


.section .parallax-window {
    position: relative;
    background-attachment: fixed;
    height: 100%;
}

.section, .section .slide {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.background-fullscreen {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 0;
}

/* .mouse-parallax .container.bg {
    top: 0;
} */

.section.mouse-parallax .fullsize {
    position: absolute;
    bottom: 0;
    height: 100%;
    margin-left: 0 !important;
}

.section .background-page {
    position: absolute;
}

.fp-slide > .content > .row > * {
    padding-left: 15px;
    padding-right: 15px;
}




/**
 * fullPage 2.6.4
 * https://github.com/alvarotrigo/fullPage.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 */
html.fp-enabled,
.fp-enabled body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    /*Avoid flicker on slides transitions for mobile phones #336 */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

#superContainer {
    height: 100%;
    position: relative;
    /* Touch detection for Windows 8 */
    -ms-touch-action: none;
    /* IE 11 on Windows Phone 8.1*/
    touch-action: none;
}

.fp-section {
    position: relative;
    -webkit-box-sizing: border-box; /* Safari<=5 Android<=3 */
    -moz-box-sizing: border-box; /* <=28 */
    box-sizing: border-box;
}

.fp-slide {
    float: left;
}

.fp-slide, .fp-slidesContainer {
    height: 100%;
    display: block;
}

.fp-slides {
    z-index: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-out; /* Safari<=6 Android<=4.3 */
    transition: all 0.3s ease-out;
}

.fp-section.fp-table, .fp-slide.fp-table {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.fp-tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}

.fp-slidesContainer {
    float: left;
    position: relative;
}

.fp-controlArrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    margin-top: -38px;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

    .fp-controlArrow.fp-prev {
        left: 15px;
        width: 0;
        border-width: 38.5px 34px 38.5px 0;
        border-color: transparent #fff transparent transparent;
    }

    .fp-controlArrow.fp-next {
        right: 15px;
        border-width: 38.5px 0 38.5px 34px;
        border-color: transparent transparent transparent #fff;
    }

.fp-scrollable {
    overflow: scroll;
}

.fp-notransition {
    -webkit-transition: none !important;
    transition: none !important;
}

#fp-nav {
    position: fixed;
    z-index: 100;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
}

    #fp-nav.right {
        right: 17px;
    }

    #fp-nav.left {
        left: 17px;
    }

.fp-slidesNav {
    position: absolute;
    z-index: 4;
    left: 50%;
    opacity: 1;
}

    .fp-slidesNav.bottom {
        bottom: 17px;
    }

    .fp-slidesNav.top {
        top: 17px;
    }

    #fp-nav ul,
    .fp-slidesNav ul {
        margin: 0;
        padding: 0;
    }

        #fp-nav ul li,
        .fp-slidesNav ul li {
            display: block;
            width: 14px;
            height: 13px;
            margin: 7px;
            position: relative;
        }

        .fp-slidesNav ul li {
            display: inline-block;
        }

            #fp-nav ul li a,
            .fp-slidesNav ul li a {
                display: block;
                position: relative;
                z-index: 1;
                width: 100%;
                height: 100%;
                cursor: pointer;
                text-decoration: none;
            }

                #fp-nav ul li a.active span,
                .fp-slidesNav ul li a.active span,
                #fp-nav ul li:hover a.active span,
                .fp-slidesNav ul li:hover a.active span {
                    height: 12px;
                    width: 12px;
                    margin: -6px 0 0 -6px;
                    border-radius: 100%;
                }

                #fp-nav ul li a span,
                .fp-slidesNav ul li a span {
                    border-radius: 50%;
                    position: absolute;
                    z-index: 1;
                    height: 4px;
                    width: 4px;
                    border: 0;
                    background: #333;
                    left: 50%;
                    top: 50%;
                    margin: -2px 0 0 -2px;
                    -webkit-transition: all 0.1s ease-in-out;
                    -moz-transition: all 0.1s ease-in-out;
                    -o-transition: all 0.1s ease-in-out;
                    transition: all 0.1s ease-in-out;
                }

            #fp-nav ul li:hover a span,
            .fp-slidesNav ul li:hover a span {
                width: 10px;
                height: 10px;
                margin: -5px 0px 0px -5px;
            }

        #fp-nav ul li .fp-tooltip {
            position: absolute;
            top: -2px;
            color: #fff;
            font-size: 14px;
            font-family: arial, helvetica, sans-serif;
            white-space: nowrap;
            max-width: 220px;
            overflow: hidden;
            display: block;
            opacity: 0;
            width: 0;
        }

        #fp-nav ul li:hover .fp-tooltip,
        #fp-nav.fp-show-active a.active + .fp-tooltip {
            -webkit-transition: opacity 0.2s ease-in;
            transition: opacity 0.2s ease-in;
            width: auto;
            opacity: 1;
        }

        #fp-nav ul li .fp-tooltip.right {
            right: 20px;
        }

        #fp-nav ul li .fp-tooltip.left {
            left: 20px;
        }

.overflow-visble {
    overflow: visible !important;
}

.fullpage-menu li .tooltip div.tooltip-arrow {
    border-left-color: #484848;
}

.fullpage-menu li .tooltip.right .tooltip-arrow {
    border-right-color: #484848;
}

.fullpage-menu li .tooltip-inner {
    background-color: #484848;
    box-shadow: 0px 2px 5px rgba(25, 25, 25, 0.3);
}

.fullpage-menu:not(.left) li .tooltip {
    margin-top: -6px;
    margin-left: -10px;
}

.fullpage-menu.left li .tooltip {
    margin-top: -6px;
    margin-right: -10px;
}

.fullpage-menu.menu-dots li .tooltip {
    margin-top: 0;
}

.fullpage-menu li .tooltip.in {
    opacity: 1;
    filter: alpha(opacity=1);
}

.box-fullpage-middle {
    width: 350px;
    position: absolute;
    right: 0;
    overflow: visible;
    margin-right: -175px;
    background-color: white;
    box-shadow: 0 5px 6px black;
}

.section .scroll-content {
    overflow: hidden;
}

/*
VERTICAL MENU ==============================
*/
.fullpage-horizontal-menu.menu-dots {
    position: absolute;
    cursor: pointer;
    left: 50%;
    z-index: 95;
    bottom: 25px;
}

    .fullpage-horizontal-menu.menu-dots ul {
        text-align: center;
        margin: 0px;
        padding: 0px;
    }

        .fullpage-horizontal-menu.menu-dots ul li {
            display: inline-block;
            list-style: none;
            margin: 0px 3px;
        }

            .fullpage-horizontal-menu.menu-dots ul li a {
                width: 12px;
                height: 12px;
                background-color: #4C4C4C;
                display: block;
                border-radius: 50%;
            }

    .fullpage-horizontal-menu.menu-dots li.active a {
        background-color: rgba(0, 0, 0, 0);
        border: 1px solid #4C4C4C;
    }

footer {
    margin-top: 0 !important;
}

.fullpage-arrow {
    position: static;
}

.section > div > .row:first-child > div > *:first-child,
.section > div > *:first-child,
.section > *:first-child {
    margin-top: 0;
}

.section > div > .row:last-child > div > *:last-child,
.section > div > *:last-child,
.section > *:last-child {
    margin-bottom: 0;
}

.section > .section-two-blocks, .slide > .section-two-blocks {
    height: 100% !important;
}

.fp-menu-brand {
    text-align: center;
    margin-bottom: 15px;
}

    .fp-menu-brand img {
        max-width: 100px;
        position: relative;
    }

    .fp-menu-brand.showed img {
        animation: show-scale .5s;
    }

.section .slide > .content > .row > *:not(.hc_column_cnt) {
    padding-left: 15px;
    padding-right: 15px;
}

/*
==============================
MOBILE - PHONE - Extra small devices
==============================
*/
@media (max-width: 992px) {
    .navbar-fixed-top, .navbar-fixed-bottom {
        position: static !important;
    }

    html, body {
        overflow: visible;
    }

    header:not(.hamburger-header) {
        position: relative;
    }

    header.menu-transparent {
        position: absolute;
    }

    .fp-section {
        width: 100%;
    }

    html:not(.fp-enabled) .fp-section {
        height: auto !important;
    }

    .fullpage-menu, .fullpage-varrow, .fullpage-arrow {
        display: none !important;
    }

    /* .flexslider, grid-list, .maso-list, .gallery, .flipster {
        height: auto !important;
    } */

    .pagination {
        padding-left: 1px;
    }

    /* html:not(.fp-enabled) .section .container, .scroll-content {
        padding-top: 15px !important;
        margin-top: 15px !important;
    } */

    html.fp-enabled .section > .content {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .section .content {
        padding-bottom: 30px;
    }


    .bg-bottom, .bottom-area {
        position: static;
        width: auto;
    }

    html:not(.fp-enabled) .section .box-middle:not(.overlaybox-inner) {
        padding-top: 60px !important;
        margin-top: 0 !important;
    }

    #fullpage-menu.full-width-menu, #fullpage-horizontal-menu.full-width-menu {
        margin-top: 0 !important;
        position: relative;
    }

    .fixed-top {
        position: relative;
    }

    .fp-slide {
        float: none;
    }

    .ms-left, .ms-right {
        position: static !important;
        width: 100% !important;
        overflow: hidden;
    }

    [class*="ms-viewing-ms-"] {
        overflow: scroll !important;
    }

    .ms-section.ms-table, .ms-tableCell {
        display: block;
        height: 100% !important;
    }

    /* .ms-section .container {
        width: auto;
        float: none !important;
    } */

    .section .background-page {
        text-align: center;
    }

    footer .content {
        margin-top: 0;
    }

    /* .section .background-page, .section .content, .section .container {
        text-align: center;
    } */

    /* .background-page .flexslider, .background-page .flexslider .slides {
        height: 100% !important;
        min-height: 250px;
        margin: 0 !important;
    } */

    .section .background-page > img {
        position: static;
        margin: 5px auto !important;
        padding: 0 !important;
    }

    /* .section .content .container > * {
        position: static;
        margin: 5px auto !important;
    } */

    /* .section .container > h1,
    .section .container > h2,
    .section .container > h3,
    .section .container > h4,
    .section .container > h5,
    .section .container > p,
    .section .container > span,
    .section .container > img,
    .section .container > table {
        padding: 0 !important;
        margin-bottom: 50px;
    }

    .section .container > a {
        display: block;
    } */

    span.space {
        display: none;
    }

    .background-page video {
        position: absolute;
    }

    /* .section .background-page:not(.background-mobile) .slides .bg-cover {
        min-height: 250px;
    } */

    .background-page.background-mobile {
        position: absolute !important;
    }
}

