/*
---------------------------------------------
header
---------------------------------------------
*/

.header-area {
    /*background-color: #e6e6e6;*/
    background-color: white;
    /*border-bottom: 1px solid rgba(42,42,42,0.2);*/
    position: fixed;
    left: 0;
    right: 0;
    z-index: 100;
    height: 150px;
    -webkit-transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
}

.sticky {
    height: 80px;
    box-shadow: 0 5px 8px rgba(0,0,0,0.03);

}

.sticky .logo img {
    transform: scale(0.53333);
}

.sticky .main-nav {
    height: 80px!important;
}

.modal-open {
    overflow: initial;
}

.header-area .main-nav {
    margin: 0 7rem;
    height: 150px;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
}

@media only screen and (max-width: 1480px) {
    .header-area .main-nav {
        margin: 0 1rem;
    }
}


.logo img {
    background: transparent;
    height: 150px;
    -webkit-transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
}

.nav {
    justify-content: right;
}

.header-area .main-nav .nav li {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
}




.header-area .main-nav .nav li a {
    display: block;
    font-weight: 500;
    font-size: 1rem;
    color: #2a2a2a;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    height: 40px;
    line-height: 40px;
    letter-spacing: 1px;
    border: 0 solid transparent;
    border-bottom-width: 2px;


}

#mailButton {
    cursor: pointer;
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
    color: #2b569d !important;
    border-bottom-color: #2b569d;
}

/*
---------------------------------------------
PopUp
---------------------------------------------
*/

#leanOverlay {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000;
    display: none;
}




.popupContainer {
    display: none;
    /*visibility: hidden;*/
    position: fixed;
    opacity: 1;
    z-index: 11000;
    left: 50%;
    margin-left: -265px;
    top: 200px;
    background: #FFF;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
}


.popupHeader {
    font-size: 16px;
    text-transform: uppercase;
    background: #F4F4F2;
    position: relative;
    padding: 10px 20px;
    border-bottom: 1px solid #DDD;
    font-weight: bold;
}

.popupHeader .modalClose {
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px 18px;
    background: #2b569d;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.popupHeader .modalClose i {
    padding: 0;
}

.popupBody {
    padding: 2rem;
}

div.popupBody ul li {
    display: inline-block;
    float: left;
    width: 50%;
    text-align: center;
    padding-bottom: 1rem;
}

div.popupBody ul li a {
    display: inline-block;
    border-bottom: 10px solid #f3f3f3;
    margin: 0 8px;
    text-align: center;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

div.popupBody ul li a:hover {
    border-bottom: 10px solid #2b569d;
}
