
html.w-mod-touch * {
  background-attachment: scroll !important;
}

/*=========== LAYOUT ============*/

#layout {
    position:relative;
    text-align:left;
}





/*div,section {
    position:relative;
}*/



/* PRODUCT BOXES */
/*.product-item-box {
    height:100vh;
    position:relative;
    width:100%;
    background-color:#333;
    background-repeat: no-repeat;
    background-position: top center; 
}
.product-item-box.cover {
    background-size: cover;
}
.product-item-box.contain {
    background-size: contain;
}*/

.item-box-arrow-container {
    /*-webkit-transition: visibility 250ms ease-in-out, opacity 250ms ease-in-out;
    -o-transition: visibility 250ms ease-in-out, opacity 250ms ease-in-out;
    -moz-transition: visibility 250ms ease-in-out, opacity 250ms ease-in-out;
    transition: visibility 250ms ease-in-out, opacity 250ms ease-in-out;*/
    
    -webkit-transition: 250ms ease-in-out;
    -moz-transition: 250ms ease-in-out;
    -o-transition: 250ms ease-in-out;
    transition: 250ms ease-in-out;
    
    cursor:pointer;
}
.item-box-arrow-container.rightarrow {
    right: 0px;
    top: 50%;
    position: absolute;
    width: auto;
    height: auto;
    
    padding: 5px 20px 5px 15px;;
    
    background-color: rgba(133,189,211,.75);
    
    -webkit-transform: translate(0%, -50px);
    -moz-transform: translate(0%, -50px);
    -ms-transform: translate(0%, -50px);
    -o-transform: translate(0%, -50px);
    transform: translate(0%, -50px);
    
    
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; 
}
.item-box-arrow-container.rightarrow:hover {
   background-color: rgba(133,189,211,1); 
}
.item-box-arrow-label {
    line-height: 1;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;    
    padding-right: 10px;
}
.item-box-arrow {
    position:absolute;
    width:50px;
    height:50px;
  
    -webkit-transition: 250ms ease-in-out;
    -moz-transition: 250ms ease-in-out;
    -o-transition: 250ms ease-in-out;
    transition: 250ms ease-in-out;
    
    
    background:url(../graphics/scroll-arrow-off.svg) no-repeat center center;
    background-size:contain;
}
.item-box-arrow.hide,
.item-box-arrow-container.hide {
    visibility: hidden;
    opacity: 0.0;

    pointer-events: none;
}
.item-box-arrow:not(.rightarrow):hover {
    background:url(../graphics/scroll-arrow-over.svg) no-repeat center center;
}
.item-box-arrow.downarrow {
    
    bottom:20px;
    left:50%;
    -webkit-transform: translate(-50%, 0px);
    -ms-transform: translate(-50%, 0px);
    transform: translate(-50%, 0px);
  
    
}
.item-box-arrow.uparrow {

    top:70px; /*up arrows always must avoid header; the topmost box does not have an uparrow*/
    left:50%;
    /*
    -webkit-transform: translate(-50%, 0px);
    -ms-transform: translate(-50%, 0px);
    transform: translate(-50%, 0px);
    */
    
    -webkit-transform: translate(-50%, 0px) rotate(180deg);
    -moz-transform: translate(-50%, 0px) rotate(180deg);
    -ms-transform: translate(-50%, 0px) rotate(180deg);
    -o-transform: translate(-50%, 0px) rotate(180deg);
    transform: translate(-50%, 0px) rotate(180deg);
}
.item-box-arrow.rightarrow {
    /*
    right:20px;
    top:50%;

    -webkit-transform: translate(0%, -50px) rotate(270deg);
    -moz-transform: translate(0%, -50px) rotate(270deg);
    -ms-transform: translate(0%, -50px) rotate(270deg);
    -o-transform: translate(0%, -50px) rotate(270deg);
    transform: translate(0%, -50px) rotate(270deg);
    */
    
    width:24px;
    height:24px;
    
    position: relative;
    
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
}




/*SECTION HEADER*/

/*first declared in em_site.css*/
header {
    position: fixed;
    width: 100%;
    z-index: 3000;
    
    height:auto;
    background-color: #fff;
    
    /*-webkit-box-shadow: 0 -23px 27px 0 rgba(0, 0, 0, 0.7);
    -moz-box-shadow: 0 -23px 27px 0 rgba(0, 0, 0, 0.7);
    box-shadow: 0 -23px 27px 0 rgba(0, 0, 0, 0.7);*/
    
    -webkit-transition: height 150ms linear;
    -o-transition: height 150ms linear;
    -moz-transition: height 150ms linear;
    transition: visibility height 150ms linear;
}

header,
.header-placeholder {
    height:87px;
}

/*TEST CLASSES*/
.headercontainer {
    position: absolute;
    left: 0;
    top: 0;    
}
.headerimagecontainer {
    position: absolute;
    left: 0;
    top: 0;
    
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}
/*END TEST CLASSES*/

.sectionmoduleheader {
    background-color: rgba(255, 255, 255, 0);
    
    left: unset;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;

    margin-top: 0;
    height: 100%;
    padding: 0 70px 0 70px;
    
    position: relative;
    top: unset;
    transform: rotate(0deg);
    width: 100%;
    
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
}

