@charset "UTF-8";

/*
SUBNAV
*/

.sub-nav-wrapper {
    min-height: 112px;
}

.sub-nav {
    background: #00a5e3;
    height: 100px;
    text-align: center;
    display: none;
}

.sub-nav .col-lg-12 {
    padding: 0;
}
/*adjust*/
@media (min-width: 991px){
    
    .sub-nav {
        display: block;
    }
}

.sub-nav-overflow {
    /*overflow: hidden;*/
    position: relative;
    width: 100%;
}

#content .sub-nav ul{
    display: inline-block;
    /*float: left;*/
    height: 100px;
    left: 0;
    line-height: 18px;
    list-style: none;
    margin: auto;
    padding: 0;
    position: relative;
    top: 0;
}

.sub-nav ul li{
    display: inline-block;
    padding: 35px 50px 41px;
    text-align: left;
    vertical-align: middle;
    width: auto;
}

.sub-nav ul li:first-child{
    padding-left: 0px;
}

.sub-nav ul li:last-child{
    padding-right: 0px;
}
@media (min-width: 992px){
    .sub-nav ul li{
        
        padding: 35px 50px 41px;
        
    }
}

.sub-nav ul a {
    color: #fff;
    display: inline-block;
    font-family: 'Gotham HTF';
    font-size: 16px;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    width: 115px;
}

.page-template-template-products .sub-nav ul a,
.page-template-template-product-landing .sub-nav ul a{
    width: 150px;
}

.sub-nav ul li a:before{
    background-color: #fff;
    bottom: -8px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
   -webkit-transform: scaleX(0);
    transform: scaleX(0);    
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    transform-origin: 2px;
    visibility:hidden;
    width: 100%;
}

.sub-nav ul li a:hover {
    text-decoration: none;    
}

.sub-nav ul li a:hover:before,
.sub-nav ul .current-menu-item  a:before, 
.sub-nav ul .current-menu-item a:focus:before, 
.sub-nav ul .current-menu-item a:hover:before {
    background: #fff;
    text-decoration: none;
    transform: scaleX(0.3333);
    visibility: hidden;
}

.sub-nav ul li a:hover::before, 
.sub-nav ul .current-menu-item a::before, 
.sub-nav ul .current-menu-item a:focus::before, 
.sub-nav ul .current-menu-item a:hover::before {
    text-decoration: none;
    visibility: visible;
}

.controls {
    color: #fff;
    cursor: pointer;
    line-height: 18px;
    position: absolute;
}

.control-left {
    top: 40px;
    left: 0;
    z-index: 3000;
}

.control-right {
    top: 40px;
    right: 0;
    z-index: 3001;
}

