.hero {
  position: relative;
  padding-top: 150px;
}

.hero:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 400px;
  background-image: url('/assets/img/light-blue-pattern.png');
  background-repeat: repeat;
  background-size: 212px;
  z-index: -1;
}

.hero-hp:before {
  display: none;
}

.hero .breadcrumb {
  font-size: 14px;
  color: var(--blue);
  background: transparent;
  padding: 0;
  font-weight: 600;
}

.hero .breadcrumb li {
  position: relative;
  padding-right: 15px;
}

.hero .breadcrumb li:before {
  display: inline-block;
  content: '';
  margin-left: 0;
  border-style: solid;
  border-width: 0.15em 0.15em 0 0;
  width: 0.45em;
  height: 0.45em;
  top: 0.48em;
  right: .45em;
  position: absolute;
  transform: rotate(45deg);
  vertical-align: middle;
  border-color: var(--blue);
}

.hero .breadcrumb li:last-of-type:before {
  display: none;
}

.hero .breadcrumb li a {
  text-decoration: none;
}

.hero-title {
  font-weight: 600;
  font-size: 60px;
  line-height: 1;
  min-height: 180px;
}

.hero-content {
  margin-top: 4rem;
}

.hero-hp {
  position: relative;
  height: 700px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  text-align: center;
  z-index: 0;
  padding-top: 0;
  align-items: center;
  margin-top: 84px;
}

.hero-hp:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,39,45,0.3);
  z-index: -1;
}

.hero-hp h1 {
  font-size: 60px;
  font-weight: 600;
  color: #fff;
}

.right-content {
  height: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.hero-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.hero-small:before {
  height: 360px;
}

.hero-small .hero-title {
  min-height: 0;
}

.hero-small .hero-content {
  margin-top: 0;
}

.hero-medium:before {
  height: 280px;
}

.hero-medium .hero-title {
  min-height: 0;
}

@media screen and (max-width: 991px) {
  .hero-hp h1 {
    font-size: 35px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-hp {
    padding-top: 0;
    margin-top: 75px;
  }

  .hero:before {
    height: 560px;
  }

  .hero-small:before {
    height: 270px;
  }

  .hero-cookies.hero-small:before {
    height: 215px;
  }

  .hero-medium:before {
    height: 235px;
  }

  .hero .breadcrumb {
    justify-content: center;
    margin-bottom: .5rem;
  }

  .hero-title {
    min-height: 0;
    font-size: 35px;
    text-align: center;
  }

  .hero-content {
    margin-top: 1rem;
    margin-bottom: 2rem;
    text-align: center;
  }

  .hero-medium .hero-content {
    margin-top: 2rem;
  }

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

  .hero .account-box {
    margin: 0 auto;
  }
}

@media screen and (max-width: 350px) {
  .hero-cookies.hero-small:before {
    height: 255px;
  }
}

