@charset "UTF-8";

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 1rem 5%;
    padding: 10px 20px;
}

.navbar-toggler {
    padding: 0;
    line-height: 2;
    z-index: 999999;
    font-weight: 100;
}

.navbar-toggler span {
    float: left;
    display: block;
    width: 37px;
    height: 1px;
    background: #231f20;
    margin: 20px 10px 0 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.navbar-toggler span:before {
    position: absolute;
    content: "";
    display: block;
    width: 37px;
    height: 1px;
    background: #231f20;
    top: -6px;
    left: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.navbar-toggler span:after {
    position: absolute;
    content: "";
    display: block;
    width: 37px;
    height: 1px;
    background: #231f20;
    bottom: -6px;
    left: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

/*--------------- */
.navbar-collapse {
    background-color: #eee;
    z-index: 100;
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
}

.navbar-collapse.show {
    top: 0;
}

.collapsing {
    opacity: 0;
    background-color: #fff;
    height: 0 !important;
}

.collapsing:before {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: red;
}

.navbar-collapse .navbar-content {
    padding: 0 10%;
    background-color: #eee;
    border: none;

}



/*------li.nav-item .nav-link------*/
ul.navbar-nav {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: row;
    margin-bottom: 3rem;
}

ul.navbar-nav li.nav-item {
    display: inline-block;
    font-size: 20px;
    width: calc(100%/3);
    padding: 10px;
}


li.nav-item .nav-link {
    display: block;
    position: relative;
    padding: 20px 20px 70px 20px;
    color: #333;
    border: 2px solid #333;
}

li.nav-item .nav-link:hover {
    display: block;
    position: relative;
    padding: 20px 20px 70px 20px;
    color: #333;
    border: 2px solid #c69c6d;
}

li.nav-item .nav-link:before {
    content: "";
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
    height: 1px;
    background: #333;
}

li.nav-item .nav-link:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border: 5px solid #c69c6d;
    opacity: 0;
    transition: all 0.3s ease;
}

li.nav-item .nav-link:hover:after {
    opacity: 1;
    transition: all 0.3s ease;
}

li.nav-item .nav-link strong {
    font-size: 18px;
    margin-bottom: 5px;
    letter-spacing: 2px;
    margin-right: -2px;
    font-weight: normal;
    white-space: nowrap;
    text-transform: uppercase;
}

li.nav-item .nav-link em {
    margin-top: 5px;
    display: block;
    font-size: 14px;
    color: #333;
    padding: 0;
}



/*--------infoBox--------*/
.navbar .infoBox {
    margin: 0;
    padding: 10px;
}

.navbar .infoBox .top,
.navbar .infoBox .bottom {
    width: 100%;
}

.navbar .infoBox .top {
    margin: 0;
    margin-bottom: 2rem;
}

.navbar .infoBox .top:before {
    content: '';
    position: absolute;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #999;
    width: 100%;
    bottom: -10px;
}

/*SocialBox*/
.navbar .Social {
    text-align: right;
}

.navbar .Social a {
    width: 30%;
    max-width: 40px;
    padding-right: 10px;
    display: inline-block;
}

.navbar .copyright {
    text-align: right;
    font-size: 10px;
}

@media(max-width: 1200px) {
    .navbar {
        background-color: #fff;
    }


    .navbar .brand.d-none {
        display: block !important;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    ul.navbar-nav {
        flex-wrap: wrap;
        margin-bottom: 1rem;
    }
}

@media(max-width: 480px) {
    .navbar-toggler{
        
        text-indent: -9999px;
    }
    ul.navbar-nav li.nav-item {
        width: calc(100%/2);
    }
    .navbar-collapse .navbar-content{
        padding: 0 3%;
    }

    .navbar .infoBox {
        display: none;
    }
    .navbar .copyright{
        text-align: center;
    }
}