@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;400&display=swap");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300");

:root {
    --bg-color: #24262B;
    --accent-color: #ed1b2e;
    --blue-color: #46B6D6;
    --light-color: #f99f20;
    --dark-color: #24262B;;
    --darker-color: #24262B;
    --white-color: #fff;
    --grey-light-color: #ccc;
    --grey-dark-color: #91A0A6;
    --bg-transparent: rgba(0, 0, 0, 0.7);
    --blur-transparent: rgba(0, 0, 0, 0.75);
    --blur-transparentx2: rgba(0, 0, 0, 0.6);
    --bar-height: calc(80vw * 0.086046511627907);
    --back-drop: blur(10px);
}

.forecolor0,.forecolor0:link{color:#FFFFFF;}
.forecolor1,.forecolor1:link{color:#ECECEC;}
.forecolor2,.forecolor2:link,.forecolor0 A,A.forecolor0:hover{color:#D9D9D9;}
.forecolor3,.forecolor3:link,.forecolor1 A,A.forecolor1:hover{color:#C6C6C6;}
.forecolor4,.forecolor4:link,.forecolor2 A,A.forecolor2:hover,.forecolor0 A:hover{color:#B2B2B2;}
.forecolor5,.forecolor5:link,.forecolor3 A,A.forecolor3:hover,.forecolor1 A:hover,.forecolor9 A:hover{color:#9F9F9F;}
.forecolor6,.forecolor6:link,.forecolor4 A,A.forecolor4:hover,.forecolor2 A:hover,.forecolor10 A:hover{color:#808080;}
.forecolor7,.forecolor7:link,.forecolor5 A,A.forecolor5:hover,.forecolor3 A:hover,.forecolor7 A:hover,A.forecolor9:hover,.forecolor9 A{color:#606060;}
.forecolor8,.forecolor8:link,.forecolor6 A,A.forecolor6:hover,.forecolor4 A:hover,.forecolor8 A:hover,A.forecolor10:hover,.forecolor10 A{color:#404040;}
.forecolor9,.forecolor9:link,.forecolor7 A,A.forecolor7:hover,.forecolor5 A:hover{color:#202020;}
.forecolor10,.forecolor10:link,.forecolor8 A,A.forecolor8:hover,.forecolor6 A:hover{color:#000000;}

.backcolor0{background-color:#FFFFFF;}
.backcolor1{background-color:#ECECEC;}
.backcolor2{background-color:#D9D9D9;}
.backcolor3{background-color:#C6C6C6;}
.backcolor4{background-color:#B2B2B2;}
.backcolor5{background-color:#9F9F9F;}
.backcolor6{background-color:#808080;}
.backcolor7{background-color:#606060;}
.backcolor8{background-color:#404040;}
.backcolor9{background-color:#202020;}
.backcolor10{background-color:#000000;}

.bordercolor0{border-color:#FFFFFF;}
.bordercolor1{border-color:#ECECEC;}
.bordercolor2{border-color:#D9D9D9;}
.bordercolor3{border-color:#C6C6C6;}
.bordercolor4{border-color:#B2B2B2;}
.bordercolor5{border-color:#9F9F9F;}
.bordercolor6{border-color:#808080;}
.bordercolor7{border-color:#606060;}
.bordercolor8{border-color:#404040;}
.bordercolor9{border-color:#202020;}
.bordercolor10{border-color:#000000;}


.fontstyle0{font-size: 1rem;}
.fontstyle1{font-size: 1rem;}
.fontstyle2{font-size: 1rem; font-weight: 300;}
.fontstyle3{font-size: 1rem;}
.fontstyle4{font-size: 1.25rem; font-weight: 300;}
.fontstyle5{font-size: 1.3rem; font-weight: 300;}
.fontstyle6{font-size: 1.3rem; font-weight: 300; text-decoration:none;}
.fontstyle7{font-size: 1.3rem; font-weight: 300; text-decoration:none;}
.fontstyle8{font-size: 1.4rem; font-weight: 300; text-decoration:none;}
.fontstyle9{font-size: 1.5rem; font-weight: 300; text-decoration:none;}
.fontstyle10{font-size: 1.7rem; font-weight: 300; text-decoration:none;}

.field label .forecolor10{
    font-weight: bold;
}

a{
    color: var(--dark-color);
}

html,
.body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-size: clamp(12px, 1.3vw, 15px);
    background-color: var(--bg-color);
}

.main {
    display: grid;
    grid-template-rows:
    [top] clamp(6.6em, calc(9em - var(--scroll)), 9em)
    [feature] auto
    [bottom] auto;
    grid-template-columns: [left] auto [right];
    position: relative;
    z-index: 1;
    background-color: var(--white-color);
}
.top-menu {
    position: sticky;
    z-index: 2;
    top: calc(-2.2em - 1px);
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
    grid-row-start: top;
    grid-row-end: feature;
    grid-column-start: left;
    grid-column-end: right;
}
.slideout-open .top-menu{
    top: calc(-2.2em - 1px + var(--scroll));
}
.top-links {
    min-height: 2.2em;
}
.top-links,
.main-menu {
    background-color: var(--blur-transparent);
}
.top-menu:before{
    content: '';
    z-index: -1;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.top-menu:before{
    backdrop-filter: var(--back-drop);
    -webkit-backdrop-filter: var(--back-drop);
}
.top-links .controls {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    column-gap: 1px;
}
.top-links .controls > * {
    line-height: 1em;
    padding: 0.6em;
    text-decoration: none;
    color: var(--bg-color);
    white-space: nowrap;
}


.toggle a.interior-link,
.toggle a.exterior-link,
.toggle a.windows-link,
.top-links .controls a {
    text-decoration: none;
}
.top-links .controls a.media-link {
    font-size: 1em;
    min-width: 1em;
    text-align: center;
}
.top-links .controls a.media-link:hover {
    color: #fff;
    background-color: var(--bg-color);
}

.header {
    position: relative;
    z-index: 1;
}
.logo{
    display: inline-block;
    vertical-align: bottom;
    height: clamp(4em, calc(6.8em - var(--scroll)), 6.8em);
    position: relative;
    overflow: hidden;
}
.logo img{
    height: 79px;
    display: block;
}


.bar {
    position: absolute;
    left: 0;
    right: 0;
    top:2em;
    height: 68px;
    background-color: var(--bg-color);
}
.bar i {
    color: #fff;
    display: block;
    padding: 3px 0 0 75%;
    font-size: .7em;
}

@media only all and (min-width: 480px){
    .bar i{
        padding: 8px 0 0 55%;
    }
    .logo #by-ba{
        height: 14px;
        position: absolute;
        right: 10px;
        z-index: -1;
    }
}

@media only all and (min-width: 768px){
    .bar i{
        padding: 8px 0 0 36%;
        font-size: 1em;
    }
    .logo #by-ba{
        height: 14px;
        position: absolute;
        right: 10px;
        z-index: -1;
    }
}
@media only all and (min-width: 1200px){
    .bar i{
        padding: 8px 0 0 28%;
    }
    .logo #by-ba{
        height: 20px;
        position: absolute;
        right: 10px;
        z-index: -1;
    }
}
.search {
    height: 2em;
    z-index: 2;
    padding: 0.65em;
    box-sizing: border-box;
    border-left: 1px solid var(--bg-color);
}
.search input {
    color: var(--bg-color);
    background-color: transparent;
    height: 100%;
    box-sizing: border-box;
    border: none !important;
    outline: none;
    appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.search:before {
    content: "\f002";
    font: normal normal normal 0.9em/1 FontAwesome;
    display: inline-block;
    color: var(--bg-color);
}

#Mobile_Menu_Panel{
    display: none;
}

#Main_Panel nav {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    /*float: right;
    margin-top: clamp(2.5em, calc(4.15em - var(--scroll)), 4.15em);*/
}
.nav {
    position: relative;
}
.responsive-menu-toggle {
    display: none;
    cursor: pointer;
    position: absolute;
    text-decoration: none;
    text-align: center;
    width: 2.2em;
    height: 2.2em;
    padding: 0.5em;
    top: 1.9em;
    right: 0;
    box-sizing: border-box;
}
.responsive-menu-toggle:before {
    content: "\f0c9";
    font-family: "FontAwesome";
    font-size: 1.5em;
    text-transform: none !important;
    line-height: 1em;
    -webkit-font-smoothing: antialiased;
    color: #fff;
}
#menu {
    display: block;
    float: right;
    text-transform: uppercase;
}

#menu a,
#menu a:hover {
    text-decoration: none;
    display: block;
}
#menu ul {
    list-style: none outside;
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}
#menu > ul > li ul {
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
}

/* main menu 1st level */
#menu > ul {
    float: left;
    text-align: left;
    position: relative;
    width: 100%;
}
#menu > ul > li {
    margin: 0;
    position: relative;
    z-index: 203;
    float: left;
}
#menu > ul > li ul {
    backdrop-filter: var(--back-drop);
    -webkit-backdrop-filter: var(--back-drop);
}
#menu > ul > li.hover {
    z-index: 204;
}

#menu > ul > li > a,
#menu > ul > li.submenu > a {
    padding: clamp(0.5em, calc(0.65em + var(--scroll)), 1.3em) 1.5em clamp(0.4em, calc(0.65em + var(--scroll)), 1.3em) 1em;
}
#menu > ul > li.submenu:before {
    content: "\f0dd";
    font-family: "FontAwesome";
    font-size: 1em;
    text-transform: none !important;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    right: 0.5em;
    top: 0.5em;
}
#menu > ul > li > a {
    padding-right: 1em;
    font-weight: 400;
    text-transform: uppercase;
}
#menu > ul > li.current > a {
    padding: clamp(0.4em, calc(0.55em + var(--scroll)), 1.3em) 1.5em clamp(0.4em, calc(0.65em + var(--scroll)), 1.3em) 1em;
    border-top: 0.1em solid var(--accent-color)
}

#menu ul li.last > ul {
    right: 0px;
    left: auto;
}
#menu ul li.last ul li ul {
    right: 100%;
    left: auto;
}

/* main menu 2nd level */
#menu ul ul {
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: 205;
    margin: 0;
    padding: 0;
    display: none;
}
#menu ul li ul {
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: 205;
    margin: 0;
    padding: 0;
    display: none;
}
#menu ul li ul li {
    padding: 0;
    width: 100%;
    min-width: 150px;
    position: relative;
    font-weight: normal;
}
#menu ul li ul li a {
    padding: 10px 15px;
    font-weight: 300;
    font-size: 1em;
    display: flex !important;
    flex-direction: row;
    align-items: center;
}
#menu > ul > li ul li.submenu .menu-toggle:before {
    font-size: 50px;
    line-height: 50px;
}

#menu ul li ul li.submenu:before {
    content: "\f0da";
    font-family: "FontAwesome";
    font-size: 15px;
    text-transform: none !important;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    right: 12px;
    top: 11px;
}

/* main menu 3rd level */
#menu ul li ul li ul {
    position: absolute;
    left: 100%;
    top: 0px;
    z-index: 204;
    padding: 0;
}
#menu ul li ul li ul li a {
    font-size: 0.85em;
}

/* main menu .last-item */
#menu ul li ul li.last-item > a,
#menu ul li ul li ul li.last-item > a {
    border-bottom-width: 0px;
}
#menu ul ul ul {
    position: absolute;
    left: 225px;
    top: 100%;
    z-index: 205;
    margin: 0;
    padding: 0;
    display: none;
}

/* All Mobile Sizes (devices and browser) */

/* main menu 1st level */
#menu > ul > li > a {
    color: var(--white-color);
}
#menu > ul > li.current > a {
    background-color: var(--blur-transparentx2);
    color: var(--white-color);
}
#menu > ul > li > a:hover,
#menu > ul > li.hover > a {
    background-color: var(--blur-transparent);
    color: var(--accent-color);
}
#menu ul li.submenu .menu-toggle {
    color: #000;
}

#menu > ul > li.submenu:before {
    color: #fff;
}