.sectionmoduleheader .headercontainer {
    align-items: center;
    background-color: rgba(255, 255, 255, 0);
    display: flex;
    flex-direction: row;
    height: 100%;
    justify-content: space-between;
    left: unset;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    
    /*padding-top: 20px;
    padding-bottom: 20px;*/
    
    position: relative;
    top: unset;
    transform: rotate(0deg);
    width: auto;
    
    /*-webkit-transition: height 150ms linear;
    -o-transition: height 150ms linear;
    -moz-transition: height 150ms linear;
    transition: visibility height 150ms linear;*/
    
}


.sectionmoduleheader .headercontainer .imgwrap.fc-33-1 a {
    display: inline-block;
    height:100%
}

.sectionmoduleheader .headercontainer .navigationcontainer {
    position: relative;
    
    align-items: center;
    background-color: rgba(255, 255, 255, 0);
    display: flex;
    flex-direction: row;
    height: 100%;
    justify-content: flex-end; /*center;*/

    width: 100%;
    
}

.sectionmoduleheader .headercontainer .navigationcontainer .mobilemenutrigger {
    
    position: relative;
    
    height: 18px;
    
    /*right-side format*/
    /*width: 22px;*/
    
    /*center format when removing the shopping cart on mobile*/
    /*width is important in order to perceive the width transition*/
    /*width: 50%; 
    -webkit-transition: width 150ms, visibility 50ms, opacity 50ms  linear;
    -o-transition: width 150ms, visibility 50ms, opacity 50ms  linear;
    -moz-transition: width 150ms, visibility 50ms, opacity 50ms  linear;
    transition: width 150ms, visibility 50ms, opacity 50ms  linear;*/
    
    /*center format when keeping the shopping cart on mobile*/
    position: absolute;
    width: 22px;
    left: 50%;
    transform: translate(50%,0);
    -webkit-transition: width 150ms, visibility 50ms, opacity 50ms  linear;
    -o-transition: width 150ms, visibility 50ms, opacity 50ms  linear;
    -moz-transition: width 150ms, visibility 50ms, opacity 50ms  linear;
    transition: width 150ms, visibility 50ms, opacity 50ms  linear;
    
    pointer-events:none;         
    
    display: block;
    visibility: hidden;
    opacity: 0;
    
    
    
}
.sectionmoduleheader .headercontainer .navigationcontainer .mobilemenutrigger .mobileopen,
.sectionmoduleheader .headercontainer .navigationcontainer .mobilemenutrigger .mobilexclose  {
    position:absolute;
    
    cursor: pointer;
    
    display:inline-block;
    vertical-align: baseline;
    
    -webkit-transition: all ease-in-out;
    -o-transition: all ease-in-out;
    -moz-transition: all ease-in-out;
    transition: all ease-in-out;
}
.sectionmoduleheader .headercontainer .navigationcontainer .mobilemenutrigger .mobileopen {
    opacity:1;
    visibility: visible;    
}
.sectionmoduleheader .headercontainer .navigationcontainer .mobilemenutrigger .mobilexclose {
    opacity:0;
    visibility: hidden;
}

.sectionmoduleheader .headercontainer .navigationcontainer .mobilemenutrigger.open .mobileopen {
    opacity:0;
    visibility: hidden;
}
.sectionmoduleheader .headercontainer .navigationcontainer .mobilemenutrigger.open .mobilexclose {
    opacity:1;
    visibility: visible;
}

.sectionmoduleheader .headercontainer .navigationcontainer .mobilemenutrigger .mobileopen .menuicon {
    width: 22px;
    height: 18px;    
    
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../graphics/open-menu.svg);
}
.sectionmoduleheader .headercontainer .navigationcontainer .mobilemenutrigger .mobilexclose .xcloseicon {
    width: 14px;
    height: 14px;
    
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../graphics/close-menu-x.svg);
}


.sectionmoduleheader .headercontainer .navigation {

    height: auto;

    width: auto;
 
    position: absolute;
    
    /*right-side format*/
    /*right:0;*/
    
    /*center format*/
    left: 50%;
    transform: translate(0%,0);
    
} 
/*.sectionmoduleheader .headercontainer .navigation .menu-navigation.w-nav-menu {
    align-items: flex-start;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    
    position: absolute;
    top: 100%;
    left: 0;
    
}*/

.sectionmoduleheader .headercontainer .navigation .item {
    margin-bottom: 0;
    margin-left: 45px;
    margin-right: 0;
    margin-top: 0;
    width: auto;
    height: auto;
    position: relative;
    background-color: rgba(255, 255, 255, 0);
    
    cursor: pointer;
}
/*not typical - using icon in place of label for nav item so hiding text */
/*.sectionmoduleheader .headercontainer .navigation .item:before {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(96, 89, 83);
    
    bottom: -4px;
    left: 0;
    
    content: "";
    height: 0px;
    
    position: absolute;
    transform: translateX(-100%);
    transform: scaleX(0) translateZ(0);
    transform-origin: 100% 50%;
    transition: transform .4s cubic-bezier(.405,.07,.575,.995) .1s,transform-origin .1s cubic-bezier(.405,.07,.575,.995) 0s,opacity .4s cubic-bezier(.24,.015,.145,.93) 0s;
    width: 100%;
}
.sectionmoduleheader .headercontainer .navigation .item:not(.isSelected):hover:before,
.sectionmoduleheader .headercontainer .navigation .item.isSelected:before {
    transform: scaleX(1) translateZ(0);
    transform-origin: 0 50%;
    transition: transform .4s cubic-bezier(.405,.07,.575,.995);
}
*/

