.menu {
    margin: 0;
    list-style-type: none;
    /*width: 100%;*/
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.menu>li {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

[data-whatinput='mouse'] .menu>li {
    outline: 0
}

.menu>li>a {
    display: block;
    padding: 0.7rem 1rem;
    line-height: 1
}

.menu input,
.menu a,
.menu button {
    margin-bottom: 0
}

.menu>li>a {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.menu>li>a {
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap
}

.menu>li>a img,
.menu>li>a i {
    margin-right: 0.25rem
}

.menu>li {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.menu.vertical {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.menu.vertical>li {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

.menu.vertical>li>a {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

@media screen and (min-width: 40em) {
    .menu.medium-horizontal {
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }
    .menu.medium-horizontal>li {
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto
    }
    .menu.medium-vertical {
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }
    .menu.medium-vertical>li {
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
    .menu.medium-vertical>li>a {
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

@media screen and (min-width: 64em) {
    .menu.large-horizontal {
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }
    .menu.large-horizontal>li {
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto
    }
    .menu.large-vertical {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .menu.large-vertical>li {
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
    .menu.large-vertical>li>a {
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

.menu.simple li {
    line-height: 1;
    display: inline-block;
    margin-right: 1rem
}

.menu.simple a {
    padding: 0
}

.menu.align-right {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.menu.expanded>li {
    -webkit-flex: 1 1 0px;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px
}

.menu.expanded>li:first-child:last-child {
    width: 100%
}

.menu.icon-top>li>a {
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap
}

.menu.icon-top>li>a img,
.menu.icon-top>li>a i {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    text-align: center;
    margin-bottom: 0.25rem
}

.menu.nested {
    margin-left: 1rem
}

.menu .active>a {
    color: #fefefe;
    /*background: var(--grey-medium)*/
}

.menu li.current-menu-item,
.menu li.current-menu-ancestor,
.menu li.current-menu-parent {
    color: #fefefe;
    background: var(--grey-medium)
}

.menu-text {
    font-weight: bold;
    color: inherit;
    line-height: 1;
    padding-top: 0;
    padding-bottom: 0;
    padding: 0.7rem 1rem
}

.menu-centered {
    text-align: center
}

.menu-centered>.menu {
    display: inline-block
}

.no-js [data-responsive-menu] ul {
    display: none
}

.dropdown.menu>li.opens-left>.is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%
}

.dropdown.menu>li.opens-right>.is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%
}

.dropdown.menu>li.is-dropdown-submenu-parent>a {
    padding-right: 1.5rem;
    position: relative
}

.dropdown.menu>li.is-dropdown-submenu-parent>a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: var(--grey-medium) transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    right: 5px;
    margin-top: -2px
}

[data-whatinput='mouse'] .dropdown.menu a {
    outline: 0
}

.no-js .dropdown.menu ul {
    display: none
}

.dropdown.menu.vertical>li .is-dropdown-submenu {
    top: 0
}

.dropdown.menu.vertical>li.opens-left .is-dropdown-submenu {
    left: auto;
    right: 100%
}

.dropdown.menu.vertical>li.opens-right .is-dropdown-submenu {
    right: auto;
    left: 100%
}

.dropdown.menu.vertical>li>a::after {
    right: 14px;
    margin-top: -3px
}

.dropdown.menu.vertical>li.opens-left>a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent var(--grey-medium) transparent transparent;
    border-right-style: solid;
    border-left-width: 0
}

.dropdown.menu.vertical>li.opens-right>a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent var(--grey-medium);
    border-left-style: solid;
    border-right-width: 0
}

@media screen and (min-width: 40em) {
    .dropdown.menu.medium-horizontal>li.opens-left>.is-dropdown-submenu {
        left: auto;
        right: 0;
        top: 100%
    }
    .dropdown.menu.medium-horizontal>li.opens-right>.is-dropdown-submenu {
        right: auto;
        left: 0;
        top: 100%
    }
    .dropdown.menu.medium-horizontal>li.is-dropdown-submenu-parent>a {
        padding-right: 1.5rem;
        position: relative
    }
    .dropdown.menu.medium-horizontal>li.is-dropdown-submenu-parent>a::after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border: inset 5px;
        border-color: var(--grey-medium) transparent transparent;
        border-top-style: solid;
        border-bottom-width: 0;
        right: 5px;
        margin-top: -2px
    }
    .dropdown.menu.medium-vertical>li .is-dropdown-submenu {
        top: 0
    }
    .dropdown.menu.medium-vertical>li.opens-left .is-dropdown-submenu {
        left: auto;
        right: 100%
    }
    .dropdown.menu.medium-vertical>li.opens-right .is-dropdown-submenu {
        right: auto;
        left: 100%
    }
    .dropdown.menu.medium-vertical>li>a::after {
        right: 14px;
        margin-top: -3px
    }
    .dropdown.menu.medium-vertical>li.opens-left>a::after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border: inset 5px;
        border-color: transparent var(--grey-medium) transparent transparent;
        border-right-style: solid;
        border-left-width: 0
    }
    .dropdown.menu.medium-vertical>li.opens-right>a::after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border: inset 5px;
        border-color: transparent transparent transparent var(--grey-medium);
        border-left-style: solid;
        border-right-width: 0
    }
}

@media screen and (min-width: 64em) {
    .dropdown.menu.large-horizontal>li.opens-left>.is-dropdown-submenu {
        left: auto;
        right: 0;
        top: 100%
    }
    .dropdown.menu.large-horizontal>li.opens-right>.is-dropdown-submenu {
        right: auto;
        left: 0;
        top: 100%
    }
    .dropdown.menu.large-horizontal>li.is-dropdown-submenu-parent>a {
        padding-right: 1.5rem;
        position: relative
    }
    .dropdown.menu.large-horizontal>li.is-dropdown-submenu-parent>a::after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border: inset 5px;
        border-color: var(--grey-medium) transparent transparent;
        border-top-style: solid;
        border-bottom-width: 0;
        right: 5px;
        margin-top: -2px
    }
    .dropdown.menu.large-vertical>li .is-dropdown-submenu {
        top: 0
    }
    .dropdown.menu.large-vertical>li.opens-left .is-dropdown-submenu {
        left: auto;
        right: 100%
    }
    .dropdown.menu.large-vertical>li.opens-right .is-dropdown-submenu {
        right: auto;
        left: 100%
    }
    .dropdown.menu.large-vertical>li>a::after {
        right: 14px;
        margin-top: -3px
    }
    .dropdown.menu.large-vertical>li.opens-left>a::after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border: inset 5px;
        border-color: transparent var(--grey-medium) transparent transparent;
        border-right-style: solid;
        border-left-width: 0
    }
    .dropdown.menu.large-vertical>li.opens-right>a::after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border: inset 5px;
        border-color: transparent transparent transparent var(--grey-medium);
        border-left-style: solid;
        border-right-width: 0
    }
}

.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
    top: 100%;
    left: auto;
    right: 0
}

.is-dropdown-menu.vertical {
    width: 100px
}

.is-dropdown-menu.vertical.align-right {
    float: right
}

.is-dropdown-submenu-parent {
    position: relative
}

.is-dropdown-submenu-parent a::after {
    position: absolute;
    top: 50%;
    right: 5px;
    margin-top: -2px
}

.is-dropdown-submenu-parent.opens-inner .is-dropdown-submenu {
    top: 100%
}

.is-dropdown-submenu-parent.opens-left .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%
}

.is-dropdown-submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 200px;
    z-index: 1;
    background: #fefefe;
    border: 1px solid #cacaca
}

.is-dropdown-submenu .is-dropdown-submenu-parent>a::after {
    right: 14px;
    margin-top: -3px
}

.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left>a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent var(--grey-medium) transparent transparent;
    border-right-style: solid;
    border-left-width: 0
}