/* main menu 2nd level */
#menu > ul > li ul {
    background: var(--blur-transparentx2);
}
#menu > ul > li ul li a:hover,
#menu > ul > li ul li.hover > a {
    background: var(--blur-transparentx2);
    color: #fff;
}
#menu > ul > li ul li:hover.submenu .menu-toggle,
#menu > ul > li ul li.hover.submenu .menu-toggle {
    color: #fff;
}
#menu > ul > li ul li.submenu:before {
    color: #fff;
}
#menu > ul > li ul li.submenu.hover:before {
    color: #aaaaaa;
}

/* main menu 3rd level */
#menu ul ul ul {
    background: var(--blur-transparentx2);
}
#menu li a {
    color: #fff;
}
#menu ul ul ul li a:hover,
#menu ul ul li ul li.hover > a {
    color: #fff;
}
#menu ul ul li ul li.submenu .menu-toggle {
    color: #fff;
}

/* Mobile menu */

/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only all and (min-width: 768px) and (max-width: 979px) {
    /* Responsive menu */
    #menu {
        position: relative;
        width: 300px;
        right: 0;
    }
    #menu ul {
        position: absolute;
        right: 0;
        z-index: 999;
    }
    #menu ul li {
        width: 300px;
    }
    #menu ul ul {
        border: none;
    }
}

