html{
	scroll-behavior: smooth;

}


body {
	background-color: #00253F;
	margin: 0 auto;
	padding: 0 auto;
	position: relative;

}



.button_link {
	border: 1px solid;
	border-radius: 4px;
	border-color: #51CAFF;
	padding: 10px 20px 10px 20px !important;
	color: #51CAFF;
	font-family: "Arial Rounded MT Bold";
	background:  black;
	letter-spacing: 1px;
	font-size: 20px;
	text-decoration: none;

	box-shadow:  inset 0 0 0 0 #51CAFF;
	transition: ease-out .5s;
}

.button_link:hover {
	color: #51CAFF;
}


.horizontal_line {display:  none;}

@media all and (max-width: 768px) {
	.vertical_line { display: none; }
	.horizontal_line { display: block; }
	.button_link {
		font-size: 15px !important;
	}
}


.text_link {
	color: #51CAFF;
	font-weight: bold;
	text-decoration: none;
	position:  relative;
}

.text_link:hover {
	color: #51CAFF;
}

.text_link::before {
	content:  "";
	position: absolute;
	display: block;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	background-color: white;
	transform: scaleX(0);
	transition: 0.5s ease;
	transform-origin: top left;
}

.text_link:hover::before {
	transform: scaleX(1);
}

