@charset "utf-8";
/* CSS Document */


a {
	text-decoration-line: none;
}
a:hover{
	text-decoration-line: none;
}

.font-oswald {
  font-family: "Oswald", sans-serif;
}
.font-crimson {
  font-family: "Crimson Text", serif;
}
.font-nunito {
  font-family: "Nunito", sans-serif;
}

.border-tck {
	border-left: 4px solid #084d9b;
}

.button {
  border-radius: 4px;
  background-color: #333;
  border: none;
  color: #FFF;
  text-align: center;
  padding: 10px;
  width: 150px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}
.button:hover {background-color: #c31111}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
}