@media only all and (max-width: 979px) {
    #Mobile_Menu_Panel,
    .responsive-menu-toggle {
        display: block;
    }
    .responsive-menu-toggle.active,
    .responsive-menu-toggle:hover {
        background-color: var(--blur-transparent);
    }
    #Main_Panel nav {
        margin-top: clamp(4em, calc(6.7em - var(--scroll)), 6.7em);
    }
    #menu{
        display: none;
    }
    /* main menu 1st level */
    #menu ul {
        background-color: var(--blur-transparent);
        backdrop-filter: var(--back-drop);
        -webkit-backdrop-filter: var(--back-drop);
    }
    #menu ul li {
        width: 100%;
    }
    #menu ul li a,
    #menu > ul > li.current > a {
        color: #000;
        padding: 10px 20px;
    }
    #menu ul li.submenu .menu-toggle {
        text-align: center;
        content: "\f067";
        font-family: "FontAwesome";
        width: 50px;
        height: 42px;
        line-height: 42px;
        display: block;
        position: absolute;
        right: 0;
        top: 0;
    }
    #menu ul li.submenu .menu-toggle:before {
        text-align: center;
        content: "\f067";
        font-family: "FontAwesome";
        width: 50px;
        height: 42px;
        line-height: 42px;
        display: block;
        position: absolute;
        right: 0;
        top: 0;
    }
    #menu ul li ul li.submenu .menu-toggle:before {
        content: "\f067";
        font-family: "FontAwesome";
        font-size: 18px;
        text-transform: none !important;
        line-height: 51px;
        -webkit-font-smoothing: antialiased;
    }
    #menu ul li.submenu.hover > .menu-toggle:before {
        content: "\f068";
    }
    #menu > ul > li.mseparator {
        display: none;
    }
    #menu > ul > li.submenu > a {
        background: none;
    }
    #menu > ul > li.sumbenu > a:hover,
    #menu > ul > li.hover.submenu > a {
        background: #000 none;
        color: #000000;
    }
    #menu > ul > li.submenu > a,
    #menu > ul > li.current.submenu > a {
        padding: 10px 20px;
    }
    #menu > ul > li.last > a {
        margin-left: 0;
    }

    /* main menu 2nd level */
    #menu ul li ul {
        position: relative !important;
        left: 0 !important;
    }
    #menu ul li ul li {
        width: 100% !important;
    }
    #menu ul li ul li a {
        padding: 15px 20px 15px 40px;
    }
    /* main menu 2nd level */
    #menu > ul > li > ul {
        background: #555555;
    }
    #menu > ul > li ul li a {
        color: #000;
    }
    #menu > ul > li ul li a:hover,
    #menu > ul > li ul li.hover > a {
        background: #eeeeee;
        color: #333333;
    }
    #menu ul ul ul li a {
        color: #333333;
    }
    #menu ul ul ul li a:hover,
    #menu ul ul li ul li.hover > a {
        color: #333333;
        text-decoration: underline;
    }
    #menu > ul > li.submenu:before,
    #menu > ul > li ul li.submenu:before {
        display: none;
    }

    /* main menu 3rd level */
    #menu ul li ul li ul li a {
        padding: 15px 20px 15px 60px;
    }
    #menu > ul > li IMG {
        height: 30px !important;
        width: auto;
        margin: 0px 5px -15px -10px !important;
    }
}
@media only all and (max-width: 767px) {
    #menu {
        position: absolute;
        margin: 0;
        float: left;
        left: 0;
        z-index: 999;
    }
    #menu,
    #menu > ul {
        width: 100%;
    }
    #menu ul {
        margin-left: 0;
    }
    .responsive-menu-toggle {
        right: 0;
        z-index: 9999;
    }
}