.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right>a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent var(--grey-medium);
    border-left-style: solid;
    border-right-width: 0
}

.is-dropdown-submenu .is-dropdown-submenu {
    margin-top: -1px
}

.is-dropdown-submenu>li {
    width: 100%
}

.is-dropdown-submenu:not(.js-dropdown-nohover)>.is-dropdown-submenu-parent:hover>.is-dropdown-submenu,
.is-dropdown-submenu.js-dropdown-active {
    display: block
}

.title-bar {
    background: #0a0a0a;
    color: #fefefe;
    padding: 0.5rem;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.title-bar-left,
.title-bar-right {
    -webkit-flex: 1 1 0px;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px
}

.title-bar-right {
    text-align: right
}

.title-bar-title {
    font-weight: bold;
    vertical-align: middle;
    display: inline-block
}

.top-bar-left,
.top-bar-right {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

@media screen and (min-width: 40em) {
    .top-bar-left,
    .top-bar-right {
        -webkit-flex: 1 1 0px;
        -ms-flex: 1 1 0px;
        flex: 1 1 0px
    }
}

.top-bar-title {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 1rem
}

.top-bar-left,
.top-bar-right {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

@media screen and (max-width: 39.9375em) {
    .hide-for-small-only {
        display: none !important
    }
}

@media screen and (max-width: 0em),
screen and (min-width: 40em) {
    .show-for-small-only {
        display: none !important
    }
}

@media screen and (min-width: 40em) {
    .hide-for-medium {
        display: none !important
    }
}

@media screen and (max-width: 39.9375em) {
    .show-for-medium {
        display: none !important
    }
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .hide-for-medium-only {
        display: none !important
    }
}

@media screen and (max-width: 39.9375em),
screen and (min-width: 64em) {
    .show-for-medium-only {
        display: none !important
    }
}

@media screen and (min-width: 64em) {
    .hide-for-large {
        display: none !important
    }
}

@media screen and (max-width: 63.9375em) {
    .show-for-large {
        display: none !important
    }
}

@media screen and (min-width: 64em) and (max-width: 74.9375em) {
    .hide-for-large-only {
        display: none !important
    }
}

@media screen and (max-width: 63.9375em),
screen and (min-width: 75em) {
    .show-for-large-only {
        display: none !important
    }
}

.show-for-sr,
.show-on-focus {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0)
}

.show-on-focus:active,
.show-on-focus:focus {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto
}

.show-for-landscape,
.hide-for-portrait {
    display: block !important
}

@media screen and (orientation: landscape) {
    .show-for-landscape,
    .hide-for-portrait {
        display: block !important
    }
}

@media screen and (orientation: portrait) {
    .show-for-landscape,
    .hide-for-portrait {
        display: none !important
    }
}

.hide-for-landscape,
.show-for-portrait {
    display: none !important
}

@media screen and (orientation: landscape) {
    .hide-for-landscape,
    .show-for-portrait {
        display: none !important
    }
}

@media screen and (orientation: portrait) {
    .hide-for-landscape,
    .show-for-portrait {
        display: block !important
    }
}

.float-left {
    float: left !important
}

.float-right {
    float: right !important
}

.float-center {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.clearfix::before,
.clearfix::after {
    content: ' ';
    display: table;
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1
}

.clearfix::after {
    clear: both
}

.align-right {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.align-center {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.align-justify {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.align-spaced {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.align-top {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
}

.align-self-top {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start
}

.align-bottom {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end
}

.align-self-bottom {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end
}

.align-middle {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.align-self-middle {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.align-stretch {
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

.align-self-stretch {
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

.small {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1
}

.small {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2
}

.small {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3
}

.small {
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4
}

.small {
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5
}

.small {
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6
}

@media screen and (min-width: 40em) {
    .medium {
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1
    }
    .medium {
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2
    }
    .medium {
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3
    }
    .medium {
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4
    }
    .medium {
        -webkit-order: 5;
        -ms-flex-order: 5;
        order: 5
    }
    .medium {
        -webkit-order: 6;
        -ms-flex-order: 6;
        order: 6
    }
}

@media screen and (min-width: 64em) {
    .large {
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1
    }
    .large {
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2
    }
    .large {
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3
    }
    .large {
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4
    }
    .large {
        -webkit-order: 5;
        -ms-flex-order: 5;
        order: 5
    }
    .large {
        -webkit-order: 6;
        -ms-flex-order: 6;
        order: 6
    }
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    padding: 0;
    border: 0;
    border-radius: 0;
    line-height: 1;
    overflow: visible
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer
}

svg:not(:root) {
    overflow: hidden
}

.row {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin: 0 auto
}

.column,
.columns {
    -webkit-flex: 1 1 0px;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    padding-left: 0.625rem;
    padding-right: 0.625rem
}

.small {
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6
}

.small-1 {
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%
}

.small-12 {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

.row.collapse>.column,
.row.collapse>.columns {
    padding-left: 0;
    padding-right: 0
}

.row.top_row .row {
    margin: 0 auto;
    padding: 1.25rem 0
}

.align-middle {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.small-12 .title-bar {
    background: transparent
}

.maskOverlay
/*,
.mainMenuContainer*/

{
    display: block;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    z-index: 100;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease
}

.maskOverlay.opened
/*,
.mainMenuContainer.opened*/

{
    opacity: 1;
    visibility: visible
}

#barraRai {
    display: none;
    max-width: inherit;
    margin: 0 !important;
    height: 80px;
    z-index: 200;
    position: relative;
    background: #475358;
    overflow: hidden
}

.top-bar {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 0.5rem
}

.top-bar,
.top-bar ul {
    background: transparent !important;
    height: 80px;
    margin: 0;
    padding: 0 !important
}

.top-bar .logo {
    height: 80px;
    width: 80px;
    flex: initial;
    padding: 0
}

.top-bar div {
    padding: 0
}

.dropdown.menu {
    position: relative
}

.top-bar ul li a {
    color: #fff;
    font-size: 0.875rem
}

.top-bar ul,
.dropdown.menu {
    background: transparent
}

.top-bar-left,
.top-bar-right {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.top-bar .top-bar-right {
    float: right
}

.top-bar ul li#barraRaiBtn {
    width: 80px;
    height: 80px;
    background: rgba(203, 206, 208, 0.5);
    cursor: pointer
}

.top-bar ul li#barraRaiBtn img {
    height: 100%
}

#barraRaiMenuIcon {
    width: 22px;
    height: 20px;
    margin-top: 4px;
    display: none;
    top: 26px;
    left: 30px
}

.top-bar ul li#barraRaiBtn:hover #barraRaiMenuIcon {
    display: inline-block
}

.top-bar ul li#barraRaiBtn.opened {
    background-color: #475358 !important;
    z-index: 200
}

.top-bar ul li#barraRaiBtn #barraRaiCloseIcon svg path {
    fill: white !important
}

.top-bar ul li#barraRaiBtn:hover img,
.top-bar ul li#barraRaiBtn.opened img,
.top-bar ul li#barraRaiBtn.opened #barraRaiMenuIcon,
.top-bar ul li#barraRaiBtn #barraRaiCloseIcon {
    display: none
}

.top-bar ul li#barraRaiBtn.opened #barraRaiCloseIcon {
    display: block
}

.top-bar ul li#barraRaiBtn #barraRaiCloseIcon svg {
    width: 38px;
    margin: 21px
}

.top-bar ul li#barraRaiBtn #barraRaiCloseIcon svg path {
    stroke: none;
    fill: #29a2ff
}

.logoRai,
#main-menu svg.logoRai {
    height: 80px;
    width: 80px;
    margin: 0
}

#site-menu.top-bar .columns {
    flex: initial
}

#site-menu .menuTitle {
    width: 300px !important;
    color: transparent;
    font-size: 28px;
    line-height: 80px;
    font-weight: 100;
    text-indent: -10000px;
    display: inline-block
}