.sectionmoduleheader .headercontainer .navigation .item,
.sectionmoduleheader .headercontainer .navigation .item a,
.sectionmoduleheader .headercontainer .navigation .item a:link,
.sectionmoduleheader .headercontainer .navigation .item a:visited,
.sectionmoduleheader .headercontainer .navigation .item a:hover {
    color: rgb(74, 73, 74);
    font-family: proxima-nova, Helvetica, Arial, serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    font-style: normal;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
    
    /*not typical - using icon in place of label for nav item so hiding text */
    color: #ffffff;
}

/*we have hidden the main nav items using color code; we also need to limit size*/
.sectionmoduleheader .headercontainer .navigation .mainnavigation  .item,
.sectionmoduleheader .headercontainer .navigation .mainnavigation  .item a {
    width: 22px;
    height: 18px;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
}


.sectionmoduleheader .headercontainer .navigation .item:after {
    content: '';
    position: absolute;
    top:0px;
    
    /*left:0;*/
    right:0;
    
    width:22px;
    height:18px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../graphics/open-menu.svg);
}
/*.sectionmoduleheader .headercontainer .navigation .item.open:after {
    width:18px;
    height:18px;
    background-image: url(../graphics/close-menu-x.svg);
}*/

.sectionmoduleheader .headercontainer .navigation .item:first-of-type {
    margin-left: 0;
}  

/*header images are outside the containers*/
.headerimage-main {
    position: fixed;
    width: auto;
    height: auto;
    left: 70px;
    top: 28px;
    z-index: 3001;
    
    -webkit-transition: top 150ms linear;
    -o-transition: top 150ms linear;
    -moz-transition: top 150ms linear;
    transition: visibility top 150ms linear;
}
.headerimage-main.opaque {
    top: 26px;
}
.headerimage-scroll {
    width: auto;
    height: auto;
    left: 160px; /*146px;*/
    top: 15px; /*39px;*/
    z-index: 30001;
    position: absolute;
}
.headerimage-main a,
.headerimage-scroll a {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    text-decoration: none;
}
.headerimage-main .logo.mainimg {
    position: relative;
    /*width: 94px;
    height: 41px; */
    width: 76px;
    height: 33px;
}
.headerimage-scroll .logo.mainimg.scroll {
    position: relative;
    /*width: 165px;
    height: 81px;*/
    width: 111px;
    height: 57px;
}

.headerimage-main .textbrand {
    font-family: "montserrat", sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #000000;
    letter-spacing: 0;
    text-align: left;
}
.headerimage-main .textbrand .accent {
    color: #9B9B9B;
}



/*.sectionmoduleheader .headercontainer .logo.mainimg,
.sectionmoduleheader .headercontainer .logo.mainimg.scroll {
    background-color: rgba(255, 255, 255, 0);
    
    width: 235px;
    height: auto;
    max-height: 100%;
   
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    position: relative;
   
    margin-top: 2px;
   
    
    max-width: 100%;
    vertical-align: middle;
}
.sectionmoduleheader .headercontainer .logo.mainimg.scroll {
    display:none;
    width: 104px;
    height: auto;
    
    max-height: 100%;
}*/

.sectionmoduleheader .headercontainer .imgwrap.fc-33-1 {
    left: unset;
    margin-left: 0;
    margin-top: 0;
    position: relative;
    top: unset;
}

.sectionmoduleheader .headercontainer .cart {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: end;
}
.sectionmoduleheader .headercontainer .cart .item {
    position: relative;
}
.sectionmoduleheader .headercontainer .cart .icon.cart {
    width: 34px;
    height: 25px;
    max-width: 100%;
    opacity: .3;
}
.sectionmoduleheader .headercontainer .cart #numOfCartItems {
    position: absolute;
    top:0px;
    left:0;
    padding-left: 2px;
    font-family: brother-1816, sans-serif;
    font-weight:800;
    font-size: 10px;
    color: #000000;
    
    letter-spacing: 0.28px;
    text-align: center;
    
    text-align: center;
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: flex-start;
    justify-content: center;
    padding-left: 2px;
    
    
    -webkit-transition: visibility 150ms ease-in-out, opacity 150ms ease-in-out;
    -o-transition: visibility 150ms ease-in-out, opacity 150ms ease-in-out;
    -moz-transition: visibility 150ms ease-in-out, opacity 150ms ease-in-out;
    transition: visibility 150ms ease-in-out, opacity 150ms ease-in-out;
    
    visibility: hidden;
    opacity: 0;
}
.sectionmoduleheader .headercontainer .cart #numOfCartItems.show {
    visibility: visible;
    opacity: 1;
}