@media only all and (max-width: 979px) {

    #Main_Panel nav{display: none !important;}

    .slideout-menu {
        position: fixed;
        top: 0;
        left: auto;
        bottom: 0;
        right: 0;
        z-index: 0;
        width: 300px;
        overflow-x: hidden;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        display: none;
        background: var(--dark-color);
    }

    .slideout-panel {
        position: relative;
        z-index: 1;
    }
    .slideout-open,
    .slideout-open body,
    .slideout-open .slideout-panel {
        overflow: hidden;
        box-shadow: 5px -1px 20px rgba(0,0,0,.4);
    }
    .slideout-open .slideout-menu {display: block;}

    #Mobile_Menu ul {list-style-type: none;}
    #Mobile_Menu > ul > li.submenu:before { display:none; }

    /* Mobile Menu Level 1 */
    #Mobile_Menu ul li	{ width: 100%;}
    #Mobile_Menu ul li a {
        display: block;
        font-family: 'Open Sans', sans-serif;
        font-weight: 500;
        color: #ccc;
        padding: 10px 25px;
        text-decoration: none;
    }

    #Mobile_Menu ul li a:hover,
    #Mobile_Menu > ul > li.current > a {
        background: var(--bg-color);
        color: #fff;
    }

    /* Mobile Menu Level 2 */
    #Mobile_Menu ul li ul li a,
    #Mobile_Menu ul li ul li ul li a {
        display: block;
        width: 300;
        margin-left: -34px;
        background: #333;
        font-family: 'Open Sans', sans-serif;
        color: #fff;
        padding: 10px 0 10px 30px;
        text-decoration: none;
    }
    #Mobile_Menu ul li ul li a:hover {
        background: #444;
        color: #fff;
    }
    #Mobile_Menu ul li.submenu:before {
        content: '\f067';
        font-family: 'FontAwesome';
        color: #ccc;
        float: right;
        position: relative;
        display: inline-block;
        text-align: right;
        margin: -5px 0px -15px -70px;
        padding: 15px 15px 15px 70px;
    }
    #Mobile_Menu ul li.submenu.hover:before { content: '\f068' !important; }

    /* Mobile Menu Level 3 */
    #Mobile_Menu ul li ul li ul li a {
        margin-left: -80px;
        color: #bbb;
        padding: 10px 0 10px 50px;
    }

    .mobiletop, .mobilebot {display: block; color: #ccc;}
    .mobiletop .module-class, .mobilebot .module-class {
        position: relative;
        width: 225px !important;
        right: 0 !important;
        float: right;
    }

    #Mobile_Menu_Panel .accountlogin {
        width: 300px;
        text-align: center;
        padding: 10px 0 15px 47px;
        position: relative;
    }
    #Mobile_Menu_Panel .accountlogin a {color: #ccc; text-decoration: none;}
    .mobilebot {position: relative; bottom: 0;}
}

@media only all and (max-width: 692px) {
    .controls .search,
    .toggle{
        display: none;
    }
    .logo{
        display: inline-block;
        height: clamp(5.05em, calc(6.8em - var(--scroll)), 6.8em);
    }


    .top-links .controls {
        justify-content: center;
    }
    .header.n-v1-container {
        width: 100%;
    }
}

@media only all and (max-width: 800px) {
    .toggle {
        font-size: 0.5em;
        display: none;
    }
}

h2{
    letter-spacing: -0.02em;
    margin-bottom: 0;
}
h3 {
    letter-spacing: -0.02em;
    margin-top: 0;
    margin-bottom: 1em;
}


#bgvid video {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    /* in case the video doesn't fit the whole page*/
    background-position: center center;
    background-size: contain;
    object-fit: cover;
}
.hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    grid-row-start: top;
    grid-row-end: bottom;
    grid-column-start: left;
    grid-column-end: right;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.hero:empty{
    background: #000000 url(/Documents%20and%20Settings/1/Site%20Documents/Site%20Pictures/jeep.webp) 50% -385px no-repeat;
    background-attachment: fixed;
    box-sizing: border-box;
    background-size: 2050px;
}
@media only screen and (min-width: 2050px) {
    .hero {
        background-size: 100% !important;
    }
}
.hero > *{
    flex-grow: 1;
}
.hero .modulecontent{
    min-height: clamp(6.8em, calc(9em - var(--scroll)), 9em);
    width: 100vw;
}
.hero .modulecontent > div{
    position: unset !important;
}
.hero .hero-content {
    color: #fff;
    background-color: var(--blur-transparent);
    padding: 70px 100px;
    backdrop-filter: var(--back-drop);
    -webkit-backdrop-filter: var(--back-drop);
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid var(--dark-color);
    border-radius: 5px;
}
.hero h1 {
    letter-spacing: -0.02em;
    font-weight: 100;
    font-size: 3em;
    margin: 0 0 0.25em 0;
}
.hero h1 + h3 {
    letter-spacing: -0.02em;
    font-weight: 100;
    font-size: 1.8em;
    margin: -0.5em 0 0.5em 0;
}
.hero p{
    font-size: 1.25em;
    line-height: 1.75em;
    font-weight: 100;
}
.hero .hero-content .fancyspace{
    color: #b6d2ea;
    font-size: 0.75em;
    line-height: 1.5em;
}
.flickr_photo_thumb{
    width: 20vw;
    height: 20vw;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: inline-block;
    border: 1px solid #000;
}

