/* Additional CSS */
body.open{
    overflow: hidden;
}
#menu{
    display: flex;
    align-items: center;
    transition: all 0.5s ease-in-out;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 9999;
    min-width: 350px;
    transform:translateX(-350px);
    background-color:#363636;
    opacity:0;
}
#menu.open{
    transform:translateX(0px);
    opacity:1;
}
.slim-grey-banner-full{
    position:relative;
    z-index:10000;
}
#menuOverlay{
    transition:all 0.5s ease-in-out;
    position:fixed;
    top:0;
    left:0;
    z-index:9998;
    height:100vh;
    width:100vw;
    transform:translateY(-100vh);
    background-color:rgba(0,0,0,0.50);
    cursor: pointer;
}
#menuOverlay:after{
    font-family: "Font Awesome 5 Free";
    content: "\f057";
    color: #F1F1F1;
    font-size: 32px;
    position: absolute;
    right: 60px;
    top: 180px;
}
#menuOverlay.open{
    transform:translateY(0px);
}
.menu{
    width:100%;
}
.menu li{
    position:relative;
    list-style: none;
}
.menu li a{
    font-size:22px;
    color:#F1F1F1;
    padding-right:30px;
}
.sub-menu-wrap {
    position: fixed;
    background-color: #f9f9f9;
    min-width: 350px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    list-style: none;
    padding: 0;
    transform:translateX(340px) translateY(200vh);
    height:100vh;
    top:0;
    left:0;
    transition:all 0.5s ease-in-out;
    z-index:99;
    display:flex;
    align-items: center;
    opacity:0;
}
.sub-menu ul, .children ul {
    display: block;
    box-shadow: 8px 8px 16px 0px rgba(0,0,0,0.2);
    left: 100%;
    top: 0;
}
.sub-menu > li {
    position: relative;
}
.sub-menu > li > a {
    color: black;
    padding: 10px 30px 10px 30px;
    text-decoration: none;
    display: block;
    width: 160px;
}
.sub-menu-wrap > li > a:hover {
    background-color: #f1f1f1;
}
.menu-item-has-children:hover > .sub-menu-wrap {
    transform:translateY(0vh) translateX(340px);
    opacity:1;
}
.menu-item-has-children:hover > a{
    text-decoration:underline;
    cursor:pointer;
}
.menu-item-has-children > .sub-menu-wrap .sub-menu-wrap{
    background-color:#FFF;
}
#menuClose{
    display:none;
    color: #c7b4b4;
    font-size:20px;
    text-align: right;
    margin-right: 20px;
}
.subMenuBack{
    display:none;
}
.testimonials-slider .slick-dots{
    left:0px;
}
.pageHeaderSection{
    min-height: 620px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position:relative;
}
.pageHeaderOverlay{
    position:absolute;
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    left: -15vw;
}


@media screen and (max-width: 998px) {
    .pageHeaderOverlay{
        left: 0;
    }
}

.pageTitleH1{
    background-color: rgba(0,0,0,0.5);
    padding: 10px 25px;
    color: #FFF!important;
    font-weight: bold;
    text-shadow: 4px 1px 7px rgba(0,0,0,0.45);
}
.customPopUp{
    background-color:#00000000;
    display:flex;
    position:fixed;
    z-index:9999;
    top:0;
    left:0;
    width:100%;
    height:100%;
    -webkit-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.17); 
    box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.17);
    transition:all 0.5s ease-in-out;
    transform: translateY(-100vh);
}
.customPopUp.open{
    background-color:#00000075;
    transform: translateY(0);
}
.customPopUp .centerPopUp{
    display:flex;
    justify-content: center;
    align-items:center;
    width:100%;
    height:100%;
    transition:all 1s ease-in-out;
    transform: translateY(-100vh);
}
.customPopUp.open .centerPopUp{
    transform: translateY(0);
}
.sizePopUpSmall {
    width: 100%;
    margin: auto;
    max-width: 800px;
    max-height: 550px;
    overflow: auto;
}
.customPopUpHeader {
    text-align: right;
}
.closePopUp, .closePopUp:hover, .closePopUp:active, .closePopUp:focus {
    border: 0px;
    background: transparent;
    font-size: 32px;
    color: #1F2034;
}
.storePopUp {
    background-color: #FFF;
    padding: 20px;
}
.modalLink{
    cursor: pointer;
}
@media only screen and (max-width: 768px) {
    #menuOverlay:after{
        content:"";
    }
    .sub-menu ul, .children ul{
        left:0;
    }
    #menuClose {
      display:block;
    }
    .subMenuBack.open{
        display:block;
    }
    #menu{
        width:100vw;
        height:100vh;
        transform:translateX(-100vw);
    }
    .subMenuBack{
        margin-bottom:20px;
        position:absolute!important;
        bottom:60px;
        left:30px;
        z-index:99999;
        width:100%;
        padding:20px 10px;
    }
    .sub-menu-wrap{
        transform:translateX(0px) translateY(200vh);
        width:100vw;
    }
    .menu-item-has-children:hover > .sub-menu-wrap {
        transform:translateY(0vh) translateX(0px);
        opacity:1;
    }
}