#site-menu .menuTitle img {
    width: 100%;
    display: block;
    margin-top: 6px
}

#site-menu .menuTitle svg {
    fill: #fff;
    display: block
}

.menu {
    background: var(--grey-ultradark);
    position: fixed
}

.menu form {
    display: block;
    height: 80px;
    margin: 0
}

.menu h3 {
    color: #ffffff;
    font-size: 1.9em;
    padding: 23px;
    margin: 0;
    font-weight: 300;
    background: #00A0FA;
}

.menu a {
    font-size: 1.06rem;
}

.menu a#close,
.menu a.close {
    padding: 0;
    cursor: pointer;
    opacity: 1;
    line-height: 1;
    width: 1rem;
    display: block;
    height: 1rem;
    margin: 2.62rem 0 2.62rem 2.62rem;
}

.subMenu a#close img {
    width: 24px;
    float: left;
}

.menu li:hover,
.menu li:hover,
.menu li.active {
    background: var(--blu-medium);
    color: #fff !important
}

.menu.subMenu li:hover {
    background: #004cad/*var(--blu-medium)*/
    ;
}

.menu li.selected {
    background: #fff
}

.menu li#cerca-barra:hover {
    background: transparent;
    color: #fff !important
}

.linkTop {
    display: none
}

div.menu {
    width: 440px;
    height: 100%;
    top: 0;
    z-index: 1000;
    left: -440px;
}

