body.home {
  margin-top: 0;
}
body.home #top.top-of-page {
  background: transparent;
  box-shadow: none;
  color: white;
}
body.home #top.top-of-page a {
  color: white;
}
body.home #top.top-of-page button,
body.home #top.top-of-page .button {
  border-color: #FF5F53;
  background: transparent;
}
body.home #top.top-of-page.open {
  background-color: white;
  color: black;
}
body.home #top.top-of-page.open button,
body.home #top.top-of-page.open .button {
  border-color: transparent;
  background: #FF5F53;
  color: white;
}
body.home #top.top-of-page.open #toggle-menu {
  background-color: #97b2bf;
}
body.home #top.top-of-page.open a {
  color: black;
}
.home-visual {
  margin-bottom: 40px;
  background-color: #4C473F;
}
.home-visual .preload,
.home-visual .background,
.home-visual .foreground {
  width: 100%;
  min-height: 700px;
  max-height: 1170px;
  height: 100vh;
}
.home-visual .preload,
.home-visual .background {
  position: absolute;
  background-position: 50% 0%;
  background-repeat: no-repeat;
  background-size: cover;
  transition: opacity .5s;
}
.home-visual .preload {
  background-image: url('/templates/shoppagina3/images/home-visual-blur.jpg');
  z-index: 0;
  filter: blur(5px);
}
.home-visual .background {
  z-index: 1;
  opacity: 0;
}
.home-visual .foreground {
  z-index: 2;
  position: relative;
  display: flex;
  color: white;
  flex-flow: column;
  align-items: center;
  text-align: center;
}
.home-visual .grow {
  flex-grow: 1;
}
.home-visual h1 {
  color: white;
  font-size: 45px;
  line-height: 70px;
  margin: 10px 0;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  padding-top: 200px;
}
.home-visual .heading2 {
  font-size: 23px;
  line-height: 36px;
  width: 65%;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.home-visual .button {
  margin-top: 30px;
  font-size: 22px;
  padding: 15px 40px;
  box-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.home-visual .button:hover {
  background-color: #FF5F53;
  color: white;
  border-color: white;
}
.home-visual .subtext {
  font-style: italic;
  font-weight: 300;
}
.arrow {
  display: inline-block;
  animation-name: arrow;
  animation-duration: 1.3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
@keyframes arrow {
  0% {
    transform: translate(0);
    opacity: 0;
  }
  70% {
    transform: translate(7px);
    opacity: 1;
  }
  to {
    transform: translate(10px);
    opacity: 0;
  }
}
@media (max-width: 1024px) {
  .home-visual h1 {
    font-size: 40px;
    line-height: 50px;
    margin: 0 10px;
  }
  .home-visual .heading2 {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 22px;
    line-height: 30px;
  }
}
