:root {
    --brand-color-bg1: #31A6B2;
    --brand-color-bg1-h: #31A6B2;
    --brand-color-fg1: #fff;
    --brand-color-fg1-h: #fff;
    --toggle-bg-color: #F84933;
    --brand-color-bg2: #cc0000;
    --brand-color-bg2-h: #cc0000;
    --brand-color-fg2: #fff;
    --brand-color-fg2-h: #fff;  
}
html {
    font-size: 16px;
}
body {
    
    font-size: 1rem;
}
header {
    background: var(--brand-color-bg1);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 10;
    box-shadow: 0 0 1rem rgba(0,0,0,0.15);
}


/* Menu: Reset */
.fMenu,
.fMenu li {
    margin:0; padding: 0;
    list-style: none;
}

    /* Menu Header */
    header .fMenu {
        font-size: 0;
    }
    header .fMenu li {
        display: inline-block;
        font-size: 1rem;
        position: relative;

    }
    header .fMenu a {
        color: var(--brand-color-fg1);
        background: var(--brand-color-bg1);
        font-weight: bold;
        padding: 1rem;
        display: block;
        transition: 0.25s all;
    }
    header .fMenu a:hover,
    header .fMenu li:hover > a {
        color: var(--brand-color-fg1-h);
        background: var(--brand-color-bg1-h);
    }
    header .fMenu ul {
        display: none;
        position: absolute;
        left: 0; width: 180px;
        margin: 0; padding: 0;
    }
    header .fMenu li:hover ul {
        display: block;
    }
    header .fMenu ul li {
        display: block;
    }
    
    /* Menu Mapping */
    .link-map li {
        position:absolute;
        font-size: 0;
    }
    .link-map li a {
        font-size: 0;
        background: red;
        height: 1rem; width: 1rem;
        opacity: 1;
        display: inline-block;
        position: relative;
        border-radius: 50%;
    }
    .link-map li a:after,
    .link-map li a:before {
        position: absolute;
        top: 50%; left:50%;
        transform: translate(-50%,-50%);
        width: 0; height: 0;
        border: 2px solid red;
        opacity: 0;
        content: "";
        border-radius: 50%;
        animation: grow1 5s infinite;
    }
    .link-map li a:before {
        animation: grow2 5s infinite;
    }
    
    @keyframes grow1 {
        25% { height:2rem; width:2rem; opacity: 1; }
        50% { opacity: 0; }
    }
    @keyframes grow2 {
        50% { height:3rem; width:3rem; opacity: 1; }
        75% { opacity: 0; }
    }

#section-body {
    position: absolute;
    top:0; right: 0; left: 0; bottom:0;
}
.collapse.in {
    display: block !important;
}

#section-content {
    position: absolute;
    top:0; right: 0; left: 0; bottom:0;
    /*background: #999;*/
}
.page-title {
    display: none;
}
.page-matter .fRegion {
    position: relative;
}
.page-matter .fModule {
    position: absolute;
    top: 0; right: 0; left: 0; bottom: 0;
    z-index: 2;
}
.page-matter .fModuleContent {
    position: relative;
    top: 0; right: 0; left: 0; bottom: 0;
    height: 100%;
}
.page-matter .fModule.fModulebg-image {
    z-index: 1;
    position: relative;
}
.page-matter .fModule.fModulebg-image img {
    width: 100%;
}

/* Gallery Reset */
.fGalleryImage img{
    width: 100%;
}

.fGalleryImages,
.fGalleryImages li {
    list-style: none;
    margin: 0; padding: 0;
}
.fGalleryImage {
    display: block;
}

/* System Items */
#system-rotate {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10000;
    background: #000;
    text-align: center;
    display: flex;
    color: #fff;
    align-items: center;
    display: none;
}
#system-rotate .fModuleContent {
    flex-basis: 100%;
}