div.menu.mainMenu {
    z-index: 1001;
    align-items: start;
    flex-direction: column;
    /*background: linear-gradient( to right, #003D84, #003d86 440px, transparent 0px);*/
}

div.menu.subMenu {
    background: var(--blu-medium);
    left: -440px;
}

.menu ul {
    list-style: none;
    list-style-image: none;
    padding: 0 0 96px;
    margin: 0
}


/*.menu ul.subMenu {
    left: -440px;
    background: #E06752;
    position: relative
}
*/

.menu div.subMenu {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.menu ul.subMenu.open {
    left: 440px
}

.menu ul.subMenu.open:before {
    border-width: 14px;
    left: 70px;
    margin-top: -28px;
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    display: block;
    border-style: solid;
    border-color: transparent transparent #E06752 transparent;
    top: 0
}

.menu nav li {
    box-sizing: border-box;
    cursor: pointer;
    float: left;
    width: 100%;
}

.menu li:before {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
    vertical-align: -30%;
    display: inline-block;
    opacity: .6
}

.menu li>a {
    /* display: block; */
    display: flex;
    align-items: center;
    line-height: 3.75rem;
    position: relative;
    height: 3.75rem;
    padding: 0 2.62rem;
    background: transparent;
    width: 100%;
    overflow: hidden;
    color: inherit;
}

.menu li a:hover {
    color: #fff !important;
    text-decoration: none;
}

.menu li.selected a {
    color: #be990a !important
}

.menu.open {
    left: 0px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 3rem;
}

.menu div.subMenu {
    display: none;
}

div.subMenu.open {
    display: block;
    left: 440px;
    width: 440px;
}

div.subMenu ul.subMenu {
    left: 0px;
    background: #E06752;
    position: relative
}

div.subMenu ul.subMenu.open {
    left: 440px
}

.noscroll {
    overflow: hidden;
}

.menu::-webkit-scrollbar {
    width: 10px;
    height: 10px
}

.menu::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.4);
    border: 0px none #ffffff;
    border-radius: 50px
}

