@charset "utf-8";
/* CSS Document */

body {
  	line-height: 250%;
	font-family: 'Poppins', sans-serif;
	color:#333;
}
a {
	color:#000;
	text-decoration:none;
}
a:link {
	text-decoration:none;
}
a:hover {
	color:#ffbe00;
	text-decoration:none;
}

.ftr a:line {
	color:#FFF;
	text-decoration:none;
}
.ftr a:hover {
	color:#ffbe00;
	text-decoration:none;
}

.line-height {
	margin:1em 0 1em 0;
	line-height:3rem;
}

.font-pri {
	font-family: 'Raleway', sans-serif;
}

.bg-pri {
	background-color:#122b55;
}
.bg-sec {
	background-color:#ffbe00;
}
.bg-tri {
	background-color:#b60e11;
}

.text-pri {
	color:#122b55;
}
.text-sec {
	color:#ffbe00;
}
.text-tri {
	color:#b60e11;
}

.button {
	border-radius: 6px;
	background-color:#122b55;
	border: none;
	color: #FFF;
	font-size:1.6rem;
	text-align: center;
	padding:1.5rem;
	width:150px;
	transition: all 0.5s;
	cursor: pointer;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
	color:#ffbe00;
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
	color:#ffbe00;
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}


.button1 {
	border-radius: 6px;
	background-color:#ffbe00;
	border: none;
	color: #122b55;
	font-size:1.6rem;
	text-align: center;
	padding:1.5rem;
	width:200px;
	transition: all 0.5s;
	cursor: pointer;
	margin: 2em 0 0 0;
}

.button1 span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button1 span:after {
	color:#122b55;
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button1:hover span {
	color:#122b55;
  padding-right: 25px;
}

.button1:hover span:after {
  opacity: 1;
  right: 0;
}
