@font-face {
    font-family: 'Barlow Semi Condensed';
    src: url(../fonts/BarlowSemiCondensed-Regular.woff2) format('woff2'), url(../fonts/BarlowSemiCondensed-Regular.woff) format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body{
    margin: 0;
    padding: 0;
    font-family: 'Barlow Semi Condensed';
    font-size: 16px;
    line-height: 24px;

}
.container{
    max-width: 96%;
    margin: 0 auto
}
h1{
    text-align: center
}
ul{
    margin: 0;
    padding: 0
}
ul li{
    list-style-type:none;
    margin-bottom: 10px
}
ul li ul{
    margin-left: 30px;
    margin-top: 10px
}
.page-bg{
    background-image: url(../img/banner-bg.png);
    min-height: 250px;
    background-size: cover
}
.page-bg h1{
    color: #fff;
    margin: 0;
    padding-top: 0px
}
.menu{
    display: inline-block;
    width: 300px;
    vertical-align: top;
    margin-top: 20px
}
.menu ul{
    padding-left: 20px
}
.menu ul li{
    position: relative
}
.menu ul li a{
    color: #000;
    text-decoration: none;
    font-size: 16px
}
.menu ul li a.active{
    font-weight: 600
}
.menu ul li a.active:before{
    content: "";
    display: block;
    position: absolute;
    background: #520769;
    width: 3px;
    height: 25px;
    left: -15px;
    top: 0px;
}
.page-text{
    display: inline-block;
    width: calc(100% - 310px);
    vertical-align: top
}
table{
    width: 100%
}
table thead{
    background-color: #ddd
}
table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
    padding: 5px
}
ul.disc-point{
    margin-left: 20px
}
ul.disc-point li{
    list-style-type: disc
}
.header{
    display: flex;
    justify-content: space-between
}
.heade-menu ul li{
    padding-top: 30px;
    margin-bottom: 0
}
.heade-menu ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    letter-spacing: 1px
}
.footer{
    background-image: url(../img/footer_banner.png);
    height: 250px;
    background-size: cover;
    margin-top: 75px
}
.footer .container{
    height: 100%
}
.footer-text{
    height: 100%;
    width: 100%;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: end;
    justify-content: center;
}
#menu.fixed{
    position: fixed;
    top: 50px
}
@media screen and (max-width:767px){
    .menu{
        width: 100%       
    }
    .page-text{
        width: 100%;
    }
    .page-bg h1{
        padding-top: 20px
    }
    .footer {
        height: 150px
    }
    #menu.fixed{
    position: relative;
    top: 0
}
}