#gallery {
    font-size: 0px;
    width: 100vw;
    transition: all 200ms;
    border-top: 30px solid var(--dark-color);
    background-color: var(--dark-color);
}
#gallery > div {
    width: 20vw;
    position: relative;
    transition: all 200ms;
    box-sizing: border-box;
}

#gallery > div:hover {
    z-index: 1;
    transform: scale(2);
}
#gallery > div:nth-child(1):hover,
#gallery > div:nth-child(6):hover{
    transform: scale(2) translateX(5vw);
}
#gallery > div:nth-child(5n):hover {
    transform: scale(2) translateX(-5vw);
}

@media only all and (max-width: 479px) {
    #gallery > div {
        width: 100vw;
        height: 50vw;
    }
    #gallery > div:hover {
        transform: none !important;
    }
}

.section > div {
    min-height: 17em;
}

.hero:not(:empty) {
    border-bottom: 30px solid var(--dark-color);
}
#secton1 {
    background-color: var(--bg-color);
}
#section2 {
    background-color: var(--white-color);
}
.lower3{
    background-color: var(--white-color);
}
#footer {
    background-color: var(--darker-color);
}

.white-section > * ,
.light-section > * ,
.dark-section > * ,
.grey-section > * ,
.accent-section > * {
    z-index: 1;
    position: relative;
}

.commtireproducts .moduletheme, .commtireproductdetail .moduletheme, .commtirecustomerdetail .moduletheme{
    font-weight: normal !important;
    padding: 0;
}

.left-image.accent-section:before {
    background-color: var(--accent-color);;
    position: absolute;
    width: 50vw;
    height: 100%;
    visibility: visible;
    margin-left: 50%;
    z-index: 0;
}
.right-image.accent-section:before {
    background-color: var(--accent-color);;
    position: absolute;
    width: 50vw;
    height: 100%;
    visibility: visible;
    margin-right: 50%;
    z-index: 0;
}

.accent-section {
    background-color: var(--accent-color);
    color: #fff;
    position: relative;
}
.accent-section:before {
    background-color: var(--accent-color);
    position: absolute;
    width: 50vw;
    height: 100%;
    visibility: visible;
    margin-left: 50%;
    z-index: 0;
}
.accent-section:after {
    background-color: var(--accent-color);
    position: absolute;
    width: 50vw;
    height: 100%;
    visibility: visible;
    margin-right: 50%;
    z-index: 0;
    top: 0;
    right: 0;
}






.left-image.light-section:before {
    background-color: var(--light-color);;
    position: absolute;
    width: 50vw;
    height: 100%;
    visibility: visible;
    margin-left: 50%;
    z-index: 0;
}
.right-image.light-section:before {
    background-color: var(--light-color);;
    position: absolute;
    width: 50vw;
    height: 100%;
    visibility: visible;
    margin-right: 50%;
    z-index: 0;
}

.light-section {
    background-color: var(--light-color);
    color: #fff;
    position: relative;
}
.light-section:before {
    background-color: var(--light-color);
    position: absolute;
    width: 50vw;
    height: 100%;
    visibility: visible;
    margin-left: 50%;
    z-index: 0;
}
.light-section:after {
    background-color: var(--light-color);
    position: absolute;
    width: 50vw;
    height: 100%;
    visibility: visible;
    margin-right: 50%;
    z-index: 0;
    top: 0;
    right: 0;
}



.left-image.dark-section:before {
    background-color: var(--dark-color);;
    position: absolute;
    width: 50vw;
    height: 100%;
    visibility: visible;
    margin-left: 50%;
    z-index: 0;
}
.right-image.dark-section:before {
    background-color: var(--dark-color);;
    position: absolute;
    width: 50vw;
    height: 100%;
    visibility: visible;
    margin-right: 50%;
    z-index: 0;
}

.dark-section {
    background-color: var(--dark-color);
    color: #fff;
    position: relative;
}
.dark-section:before {
    background-color: var(--dark-color);
    position: absolute;
    width: 50vw;
    height: 100%;
    visibility: visible;
    margin-left: 50%;
    z-index: 0;
}
.dark-section:after {
    background-color: var(--dark-color);
    position: absolute;
    width: 50vw;
    height: 100%;
    visibility: visible;
    margin-right: 50%;
    z-index: 0;
    top: 0;
    right: 0;
}




.left-image.grey-section:before {
    background-color: var(--grey-dark-color);;
    position: absolute;
    width: 50vw;
    height: 100%;
    visibility: visible;
    margin-left: 50%;
    z-index: 0;
}
.right-image.grey-section:before {
    background-color: var(--grey-dark-color);;
    position: absolute;
    width: 50vw;
    height: 100%;
    visibility: visible;
    margin-right: 50%;
    z-index: 0;
}

.grey-section {
    background-color: var(--grey-dark-color);
    color: #fff;
    position: relative;
}
.grey-section:before {
    background-color: var(--grey-dark-color);
    position: absolute;
    width: 50vw;
    height: 100%;
    visibility: visible;
    margin-left: 50%;
    z-index: 0;
}
.grey-section:after {
    background-color: var(--grey-dark-color);
    position: absolute;
    width: 50vw;
    height: 100%;
    visibility: visible;
    margin-right: 50%;
    z-index: 0;
    top: 0;
    right: 0;
}

