/*======================================
  #Header
======================================*/
.top {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 500;
    -webkit-transition: background 0.4s ease, -webkit-box-shadow 0.4s ease;
    transition: background 0.4s ease, -webkit-box-shadow 0.4s ease;
    -o-transition: background 0.4s ease, box-shadow 0.4s ease;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    transition: background 0.4s ease, box-shadow 0.4s ease, -webkit-box-shadow 0.4s ease;
}

    .top .top-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0 auto;
    }

    .top.top--light {
        background: #ffffff;
        -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    }

        .top.top--light:hover {
            -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        }

    .top.top--full-width .top-inner {
        max-width: 100%;
    }

.pre-top-visible .top {
    top: 30px;
}

@media only screen and (max-width: 992px) {
    .pre-top-visible .top {
        top: 0;
    }
}

.scroll .top {
    position: fixed;
    top: 0 !important;
}

    .scroll .top.top--light {
        -webkit-box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
    }

.top.top--scroll-bg {
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

    .top.top--scroll-bg:hover {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.scroll .top.top--scroll-bg.top--light {
    background: white;
    -webkit-box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
}

.top.top--small-width .top-inner {
    max-width: var(--grid-width-small);
}

.top.top--big-width .top-inner {
    max-width: var(--grid-width-big);
}

.top__left {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: left;
    padding-right: 20px;
    height: var(--header-height);
}

@media only screen and (max-width: 992px) {
    .top__left {
        padding: 0 !important;
    }
}

.top__middle {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: center;
}

.top__right {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    grid-area: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.top.top--navigation-center .top-inner {
    -ms-grid-columns: 1fr auto 1fr;
    grid-template-columns: 1fr auto 1fr;
}

.top.top--navigation-left .top-inner {
    -ms-grid-columns: auto auto 1fr;
    grid-template-columns: auto auto 1fr;
}

.top.top--navigation-right .top-inner {
    -ms-grid-columns: 1fr auto auto;
    grid-template-columns: 1fr auto auto;
}

.top.top--navigation-left-logo-center .top-inner {
    -ms-grid-columns: 1fr auto 1fr;
    grid-template-columns: 1fr auto 1fr;
}

    .top.top--navigation-left-logo-center .top-inner .top__left {
        -ms-grid-row: 1;
        -ms-grid-column: 2;
        grid-area: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 0 20px;
    }

    .top.top--navigation-left-logo-center .top-inner .top__middle {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        grid-area: left;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
/*======================================
  #Logo
======================================*/
.logo-wrap {
    height: 100%;
}

.logo {
    position: relative;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 5;
}

    .logo img {
        height: 100%;
        display: block;
        max-width: 100%;
    }

.top--dark .logo--on-light {
    display: none;
}

.top--dark .logo--on-dark {
    display: block;
}

.top--light .logo--on-light {
    display: block;
}

.top--light .logo--on-dark {
    display: none;
}

.top--scroll-light .logo--on-light {
    display: none;
}

.top--scroll-light .logo--on-dark {
    display: block;
}

.top--scroll-dark .logo--on-light {
    display: block;
}

.top--scroll-dark .logo--on-dark {
    display: none;
}

.scroll .top--light .logo--on-light {
    display: block;
}

.scroll .top--light .logo--on-dark {
    display: none;
}

.scroll .top--dark .logo--on-light {
    display: none;
}

.scroll .top--dark .logo--on-dark {
    display: block;
}

.browser-explorer.browser-version-9 .logo {
    position: absolute;
    top: 0;
    left: 0;
}

/*======================================
  #Main navigation
======================================*/
.main-nav li.mobile-contact,
.main-nav .expand {
    display: none;
}

/*nav.main-nav.b2bnav .expand, nav.main-nav.b2cnav .expand {
    pointer-events: none;
}*/

@media only screen and (max-width: 992px) {
    .main-nav .expand {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 50px;
        display: block;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.08);
    }

    .main-nav .arrow {
        position: absolute;
        left: 5px;
        top: 0;
        bottom: 0;
        width: 50px;
        display: block;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.08);
        color: #1da0b9;
    }

    .main-nav .expand i {
        -webkit-transition: -webkit-transform 0.2s linear;
        transition: -webkit-transform 0.2s linear;
        -o-transition: transform 0.2s linear;
        transition: transform 0.2s linear;
        transition: transform 0.2s linear, -webkit-transform 0.2s linear;
    }

    .main-nav .expand.open i {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

.main-nav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}


    .main-nav > ul > li > a {
        color: white;
        display: block;
        /*font-size: 0.875rem;*/
        -webkit-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
        position: relative;
        white-space: nowrap;
    }

        .main-nav > ul > li > a > i.fa-chevron-down {
            /*font-size: 70%;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 3px;*/
            display: none;
        }

    .main-nav > ul > li.btn {
        padding: 0 0 0 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .main-nav > ul > li.btn > a {
            line-height: 1 !important;
            padding: 0.8em 1.35em;
        }

        .main-nav > ul > li.btn:hover {
            background: transparent !important;
        }

@media only screen and (max-width: 992px) {
    .main-nav > ul > li.btn {
        padding: 55px 20px 20px;
        display: block;
        text-align: center;
    }

        .main-nav > ul > li.btn > a {
            display: inline-block;
            font-size: 14px;
        }
}

.main-nav > ul > li.lang > a {
    padding: 0;
}

    .main-nav > ul > li.lang > a span {
        display: none;
    }

    .main-nav > ul > li.lang > a img {
        max-width: 1.2em;
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.main-nav > ul > li.lang ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 2em;
    white-space: nowrap;
}

    .main-nav > ul > li.lang ul li a img {
        max-width: 1.2em;
        margin-right: 4px;
    }

@media only screen and (max-width: 992px) {
    .main-nav > ul > li.lang > a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        padding: 15px 25px;
        width: auto !important;
        height: auto !important;
        line-height: 2em;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .main-nav > ul > li.lang > a span {
            display: block;
        }

        .main-nav > ul > li.lang > a img {
            position: static;
            -webkit-transform: none;
            -ms-transform: none;
            transform: none;
            margin-right: 4px;
        }

    .main-nav > ul > li.lang ul {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

        .main-nav > ul > li.lang ul li {
            display: block;
            border-left: 1px solid rgba(255, 255, 255, 0.08);
        }

            .main-nav > ul > li.lang ul li a {
                white-space: normal;
                line-height: 1;
            }
}

.main-nav > ul > li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff !important;
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.125s ease;
    -o-transition: all 0.125s ease;
    transition: all 0.125s ease;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
}

    .main-nav > ul > li ul.go-right {
        left: auto;
        right: 0;
    }

    .main-nav > ul > li ul li {
        display: block;
        -webkit-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
        position: relative;
    }

        .main-nav > ul > li ul li a {
            display: block;
            font-size: 0.875rem;
            color: #333637;
            padding: 0.9em 1.25em;
        }

        .main-nav > ul > li ul li .menu-link {
            display: inline;
            padding: 0;
        }

        .main-nav > ul > li ul li .menu-nolink {
            font-size: 1rem;
        }

        .main-nav > ul > li ul li a > i.fa-chevron-right {
            font-size: 70%;
            color: #333637;
            position: absolute;
            right: 15px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
        }

        .main-nav > ul > li ul li:hover {
            background: rgba(255, 255, 255, 0.03);
        }

    .main-nav > ul > li ul ul {
        top: 0;
        left: 100%;
    }

        .main-nav > ul > li ul ul.go-right {
            left: auto;
            right: 100%;
        }

.main-nav > ul > li:hover,
.main-nav > ul > li.touch-open {
    background: rgba(255, 255, 255, 0.1);
}

    .main-nav > ul > li:hover > ul,
    .main-nav > ul > li.touch-open > ul {
        opacity: 1;
        visibility: visible;
        -webkit-animation: in 0.7s;
    }

        .main-nav > ul > li:hover > ul li:hover > ul,
        .main-nav > ul > li.touch-open > ul li:hover > ul,
        .main-nav > ul > li:hover > ul li.touch-open > ul,
        .main-nav > ul > li.touch-open > ul li.touch-open > ul {
            opacity: 1;
            visibility: visible;
            -webkit-animation: in 0.7s;
        }

/*nav.main-nav > ul > li:nth-last-child(n+9) > a {
    -webkit-animation: out 1s;
}*/
a.mobnav-head {
    font-size: 16px;
}


@media only screen and (min-width: 992px) {
    .mob-tel {
        display: none !important;
    }

    .myaccount-menu {
        display: none !important;
    }

    nav.main-nav.b2cnav > ul > li:nth-last-child(n+11) > a:hover::after {
        -webkit-animation: in 1s;
        content: '';
        width: calc(100% + 5px);
        display: block;
        clear: both;
        height: 3px;
        background: #FFC42F;
        position: relative;
        top: -15px;
        left: -2px;
        z-index: 998;
        border-radius: 20px;
        margin: -3px 0 0 0;
    }

    nav.main-nav.b2bnav > ul > li:nth-last-child(n+10) > a:hover::after {
        -webkit-animation: in 1s;
        content: '';
        width: calc(100% + 5px);
        display: block;
        clear: both;
        height: 3px;
        background: #FFC42F;
        position: relative;
        top: -15px;
        left: -2px;
        z-index: 998;
        border-radius: 20px;
        margin: -3px 0 0 0;
    }

    @-webkit-keyframes in {
        from {
            opacity: 0.0;
            transition: opacity .25s ease-in-out;
            -moz-transition: opacity .25s ease-in-out;
            -webkit-transition: opacity .25s ease-in-out;
        }

        to {
            opacity: 1.0;
            transition: opacity .25s ease-in-out;
            -moz-transition: opacity .25s ease-in-out;
            -webkit-transition: opacity .25s ease-in-out;
        }
    }

    @-webkit-keyframes out {
        0% {
            opacity: 1.0;
            transition: opacity .25s ease-in-out;
            -moz-transition: opacity .25s ease-in-out;
            -webkit-transition: opacity .25s ease-in-out;
        }

        100% {
            opacity: 0.0;
            transition: opacity .25s ease-in-out;
            -moz-transition: opacity .25s ease-in-out;
            -webkit-transition: opacity .25s ease-in-out;
        }
    }
}

@media only screen and (max-width: 992px) {
    .main-nav {
        position: fixed;
        width: 100%;
        left: 0;
        bottom: 0;
        top: 50px;
        background-color: white !important;
        overflow-y: auto;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-overflow-scrolling: touch;
        -webkit-transition: all 0.35s ease;
        -o-transition: all 0.35s ease;
        transition: all 0.35s ease;
        visibility: hidden;
        padding-bottom: 100px;
        overflow-x: hidden;
    }

        .main-nav li.mobile-contact {
            display: block;
            width: 50%;
            -webkit-box-flex: 1;
            -ms-flex-positive: 1;
            flex-grow: 1;
        }

            .main-nav li.mobile-contact a {
                text-align: center;
                padding: 15px 0;
                font-weight: normal;
            }

                .main-nav li.mobile-contact a i {
                    margin-right: 3px;
                    font-size: 100%;
                }

            .main-nav li.mobile-contact:nth-child(2) {
                border-left: 1px solid rgba(255, 255, 255, 0.08);
            }

        .main-nav > ul {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-flow: row wrap;
            flex-flow: row wrap;
        }

            .main-nav > ul > li {
                width: 100%;
            }

                .main-nav > ul > li > a {
                    border-top: 1px solid rgba(255, 255, 255, 0.08);
                    line-height: 1 !important;
                    padding: 15px 25px;
                    font-size: 14px;
                }

    .myaccount-menu {
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 25px 20px 15px;
    }

        .myaccount-menu h6 {
            margin-bottom: 7px;
            font-weight: 600;
            font-size: 0.75rem;
            color: rgba(0, 0, 0, 0.3);
            padding: 2em 24px 1.5em !important;
            margin: 0 auto;
            width: 100%;
        }

        .myaccount-menu ul {
            padding: 0 24px 0 !important;
            list-style: none;
        }

        .myaccount-menu li a {
            color: rgba(0, 0, 0, 0.7) !important;
            line-height: 1;
            padding: 15px 0px;
            font-weight: 400;
            font-size: 1rem;
            display: block;
        }

            .myaccount-menu li a i {
                margin-right: 5px;
            }

    a.mobnav-head {
        font-size: 1.3rem !important;
        font-weight: bold !important;
    }

    .main-nav > ul > li > a i.fa-chevron-down {
        display: none;
    }

    .main-nav > ul > li:hover {
        background-color: inherit;
    }

        .main-nav > ul > li:hover > a {
            color: white;
        }

    .main-nav > ul > li ul {
        position: static;
        visibility: visible;
        opacity: 1;
        display: none;
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
        box-shadow: none;
    }

        .main-nav > ul > li ul li a {
            background-color: rgba(255, 255, 255, 0.08);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 15px 25px;
            position: relative;
            font-size: 1rem;
            line-height: 1 !important;
            text-indent: 20px !important;
        }

            .main-nav > ul > li ul li a > i.fa-chevron-right {
                display: none;
            }

        .main-nav > ul > li ul li:hover {
            background: inherit;
        }

            .main-nav > ul > li ul li:hover a {
                color: #333637;
            }

        .main-nav > ul > li ul li ul {
            background-color: rgba(255, 255, 255, 0.08);
        }

            .main-nav > ul > li ul li ul li:hover {
                background: none;
            }

                .main-nav > ul > li ul li ul li:hover a {
                    color: #ffc42f;
                }

    .mobile-nav-visible {
        overflow: hidden;
    }

        .mobile-nav-visible .main-nav {
            -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
            transform: translateX(0);
            visibility: visible;
            /*overflow:hidden;*/
        }
}

.top--light .main-nav > ul > li a {
    color: #111;
}

    .top--light .main-nav > ul > li a i.fa-chevron-down,
    .top--light .main-nav > ul > li a .fa-chevron-right {
        color: rgba(0, 0, 0, 0.5);
    }

.top--light .main-nav > ul > li:hover {
    background: rgba(0, 0, 0, 0.02);
}

.top--light .main-nav > ul > li ul {
    background: #ffffff;
    -webkit-box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.15);
}

    .top--light .main-nav > ul > li ul li a {
        color: #111;
    }

    .top--light .main-nav > ul > li ul li:hover {
        background: rgba(0, 0, 0, 0.02);
    }

.top--scroll-light .main-nav > ul > li > a {
    color: white;
}

    .top--scroll-light .main-nav > ul > li > a i.fa-chevron-down {
        color: rgba(255, 255, 255, 0.5);
    }

@media only screen and (max-width: 992px) {
    .top--scroll-light .main-nav > ul > li > a {
        color: inherit;
    }
}

.top--scroll-dark .main-nav > ul > li > a {
    color: #111;
}

    .top--scroll-dark .main-nav > ul > li > a i.fa-chevron-down {
        color: rgba(0, 0, 0, 0.5);
    }

@media only screen and (max-width: 992px) {
    .top--scroll-dark .main-nav > ul > li > a {
        color: inherit;
    }
}

@media only screen and (max-width: 992px) {
    .top--dark .main-nav > ul > li > a {
        color: #333637 !important;
    }
}

body > header > div > nav.main-nav.b2bnav > ul > li.btn.btn-mobile > a {
    color: #1da0b9 !important;
    border: 1px solid #1da0b9 !important;
}

.scroll .top--light .main-nav > ul > li > a {
    color: #111;
}

    .scroll .top--light .main-nav > ul > li > a i.fa-chevron-down {
        color: rgba(0, 0, 0, 0.5);
    }

.scroll .top--dark .main-nav > ul > li > a {
    color: white;
}

    .scroll .top--dark .main-nav > ul > li > a i.fa-chevron-down {
        color: rgba(255, 255, 255, 0.5);
    }

@media only screen and (max-width: 992px) {
    .top--light .main-nav {
        background: white;
    }

        .top--light .main-nav li.mobile-contact:nth-child(2) {
            border-left-color: rgba(0, 0, 0, 0.08);
        }

        .top--light .main-nav .expand {
            background-color: rgba(0, 0, 0, 0.04);
        }

        .top--light .main-nav > ul > li > a {
            border-top: 1px solid rgba(0, 0, 0, 0.08);
        }

        .top--light .main-nav > ul > li.lang ul {
            border-bottom-color: rgba(0, 0, 0, 0.08);
        }

            .top--light .main-nav > ul > li.lang ul li {
                border-left-color: rgba(0, 0, 0, 0.08);
            }

        .top--light .main-nav > ul > li:hover {
            background: inherit;
        }

            .top--light .main-nav > ul > li:hover > a {
                color: #111;
            }

        .top--light .main-nav > ul > li ul {
            -webkit-box-shadow: none;
            box-shadow: none;
        }

            .top--light .main-nav > ul > li ul li a {
                background-color: rgba(0, 0, 0, 0.04);
                border-top: 1px solid rgba(0, 0, 0, 0.08);
            }

            .top--light .main-nav > ul > li ul li ul {
                background-color: rgba(0, 0, 0, 0.04);
            }

            .top--light .main-nav > ul > li ul li:hover {
                background: inherit;
            }

                .top--light .main-nav > ul > li ul li:hover a {
                    color: #111;
                }
}

@media only screen and (min-width: 992px) {
    .main-nav > ul > li ul {
        /*display: block!important;*/
        /*display: block;*/
    }
}

.browser-explorer.browser-version-9 .main-nav {
    position: absolute;
    top: 0;
    right: 0;
}

    .browser-explorer.browser-version-9 .main-nav li.mobile-contact {
        display: none;
    }

    .browser-explorer.browser-version-9 .main-nav ul li {
        display: inline-block;
    }
/*======================================
  #Search
======================================*/
.toggle-search a {
    font-size: 1.0625rem !important;
    text-align: center;
    padding: 0 !important;
}

.mobile-actions {
    display: none;
}

@media only screen and (max-width: 992px) {
    .mobile-actions {
        display: block;
    }
}

.mobile-actions ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .mobile-actions ul li a {
        font-size: 1.3rem !important;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        color: white;
        line-height: 1;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

.top--light .mobile-actions ul li a {
    color: #111;
}

.top--scroll-dark .mobile-actions ul li a {
    color: #111;
}

.top--scroll-light .mobile-actions ul li a {
    color: white;
}

.scroll .top--light .mobile-actions ul li a {
    color: #111;
}

.scroll .top--dark .mobile-actions ul li a {
    color: white;
}
/*======================================
  #Toggle mobile nav
======================================*/
.hamburger {
    cursor: pointer;
    -webkit-transition-property: opacity, -webkit-filter;
    transition-property: opacity, -webkit-filter;
    -o-transition-property: opacity, filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    -webkit-transition-duration: 0.15s;
    -o-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.mobile-nav-visible .hamburger .hamburger-inner,
.mobile-nav-visible .hamburger .hamburger-inner::before,
.mobile-nav-visible .hamburger .hamburger-inner::after {
    width: 30px;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 4px;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.15s;
    -o-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

.hamburger-inner {
    display: block;
    top: 50%;
    width: 80%;
    margin-top: 2px;
    -webkit-transition-duration: 0.22s;
    -o-transition-duration: 0.22s;
    transition-duration: 0.22s;
    -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

    .hamburger-inner::before,
    .hamburger-inner::after {
        content: "";
        display: block;
    }

    .hamburger-inner::before {
        top: -8px;
        -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
        -o-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
        transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
    }

    .hamburger-inner::after {
        bottom: -8px;
        -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
        transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
        -o-transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
        transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
        transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

.mobile-nav-visible .hamburger-inner {
    -webkit-transform: rotate(225deg) scale(0.85);
    -ms-transform: rotate(225deg) scale(0.85);
    transform: rotate(225deg) scale(0.85);
    -webkit-transition-delay: 0.12s;
    -o-transition-delay: 0.12s;
    transition-delay: 0.12s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

    .mobile-nav-visible .hamburger-inner::before {
        top: 0;
        opacity: 0;
        -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
        -o-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
        transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
    }

    .mobile-nav-visible .hamburger-inner::after {
        bottom: 0;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
        transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
        -o-transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
        transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
        transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

.top--light .hamburger-inner,
.top--light .hamburger-inner::before,
.top--light .hamburger-inner::after {
    background-color: #111;
}

.top--scroll-dark .hamburger-inner,
.top--scroll-dark .hamburger-inner::before,
.top--scroll-dark .hamburger-inner::after {
    background-color: #111;
}

.top--scroll-light .hamburger-inner,
.top--scroll-light .hamburger-inner::before,
.top--scroll-light .hamburger-inner::after {
    background-color: white;
}

.scroll .top--light .hamburger-inner,
.scroll .top--light .hamburger-inner::before,
.scroll .top--light .hamburger-inner::after {
    background-color: #111;
}

.scroll .top--dark .hamburger-inner,
.scroll .top--dark .hamburger-inner::before,
.scroll .top--dark .hamburger-inner::after {
    background-color: white;
}
/*======================================
  #Pre top
======================================*/
.pre-top {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 30px;
    font-size: 0.8125rem;
    background-color: white;
    z-index: 600;
    color: rgba(0, 0, 0, 0.7);
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

    .pre-top a {
        color: rgba(0, 0, 0, 0.7);
    }

@media only screen and (max-width: 992px) {
    .pre-top {
        display: none;
    }
}

.pre-top.pre-top--dark {
    -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
    color: #1da0b9;
    background-color: #333637 !important;
}

    .pre-top.pre-top--dark a {
        color: rgba(255, 255, 255, 0.7);
    }

    .pre-top.pre-top--dark ul ul {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .pre-top.pre-top--dark ul ul li:hover {
            background-color: rgba(255, 255, 255, 0.03);
        }

    .pre-top.pre-top--dark .pre-top__list li ul li a {
        color: rgba(0, 0, 0, 0.7) !important;
    }

.pre-top.pre-top--scroll-bg {
    background: transparent !important;
}

.pre-top__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.pre-top .pre-top__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: bold;
}

.pre-top .pre-top__list--right {
    margin-left: auto;
}

.pre-top .pre-top__list--left > li {
    margin-right: 1em;
    padding: 0 30px;
}

    .pre-top .pre-top__list--left > li ul {
        left: 0;
    }

    .pre-top .pre-top__list--left > li:first-child {
        background: #1da0b9;
        padding: 0 30px;
    }

.pre-top .pre-top__list--right > li {
    margin-left: 1em;
}

    .pre-top .pre-top__list--right > li:last-child {
        margin-left: 20px;
        min-width: 150px;
        color: #ffffff;
        opacity: 1 !important;
    }

    .pre-top .pre-top__list--right > li ul {
        right: 0;
    }

.pre-top .pre-top__list li {
    position: relative;
    line-height: 34px;
}

    .pre-top .pre-top__list li a {
        display: block;
    }

        .pre-top .pre-top__list li a .fa-caret-down {
            opacity: 0.5;
        }

    .pre-top .pre-top__list li ul {
        position: absolute;
        list-style: none;
        margin: 0;
        padding: 0;
        background: white;
        min-width: 200px;
        top: 100%;
        -webkit-box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.15);
        box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.15);
        padding: 5px 0;
        visibility: hidden;
        opacity: 0;
        margin-top: 1px;
        -webkit-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }

        .pre-top .pre-top__list li ul li a {
            line-height: 1;
            padding: 15px 15px;
            color: rgba(0, 0, 0, 0.7) !important;
            font-weight: 400;
            font-size: 14px;
        }

            .pre-top .pre-top__list li ul li a i {
                margin-right: 5px;
            }

            .pre-top .pre-top__list li ul li a:hover {
                background: rgba(0, 0, 0, 0.02);
                color: inherit;
            }

.pre-top .pre-top__list > li:hover > a,
.pre-top .pre-top__list .touch-open > a {
    opacity: 0.7;
    color: #fff;
}

.pre-top .pre-top__list > li:hover > ul,
.pre-top .pre-top__list .touch-open > ul {
    visibility: visible;
    opacity: 1;
    background: #fff;
    padding: 10px 0;
    margin: -4px 0 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.pre-top.pre-top--scroll-dark {
    color: rgba(0, 0, 0, 0.7) !important;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

    .pre-top.pre-top--scroll-dark a {
        color: rgba(0, 0, 0, 0.7) !important;
    }

.pre-top.pre-top--scroll-light {
    color: rgba(255, 255, 255, 0.7) !important;
    -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

    .pre-top.pre-top--scroll-light a {
        color: rgba(255, 255, 255, 0.7) !important;
    }

.theme2-bg {
    background-color: #333637;
}

.theme3-bg {
    background-color: #f5f8fa;
}

.light-color.light-shadow h1, .light-color.light-shadow h2, .light-color.light-shadow h3 {
    text-shadow: 3px 3px 12px #333;
}

.light-color.light-shadow h4, .light-color.light-shadow h5, .light-color.light-shadow h6, .light-color.light-shadow p, .light-color.light-shadow span {
    text-shadow: 2px 2px 6px #333;
}

.card__button {
    text-shadow: none !important;
}

@media only screen and (max-width: 992px) {
    .btn-desktop {
        display: none !important;
    }
}

@media only screen and (min-width: 992px) {
    .btn-mobile {
        display: none !important;
    }
}
/*======================================
  #Pre top b2c Mobile
======================================*/
.preb2cmob-top {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    font-size: 0.8125rem;
    background-color: white;
    z-index: 600;
    color: rgba(0, 0, 0, 0.7);
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

    .preb2cmob-top a {
        color: rgba(0, 0, 0, 0.7);
    }

@media only screen and (min-width: 992px) {
    .preb2cmob-top {
        display: none;
    }
}

.preb2cmob-top.preb2cmob-top--dark {
    -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
    color: #1da0b9;
    background-color: #333637 !important;
    height: 35px;
    padding: 5px;
}

    .preb2cmob-top.preb2cmob-top--dark a {
        color: #1da0b9;
    }

    .preb2cmob-top.preb2cmob-top--dark ul ul {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .preb2cmob-top.preb2cmob-top--dark ul ul li:hover {
            background-color: rgba(255, 255, 255, 0.03);
        }

    .preb2cmob-top.preb2cmob-top--dark .preb2cmob-top__list li ul li a {
        color: rgba(255, 255, 255, 0.7) !important;
    }

.preb2cmob-top.preb2cmob-top--scroll-bg {
    background: transparent !important;
}

.preb2cmob-top__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.preb2cmob-top .preb2cmob-top__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: bold;
    width: 100%;
}

.preb2cmob-top .preb2cmob-top__list--right {
    margin-left: auto;
}

.preb2cmob-top .preb2cmob-top__list--left > li {
    margin-right: 1em;
    padding: 0 30px;
}

    .preb2cmob-top .preb2cmob-top__list--left > li ul {
        left: 0;
    }

    .preb2cmob-top .preb2cmob-top__list--left > li:first-child {
        background: #fff;
        padding: 0 30px;
        border-radius: 5px;
        height: 45px;
        margin-left: 10px;
    }

.preb2cmob-top .preb2cmob-top__list--right > li {
    margin-left: 1em;
}

    .preb2cmob-top .preb2cmob-top__list--right > li ul {
        right: 0;
    }

.preb2cmob-top .preb2cmob-top__list li {
    position: relative;
    line-height: 30px;
    width: 50%;
    height: 45px;
}

    .preb2cmob-top .preb2cmob-top__list li a {
        display: block;
        text-align: center;
    }

        .preb2cmob-top .preb2cmob-top__list li a .fa-caret-down {
            opacity: 0.5;
        }

    .preb2cmob-top .preb2cmob-top__list li ul {
        position: absolute;
        list-style: none;
        margin: 0;
        padding: 0;
        background: white;
        min-width: 170px;
        top: 100%;
        -webkit-box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.15);
        box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.15);
        padding: 5px 0;
        visibility: hidden;
        opacity: 0;
        margin-top: 1px;
        -webkit-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }

        .preb2cmob-top .preb2cmob-top__list li ul li a {
            line-height: 1;
            padding: 10px 15px;
            color: rgba(0, 0, 0, 0.7) !important;
        }

            .preb2cmob-top .preb2cmob-top__list li ul li a:hover {
                background: rgba(0, 0, 0, 0.02);
                color: inherit;
            }

.preb2cmob-top .preb2cmob-top__list > li:hover > a,
.preb2cmob-top .preb2cmob-top__list .touch-open > a {
    opacity: 0.7;
    color: inherit;
}

.preb2cmob-top .preb2cmob-top__list > li:hover > ul,
.preb2cmob-top .preb2cmob-top__list .touch-open > ul {
    visibility: visible;
    opacity: 1;
}

.preb2cmob-top.preb2cmob-top--scroll-dark {
    color: rgba(0, 0, 0, 0.7) !important;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

    .preb2cmob-top.preb2cmob-top--scroll-dark a {
        color: rgba(0, 0, 0, 0.7) !important;
    }

.preb2cmob-top.preb2cmob-top--scroll-light {
    color: rgba(255, 255, 255, 0.7) !important;
    -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

    .preb2cmob-top.preb2cmob-top--scroll-light a {
        color: rgba(255, 255, 255, 0.7) !important;
    }
/*======================================
  #Pre top Mobile
======================================*/
.premob-top {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    font-size: 0.8125rem;
    background-color: white;
    z-index: 600;
    color: rgba(0, 0, 0, 0.7);
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

    .premob-top a {
        color: rgba(0, 0, 0, 0.7);
    }

@media only screen and (min-width: 992px) {
    .premob-top {
        display: none;
    }
}

.premob-top.premob-top--dark {
    -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
    color: #1da0b9;
    background-color: #333637 !important;
    height: 35px;
    padding: 5px;
}

    .premob-top.premob-top--dark a {
        color: #1da0b9;
    }

    .premob-top.premob-top--dark ul ul {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .premob-top.premob-top--dark ul ul li:hover {
            background-color: rgba(255, 255, 255, 0.03);
        }

    .premob-top.premob-top--dark .premob-top__list li ul li a {
        color: rgba(255, 255, 255, 0.7) !important;
    }

.premob-top.premob-top--scroll-bg {
    background: transparent !important;
}

.premob-top__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.premob-top .premob-top__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: bold;
    width: 100%;
}

.premob-top .premob-top__list--right {
    margin-left: auto;
}

.premob-top .premob-top__list--left > li {
    margin-right: 1em;
    padding: 0 30px;
}

    .premob-top .premob-top__list--left > li ul {
        left: 0;
    }

    .premob-top .premob-top__list--left > li:nth-child(2) {
        background: #fff;
        padding: 0 30px;
        border-radius: 5px;
        height: 45px;
    }

.premob-top .premob-top__list--right > li {
    margin-left: 1em;
}

    .premob-top .premob-top__list--right > li ul {
        right: 0;
    }

.premob-top .premob-top__list li {
    position: relative;
    line-height: 30px;
    width: 50%;
    height: 45px;
}

    .premob-top .premob-top__list li a {
        display: block;
        text-align: center;
    }

        .premob-top .premob-top__list li a .fa-caret-down {
            opacity: 0.5;
        }

    .premob-top .premob-top__list li ul {
        position: absolute;
        list-style: none;
        margin: 0;
        padding: 0;
        background: white;
        min-width: 170px;
        top: 100%;
        -webkit-box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.15);
        box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.15);
        padding: 5px 0;
        visibility: hidden;
        opacity: 0;
        margin-top: 1px;
        -webkit-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }

        .premob-top .premob-top__list li ul li a {
            line-height: 1;
            padding: 10px 15px;
            color: rgba(0, 0, 0, 0.7) !important;
        }

            .premob-top .premob-top__list li ul li a:hover {
                background: rgba(0, 0, 0, 0.02);
                color: inherit;
            }

.premob-top .premob-top__list > li:hover > a,
.premob-top .premob-top__list .touch-open > a {
    opacity: 0.7;
    color: inherit;
}

.premob-top .premob-top__list > li:hover > ul,
.premob-top .premob-top__list .touch-open > ul {
    visibility: visible;
    opacity: 1;
}

.premob-top.premob-top--scroll-dark {
    color: rgba(0, 0, 0, 0.7) !important;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

    .premob-top.premob-top--scroll-dark a {
        color: rgba(0, 0, 0, 0.7) !important;
    }

.premob-top.premob-top--scroll-light {
    color: rgba(255, 255, 255, 0.7) !important;
    -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

    .premob-top.premob-top--scroll-light a {
        color: rgba(255, 255, 255, 0.7) !important;
    }

/*======================================
  #Big nav
======================================*/
@media only screen and (min-width: 992px) {
    .main-nav li:hover .big-drop {
        display: block;
    }

    .main-nav li .big-drop {
        display: none;
    }
}

.big-drop {
    width: 100vw;
    position: absolute;
}

.span.big-item__text.selected > a {
    color: #ffc42f !important
}

.span.big-item__text.selected > a {
    color: #ffc42f !important
}

.big-div {
    left: 0;
    right: 0;
    position: fixed;
    background-color: #fff;
    padding: 30px;
    border-radius: 0 0 4px 4px;
    /*overflow: hidden;*/
    transition: all 0.125s ease;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
}

div.button-wrap .result-cta {
    padding: 1em 2em;
}

.big-drop-central {
    margin: 0 auto;
}

@media only screen and (max-width: 992px) {

    .savings-piggy {
        margin: auto;
        max-width: 100px;
    }

    .expenses-result-callus, .expenses-result-constructioncalc, .expenses-result-logisticscalc, .expenses-result-homeimprovcalc, .recommend-page1, .expensesdiv {
        min-height: 100vh;
        overflow: hidden;
    }
}

ul.big-drop.recommend > li > div.big-div {
    left: 0;
    right: 0;
    top: -2px;
    position: fixed;
    background-color: #1da0b9;
    padding: 30px;
    border-radius: 0 0 4px 4px;
    overflow: hidden;
    transition: all 0.125s ease;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
    margin: auto;
    width: 100%;
}


.big-drop li a {
    padding: 0.9em 0;
}

@media only screen and (max-width: 992px) {
    .big-drop {
        width: 100%;
        left: 0 !important;
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
        padding: 0 !important;
    }
}

.big-drop > li:hover {
    background: none !important;
}

.big-drop__section.big-drop__section--bottom {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(16, 42, 67, 0.05);
}

@media only screen and (max-width: 992px) {
    .big-drop__section.big-drop__section--bottom {
        margin: 0;
        padding: 5px 10px 10px;
    }

    .big-drop__section h6 {
        margin-bottom: 7px;
        font-weight: 600;
        font-size: 0.75rem;
        color: rgba(0, 0, 0, 0.3);
        padding: 2em 40px 1.5em !important;
        margin: 0 auto;
        width: 100%;
    }
}

.h6-line {
    border-top: solid 1px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    width: 100%;
}

.h6-line-container {
    padding: 0 30px 10px;
}

.h6-line-container-wide {
    padding: 0 22px 10px;
}

.big-drop__section h6 {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.3);
    padding: 0 17px;
}

.big-drop__section .image-sub {
    margin: -20px 0 5px;
    font-weight: 600;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}

.big-drop__section p {
    margin-bottom: 0;
    font-size: 0.875rem;
    color: rgba(16, 42, 67, 0.7);
}

.big-drop__items .big-item__image {
    width: 40px;
    display: block;
    position: absolute;
    left: 10px;
    top: 10px;
    text-align: center;
}

    .big-drop__items .big-item__image img {
        display: block;
        border-radius: 5px;
    }

@media only screen and (max-width: 992px) {
    .big-drop__items .big-item__image {
        left: 25px;
    }
}

.big-drop__items a {
    position: relative;
}

    .big-drop__items a:hover {
        background-color: #F7F8FC;
    }

    .big-drop__items a.big-item-button-link {
        background-color: #F7F8FC;
        text-align: center;
        border-radius: 4px;
    }

        .big-drop__items a.big-item-button-link:hover {
            background-color: #00e89d;
            color: #102a43;
        }

@media only screen and (max-width: 992px) {
    .big-drop__items a.big-item-button-link {
        margin-top: 5px;
        font-size: 0.9rem;
        border: 0 !important;
    }
}

.big-drop__items .big-item__text {
    padding-left: 45px;
    display: block;
}

@media only screen and (max-width: 992px) {
    .big-drop__items .big-item__text {
        padding-left: 55px;
    }
}

.big-drop__items .big-item__heading {
    display: block;
    margin-bottom: 0px;
    line-height: 1;
}

.big-drop__items .big-item__info {
    font-weight: normal;
    color: #666;
    font-size: 0.785rem;
    line-height: 1.4;
    padding-top: 3px;
    display: block;
}

.more-features {
    text-align: center;
    margin: 10px -10px 0 -10px;
    background-color: #f7f8fc;
}

@media only screen and (max-width: 992px) {
    .more-features {
        background: transparent;
        margin: 0;
    }
}

.more-features a {
    font-size: 0.785rem !important;
}

.more-features span.fa {
    font-size: 70%;
    position: relative;
    top: -1px;
    -webkit-transition: margin 0.25s ease;
    -o-transition: margin 0.25s ease;
    transition: margin 0.25s ease;
    margin-left: 5px;
}

@media only screen and (max-width: 992px) {
    .mob-menu {
        /*overflow-x: hidden;*/
        width: 100%;
        transition: transform 0.2s ease-in-out;
    }

    .customdiv {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .customdiv-text {
        padding: 20px 40px 0 !important;
    }

    .go-right {
        padding: 0px !important;
        margin: 0 !important;
    }

    .big-drop__text {
        padding: 0;
    }

    .big-div {
        padding: 0;
        box-shadow: none;
        margin: 0 -15px 0 -15px;
        position: inherit;
    }

    .big-drop__section.row {
        width: 100% !important;
        height: 100%;
        margin: auto;
        left: 0;
        right: 0;
        display: inline-table;
    }
}

.big-drop__section.row {
    width: 950px;
    /*height: 370px;*/
    margin: auto;
    left: 0;
    right: 0;
}

.main-nav ul li ul li a:hover {
    transition: all 0.5s ease;
    background-color: rgba(0, 0, 0, 0.04) !important;
    text-decoration: underline;
}

div.big-drop__section.row a {
    padding: 0.9em 1.25em;
}

.previous-div {
    display: none;
}

@media only screen and (max-width: 992px) {
    .previous-div {
        display: block;
    }

    .big-nav {
        padding: 0;
    }

    .nav-swipe-off {
        transform: translateX(100%);
        transition: transform 0.2s ease-in-out;
        overflow: hidden;
        position: fixed !important;
        top: 10px !important;
    }

    .mob-menu-swipe {
        transform: translateX(-100%);
        display: inline-table !important;
    }
}

.back-text {
    color: #333637;
    padding: 5px 20px;
    font-size: 1.3rem;
    font-weight: bold;
}

.last-menu {
    margin-bottom: 27px;
}

.menu-link {
    display: block;
}

.menu-link-image {
    // margin: 10px 0 -10px 0;
}

.menu-link-text {
    padding: 7px 0;
    position: absolute;
    text-indent: 20px;
}

.big-div-logos {
    padding: 0 !important;
}

.faded {
    opacity: 0.3;
}

.faded-link {
    cursor: default !important;
}

.spacerheight {
    height: 25px;
}

/*.underline-small {
    display: inline-block;
    position: relative;
}
.underline-small::after {
    content: '';
    height: 2px;
    width: 100%;
    background: #ffc42f;
    position: absolute;
    left: calc(10% - 10%);
    bottom: 0px;
}*/
.social-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

    .social-nav li {
        margin: 0 10px 10px 0;
    }

        .social-nav li a {
            display: block;
            width: 2.5em;
            height: 2.5em;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            border-radius: 100%;
            color: white;
            font-size: 1.25rem;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            background: rgba(255, 255, 255, 0.05);
        }


@media only screen and (max-width: 992px) {
    .main-nav > ul > li.btn > a.button.button--.button--border.button--light {
        color: #1da0b9 !important;
        border-color: #1da0b9 !important;
    }

    .social-nav-mobile li a {
        color: #fff !important;
        background: #1da0b9 !important;
    }

    .main-nav > ul > li.btn > a {
        width: 100%;
    }
}

.mobile-contact {
    color: #333637 !important;
    font-size: 1rem;
}

li.mob-tel a {
    font-size: 1.2rem !important;
    text-align: center;
}

li.mob-tel i {
    color: #1da0b9 !important;
}

.mobile-contact .contact-list li i {
    position: absolute;
    left: 10px;
    top: 0.25em;
    width: 1.05em;
    text-align: center;
}

.top-nav-mobile {
    display: none !important;
}
/* Big Nav */
@media only screen and (max-width: 992px) {
    .main-nav--main {
        position: fixed;
        width: 100%;
        left: 0;
        bottom: 0;
        overflow-y: auto;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-overflow-scrolling: touch;
        -webkit-transition: all 0.35s ease;
        -o-transition: all 0.35s ease;
        transition: all 0.35s ease;
        visibility: hidden;
        background-color: var(--background-dark);
        top: var(--header-height);
    }

    .mobile-nav-visible {
        overflow: hidden;
    }

        .mobile-nav-visible .main-nav--main {
            -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
            transform: translateX(0);
            visibility: visible;
        }
}
/* Lists */
.main-nav__ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav__ul--first {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (max-width: 992px) {
    .main-nav__ul--first {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }
}

.main-nav__ul--second,
.main-nav__ul--third {
    position: absolute;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.125s ease;
    -o-transition: all 0.125s ease;
    transition: all 0.125s ease;
    background-color: var(--background-dark);
}

@media only screen and (max-width: 992px) {
    .main-nav__ul--second,
    .main-nav__ul--third {
        position: static;
        visibility: visible;
        opacity: 1;
        display: none;
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }
}

@media only screen and (min-width: 992px) {
    .main-nav__ul--second,
    .main-nav__ul--third {
        display: block !important;
    }
}

.main-nav__ul--second {
    top: 100%;
    left: 0;
}

    .main-nav__ul--second.go-right {
        left: auto;
        right: 0;
    }

.main-nav__ul--third {
    top: 0;
    left: 100%;
}

    .main-nav__ul--third.go-right {
        left: auto;
        right: 100%;
    }

@media only screen and (max-width: 992px) {
    .main-nav__ul--third {
        background-color: var(--border-light) !important;
    }
}

.main-nav__ul--big {
    width: 100% !important;
    -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
}

@media only screen and (max-width: 992px) {
    .main-nav__ul--big {
        overflow: visible !important;
        max-height: 100% !important;
    }
}

.top--light .main-nav__ul--second,
.top--light .main-nav__ul--third {
    background: var(--white);
    -webkit-box-shadow: 0 12px 20px -6px rgba(0, 0, 0, 0.15);
    box-shadow: 0 12px 20px -6px rgba(0, 0, 0, 0.15);
}
/* Items */
.main-nav__li {
    display: block;
    position: relative;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.main-nav__li--big {
    position: static;
}

.main-nav__li:hover,
.main-nav__li.touch-open {
    background: rgba(255, 255, 255, 0.03);
}

    .main-nav__li:hover > .main-nav__ul,
    .main-nav__li.touch-open > .main-nav__ul {
        opacity: 1;
        z-index: 99;
        visibility: visible;
    }

@media only screen and (max-width: 992px) {
    .main-nav__li {
        width: 100%;
    }

        .main-nav__li:hover,
        .main-nav__li.touch-open {
            background-color: inherit !important;
        }
}

.top--light .main-nav__li:hover {
    background: rgba(0, 0, 0, 0.02);
}
/* Links */
.main-nav__a {
    color: var(--heading-light);
    display: block;
    font-size: 16px;
    font-weight: 400;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    position: relative;
    white-space: nowrap;
}

.fa-chevron-down {
    font-size: 65%;
    color: rgba(255, 255, 255, 0.5);
    -webkit-transform: translate(0, -1px);
    -ms-transform: translate(0, -1px);
    transform: translate(0, -1px);
    width: 10px;
    text-align: center;
}

/*.main-nav__a:hover {
    color: var(--heading-light);
}*/
.main-nav__a:hover::after {
    -webkit-animation: in 1s;
    content: '';
    width: calc(100% + 5px);
    display: block;
    clear: both;
    height: 3px;
    background: #FFC42F;
    position: relative;
    top: -15px;
    left: -2px;
    z-index: 998;
    border-radius: 20px;
    margin: -3px 0 0 0;
}

.main-nav__a .expand {
    display: none;
}

@media only screen and (max-width: 992px) {
    .main-nav__a {
        border-top: 1px solid var(--border-light);
        line-height: 1 !important;
        padding: 15px 25px !important;
        font-size: 1rem;
    }

        .main-nav__a .fa-chevron-down,
        .main-nav__a .fa-chevron-right {
            display: none;
        }

        .main-nav__a .expand {
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 50px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            background-color: var(--border-light);
        }

            .main-nav__a .expand i {
                -webkit-transition: -webkit-transform 0.2s linear;
                transition: -webkit-transform 0.2s linear;
                -o-transition: transform 0.2s linear;
                transition: transform 0.2s linear;
                transition: transform 0.2s linear, -webkit-transform 0.2s linear;
            }

            .main-nav__a .expand.open i {
                -webkit-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                transform: rotate(45deg);
            }

        .main-nav__a:hover {
            transition: all 0.5s ease;
            background-color: rgba(0, 0, 0, 0.04) !important;
            text-decoration: underline;
            color: #333637 !important;
        }

            .main-nav__a:hover::after {
                display: none;
            }

    .main-nav__li.selected > .main-nav__a {
        color: #333637 !important;
    }
}

.main-nav__ul--first > .main-nav__li > .main-nav__a {
    line-height: var(--header-height);
    padding: 0 var(--navigation-padding);
}

@media only screen and (min-width: 992px) {
    .main-nav__li.selected > .main-nav__a {
        color: #FFF !important;
    }
}

.main-nav__ul--second .main-nav__a {
    padding: 0.9em 1.25em;
}

    .main-nav__ul--second .main-nav__a .fa-chevron-right {
        font-size: 65%;
        color: rgba(255, 255, 255, 0.5);
        position: absolute;
        right: 15px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

@media only screen and (max-width: 992px) {
    .main-nav__ul--second .main-nav__a {
        background-color: var(--border-light);
    }
}

.main-nav__li.touch-open > a .fa-chevron-down:before {
    content: "\f00d";
}

.top--light .main-nav__a {
    color: var(--heading-dark);
}

    .top--light .main-nav__a:hover {
        color: var(--heading-dark);
    }

    .top--light .main-nav__a .fa-chevron-down,
    .top--light .main-nav__a .fa-chevron-right {
        color: rgba(0, 0, 0, 0.5);
    }
/* Button */
.main-nav__li--btn {
    padding: 0 0 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .main-nav__li--btn .button {
        padding: 0.8em 1.35em;
    }

    .main-nav__li--btn:hover {
        background: transparent !important;
    }

@media only screen and (max-width: 992px) {
    .main-nav__li--btn {
        padding: 20px 20px 0;
        display: block;
        text-align: center;
    }

        .main-nav__li--btn .button {
            display: inline-block;
        }
}
/* Language Picker */
.main-nav__li--lang > .main-nav__a {
    padding: 0;
    width: var(--header-height);
    height: var(--header-height);
    max-width: 70px;
}

    .main-nav__li--lang > .main-nav__a span {
        display: none;
    }

    .main-nav__li--lang > .main-nav__a img {
        max-width: 1.2em;
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.main-nav__li--lang .main-nav__ul--second .main-nav__a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 2em;
    white-space: nowrap;
}

    .main-nav__li--lang .main-nav__ul--second .main-nav__a img {
        max-width: 1.2em;
        margin-right: 4px;
    }

@media only screen and (max-width: 992px) {
    .main-nav__li--lang > .main-nav__a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        padding: 15px 25px;
        width: auto !important;
        height: auto !important;
        line-height: 2em;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        max-width: 100% !important;
    }

        .main-nav__li--lang > .main-nav__a span {
            display: block;
        }

        .main-nav__li--lang > .main-nav__a img {
            position: static;
            -webkit-transform: none;
            -ms-transform: none;
            transform: none;
            margin-right: 4px;
        }

    .main-nav__li--lang .main-nav__ul--second {
        border-bottom: 1px solid var(--border-light);
    }

        .main-nav__li--lang .main-nav__ul--second .main-nav__li {
            display: block;
            border-left: 1px solid var(--border-light);
        }

        .main-nav__li--lang .main-nav__ul--second .main-nav__a {
            white-space: normal;
            line-height: 1;
        }
}
/* Mobile Contact */
.main-nav__li--contact {
    display: none;
}

@media only screen and (max-width: 992px) {
    .main-nav__li--contact {
        display: block;
        width: 50%;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

        .main-nav__li--contact .main-nav__a {
            text-align: center;
            font-weight: var(--font-weight-normal);
        }

            .main-nav__li--contact .main-nav__a i {
                margin-right: 3px;
            }

        .main-nav__li--contact:nth-child(2) {
            border-left: 1px solid var(--border-light);
        }

    .top--light .main-nav__li--contact:nth-child(2) {
        border-left-color: var(--border-dark);
    }
}

.top--scroll-light .main-nav > ul > li > .main-nav__a {
    color: var(--heading-light);
}

    .top--scroll-light .main-nav > ul > li > .main-nav__a i.fa-chevron-down {
        color: rgba(255, 255, 255, 0.5);
    }

@media only screen and (max-width: 992px) {
    .top--scroll-light .main-nav > ul > li > .main-nav__a {
        color: inherit;
    }
}

.top--scroll-dark .main-nav > ul > li > .main-nav__a {
    color: var(--heading-dark);
}

    .top--scroll-dark .main-nav > ul > li > .main-nav__a i.fa-chevron-down {
        color: rgba(0, 0, 0, 0.5);
    }

@media only screen and (max-width: 992px) {
    .top--scroll-dark .main-nav > ul > li > .main-nav__a {
        color: inherit;
    }
}

@media only screen and (max-width: 992px) {
    .top--dark .main-nav > ul > li > .main-nav__a {
        color: var(--heading-light);
    }
}

.scroll .top--light .main-nav > ul > li > .main-nav__a {
    color: var(--heading-dark);
}

    .scroll .top--light .main-nav > ul > li > .main-nav__a i.fa-chevron-down {
        color: rgba(0, 0, 0, 0.5);
    }

/*.scroll .top--dark .main-nav > ul > li > .main-nav__a {
        color: var(--heading-light);
    }*/

.scroll .top--dark .main-nav > ul > li > .main-nav__a i.fa-chevron-down {
    color: rgba(255, 255, 255, 0.5);
}

@media only screen and (max-width: 992px) {
    .top--light .main-nav {
        background: var(--white);
    }

        .top--light .main-nav li.mobile-contact:nth-child(2) {
            border-left-color: rgba(0, 0, 0, 0.08);
        }

        .top--light .main-nav .main-nav__a .expand {
            background-color: rgba(0, 0, 0, 0.04);
        }

        .top--light .main-nav .main-nav__a {
            border-top: 1px solid rgba(0, 0, 0, 0.08);
        }

        .top--light .main-nav .main-nav__ul--second .main-nav__a {
            background-color: rgba(0, 0, 0, 0.04);
        }

        .top--light .main-nav .main-nav__li--lang ul {
            border-bottom-color: rgba(0, 0, 0, 0.08);
        }

            .top--light .main-nav .main-nav__li--lang ul li {
                border-left-color: rgba(0, 0, 0, 0.08);
            }

        .top--light .main-nav .main-nav__ul--third {
            background-color: rgba(0, 0, 0, 0.04) !important;
        }

        .top--light .main-nav .main-nav__li:hover {
            background: inherit !important;
        }
}


/* Big Nav End*/
.sub-logo {
    height: 22px;
    padding-top: 1px;
    margin-bottom: -3px;
    padding-right: 3px;
}

body > div.pre-top.pre-top--dark > div > div > div > div > ul.pre-top__list.pre-top__list--right > li:nth-child(2) > a {
    color: #fff;
}

    body > div.pre-top.pre-top--dark > div > div > div > div > ul.pre-top__list.pre-top__list--right > li:nth-child(2) > a:hover::after {
        opacity: 0.7 !important;
    }

.blue-border:hover {
    background: #1da0b9 !important;
}

/* (A) FIXED WRAPPER */
.hwrap {
  overflow: hidden; /* HIDE SCROLL BAR */
  background: #e11d8d;
  position:relative;
  z-index:9999999;
}

/* (B) MOVING TICKER WRAPPER */
.hmove { display: flex; }

/* (C) ITEMS - INTO A LONG HORIZONTAL ROW */
.hitem {
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  text-align: center;
	font-family: "Roboto",sans-serif;
	color: #ffffff;
	font-size:14px;
	font-weight: 600;
}
.hitem:hover {
  cursor:pointer;
}
.hitem a {
  text-decoration: none;
	color:#ffffff;
	cursor:pointer;
}

/* (D) ANIMATION - MOVE ITEMS FROM RIGHT TO LEFT */
/* 4 ITEMS -400%, CHANGE THIS IF YOU ADD/REMOVE ITEMS */
@keyframes tickerh {
  0% { transform: translate3d(100%, 0, 0); }
  100% { transform: translate3d(-200%, 0, 0); }
}
.hmove { animation: tickerh linear 30s infinite; }
.hmove:hover { animation-play-state: paused; }

.pre-top.pre-top--dark {
 top:40px;   
}
.pre-top-visible .top {
    top: 70px;
}

@media only screen and (max-width: 992px) {
    .hmove { animation: tickerh linear 20s infinite; }
   .hitem {
  font-size: 12px;
} 
.pre-top-visible .top {
    top: 56px;
}
}
.grid-item.grid-item--pod.pod.grid-item--boxed.text-center.pod--customicon {
    background: #1da0b9;
    padding-top: 10px;
    color: #ffffff;
}
.grid-item.grid-item--pod.pod.grid-item--boxed.text-center.pod--customicon h3.h5 {
    color: #ffffff !important;
}