body {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 500;
  color: #8898a3;
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

body.loaded {
  opacity: 1;
}

strong {
  font-weight: 700;
}

img {
  width: 100%;
  height: auto;
}

.logo {
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.5s ease-out 0.4s;
  transition: all 0.5s ease-out 0.4s;
  -webkit-transform: translateY(3.4rem);
  transform: translateY(3.4rem);
}

.loaded .logo {
  opacity: 1;
  -webkit-transform: translateY(0rem);
  transform: translateY(0rem);
}

.logo img {
  width: 13rem;
  margin-top: 5rem;
}

@media (min-width: 750px) {
  .logo img {
    width: 18rem;
    margin-top: 3rem;
  }
}

.visual .container {
  margin-top: 5rem;
  max-width: 100%;
  width: 90%;
  opacity: 0;
  -webkit-transition: all 0.8s ease-out 0.8s;
  transition: all 0.8s ease-out 0.8s;
  -webkit-transform: translateY(3.4rem);
  transform: translateY(3.4rem);
}

.loaded .visual .container {
  opacity: 1;
  -webkit-transform: translateY(0rem);
  transform: translateY(0rem);
}

.main-content .container h1 {
  text-align: center;
  color: #E83E40;
  font-size: 2.8rem;
  margin-top: 8rem;
  margin-bottom: 8rem;
  font-weight: 700;
  opacity: 0;
  -webkit-transition: all 0.5s ease-out 1.3s;
  transition: all 0.5s ease-out 1.3s;
  -webkit-transform: translateY(3.4rem);
  transform: translateY(3.4rem);
}

@media (min-width: 750px) {
  .main-content .container h1 {
    font-size: 5rem;
    margin-top: 13rem;
    margin-bottom: 13rem;
  }
}

.loaded .main-content .container h1 {
  opacity: 1;
  -webkit-transform: translateY(0rem);
  transform: translateY(0rem);
}

.main-content .container h3 {
  font-size: 2.1rem;
  margin-bottom: 8rem;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.5s ease-out 1.6s;
  transition: all 0.5s ease-out 1.6s;
  -webkit-transform: translateY(3.4rem);
  transform: translateY(3.4rem);
}

@media (min-width: 750px) {
  .main-content .container h3 {
    margin-bottom: 13rem;
  }
}

.loaded .main-content .container h3 {
  opacity: 1;
  -webkit-transform: translateY(0rem);
  transform: translateY(0rem);
}

.main-content .contact {
  text-align: center;
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.main-content .contact a {
  font-size: 1.5rem;
  color: #8898a3;
  margin-bottom: 2.5rem;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.main-content .contact a::before {
  content: "";
  display: block;
  width: 3.4rem;
  height: 3.4rem;
  margin: 0 auto;
  margin-bottom: 0.5rem;
  left: 0;
  top: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.main-content .contact a.position::before {
  background-image: url("images/map.png");
}

.main-content .contact a.numero::before {
  background-image: url("images/phone.png");
}

.main-content .contact a.mail::before {
  background-image: url("images/pencil.png");
}

.main-content .contact a:hover {
  color: #E83E40;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer {
  text-align: center;
  font-size: 1.3rem;
}

.footer a {
  color: #8898a3;
}