@charset "utf-8";
/* CSS Document */

body {
	font-family: "Montserrat", sans-serif;
}
a:link {
	color: #000;
}
a:visited {
	color: #004051;
}
a:hover {
	color: #FAD35E;
	text-decoration: none;
}


.bg-pri {
	background-color: #004051;
}
.bg-sec {
	background-color: #FAD35E;
}
.bg-tri {
	background-color: #542006;
}
.text-pri {
	color: #004051;
}
.text-sec {
	color: #FAD35E;
}
.text-tri {
	color: #542006;
}

.font-parisienne {
	font-family: "Parisienne", cursive;
}

footer {
	font-size: 90%;
}
footer a:active {
	color: #FFF;
}
footer a:link {
	color: #FFF;
}
footer a:visited {
	color: #FFF;
}
footer a:hover {
	color: #FAD35E;
	text-decoration: none;
}

.button {
	display: block;
	background-color:#004051;
	border: none;
	text-align: center;
	padding:1rem 1rem 1rem 2rem;
	width:170px;
	margin: 1em 0;
	transition: all 0.5s;
	cursor: pointer;
}
.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.button span:after {
	color:#FAD35E;
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}
.button:hover span {
	color:#FAD35E;
  padding-right: 25px;
}
.button:hover span:after {
  opacity: 1;
  right: 0;
}



.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:20px;
	Left:20px;
	z-index:9999;
}

.btn-pri {
	background-color:#FAD35E;
}
#btn-back-to-top {
position: fixed;
bottom: 20px;
right: 20px;
display: none;
}