@media screen and (max-width: 868px) {
    .sectionmoduleheader {
        padding: 0 50px 0 50px;
    }
    .sectionmoduleheader .headercontainer .navigation {
        display:none;
    }    

    .sectionmoduleheader .headercontainer .navigationcontainer .mobilemenutrigger {
        display: block;
    }
    .sectionmoduleheader .headercontainer .navigationcontainer {
        justify-content: flex-end;
    }
    .sectionmoduleheader .headercontainer .navigationcontainer .mobilemenutrigger {
        /*width: 22px;*/
        width: 10%;
        
        pointer-events:all;         
         
        visibility: visible;
        opacity: 1;
    }
    
    
    /*
    .headerimage-scroll {
        left: 122px;
    }
    .headerimage-main .logo.mainimg {
        height: auto;
        width: 74px; 
    }
    .headerimage-scroll .logo.mainimg.scroll {
        height: auto;
        width: 145px
    }
    */
    header,
    .header-placeholder {
        height: 78px;
    }

    .headerimage-main {
        top: 28px;
        left: 30px;
    }
    .headerimage-main.opaque {
        top:23px;
    }
    .headerimage-scroll {
        left: 96px;
        top: 19px; /*24px;*/
    }
    .headerimage-main .logo.mainimg {
        height: auto;
        width: 54px;
    }
    .headerimage-scroll .logo.mainimg.scroll {
        height: auto;
        width: 90px; /*125px*/
    }
}
@media screen and (max-width: 700px) { 
 .sectionmoduleheader .headercontainer .navigationcontainer .mobilemenutrigger {
        width: 15%;
    }
}    
@media screen and (max-width: 540px) {

    .sectionmoduleheader .headercontainer .imgwrap.fc-33-1 {
        /*margin-left:20px;*/
    }
}
@media screen and (max-width: 480px) { 
 .sectionmoduleheader .headercontainer .navigationcontainer .mobilemenutrigger {
        width: 20%;
    }
}

/*END SECTION HEADER*/


/*SECTION FOOTER*/
.sectionmodulefooter {
  height: auto;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  transform: rotate(0deg);
  width: 100%;
  background-color: #262421;
  left: unset;
  margin-top: 0;
  position: relative;
  top: unset;
}



.sectionmodulefooter .footerrow2,
.sectionmodulefooter .footerrow2 .footercolumn2 {
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  left: unset;
  margin-bottom: 0;
  position: relative;
  top: unset;
  transform: rotate(0deg);
}

.sectionmodulefooter .footerrow2 {
  height: auto;
  margin-top: 32px;
  /*padding-bottom: 24px;*/
  width: auto;
  justify-content: center;
  background-color: #000;
}

.sectionmodulefooter .footerrow2 .item_container {
    position: relative;
    background-color: rgba(255, 255, 255, 0);
    width: 100%;
    align-items: center;
  
  display: flex;
  flex-direction: row;
  justify-content: center;
  
  padding-top:15px;
  padding-bottom: 15px;
}

.sectionmodulefooter .footerrow2 .footercolumn2 {
  height: auto;
  
  margin-right: 0;
  margin-top: 0;
  
  margin-left: 0;
  width: auto;
  
  position: absolute;
  right: 20px;
}

.sectionmodulefooter .footerrow2 .footercolumn2 .privacy {
  width: 82px;
}

.sectionmodulefooter .footerrow2 .footercolumn2 .privacy,
.sectionmodulefooter .footerrow2 .footercolumn2 .divider {
  background-color: rgba(255, 255, 255, 0);

  height: auto;

  margin-bottom: 0;
  margin-left: 5.5px;
  margin-right: 0;
  margin-top: 0;
  position: relative;
 
}

.sectionmodulefooter .footerrow2 .footercolumn2 .divider {
  width: auto;
}



.sectionmodulefooter .footerrow2 .footercolumn2 .terms {
    background-color: rgba(255, 255, 255, 0);
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  position: relative;
  
  height: auto;
  
  width: 72px;
  
  margin-left: 5.5px;
}
.sectionmodulefooter .footerrow2 .footercolumn2 .terms,
.sectionmodulefooter .footerrow2 .footercolumn2 .terms a,
.sectionmodulefooter .footerrow2 .footercolumn2 .terms a:link,
.sectionmodulefooter .footerrow2 .footercolumn2 .terms a:visited,
.sectionmodulefooter .footerrow2 .footercolumn2 .terms a:hover {
    text-decoration: none;
    line-height: 13px;
    text-align: left;
  color: rgb(255, 255, 255);
  font-family: brother-1816, sans-serif;
    font-weight: 300;

  font-size: 10px;
  font-size-adjust: none;
  font-stretch: normal;
  font-style: normal;

    
}

.sectionmodulefooter .footerrow2 .footercolumn1 {
  background-color: rgba(255, 255, 255, 0);
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  position: relative;

  height: auto;
  width: auto;
}

.sectionmodulefooter .footerrow2 .footercolumn1 .copyright {
  color: rgb(255, 255, 255);
  font-family: brother-1816, sans-serif;
    font-weight: 300;
  font-size: 10px;
  font-size-adjust: none;
  font-stretch: normal;
  font-style: normal;
  text-transform: uppercase;
  
  height: auto;
  line-height: 13px;
  margin-left: 0;
  margin-right: 0;
  margin-top: -1px;
  text-align: center;
  width: auto;
}

.sectionmodulefooter .footerrow2 .footercolumn1 .copyright,
.sectionmodulefooter .footerrow1 {
  background-color: rgba(255, 255, 255, 0);
  left: unset;
  margin-bottom: 0;
  position: relative;
  top: unset;
  transform: rotate(0deg);
}