.white-section {
    background-color: var(--white-color);
    color: var(--dark-color);
    position: relative;
}
.white-section:before {
    background-color: var(--white-color);
    position: absolute;
    width: 50vw;
    height: 100%;
    visibility: visible;
    margin-left: 50%;
    z-index: 0;
}
.white-section:after {
    background-color: var(--white-color);
    position: absolute;
    width: 50vw;
    height: 100%;
    visibility: visible;
    margin-right: 50%;
    z-index: 0;
    top: 0;
    right: 0;
}


.left-image, .right-image, .left-video, .right-video, .repeating {
    display: block;
    position: relative;
    font-size: clamp(12px, 1vw, 16px);
}
.left-video iframe,
.right-video iframe {
    aspect-ratio: 3 / 2;
}

.left-image .module-image img,
.left-video iframe{
    margin-left: calc(100% - 50vw);
}
.right-image .module-image img,
.right-video iframe{
    margin-right: calc(100% - 50vw);
}
.left-image .module-image img,
.right-image .module-image img,
.left-video iframe,
.right-video iframe{
    width: 50vw;
    display: block;
}
@media only all and (max-width: 479px) {
    .left-image .module-image img, .right-image .module-image img, .left-video iframe, .right-video iframe {
        border-bottom: 30px solid var(--dark-color);
    }
}

.moduletheme,
.text-half,
.text-full
{
    padding: 1em 2em;
    font-size: 1.25em;
    line-height: 1.75em;
    font-weight: 100;
}
.modulecontent ul{
    margin-top: 0;
}

.section0{
    background-color: var(--white-color);
}

.dark-section h2,
.light-section h2,
.grey-section h2,
.white-section h2,
.repeating h2{
    font-weight: 100;
    font-size: clamp(20px, 3em, 48px);
    line-height: 1.25em;
}
h1{
    font-weight: 100;
    font-size: clamp(16px, 3em, 36px);
    line-height: 1.25em;
}
h3{
    font-weight: 100;
    font-size: clamp(16px, 1.5em, 28px);
}
.footer, .footer a{
    color: #fff;
}
.footer{
    font-size: 0.8em;
}
.footer h3{
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 0;
    font-size: 1.25em;
}

.right-image .text-half .ghost-button,
.left-image .text-half .ghost-button,
.right-video .text-half .ghost-button,
.left-video .text-half .ghost-button{
    float: right;
}

@media only all and (max-width: 479px) {
    .left-image .module-image img, .right-image .module-image img, .left-video iframe, .right-video iframe {
        width: 100vw;
        margin: 0 calc((100% - 100vw) / 2);
    }

    .left-image.light-section:before {
        background-color: var(--light-color);
        width: 100vw;
        height: 100%;
        margin-left: -15%;
    }
    .left-image.grey-section:before {
        background-color: var(--grey-dark-color);
        width: 100vw;
        height: 100%;
        margin-left: -15%;
    }
}

.ghost-button{
    padding: 0em 1em;
    color: var(--grey-dark-color);
    border: 1px solid var(--grey-dark-color);
    transition: all 0.5s;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    line-height: 2.5em;
    margin: 0.2em;
    height: 2.5em;
    display: inline-block;
    box-sizing: border-box;
}
.ghost-button:hover {
    background-color: var(--grey-dark-color);
    color: #fff;
    border-color: var(--grey-dark-color);
}

.ghost-button.red{
    color: var(--white-color) !important;
    border: 1px solid var(--accent-color);
    background-color: var(--accent-color);
}
.ghost-button.red:hover{
    color: var(--accent-color) !important;
    border: 1px solid var(--accent-color);
    background-color: var(--white-color);
}

.grey-section .ghost-button{
    color: var(--white-color);
    border: 1px solid var(--dark-color);
}
.grey-section .ghost-button:hover{
    color: var(--white-color);
    border: 1px solid var(--white-color);
}

.hero .ghost-button,
.repeating .ghost-button,
.light-section .ghost-button{
    color: #fff;
    border: 1px solid var(--accent-color);
}
.hero .ghost-button:hover,
.repeating .ghost-button:hover,
.light-section .ghost-button:hover {
    background-color: #fff;
    color: var(--dark-color);
    border-color: #fff;
}
.light-section .modulecontent a{
    border-color: var(--accent-color);
    color: var(--white-color);
}

.field{
    font-size: 100%;
}
.field LABEL {
    font-size: 100%;
    line-height: unset;
}
input[type="text"], select, .field INPUT, .field SELECT, .field TEXTAREA, .instruction, FIELDSET INPUT, FIELDSET SELECT, FIELDSET TEXTAREA, FIELDSET{
    padding: 0.5em;
    box-sizing: border-box;
    border: 1px solid var(--grey-dark-color);
}
.grey-section .field INPUT, .grey-section .field SELECT, .grey-section .field TEXTAREA, .grey-section INPUT, .grey-section SELECT, .grey-section FIELDSET TEXTAREA,
.light-section .field INPUT, .light-section .field SELECT, .light-section .field TEXTAREA, .light-section INPUT, .light-section SELECT, .light-section FIELDSET TEXTAREA{
    background-color: rgba(255,255,255, 0.15);
    border-color: #fff;
}
.grey-section ::placeholder,
.light-section ::placeholder{
    color: #fff;
}