#system-video {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
}
#system-video-skip {
    position: absolute;
    top: 1rem; right: 1rem;
    padding: 0.5rem 1rem;
    box-shadow: 0 0 1rem rgba(0,0,0,0.25);
    background: var(--brand-color-bg1);
    color: var(--brand-color-fg1);
    z-index: 2; 
    transition: 0.3s all;
}
#system-video-skip:hover {
    background: var(--brand-color-bg1-h);
    color: var(--brand-color-fg1-h);
}

@media all and (orientation:portrait) {
    #system-rotate { display: flex; }
    #section-body { display: none; }
}



.link-map a {
    height: 100%;
    width: 100%;
    display: block;
    font-size: 0px;
    position: relative;
}

/*OLD LAYOUT */
/* Layout */
ul, ul li {
    margin: 0px;
    list-style: none;
    padding: 0px;
}

h3 {
    font-size: 1.5rem;
    margin: 1.25rem 0 1.56rem;
    font-weight: 400;
    line-height:140%;
    }
h4 {
    font-size: 1.3rem;
    margin: 1.56rem 0 1.56rem;
    font-weight: 400;
    line-height:140%;
}

img {
    max-width: 100%;
    height: auto;
}


.row.row-equal {
    display: flex;
    flex-wrap: wrap;
}


#fMatter h1,
#fContentPost h3 {
    text-align: center;
    margin: 0px auto 30px;
    color: #5f479d;
    font-weight: 600;
    font-size: 31px;
}
#fMatter h1,
#fContentPost h3 span {
    font-weight:700;
}

#fMatter h4 {
    font-size: 1.2em;
    color: #1729a7;
}
#fMatter form p {
    margin-bottom: 12px;
}
input.form-control,
textarea.form-control {
    display: inline-block;
    margin: 10px 0px;
}

/*header style1*/
header .navbar-header{
    line-height: normal;
}

@media (min-width: 481px) and (max-width: 768px){
.navbar-toggle {
    display: block;
}
}


.navbar-toggle {
    display: block ;
    position: fixed;
    right: 1rem; 
    top: 0rem;
    margin: 0;
    background: var(--toggle-bg-color);
    transition: 0.3s all;
}
.navbar-toggle:hover {
    background: var(--toggle-bg-color);
}
.navbar-toggle.move {
    right: 357px;
}
.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    color: #fff;
    background: #fff;
}
.navbar-toggle .cross {
    display: none;
}
.navbar-toggle.mul .ham {
    display: none;
}
.navbar-toggle.mul .cross {
    display: block;
}
.navbar-toggle .ham {
    display: flex;
    align-items: center;
}
.navbar-toggle .ham span {
    color: #fff;
    font-size: 1.5rem;
    padding: 0 5px;
}


/* MOBILE MENU LAYOUT*/




@media (max-width: 812px){
header .fMenu li {
    display: block;
}
}



@media (max-width: 812px){
header .fMenu li a {
    padding: 1rem;
    text-align: left;
}
}
/*#fMenu-toggle-26636 {
    height: 67px;
}
*/

/* NEW */

.menu-item-text{
    font-size: 14px;
}

header .footer_nav .fMenu,
header .footer_nav li {
    margin: 0; padding: 0;
    list-style: none;
    transition: 0.15s all ease-in-out;
}
header .footer_nav .fMenu {
    text-align: left;
}
header .footer_nav .fMenu li {
    display: inline-block;
}
header .footer_nav .fMenu li a {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    display: block;
    padding: 0.75rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    transition:0.3s all ease-in-out;
    text-decoration: none;
}
header .footer_nav .fMenu li:hover {
    background: #ff4003;
    text-decoration: none;
}
header .footer_nav .fMenu img {
    width: 1.25rem;
    height: 1.25rem;
    /* margin: -0.125rem 5px 0 0; */
    display: block;
    margin: 0 auto;
}

.fModule .navbar-toggle {
    display: block;
}