.sectionmodulefooter .footerrow1 {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  height: auto;
  margin-top: 56px;
  justify-content: flex-start;
  margin-left: auto;
  margin-right: auto;
  
  width: 1254px;
}
.sectionmodulefooter .footergroup1 {
    align-items: flex-start;
    display: flex;
    flex-direction: row;
    height: auto;
    justify-content: flex-start;
    width:100%;
    flex-shrink: 1;
    margin-top: 50px;
}
.sectionmodulefooter .footerrow1 .footerbrand {
    width:auto;
    height: auto;
    flex-shrink: 0;
    margin-top: 5px;   
}

.sectionmodulefooter .footerrow1 .footerbrand .textbrand {
    font-family: "montserrat", sans-serif;
    font-weight:800;
  font-size: 24px;
  color: #FFFFFF;
  letter-spacing: 0;
  text-align: left;
}
.sectionmodulefooter .footerrow1 .footerbrand .textbrand .accent {
  color: #CECDCD;
}

.sectionmodulefooter .footerrow1 .footerbrand .footerimg {
    width:100%;
    height: auto;
    max-width:100%;
}

.sectionmodulefooter .footerrow1 .footercolumn2 {
  height: auto;
  margin-left: 85px;
  margin-top: 0;
  width: 202px;
  flex-shrink: 0;
}

.sectionmodulefooter .footerrow1 .footercolumn2,
.sectionmodulefooter .footerrow1 .footercolumn2 .addressdetails {
  background-color: rgba(255, 255, 255, 0);
  left: unset;
  margin-bottom: 0;
  margin-right: 0;
  position: relative;
  top: unset;
  transform: rotate(0deg);
}

.sectionmodulefooter .footerrow1 .footercolumn2 .addressdetails {
  color: rgb(255, 255, 255);
  font-family: brother-1816, sans-serif;
  font-weight: 800;

  
  font-size: 16px;
  font-size-adjust: none;
  font-stretch: normal;
  font-style: normal;
   
  height: auto;
  line-height: 22px;
  margin-left: 2px;
  margin-top: 25px;
  text-align: left;
  width: 100%;
}


.sectionmodulefooter .footerrow1 .footercolumn2 .addressdetails .fs-c3-Brother-1816-Medium {
  color: rgb(255, 255, 255);
  font-family: "Brother-1816-Medium", Helvetica, Arial, serif;
  font-size: 16px;
  line-height: 22px;
}

.sectionmodulefooter .footerrow1 .footercolumn2 .title {
  color: rgb(255, 255, 255);
  font-family: brother-1816, sans-serif;
    font-weight: 200;
  font-size: 28px;
  font-size-adjust: none;
  font-stretch: normal;
  font-style: normal;

  height: auto;
  line-height: 36px;
  margin-top: -1px;
  text-align: left;
  width: auto;
}

.sectionmodulefooter .footerrow1 .footercolumn2 .title,
.sectionmodulefooter .footerrow1 .footercolumn1 {
  background-color: rgba(255, 255, 255, 0);
  left: unset;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  position: relative;
  top: unset;
  transform: rotate(0deg);
}

.sectionmodulefooter .footerrow1 .footercolumn1 {
  height: auto;
  margin-top: 0;
  width: auto;
  max-width: 709px;
  margin-left: 155px;
  flex-shrink: 1;
}

.sectionmodulefooter .footerrow1 .footercolumn1 .companydescription {
  background-color: rgba(255, 255, 255, 0);
  color: rgb(255, 255, 255);
  font-family: brother-1816, sans-serif;
    font-weight: 800;
  font-size: 16px;
  font-size-adjust: none;
  font-stretch: normal;
  font-style: normal;
  
  
  height: auto;
  left: unset;
  line-height: 21px;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  margin-top: 25px;
  position: relative;
  text-align: left;
  top: unset;
  transform: rotate(0deg);
  width: 100%;
}

.sectionmodulefooter .footerrow1 .footercolumn1 .companydescription .fs-c2-Brother-1816-Book {
  color: rgb(255, 255, 255);
  font-family: brother-1816, sans-serif;
    font-weight: 300;
  font-size: 16px;
  line-height: 21px;
}

.sectionmodulefooter .footerrow1 .footercolumn1 .title {
  background-color: rgba(255, 255, 255, 0);
  color: rgb(255, 255, 255);
  font-family: brother-1816, sans-serif;
    font-weight: 200;
  font-size: 28px;
  font-size-adjust: none;
  font-stretch: normal;
  font-style: normal;

  height: auto;
  left: unset;
  line-height: 36px;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  position: relative;
  text-align: left;
  top: unset;
  transform: rotate(0deg);
  width: auto;
}


.sectionmodulefooter .footerrow1 .footercolumn1 .companydescription p,
.sectionmodulefooter .footerrow1 .footercolumn2 .addressdetails p {
  color: rgb(255, 255, 255);
  font-family: brother-1816, sans-serif;
  
  line-height: 21px;
  font-weight: 300;
    
  font-size: 16px;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  padding-bottom: 20px;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}
