body {
    background-image: url('bannner.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    box-shadow: inset 0px 0px 0px 500px #00000061;
}
.header {
    background-color: #ffffffd9;
    text-align: center;
}
.header img {
    width: 200px;
    margin-top: 6px;
}
section.banner {
    height: 550px;
    display: flex;
    align-items: center;
	position:relative;
}
.banner-txt {
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}
.banner-txt h2 {
    font-size: 50px;
    color: #fff;
}
.banner-txt p {
    color: #fff;
    font-size: 22px;
}
.banner-txt:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 50%;
    height: 3px;
    background-color: #263a7d;
}
.col-md-3.banner-btn a {
    display: block;
    color: #fff;
    background-color: #263a7d;
    text-align: center;
    padding: 20px;
    border-radius: 4px;
    transition: 0.5s;
    position: relative;
    text-decoration: none;
    z-index: 1;
    font-size: 18px;
    overflow: hidden;
}
section.banner .row {
    align-items: center;
}
.col-md-3.banner-btn a span.hover {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}
.col-md-3.banner-btn a span {
    transition: 0.3s;
}
.col-md-3.banner-btn a:hover > span {
    opacity: 0;
}
.col-md-3.banner-btn a:hover > span.hover {
    opacity: 1;
}
.col-md-3.banner-btn a:after {
    position: absolute;
    right: -10px;
    width: 90%;
    height: 88%;
    border: solid 2px #263a7d;
    z-index: -1;
}
.col-md-3.banner-btn a:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    z-index: -1;
    transition: 0.3s;
    transform: scale(0,1);
    transform-origin: left;
}
.col-md-3.banner-btn a:hover:after {
    transform: scale(1,1);
}
.col-md-3.banner-btn a:hover {
    color: #263a7d;
}
.footer {
    background-color: #000c;
    /* padding: 30px 0px; */
}
.col-md-3.footer-box h4 {
    color: #fff;
    font-size: 20px;
}
.col-md-3.footer-box p {
    color: #ffffffd6;
    font-size: 14px;
    margin-bottom: 0px;
    margin-top: 20px;
}
.col-md-3.footer-box {
    border-right: solid #ffffff26 2px;
    padding: 40px 20px;
}
section.banner:after, section.banner:before {
    content: "";
    position: absolute;
    left: 31vw;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: #ffffff57;
}
section.banner:before {
    left: auto;
    right: 31vw;
}

@media (max-width:767px){
	section.banner:after, section.banner:before {
		display:none;
	}
	.banner-txt {
		padding: 40px 0px 50px;
	}
	.banner-txt:after {
		bottom: 40px;
	}
}