/*Sub-menu*/
header .footer_nav .fMenu li > ul {
    position: absolute;
    display:none;
    top: 0;
    opacity: 0;
    padding: 0;
    z-index: 1000;
    min-width: 160px;
    max-width:100%;
    margin:0;
    font-size: 1rem;
    text-align: left;
    list-style: none;
    background-color: rgba(255, 94, 43, 1);
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
} 
header .footer_nav .fMenu li:hover > ul{
    top: 100%;
    opacity: 1;
    z-index: 100;
    clear:both;
    display:block;
    transition: 0.3s all ease-in-out;
}
header .footer_nav .fMenu li:hover > ul li {
    vertical-align: top;
    transition:0.3s all ease-in-out;
    display: block;
}
header .footer_nav .fMenu li:hover > ul li a {
    color: #fff;
    display: block;
    font-size: 1rem;
    clear: both;
    white-space: nowrap;
    transition:0.3s all ease-in-out;
    text-align:left;
}
header .footer_nav .fMenu li:hover > ul li:last-child a {
    border-bottom: none;
}
header .footer_nav .fMenu li:hover > ul li a {
    transition:0.3s all ease-in-out;
}

@media (max-width:812px) {
    body.virtual-if-hasuser.has-user #fContent, body.virtual #fContent {
        padding: 1rem !important;
    }

    #fMenu-29237 {
        position: fixed;
        width: 300px;
        right: 0px;
        bottom: 0px;
        top: 45px;
        background: rgba(0,0,0,0.9);
        overflow: auto;
        /*height: fit-content;*/
    }
    
    header .footer_nav .menu-item-icon {
        float: left; margin-right: 0.5rem;
    }
    header .footer_nav .fMenu li {
        display: block;
    }
    header .footer_nav .fMenu li a {
        padding: 1rem;
        text-align: left;
    }
    header .footer_nav .fMenu li > ul {
        display: block;
        position: relative;
        opacity: 1;
        background: none;
        width: 100%;
    }
    header .footer_nav .fMenu li li a {
        padding: 0.5rem;
        padding-left: 3rem;
        text-align: left;
    }
    header .footer_nav .menu-item-icon {
    float: left;
    margin-right: 0.5rem;
}

}



/* END MOBILE MENU LAYOUT */

.info{
    position: absolute;
        left: 39%;
    top: 57%;
}

.fForm .error {
    color: #ffff00 !important;
}

.fForm .hint, .fForm .error {
    font-size: 0.8rem !important;
    display: block;
    margin-left: 0 !important;
    margin-top: 0.25rem;
}



header .footer_nav .fMenu li a {
    text-align: left;
    color: #fff;
    text-transform: uppercase;
    display: block;
    padding: 0.75rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    transition: 0.3s all ease-in-out;
    text-decoration: none;
}


/* Module */
.fModuleEnd .fModuleTitle,
.fModuleEnd .fModuleContent,
.fModuleBoxed {
  margin: 0 auto;
}   
/*header style1*/
header .navbar-header{
    line-height: normal;
}
/*header{
    position: relative;
    z-index: 1;
}*/
/* Responsive Homepage */
@media (max-width : 319px) {
    .fModuleEnd .fModuleTitle,
    .fModuleEnd .fModuleContent,
    .fModuleBoxed {
        width: 280px;
    }  
}
@media (min-width : 320px) {
    .fModuleEnd .fModuleTitle,
    .fModuleEnd .fModuleContent,
    .fModuleBoxed {
        width: 300px;
    }        
}
@media (min-width : 480px) {
    .fModuleEnd .fModuleTitle,
    .fModuleEnd .fModuleContent,
    .fModuleBoxed {
        width: 470px;
    }
}
@media (min-width: 768px) {
    .fModuleEnd .fModuleTitle,
    .fModuleEnd .fModuleContent,
    .fModuleBoxed {
        width: 750px;
    }
}
@media (min-width: 992px) {
    .fModuleEnd .fModuleTitle,
    .fModuleEnd .fModuleContent,
    .fModuleBoxed {
        width: 970px;
    }
}
@media (min-width: 1200px) {
    .fModuleEnd .fModuleTitle,
    .fModuleEnd .fModuleContent,
    .fModuleBoxed {
        width: 1170px;
    }
}


.fModuleTitle {
    text-align: center;
    margin-top: 60px;
}