.sectionmodulefooter .footerrow1 .footercolumn2 .addressdetails p a,
.sectionmodulefooter .footerrow1 .footercolumn2 .addressdetails p a:link,
.sectionmodulefooter .footerrow1 .footercolumn2 .addressdetails p a:visited,
.sectionmodulefooter .footerrow1 .footercolumn2 .addressdetails p a:hover {
    color: rgb(255, 255, 255);
    font-family: brother-1816, sans-serif;
    font-weight: 300;
    font-size: 16px;
    text-decoration: none;
}
.sectionmodulefooter .footerrow1 .footercolumn2 .addressdetails p a.tel,
.sectionmodulefooter .footerrow1 .footercolumn2 .addressdetails p a.tel:link,
.sectionmodulefooter .footerrow1 .footercolumn2 .addressdetails p a.tel:visited,
.sectionmodulefooter .footerrow1 .footercolumn2 .addressdetails p a.tel:hover {
    font-size: 20px;
}
.sectionmodulefooter .footerrow1 .footercolumn2 .addressdetails p a:hover {
    text-decoration: underline;
}

.sectionmodulefooter .footerrow1 .footercolumn2 .addressdetails p {
  white-space: nowrap;
}
.sectionmodulefooter .footerrow1 .footercolumn2 .addressdetails p .extrabold,
.sectionmodulefooter .footerrow1 .footercolumn1 .companydescription p .extrabold {
    font-weight: 800;
}

.sectionmodulefooter .fix-collapse-margin.fc-2-1 {
  padding-top: 1px !important;
  position: relative;
}

.sectionmodulefooter .footerrow2 .footercolumn1 .fix-collapse-margin.fc-1-1 {
  padding-top: 1px !important;
  position: relative;
}

.sectionmodulefooter .fix-collapse-margin.fc-2-1 .footerrow1 .footercolumn2 .fix-collapse-margin.fc-3-1,
.sectionmodulefooter .fix-collapse-margin.fc-2-1 .footerrow1 .footercolumn1 .fix-collapse-margin.fc-4-1 {
  padding-top: 1px !important;
  position: relative;
}


@media screen and (max-width: 685px) {
  .sectionmodulefooter,
  .sectionmodulefooter .footerrow2 {
    height: auto;
  }

}

@media screen and (max-width: 1294px) {
    .sectionmodulefooter .footerrow1 {
        width:100%;  
        padding-left:20px;
        padding-right:20px;  
    }
    .sectionmodulefooter .footerrow2 {
        padding-left:20px;
        padding-right:20px;
    }
    .sectionmodulefooter .footerrow1 .footercolumn2 {
        width:auto;
    }
}

@media screen and (max-width: 991px) {
  .sectionmodulefooter {
    height: auto;
  }
  
  
  .sectionmodulefooter .footerrow2 .footercolumn2 .divider:nth-child(1) {
      display:none;
  }
  .sectionmodulefooter .footerrow2 .footercolumn2 .terms {
      margin-left:0;
  }

  .sectionmodulefooter .footerrow2 .item_container {
      flex-direction: column;
  }
  .sectionmodulefooter .footerrow2 {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;

  }

  .sectionmodulefooter .footerrow2 .footercolumn2 {
    height: auto;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    margin-top: 0px;

  }
  .sectionmodulefooter .footerrow1 {
      justify-content: center;
  }
  .sectionmodulefooter .footerrow1 .footercolumn2 .addressdetails {
      margin-left:0;
  }
  .sectionmodulefooter .footerrow2 .footercolumn1 {
    height: auto;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    margin-top: 0px;
    margin-bottom: 10px;
  }

  .sectionmodulefooter .footerrow1 .footergroup1 {
    width: 100%;
    height: auto;
    flex-direction: column;
    
    align-items: flex-start;
    margin-left: 50px;
    width: 600px;
    margin-right: 0;
  }

  .sectionmodulefooter .footerrow1 .footercolumn2 {
    height: auto;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    margin-top: 23px;
    width:auto;
  }

  .sectionmodulefooter .footerrow1 .footercolumn1 {
    height: auto;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    margin-top: 0px;
    
    width: auto;
  }
  

  .sectionmodulefooter .fix-collapse-margin.fc-2-1 {
    height: auto;
  }
}


@media screen and (max-width: 768px) {

    .sectionmodulefooter .footerrow1 .footercolumn1 .companydescription p,
    .sectionmodulefooter .footerrow1 .footercolumn2 .addressdetails p {
        font-size:14px;
    }

    .sectionmodulefooter .footerrow1 .footercolumn2 .addressdetails p a, 
    .sectionmodulefooter .footerrow1 .footercolumn2 .addressdetails p a:link, 
    .sectionmodulefooter .footerrow1 .footercolumn2 .addressdetails p a:visited, 
    .sectionmodulefooter .footerrow1 .footercolumn2 .addressdetails p a:hover {
        font-size:14px;
    }
    .sectionmodulefooter .footerrow1 .footercolumn2 .addressdetails p a.tel,
    .sectionmodulefooter .footerrow1 .footercolumn2 .addressdetails p a.tel:link,
    .sectionmodulefooter .footerrow1 .footercolumn2 .addressdetails p a.tel:visited,
    .sectionmodulefooter .footerrow1 .footercolumn2 .addressdetails p a.tel:hover {
        font-size:18px;
    }
    
    .sectionmodulefooter .footerrow1 .footercolumn1 .title,
    .sectionmodulefooter .footerrow1 .footercolumn2 .title {
        font-size:26px;
    } 
    
 
}