input[type="submit"], input[type="button"], input[type="reset"], button {
    padding: 0.5em;
    color: var(--grey-dark-color);
    border: 1px solid var(--grey-dark-color);
    transition: all 0.5s;
    text-transform: uppercase;
    text-decoration: none;
    background: none;
}
input[type="submit"]:hover, input[type="button"]:hover, input[type="reset"]:hover, button:hover {
    background-color: var(--dark-color);
    color: #fff;
    border-color: var(--dark-color);
}
.light-section input[type="submit"], .light-section input[type="button"], .light-section input[type="reset"], .light-section button {
    color: #fff;
    border: 1px solid var(--accent-color);
}
.light-section input[type="submit"]:hover, .light-section input[type="button"]:hover, .light-section input[type="reset"]:hover, .light-section button:hover {
    background-color: #fff;
    color: var(--dark-color);
    border-color: #fff;
}
[id$="pnlRequired"]{
    display: none;
}
.fancyspace {
    letter-spacing: 5px;
}


@media only all and (max-width: 500px){
    .n-v1-container {
        width: 98%;
    }
}

.hero .moduletheme:first-of-type{
    margin-top: clamp(6.8em, calc(9em - var(--scroll)), 9em) !important;
}

.home-hero{
    border-radius: 5px;
    margin: 40px;
    padding: 40px;
    color: var(--white-color);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.home-hero > .n-v1-cols > div:after{
    content: '';
    display: block;
    position: absolute;

    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;

    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.65) 53%, rgba(0, 0, 0, 0) 100%);
    box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.1);
}


@media only screen and (min-width: 979px) {
    .home-hero > .n-v1-cols{
        display: flex;
    }

    .home-hero > .n-v1-cols > div:after{
        top: 0;
        left: auto;
        height: auto;
        width: 1px;
    
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.65) 53%, rgba(0, 0, 0, 0) 100%);
    }


}

.home-hero > .n-v1-cols > div{
    position: relative;
}


.home-hero > .n-v1-cols > div:last-child:after{
    display: none;
}

#home-menu{
    list-style: none;
    text-transform: uppercase;
}
#home-menu li {
    list-style: none;
    padding: 5px 20px 5px 0;
    line-height: 40px;
  }
  
  #home-menu li svg{
    height: 2em;
    margin: -0.5em 0.5em -0.5em 0
  }
  #home-menu li svg *{
    stroke: currentcolor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
    fill-rule: evenodd;
    fill: none;
  }
  #home-menu li a{
    text-decoration: none;
    color: var(--white-color);
    transition: all 200ms;
    transform: translateX(0px);
    display: block;
  }
  #home-menu li a:hover{
    color: var(--accent-color);
    transform: translateX(5px);
  }
h2{
    font-size: 2em;
    font-weight: 100;
    margin-top: 0;
    margin-bottom: 0.5em;
}

input[type=checkbox]{
    accent-color:  #C70039;  
}

.module-class.documents {
    
}

.rollbar INPUT, .rollbar SELECT, .rollbar TEXTAREA{
    font-size: 8pt;
    font-family: Tahoma, Helvetica, sans-serif;
}

.bModule{

}

.red, .red-color .color {
    color: #dd380d !important;
}

.green, .green-color .color {
    color: #99c624 !important;
}


.stats {
	list-style-type: none;
	margin-left: 0;
    margin-right: 1em;
    padding: 0;
	}

    .stats > li::after{
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
    
        background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.65) 53%, rgba(0, 0, 0, 0) 100%);
        box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.1);
    }
	.stats > li {
        position: relative;
		padding: 19px 0 20px;
		font-size: 16px;
		line-height: 16px;
		}
		.dashboard .stats {
			margin-top: -12px;
			margin-bottom: -10px;
			}
			.dashboard .stats > li {
				border-top: 1px solid rgba(0, 0, 0, 0.75);
				box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
				text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.75);
			}
			.no-boxshadow .dashboard .stats > li {
				border-top-color: #666666;
			}
		.stats > li:first-child:after {
			display: none;
		}
		.stats > li > a {
			display: block;
			color: inherit;
			margin: -19px 0 -20px;
			padding: 19px 5px 20px 0;
			}
			.stats > li > a:hover {
				padding-right: 0;
				transition: padding-right 100ms;
			}
		.stats > li > strong,
		.stats > li > a > strong {
			display: block;
			float: left;
			font-size: 48px;
			line-height: 48px;
			height: 48px;
			font-weight: 100;
			margin: -7px 10px -5px 0;
			text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
			transition: margin-right 100ms;
			}
			.dashboard .stats > li > strong,
			.dashboard .stats > li > a > strong {
				text-shadow: 0 1px 4px black;
			}
			.stats > li > a:hover > strong {
				margin-right: 15px;
			}

		.stats.split-on-mobile {
			margin-left: -4.5%;
			}
			.stats.split-on-mobile > li {
				float: left;
				width: 45.5%;
				margin-left: 4.5%;
				font-size: 12px;
				line-height: 12px;
				}
				.stats.split-on-mobile > li:nth-child(2) {
					border-top: 0;
					box-shadow: none;
				}
				.stats > li > strong,
				.stats > li > a > strong {
					font-size: 36px;
					line-height: 36px;
					height: 36px;
					margin: -6px 7px -4px 0;
				}

/*
 * Fact numbers
 */