.menu::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.4);
    border: 0px none #ffffff;
    border-radius: 50px
}

.menu nav {
    /*width: 100%;*/
    width: 440px;
    height: calc(100% - 2.62rem);
}

.menu>li>a {
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap
}

.menu>li>a {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.menu>li>a {
    display: block;
    padding: 0.7rem 1rem;
    line-height: 1
}


/*#menuTopRai *,
#menuTopRai *:before,
#menuTopRai *:after {
    box-sizing: initial !important
}*/

body {
    overflow-x: hidden;
    position: relative;
    left: 0
}

.menu-push-toright {
    left: 300px
}

.menu-push-toleft {
    left: -240px
}

.menu,
.menu-push {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.menu .divisory {
    display: block;
    height: 20px;
    background: #1C272D;
    border-bottom: 1px solid #00A0FA
}

.menu.medium-horizontal {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.menu.medium-horizontal>li {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: 100%
}

.menu.vertical>li>a {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    line-height: 60px
}

#main-menu ul {
    margin: 0;
    list-style-type: none;
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 0;
    padding-bottom: 96px
}

#main-menu li:hover {
    background: transparent
}

@media screen and (max-width: 40em) {
    .mainTitleCont.text-center>h1 {
        font-size: 1.875rem
    }
    .top-bar {
        height: 40px
    }
    #site-menu .menuTitle {
        width: 150px !important;
        line-height: 40px;
        background-size: auto 30px
    }
    #site-menu .menuTitle img {
        margin-top: 3px
    }
    .mainMenuContainer .closeMainMenu #closeMainMenuBtn svg {
        width: 30px !important;
        margin: 5px !important
    }
    .logoRai {
        height: 40px;
        width: 40px
    }
    .mainMenuContainer .closeMainMenu {
        height: 40px
    }
    .mainMenuContainer.opened ul {
        max-height: calc(100% - 40px)
    }
    .mainMenuContainer ul li a {
        padding: 15px 40px 15px 52px !important
    }
    .menuItem .imagePosition {
        left: 7px;
        top: 15px
    }
}

.menu li a {}

.menu li.menuHomeBtn {
    background: #fff;
}

.menu li.menuHomeBtn a {
    color: var(--blu-medium);
    background: #fff;
}

.menu li.menuHomeBtn a:hover {
    color: var(--blu-medium) !important
}

.menu li.menu-item-has-children a {
    position: relative
}

.menu li.menu-item-has-children a span {
    content: " ";
    width: 1rem;
    height: 1rem;
    position: absolute;
    top: 1.37rem;
    right: 2.62rem;
    background: url(../assets/ico-arrow-right.svg) no-repeat;
    background-size: contain;
}

.lang-item img {
    /* margin: 30px 0 25px 0; */
}

@media only screen and (max-width: 768px) {
    .menu li.menu-item-has-children a span {
        right: 5.62rem;
    }
}

@media only screen and (max-width: 480px) {
    div.subMenu.open {
        left: 0;
        z-index: 1002
    }
}

@media only screen and (max-width: 360px) {
    div.menu {
        width: 320px
    }
}