@media screen and (max-width: 600px) {
    .sectionmodulefooter .footerrow1 .footergroup1 {
        width:auto;
        margin-top: 20px;
    }
    .sectionmodulefooter .footerrow1 {
        flex-direction: column;
        justify-content: flex-start;
    }
    .sectionmodulefooter .footerrow1 .footerbrand {
        margin-left: 20px;
        width: 69px;
    }
    .sectionmodulefooter .footerrow1 .footergroup1 {
        margin-left:20px;
        margin-top: 40px;
    }
    
}

@media screen and (max-width: 358px) {
  .sectionmodulefooter,
  .sectionmodulefooter .footerrow1 {
    height: auto;
    min-height: auto;
  }

  .sectionmodulefooter .footerrow1 .footercolumn2 {
    width: 100%;
    height: auto;
  }

  .sectionmodulefooter .fix-collapse-margin.fc-2-1 {
    height: auto;
    min-height: auto;
  }
}

@media screen and (max-width: 600px) {
  .sectionmodulefooter,
  .sectionmodulefooter .footerrow1 {
    height: auto;
    min-height: auto;
  }

  .sectionmodulefooter .footerrow1 .footercolumn1 {
    width: 100%;
    height: auto;
  }

  .sectionmodulefooter .fix-collapse-margin.fc-2-1 {
    height: auto;
    min-height: auto;
  }
}

@media screen and (max-width: 640px) {
  .sectionmodulefooter .footerrow1 .footercolumn1 .title,
  .sectionmodulefooter .footerrow1 .footercolumn1 .companydescription p,
  .sectionmodulefooter .footerrow1 .footercolumn2 .title,
  .sectionmodulefooter .footerrow1 .footercolumn2 .addressdetails p {
    /*padding-left: 20px;*/
    padding-right: 20px;
  }
}

@media screen and (max-width: 620px) {
    .sectionmodulefooter .footerrow1 .footercolumn1,
    .sectionmodulefooter .footerrow1 .footercolumn2 {
        /*width:100%;*/
    }
}

/* END FOOTER*/



/************************************/
/***TEMP location for mobile***/


.mainmobilenavigation.navbox {
    
    position: fixed;
    
    opacity: 0.0;
    visibility: hidden;
    
    right: -100%;
    top: 0;
    
    padding-top: 100px; /*78px;*/
    
    margin: 0; /*17px 0 0*/;
    
    z-index: 999;
    
    height: 100vh;
    
    overflow: hidden;
    
    width: 265px;
    
    
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;

    
    background: rgba(108,101,97,0.97);
    box-shadow: 4px 4px 11px 0 rgba(0,0,0,0.10);
    
    
    /*background: rgba(202, 117, 69, 0.97);*/
    
    pointer-events:none;
    
    -webkit-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}
.mainmobilenavigation.navbox.headerisfixed {
    padding-top:103px;
}

.mainmobilenavigation.navbox.showfixed {
    
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
    right: 0;
  
    pointer-events:all;
}
/*if the device width is larger than our mobile menu layout of 868px, then keep hidden*/
@media screen and (min-width: 868px) {
    .mainmobilenavigation.navbox.showfixed {
        opacity: 0.0;
        visibility: hidden;
        right: -100%; 
        pointer-events: none;   
    }    
}
.mainmobilenavigation.navbox .innernavbox {
    position: relative;
    margin: 0;
    padding: 0;
    
    padding-bottom: 20px;
    
    width: 100%;
}



.mainmobilenavigation.navbox .innernavbox .menuitems {
    position: relative;
    
    height: auto;
}
.hasmainmenu.mainmobilenavigation .contactcontainer {
    position: relative;
    right: unset;
    bottom: unset;
    height: auto;
    top: unset;
    
    min-height: auto;
    margin-top: 0px;
    padding-bottom: 0px;
}
.hasmainmenu.mainmobilenavigation .contactcontainer .menucontactbox-dc9kjr {
    /*border-top: 1px solid #C8C7C7;*/
    padding-top: 21px;
    margin-top: 0;    
    margin-bottom: 25px;
}



.mainmobilenavigation .menuitems.mobilemenuitems .mainnavigation {
    display:flex;
    position:relative;
    
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    justify-content: flex-start;
    
    padding: 0;
    margin-top:0;
    margin-left:0;
    
    width:auto;
}
.mainmobilenavigation .menuitems.mobilemenuitems .menulistbox {
    position: relative;
    top: unset !important;
    justify-content: flex-start;
    
    left: unset;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    right: 0;
    
    background-color: rgba(0, 0, 0, 0);
    
    color: #fff;
    line-height: 22px;
    
    z-index: 3000;
    text-transform: capitalize;

    -webkit-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    
    overflow: hidden;
    opacity:0.0;
    height: 0;
    margin-top: 0;
 
    pointer-events:none;
}
.mainmobilenavigation.navbox.showfixed .menuitems.mobilemenuitems .menulistbox  {
   pointer-events:all; 
}

.mainmobilenavigation .menuitems.mobilemenuitems .mainnavigation .item.expand .menulistbox {
    opacity:1;
    margin-top:15px;   
}

