/* stylelint-disable */
/* stylelint-disable */
/* stylelint-enable */
/* stylelint-disable */
/* stylelint-enable */
.hero-block {
  max-width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-block::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-color: var(--blue-800);
  opacity: 0.75;
  z-index: 1;
}
.hero-block .article__copyright {
  transform: rotate(-90deg) translate(100%, -100%);
  transform-origin: right;
  bottom: initial;
  left: initial;
  right: -10px;
  top: calc(100% - 20px);
}
@media (min-width: 1024px) {
  .hero-block .article__copyright {
    right: 5px;
  }
}
.hero-block .container {
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 12.5rem;
  padding-bottom: 21.25rem;
}
@media (max-width: 767px) {
  .hero-block .container {
    padding-top: 6.25rem;
    padding-bottom: 9.375rem;
  }
}
.hero-block .wrapper {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}
.hero-block .sercher-wrapper {
  width: 50rem;
  max-width: 100%;
  background-color: var(--white);
  margin-bottom: 10rem;
  position: relative;
}
.hero-block .sercher-wrapper::before {
  content: "";
  width: 6.25rem;
  height: 0.3125rem;
  background: var(--blue-300);
  position: absolute;
  left: 0;
  bottom: 100%;
  transition-duration: 2s;
}
.hero-block .sercher-wrapper svg path {
  transition-duration: 1s;
}
.hero-block .sercher-wrapper:hover::before {
  width: 100%;
}
.hero-block .sercher-wrapper:hover svg path {
  fill: var(--blue-300);
}
.hero-block .sercher-wrapper.focus::before {
  width: 100%;
}
.hero-block .sercher-wrapper.focus svg path {
  fill: var(--blue-300);
}
.hero-block .sercher-wrapper.focus .autofill {
  opacity: 1;
  pointer-events: all;
}
@media (max-width: 767px) {
  .hero-block .sercher-wrapper {
    margin-bottom: 4.6875rem;
  }
}
.hero-block .sercher-wrapper #pageHeroSearchForm .search-input__wrapper {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  padding: 1.5625rem 3.125rem;
}
@media (max-width: 767px) {
  .hero-block .sercher-wrapper #pageHeroSearchForm .search-input__wrapper {
    padding: 0.625rem 1.5625rem;
  }
}
.hero-block .sercher-wrapper #pageHeroSearchForm .search-input__wrapper .search-submit {
  padding: 0;
  z-index: 50;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
}
.hero-block .sercher-wrapper #pageHeroSearchForm .search-input__wrapper .search-submit svg {
  width: 3.125rem;
  height: 3.125rem;
}
@media (max-width: 767px) {
  .hero-block .sercher-wrapper #pageHeroSearchForm .search-input__wrapper .search-submit svg {
    width: 1.5625rem;
    height: 1.5625rem;
  }
}
.hero-block .sercher-wrapper #pageHeroSearchForm .search-input__wrapper .search-input__label {
  position: relative;
  width: calc(100% - 4.6875rem);
}
@media (max-width: 767px) {
  .hero-block .sercher-wrapper #pageHeroSearchForm .search-input__wrapper .search-input__label {
    width: calc(100% - 3.125rem);
  }
}
.hero-block .sercher-wrapper #pageHeroSearchForm .search-input__wrapper .search__input {
  border: 1px solid transparent;
  background-color: transparent;
  color: var(--blue-800);
  font-size: clamp(21px, 2.5vw + 1px, 32px);
  font-weight: 500;
  line-height: 1.22;
  font-family: var(--font-family-cormorant);
  outline: unset;
  width: 100%;
}
.hero-block .title-wrapper {
  font-family: var(--font-family-cormorant);
  font-weight: 300;
  font-size: clamp(36px, 3.75vw + 1px, 60px);
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 5.1875rem;
  position: relative;
}
@media (max-width: 767px) {
  .hero-block .title-wrapper {
    line-height: 1.1;
  }
}
.hero-block .title-wrapper .line {
  position: absolute;
  background: var(--blue-300);
  height: 1px;
  width: 0;
  left: -50vw;
  top: 0;
  transition-duration: 4s;
}
.hero-block .title-wrapper .line:nth-child(1n) {
  transition-duration: 3s;
}
.hero-block .title-wrapper .line:nth-child(2n) {
  transition-duration: 4s;
}
.hero-block .title-wrapper .line:nth-child(3n) {
  transition-duration: 5s;
}
.hero-block .title-wrapper.is-inview .line {
  width: 200vw;
}
