body {

}
h1,h2,h3,h4 {
    font-weight: 300;
}
.header,.footer {
    background: #29528f;
    color:#fff;
    font-size: 80%;
}
.header a, .footer a {
    color: #ffc107;
    text-decoration: none;
    transition: .5s;
}
.header a:hover,
.footer a:hover {
    color: #fff;
}
.navbar {
    background: #234270;
    min-height: 70px;
}
.nav-link {
    color: #fff;
    transition: .5s;
    text-transform: uppercase;
}
.nav-link:hover {
    color: #f3d184;
}
.form-control,.btn {
    border-radius:0;
    border: none;
}
.sidebar {
    margin-top: 15px;
}
.sidebar ul {
    display: flex;
    padding: 0;
    flex-direction: column;
    list-style: none;
}
.sidebar ul li {
    display: flex;
}
.sidebar ul li a {
    position: relative;
    display: block;
    text-decoration: none;
    padding: 10px 15px;
    background: #fbfcff;
    width: 100%;
    color:#444;
    margin-bottom: 3px;
    transition: .5s;
}
.sidebar ul li a::before,
.sidebar ul li a::after {
    content: '';
    position: absolute;
    background: #c3d5e1;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 0;
    transition: .5s;
}
.sidebar ul li a::after {
    background: #6d88b1;
    z-index: 1;
    width: 0;
}
.sidebar ul li a:hover::after {
    width: 100%;
}
.sidebar ul li a:hover {
    color: #6d88b1;
}
.slide_item {
    position: relative;
    width: 100%;
    min-height: 420px;
    background-repeat: no-repeat;
    background-size: cover!important;
    background-position: 50%;
}
.slide_caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: rgba(0,0,0,.7);
    color:#fff;
    padding: 10px;
    font-weight: 200;
    font-size: 14px;
}
.slide_caption h3 {
    color: #f3d181;
    font-size: 1.4rem;
    font-weight: 200;
}
.content {
    min-height: 500px;
}
.separ {
    position: relative;
    width: 100%;
    height: 10px;
}
.separ span {
    content: '';
    position: absolute;
    height: 1px;
    width: 30%;
    left: 35%;
    top: 0;
    background: #6d88b1;
}
.separ:before {
    content: '';
    position: absolute;
    height: 1px;
    width: 20%;
    left: 40%;
    top: 3px;
    background: #6d88b1;
}
.separ:after {
    content: '';
    position: absolute;
    height: 1px;
    width: 10%;
    left: 45%;
    top: 6px;
    background: #6d88b1;
}
.modal, .modal-header, .modal-content {
    border-radius: 0;
}
.modal .form-control {
    border: 1px solid #bdcadd;
    background: aliceblue;
}
@media screen and (max-width: 960px) {
    .slide_caption {
        width: 100%;
        height: 100%;
    }
}