/* Variables */
* {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Hero", Arial, sans-serif;
  font-size: 1.6rem;
}

/*TEXTS*/
h1 {
  font-size: 3.2rem;
  color: #fff;
}

h2 {
  font-size: 2.8rem;
  color: #575a5b;
}

h3 {
  font-size: 2.2rem;
  color: #444;
}

h4 {
  font-size: 2rem;
  color: #000;
}

h5 {
  font-size: 1.8rem;
  color: #222;
}

p {
  margin: 0 0 15px;
  font-size: 1.6rem;
  color: #393d40;
}

a {
  font-size: 1.6rem;
  color: #398edb;
  text-decoration: none;
  transition: all 0.5s linear;
}

/*LISTS*/
ul, ol {
  list-style: none;
}

ul {
  margin: 0;
  padding: 0;
}

/*BUTTONS*/
button, input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  cursor: pointer;
  border: none;
}

.btn {
  display: inline-block;
  padding: 10px 30px;
  margin: 10px 6px;
  border-radius: 6px;
  font-size: 1.8rem;
  color: #fff;
  transition: all 0.3s linear;
}
@media screen and (min-width: 992px) {
  .btn {
    padding: 15px 45px;
    margin: 18px 6px 10px;
  }
}
.btn:hover {
  -ms-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.7);
  -o-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.7);
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.7);
  transition: all 0.3s linear;
}
.btn.btn-primary {
  background-color: #398edb;
}
.btn.btn-primary:hover {
  background-color: #005587;
}
.btn.btn-secondary {
  background-color: #eb5a2d;
}
.btn.btn-secondary:hover {
  background-color: #f04c1b;
}
.btn .bcg-white {
  background-color: #fff;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 500;
}
.to-top .back-to-top {
  display: block;
  width: 50px;
  height: 50px;
  padding-top: 6px;
  font-size: 3rem;
  text-align: center;
  -moz-columns: white;
       columns: white;
  background-color: #000;
  border-radius: 50%;
  opacity: 0.7;
}