/* footer */
footer {
    padding: 20px 0;
}

.footer-logo {
    width: 150px;
    margin: 0 auto;
}

/* header */
header {
    width: 100%;
    height: auto;
    position: fixed;
    z-index: 20;
    top: 0;
}

header .bd-md {
    height: 100%
}

header .header {
    background-color: #003586;
    text-align: center;
    height: 60px;
    position: relative;
}

header a.home {
    position: absolute;
    display: block;
    left: 16px;
    top: 50%;
    margin-top: -15px;
    width: 30px;
    height: 30px;
    background: url(../img/common/home.png)no-repeat;
    background-size: cover;
    background-position: center;
}

header p {
    color: #fff;
    line-height: 60px;
    font-size: 1.3rem;
}

header .burger {
    width: 32px;
    height: 32px;
    right: 16px;
    position: absolute;
    top: 50%;
    margin-top: -16px;
    cursor: pointer;
}

header .burger .bar {
    width: 100%;
    height: 3px;
    border-radius: 10px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

header .burger .bar::before,
header .burger .bar::after {
    border-radius: 10px;
    width: 100%;
    height: 3px;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

header .burger .bar::before {
    position: absolute;
    content: "";
    bottom: 10px;
    left: 0;
}

header .burger .bar::after {
    position: absolute;
    content: "";
    top: 10px;
    left: 0;
}

header .burger.show .bar {
    background-color: #003586
}

header .burger.show .bar::before {
    transform: rotate(-45deg);
    bottom: 0;
}

header .burger.show .bar::after {
    transform: rotate(45deg);
    top: 0;
}


/* menu */
.menu.active {
    visibility: visible;
    opacity: 1;
}

.menu {
    background-color: #168dc0;
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 100;
    left: 0;
    top: 60px;
    transition: all .2s;
    opacity: 0;
    visibility: hidden;
}

.menu .search-con {
    background-color: #168dc0;
}

.menu-list li {
    margin-top: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(250, 250, 250, 0.2);
    border-top: 1px solid rgba(250, 250, 250, 0.2);
}

/* .menu-list li + li{margin-top: 10px; margin-bottom:10px; border-bottom:1px solid rgba(250,250,250,0.2); border-top:1px solid rgba(250,250,250,0.2);} */
.menu-list li a {
    color: #fff;
    font-size: 1.2rem;
    display: block;
    padding: 10px;
}

.menu-list li a:hover {
    background-color: #1786b6;
}

.flex {
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}