@charset "utf-8";
/* CSS Document */

body {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

a:link {
	color:#000;
	text-decoration:none;
}
a:hover {
	color:#f4be1e;
	text-decoration:none;
}

.font-pri {
  font-family: "Open Sans", sans-serif;
}

.bg-pri {
	background-color: #000a3c;
}
.bg-sec {
	background-color: #f4be1e;
}

.text-pri {
	color: #000a3c;
}
.text-sec {
	color: #f4be1e;
}
.btn-pri {
	background-color: #f4be1e;
}


header a {
	color: #FFFFFF;
	text-decoration: none;
}
header a:link {
	color: #FFFFFF;
	text-decoration: none;
}
header a:hover {
	color: #f4be1e;
	text-decoration: none;
}
header a:vistied {
	color: #FFFFFF;
	text-decoration: none;
}

footer a {
	color: #FFFFFF;
	text-decoration: none;
}
footer a:link {
	color: #FFFFFF;
	text-decoration: none;
}
footer a:hover {
	color: #f4be1e;
	text-decoration: none;
}
footer a:vistied {
	color: #FFFFFF;
	text-decoration: none;
}

.button {
	border-radius: 4px;
	background-color:#000a3c;
	border: none;
	color: #FFF;
	text-align: center;
	padding:1rem 1rem 1rem 2rem;
	width:150px;
	transition: all 0.5s;
	cursor: pointer;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
	color:#FFF;
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
	color:#FFF;
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}
.bdr {
	border-left: 3px solid #f4be1e;
	padding-left: .5em;
}


.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:20px;
	Left:20px;
	z-index:9999;
}
#btn-back-to-top {
position: fixed;
bottom: 20px;
right: 20px;
display: none;
}
/* remove the below if you don't want smooth scrolling */
html,
body {
  scroll-behavior: smooth;
}