.facts {
	margin-left: -20px;
	}
	.fact {
		color: #bfbfbf;
		font-size: 12px;
		line-height: 14px;
		}
		.facts > .fact {
			float: left;
			margin: 0 0 20px 20px;
			width: 129px;
		}
	.fact-value {
		float: left;
		margin: -6px 4px 0 0;
		font-family: 'Open Sans', sans-serif;
		font-size: 48px;
		line-height: 48px;
		position: relative;
		color: var(--white-color);
		letter-spacing: -2px;
		}
		.fact-unit {
			position: absolute;
			top: 37px;
			right: -2px;
			font-size: 11px;
			line-height: 11px;
			font-family: Arial, Helvetica, sans-serif;
			text-transform: uppercase;
			padding: 2px 3px;
			background: white;
			letter-spacing: 0;
			border-radius: 4px;
			font-weight: bold;
		}
        .fact-unit {
            position: static;
            display: inline-block;
            top: auto;
            right: auto;
            font-size: 12px;
            line-height: 12px;
            padding: 0;
            vertical-align: top;
            margin: 7px 3px 0 -10px;
            background: none;
            border-radius: 0;
            }
	.fact-progress {
		display: block;
		padding-top: 4px;
	}

/*480px __________________________________________________________________________________________________________ */
@media only screen and (min-width: 480px) {

	/*
	 * Stats list
	 */
	.stats.split-on-mobile > li {
		font-size: 16px;
		line-height: 16px;
		}
		.stats > li > strong,
		.stats > li > a > strong {
			font-size: 48px;
			line-height: 48px;
			height: 48px;
			margin: -7px 10px -5px 0;
		}

	/*
	 * Fact numbers
	 */
	.facts {
		margin-left: -30px;
		}
		.ie7 .facts {
			margin-bottom: 30px;
		}
		.fact {
			font-size: 13px;
			line-height: 16px;
			}
			.facts > .fact {
				margin: 0 0 30px 30px;
				width: 180px;
			}
		.fact-value {
			margin: -6px 8px 0 0;
			font-size: 60px;
			line-height: 60px;
			letter-spacing: -3px;
			}
			.ie7 .fact-value {
				margin: -17px 8px -13px 0;
			}
			.fact-unit {
				position: static;
				display: inline-block;
				top: auto;
				right: auto;
				font-size: 12px;
				line-height: 12px;
				padding: 0;
				vertical-align: top;
				margin: 7px 3px 0 -10px;
				background: none;
				border-radius: 0;
				}
				.ie7 .fact-unit {
					margin-top: 19px;
				}

}/*/mediaquery*/

/*768px __________________________________________________________________________________________________________ */
@media only screen and (min-width: 768px) {

	/*
	 * Stats list
	 */
	.stats.split-on-mobile {
		margin-left: 0;
		}
		.stats.split-on-mobile > li {
			float: none;
			width: auto;
			margin-left: 0;
			}
			.stats.split-on-mobile > li:nth-child(2) {
				border-top: 1px solid rgba(0, 0, 0, 0.25);
				}
				.dashboard .stats.split-on-mobile > li:nth-child(2) {
					border-top: 1px solid rgba(0, 0, 0, 0.75);
					box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
				}

}/*/mediaquery*/

/* The legen - wait for it - dary clearfix */
.facts:before, .facts:after,
.fact:before, .fact:after {  content: "\0020"; display: block; height: 0; visibility: hidden;	 }
.facts:after,
.fact:after { clear: both; }
.facts,
.fact { zoom: 1; }

#announcements{
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

#announcements .fontstyle0.forecolor8.backcolor1{
    background: rgba(0,0,0,0.25);
    color: var(--accent-color);
    margin: 5px 0;
    padding: 5px !important;
    border-radius: 5px;
}

#announcements .bordercolor7{
    border-bottom: none !important;
}

#announcements a,
#announcements .forecolor7,
#announcements .forecolor10 {
    color: #fff;

}

.horizontal-div{
    position: relative;
}
.horizontal-div:after{
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
    
        background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.65) 53%, rgba(0, 0, 0, 0) 100%);
        box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.1);
    }

.field .textbox, .field SELECT {
    min-height: 3em;
}

.peoplebase table[id$=ContactList] td{
    max-width: 28vw;              /* Set the relative width of the cell */
    overflow: hidden;        /* Hide overflowing content */
    white-space: nowrap;     /* Prevent text from wrapping */
}

.peoplebase table[id$=ContactList] span{
    display: block;          /* Display the span as a block element */
    overflow: hidden;        /* Hide overflowing text */
    text-overflow: ellipsis; /* Show ellipsis for overflowing text */
    white-space: nowrap;     /* Prevent text from wrapping */
}
.peoplebase table[id$=ContactList] img{
    --display: none;
}

.columns h3 a{
    position: relative;
    top: -100px;
}



table.responsive-tb {
    border-collapse: collapse;
    width: 100%;
}
  
@media screen and (max-width: 600px) {
    table.responsive-tb  {
        border: 0;
    }

    table.responsive-tb th{
        display: none;
    }
    table.responsive-tb thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    table.responsive-tb tr {
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: .625em;
    }

    table.responsive-tb td {
        border-bottom: 1px solid #ddd;
        display: block;
        text-align: right;
        min-height: 1.3em;
    }

    table.responsive-tb td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
    }

    table.responsive-tb td:last-child {
        border-bottom: 0;
    }




    /*  */

    table.responsive tr {
        display: block;
    }

    table.responsive td,
    table.responsive th{
        display: block;
    }

    table.responsive td:last-child {
        border-bottom: 0;
    }
}

.dt-paging-button{
    border: 1px solid #999 !important;
    width: 5em;
}
