﻿html {
  position: relative;
  min-height: 100%;
}

body {
    font-family: Avenir, Helvetica, Arial, sans-serif;
    font-size: 14px;
}

.page-title {
    position: relative;
    text-align: center;
    font-size: 24px;
    /*font-weight: 600;*/
    margin-bottom: 10px;
}

/*    .page-title:before {
        width: 136px;
        height: 1px;
        top: 61px;
        left: calc(50% - 68px);
        border-left: solid 50px #dadada;
        border-right: solid 50px #dadada;
        content: "";
        position: absolute;
    }

    .page-title:after {
        width: 26px;
        height: 26px;
        left: calc(50% - 13px);
        top: 50px;
        background: #ff8724 none repeat scroll 0 0 padding-box content-box;
        border-bottom: solid 1px #dadada;
        border-left: solid 1px #dadada;
        content: "";
        padding: 0 0 5px 5px;
        position: absolute;
        transform: rotate(-45deg);
    }
*/
.page-sub-title {
    text-align: center;
    color: gray;
    font-size: 12px;
}

.navbar {
    transition: all .9s;
}

    .navbar .navbar-brand {
        background-image: url(/images/logo-black.png);
        background-repeat: no-repeat;
        width: 150px;
        height: 100px;
        background-size: auto 80px;
        background-position: center center;
        display: inline-block;
        transition: all .6s;
    }

    .navbar .company-name {
        font-size: 14px;
    }
    .navbar .navbar-nav .nav-item {
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 15px;
        padding-right: 15px;
        transition: all .3s;
        border-bottom: solid 2px transparent;
    }
.navbar .navbar-nav .nav-item:last-child{
    margin-right:0;
}
.navbar .navbar-nav .nav-item:hover {
    border-bottom: solid 2px #666;
}
.navbar .navbar-nav .nav-item.selected{
    border-bottom:solid 2px #666;
}
.navbar .navbar-nav .nav-item .nav-link {
    /*text-shadow: 1px 1px 1px #333;*/
    transition:all .6s;
     color: #333;
}
.navbar .navbar-toggler {
    background-color: #fff;
}

.navbar .navbar-nav .nav-item.have-child{
    position:relative;
}
.navbar .navbar-nav .nav-item.have-child .child-menu{
    display:none;
    height:0px;
    overflow:hidden;
    position:absolute;
    width: 180px;
    background: #333;
    left:0px;
    top:52px;
}

    .navbar .navbar-nav .nav-item.have-child .child-menu a {
        color: #fff;
        font-size: 12px;
        text-decoration: none;
        display: block;
        padding: 8px 15px 8px 15px;
    }
    .navbar .navbar-nav .nav-item.have-child .child-menu a:hover {
        background-color: #666;
    }

    .navbar.white {
        box-shadow: 0 0 5px 4px rgba(0,0,0,.05);
        /*background-color: rgba(0,0,0,0.7);*/
        background-color: rgba(255,255,255,1);
        box-shadow: 0 0 5px 6px rgba(0,0,0,0.05);
    }
    .navbar.white .navbar-brand {
        background-image: url(/images/logo-black.png);
    }
    .navbar.white .navbar-nav .nav-item:hover {
        border-bottom: solid 2px #333;
    }
    .navbar.white .navbar-nav .nav-item.selected {
        border-bottom: solid 2px #333;
    }
    .navbar.white .navbar-nav .nav-item .nav-link {
        text-shadow: 1px 1px 1px #fff;
        color: #333;
    }

main{
    min-height:800px;
}


footer {
    background: #343434;
}
.foot-container {
    width: 100%;
    box-sizing: border-box;
    display: -ms-flexbox;
    display: flex;
    padding-top:4%;
    padding-bottom:4%;
}
.foot-container h2{
    font-size:13px;
    color:#fff;
}
.foot-container ul{
    margin:0;
    padding:0;
    list-style:none;
}
    .foot-container ul li a{
        display:block;
        color: #969595;
        font-size:12px;
        text-decoration:none;
    }

.foot-container .foot-left {
    margin-right: 5%;
    position: relative;
    padding-bottom: 0.533333rem;
}
    .foot-container .foot-middle {
        margin-left: 5%;
        position: relative;
        text-align: left;
    }
        .foot-container .foot-middle:before {
            position: absolute;
            content: "";
            height: 100%;
            width: 1px;
            background-color: #3f3f3f;
            left:-30px;
        }

    .foot-bottom {
        background: #2f2f2f;
        padding: 15px 0;
        box-sizing: border-box;
        width: 100%;
        color: #969595;
        font-size: 12px;
        display: flex;
        justify-content: space-around;
        text-align:center;
    }
        .foot-bottom a {
            text-decoration: none;
            color: #969595;
        }



@media screen and (max-width:1000px) {
    .navbar-brand {
        width: 100px !important;
        height: 75px !important;
        background-size: auto 60px !important;
    }
    .foot-container {
        padding-top: 30px;
        flex-wrap: wrap;
    }
        .foot-container .foot-left {
            padding-left:3%;
            width: 30%;
            margin-right:0!important;
        }
    .foot-container .foot-middle{
        margin-top:20px;
    }
}