
/* for border with underline */
.border {
    border-top: 1px solid #fff;
    height: 1px;
    margin:auto;
    position: relative;
    width: 35%;
}

.border:before {
    background-color: #fff;
    border: 1px ridge #fff;
    content: "";
    height: 10px;
    left: 50%;
    margin-left: -20px;
    position: absolute;
    top: -5px;
    width: 40px;
}
.border-red {
    border-top: 1px solid red;
    height: 1px;
    margin:auto;
    position: relative;
    width: 35%;
}

/*
.border-red:before {
    background-color: red;
    border: 1px ridge red;
    content: "";
    height: 10px;
    left: 50%;
    margin-left: -20px;
    position: absolute;
    top: -5px;
    width: 40px;
}
*/
/*border code end*/


/*for scroll*/
.scroll_To_Top{
		width:50px;
		height:50px; 
	   color:#21316D;
		text-decoration: none;
		position:fixed;
		padding:10px; 
		text-align:center; 
		background:rgba(255,255,255,0.5);
		font-weight: bold;
		bottom:50px;
		right:25px;
		display:none;
/*        border:1px solid red;*/
/*        border-radius: 50%;*/
        transition:all 0.5s ease;
    z-index: 1
            
	}
		
.scroll_To_Top:hover{
		text-decoration:none;
		color:#fff;
        background: #3c4767;
        border:1px solid #ccc;
	}
.floating-logo{display: none;position: fixed;width: 100%}
.borderccc{border:1px solid #ccc}
.mar-auto{margin: auto}
.white{color:#fff}
.bold{font-weight: bolder}
.d-block{display: block}