img.img-fluid.mb-30.img-responsive.lazyloaded {
    width: 1400px;
}

.hero {
  background-color: #EEEEEE;
  width: 100%;
  height: 100%;
  max-height: calc(100% - 50px);
  position: relative;
}
.hero .inner {
  position: relative;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  box-sizing: padding-box;
  z-index: 4;
}
.hero .inner h1 {
  color: rgba(163, 32, 109, 0.6);
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 0;
  border-bottom: 2px rgba(163, 32, 109, 0.6) dashed;
}
.hero .inner p {
  color: #555;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 150%;
  text-align: justify;
}
.hero .inner p.small {
  font-size: 12px;
}
.hero .inner p a {
  display: inline-block;
  font-size: 22px;
  color: rgba(163, 32, 109, 0.4);
  margin: 0 10px;
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  transition: color 0.2s linear, -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, color 0.2s linear;
  transition: transform 0.2s ease-in-out, color 0.2s linear, -webkit-transform 0.2s ease-in-out;
}
.hero .inner p a:hover {
  color: rgba(163, 32, 109, 0.8);
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
  transition: color 0.4s linear, -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, color 0.4s linear;
  transition: transform 0.6s ease-in-out, color 0.4s linear, -webkit-transform 0.6s ease-in-out;
}
.hero .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  background: linear-gradient(to bottom, rgba(114, 81, 109, 0.2) 0%, #eeeeee 100%);
  z-index: 3;
}
.hero .background {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #EEEEEE;
  z-index: 1;
}
.hero .background #hero-canvas {
  width: 100%;
  height: 100%;
  position: relative;
}