.mainmobilenavigation .menuitems.mobilemenuitems .mainnavigation .item {
    margin-left: 0;
    margin-top: 17px;
    width: 100%;
    height: auto;
    position: relative;
    
    font-family: brother-1816, Helvetica, Arial, serif;
    font-style: normal;
    font-weight: 400;
    text-align: left;
    letter-spacing: 2px;
    color: #fff;
    
    cursor:pointer;
    
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
.mainmobilenavigation .menuitems.mobilemenuitems .mainnavigation .item:first-of-type {
    margin-top:0;
}
.mainmobilenavigation .menuitems.mobilemenuitems .mainnavigation .item:after,
.mainmobilenavigation .menuitems.mobilemenuitems .mainnavigation .item:before {
    position:absolute;
    content:'';
    top:9px;
   
    right: 20px;
    width: 10px;
    height: 6px;

    opacity:0;
    
    background-origin:padding-box;
    background-position:center;
    background-repeat:no-repeat;
    background-size:contain;
    
    
    -webkit-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    
}
.mainmobilenavigation .menuitems.mobilemenuitems .mainnavigation .item:after {
    opacity:1;
    background-image:url("../graphics/menu-arrow-down.svg");   
}
.mainmobilenavigation .menuitems.mobilemenuitems .mainnavigation .item.expand:after {
    opacity:0;
}
.mainmobilenavigation .menuitems.mobilemenuitems .mainnavigation .item:before {
    opacity:0;
    background-image:url("../graphics/menu-arrow-up.svg");   
}
.mainmobilenavigation .menuitems.mobilemenuitems .mainnavigation .item.expand:before {
    opacity:1;
}


.mainmobilenavigation .menuitems.mobilemenuitems .mainnavigation .item .linkitem,
.mainmobilenavigation .menuitems.mobilemenuitems .mainnavigation .item > a,
.mainmobilenavigation .menuitems.mobilemenuitems .mainnavigation .item > a:link,
.mainmobilenavigation .menuitems.mobilemenuitems .mainnavigation .item > a:visited,
.mainmobilenavigation .menuitems.mobilemenuitems .mainnavigation .item > a:hover {
    font-family: brother-1816, Helvetica, Arial, serif;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 2px;
    line-height: 16px;
    
    pointer-events:none;
    
    text-transform: uppercase;
}

.mainmobilenavigation .menuitems.mobilemenuitems .mainnavigation .item > a:hover {
    text-decoration: underline;
}

.mainmobilenavigation .menuitems.mobilemenuitems .menulistbox .titlebox .title {
    font-family: brother-1816, Helvetica, Arial, serif;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 16px;
    text-transform: uppercase;
}

.mainmobilenavigation .menuitems.mobilemenuitems .menulistbox .itemboxlist {
    position: relative;
    padding-top: 10px;
}

.mainmobilenavigation .menuitems.mobilemenuitems .menulistbox ul {
    width:100%;
    
    /*counter legacy CSS in the bridge styles*/
    margin: 0;
    font-size: inherit;
    line-height: inherit;
    padding: 0;
}
.mainmobilenavigation .menuitems.mobilemenuitems .menulistbox .subitemlist {
    padding-left: 10px;
    margin-top: 10px;
}
.mainmobilenavigation .menuitems.mobilemenuitems .menulistbox .subitemlist li {
    font-style: italic;
}

.mainmobilenavigation .menuitems.mobilemenuitems .menulistbox ul li {
    list-style: none;
    margin: 0 0 10px;
    padding: 0 0 0 13px;
    cursor:pointer;
    
    /*counter legacy CSS in the bridge styles*/
    background: none;
}

.mainmobilenavigation .menuitems.mobilemenuitems .menulistbox ul li,
.mainmobilenavigation .menuitems.mobilemenuitems .menulistbox ul li a,
.mainmobilenavigation .menuitems.mobilemenuitems .menulistbox ul li a:link,
.mainmobilenavigation .menuitems.mobilemenuitems .menulistbox ul li a:visited,
.mainmobilenavigation .menuitems.mobilemenuitems .menulistbox ul li a:hover {
    font-family: brother-1816, Helvetica, Arial, serif;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 16px;
    
    text-decoration: none;
}

.mainmobilenavigation .menuitems.mobilemenuitems .menulistbox ul li a:hover {
    text-decoration: underline;
}

.mainmobilenavigation .menuitems.mobilemenuitems .menulistbox ul li:hover > span.wrap {
    opacity:.5;
}

@media screen and (min-width: 800px) {
    /*.mainmobilenavigation.navbox.showfixed {
        opacity: 0.0;
        visibility: hidden;
        
        right: -100%;

        pointer-events:none;
    }*/   
}

@media (max-width: 640px) {
    .mainmobilenavigation.navbox.headerisfixed {
        padding-top:80px;
    }
}

@media screen and (max-width: 540px) {
   
    .hasmainmenu.mainmobilenavigation .contactcontainer .infobox-coZ3D0 .labelbox a, 
    .hasmainmenu.mainmobilenavigation .contactcontainer .infobox-coZ3D0 .labelbox a:link,
    .hasmainmenu.mainmobilenavigation .contactcontainer .infobox-coZ3D0 .labelbox a:visited,
    .hasmainmenu.mainmobilenavigation .contactcontainer .infobox-coZ3D0 .labelbox a:hover {
        text-transform: lowercase;    
    }
}


