@charset "utf-8";
/* CSS Document */

body {
  line-height: 250%;
	font-family: "Roboto", sans-serif;
	color: #333333;
}
a.visied {
	color: #333;
}

.font-pri {
	font-family: "Raleway", sans-serif;
}


.bg-pri {
	background-color:#960f18;
}
.bg-sec {
	background-color:#081d3d;
}
.bg-tri {
	background-color:#414856;
}

.text-pri {
	color:#960f18;
}
.text-sec {
	color:#081d3d;
}
.text-tri {
	color:#414856;
}

.btn-pri {
	background-color:#960f18;
}

.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;
}
.button {
	border-radius: 4px;
	background-color:#960f18;
	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;
}


.button1 {
	border: none;
	color: #960f18;
	text-align: center;
	padding:1rem 1rem 1rem 0;
	width:150px;
	transition: all 0.5s;
	cursor: pointer;
}

.button1 span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button1 span:after {
	color:#960f18;
  content: '\2192';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button1:hover span {
	color:#960f18;
  padding-right: 25px;
}

.button1:hover span:after {
  opacity: 1;
  right: 0;
}
