.v-parallax {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.v-parallax__image-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  contain: strict;
}
.v-parallax__image {
  position: absolute;
  bottom: 0;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  display: none;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  will-change: transform;
  transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
  z-index: 1;
}
.v-parallax__content {
  color: #fff;
  height: 100%;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1rem;
}
.layout-parallax-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  height: 210px;
}
.layout-parallax {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  overflow: hidden;
}
.layout-parallax .layout-title-group {
  margin-top: 50px;
  margin-bottom: 50px;
  width: 100%;
  background-color: transparent;
}
.layout-parallax .layout-title-group .layout-title {
  line-height: 46px;
  font-size: 24px;
  color: #fff;
}
.layout-parallax .layout-title-group .layout-line {
  width: 30px;
  height: 2px;
  background-color: #fff;
}
.layout-parallax .layout-title-group .layout-subtitle {
  margin: 0;
  line-height: 42px;
  color: #fff;
  font-size: 18px;
}
.layout-parallax .layout-parallax-content {
  padding: 20px 10px;
}
@media (min-width: 992px) {
  .layout-parallax-wrapper {
    height: 500px;
  }
  .layout-parallax {
    min-height: 500px;
  }
  .layout-parallax .layout-title-group {
    margin-top: 90px;
    margin-bottom: 110px;
  }
  .layout-parallax .layout-title-group .layout-title {
    line-height: 64px;
    font-size: 32px;
  }
  .layout-parallax .layout-title-group .layout-line {
    width: 30px;
  }
  .layout-parallax .layout-title-group .layout-subtitle {
    line-height: 78px;
    font-size: 42px;
  }
  .layout-parallax .layout-parallax-content {
    margin: 0 auto;
    padding: 80px 100px;
    width: 80%;
    max-width: 1180px;
  }
}
