.home-brand-page {
  --home-green: #1a5632;
  --home-light-green: #429b52;
  --home-orange: #e2661e;
  --home-orange-hover: #bb4500;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 20px;
}

.home-brand-page *, .home-brand-page *::before, .home-brand-page *::after {
  box-sizing: border-box;
}

.home-brand-page a {
  color: #000;
  text-decoration: none;
  transition: color .15s ease-in-out;
}

.home-brand-page a:hover, .home-brand-page a:focus {
  color: var(--home-green);
}

.home-brand-page b {
  font-weight: 700;
}

.home-brand-page img {
  display: inline-block;
  max-width: 100%;
}

.home-brand-page svg {
  fill: currentColor;
}

.home-brand-page__container {
  margin: 0 auto;
  max-width: 1404px;
  padding: 0 42px;
  width: 100%;
}

.home-brand-page__hero {
  padding-bottom: 40px;
}

.home-brand-page__hero-card {
  background: var(--home-green);
  border-radius: 8px;
  color: #fff;
  padding: 51px 11px;
  text-align: center;
}

.home-brand-page__hero-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 39px;
  margin: 0;
}

.home-brand-page__hero-title img {
  height: 37px;
  margin: 0 6px 0 11px;
  vertical-align: middle;
}

.home-brand-page__initiatives {
  padding: 40px 0;
}

.home-brand-page__initiative-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.home-brand-page__initiative {
  display: grid;
  gap: 24px;
}

.home-brand-page__initiative-banner {
  background: var(--home-green);
  border-radius: 8px;
  color: #fff;
  min-height: 300px;
  padding: 50px 18px;
  text-align: center;
}

.home-brand-page__initiative-banner--orange {
  background: var(--home-orange);
}

.home-brand-page__initiative-banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.home-brand-page__initiative-banner-content > *:not(:last-child) {
  margin-bottom: 15px;
}

.home-brand-page__initiative-banner-content h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 39px;
  margin: 0;
}

.home-brand-page__banner-logo img {
  max-width: 160px;
}

.home-brand-page__text-lg {
  font-size: 24px;
  line-height: 29px;
  margin: 0;
}

.home-brand-page__cards-grid {
  display: grid;
  gap: 24px;
}

.home-brand-page__card {
  min-width: 0;
}

.home-brand-page__card-image {
  background-color: #f3fff6;
  border-radius: 6px;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.home-brand-page__card-image--background {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-brand-page__card-image--center {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 24px;
}

.home-brand-page__floating-logo {
  max-height: calc(100% - 38px);
  max-width: 135px;
  position: absolute;
  right: 6px;
  top: 19px;
}

.home-brand-page__card-text {
  padding-top: 16px;
}

.home-brand-page__stretched-link::after {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.home-brand-page__cards-slider {
  --home-slider-color: var(--home-light-green);
  min-width: 0;
  position: relative;
}

.home-brand-page__cards-slider--orange {
  --home-slider-color: var(--home-orange);
  --home-slider-hover: var(--home-orange-hover);
}

.home-brand-page__slider-viewport {
  overflow: hidden;
  width: 100%;
}

.home-brand-page__slider-track {
  display: flex;
  transition: transform .3s ease;
  width: 100%;
}

.home-brand-page__slider-slide {
  flex: 0 0 100%;
  min-width: 0;
  width: 100%;
}

.home-brand-page__slider-controls {
  display: flex;
  gap: 16px;
  justify-content: center;
  padding-top: 40px;
}

.home-brand-page__slider-button {
  align-items: center;
  background: #fff;
  border: 1px solid var(--home-slider-color);
  border-radius: 50%;
  color: var(--home-slider-color);
  cursor: pointer;
  display: flex;
  height: 60px;
  justify-content: center;
  margin: 0;
  padding: 0;
  transition: background-color .15s ease-in-out, border-color .15s ease-in-out, color .15s ease-in-out;
  width: 60px;
}

.home-brand-page__slider-button svg {
  height: 23px;
  width: 23px;
}

.home-brand-page__slider-button:hover, .home-brand-page__slider-button:focus {
  border-color: var(--home-slider-hover, var(--home-green));
  color: var(--home-slider-hover, var(--home-green));
}

.home-brand-page__slider-button[disabled] {
  cursor: default;
  opacity: .45;
}

.home-brand-page__slider-button--next {
  background: var(--home-slider-color);
  color: #fff;
}

.home-brand-page__slider-button--next:hover, .home-brand-page__slider-button--next:focus {
  background: var(--home-slider-hover, var(--home-green));
  color: #fff;
}

.home-brand-page__info-banner {
  padding: 40px 0 80px;
}

.home-brand-page__info-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.home-brand-page__info-title {
  margin-bottom: 24px;
}

.home-brand-page__info-title > *:not(:last-child) {
  margin-bottom: 40px;
}

.home-brand-page__info-title h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 39px;
  margin: 0;
}

.home-brand-page__info-logo {
  text-align: center;
}

.home-brand-page__info-text {
  line-height: 1.5;
  margin-bottom: 40px;
}

.home-brand-page__info-text p {
  margin: 0;
}

.home-brand-page__button {
  align-items: center;
  background: var(--home-orange);
  border: 1px solid var(--home-orange);
  border-radius: 8px;
  color: #fff;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  line-height: 20px;
  max-width: 100%;
  padding: 12px 29px;
  text-align: left;
  transition: background-color .15s ease-in-out, border-color .15s ease-in-out;
  width: 100%;
}

.home-brand-page__button:hover, .home-brand-page__button:focus {
  background: var(--home-orange-hover);
  border-color: var(--home-orange-hover);
  color: #fff;
}

.home-brand-page__button span {
  flex: 0 1 auto;
  max-width: calc(100% - 54px);
}

.home-brand-page__button svg {
  flex: 0 0 auto;
  height: 20px;
  margin-left: 16px;
  width: 38px;
}

.home-brand-page__lazy {
  opacity: 0;
  transition: opacity .25s ease-in-out;
}

.home-brand-page__lazy.is-loaded {
  opacity: 1;
}

.home-modal {
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity .15s ease-in-out;
  z-index: 1000;
}

.home-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.home-modal__overlay {
  background: rgba(0, 0, 0, .6);
  bottom: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  right: 0;
  top: 0;
}

.home-modal__content-wrapper {
  align-items: center;
  display: flex;
  margin: 30px auto;
  min-height: calc(100% - 60px);
  width: calc(100% - 32px);
}

.home-modal__container {
  background: #fff;
  border-radius: 8px;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}

.home-modal__header {
  padding: 16px 16px 5px;
}

.home-modal__title {
  clear: both;
  font-size: 24px;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.home-modal__close {
  background: none;
  border: 0;
  color: #000;
  cursor: pointer;
  float: right;
  height: 24px;
  margin: 0 0 4px;
  padding: 0;
  transition: color .15s ease-in-out;
  width: 24px;
}

.home-modal__close svg {
  height: 100%;
  width: 100%;
}

.home-modal__close:hover, .home-modal__close:focus {
  color: #1a5632;
}

.home-modal__content {
  line-height: 1.5;
  padding: 5px 24px 44px;
  text-align: center;
}

.home-modal__content p {
  margin: 0;
}

.home-modal__content p:not(:last-child) {
  margin-bottom: 20px;
}

.home-modal__content a {
  color: #000;
  text-decoration: underline;
}

.home-modal__content a:hover, .home-modal__content a:focus {
  color: #1a5632;
}

@media (min-width: 768px) {

  .home-brand-page__hero {
    padding-bottom: 32px;
  }

  .home-brand-page__hero-card {
    padding: 88px 29px;
  }

  .home-brand-page__hero-title {
    font-size: 48px;
    line-height: 59px;
  }

  .home-brand-page__hero-title img {
    height: 47px;
    margin-left: 14px;
    margin-right: 8px;
  }

  .home-brand-page__initiatives {
    padding: 32px 0;
  }

  .home-brand-page__initiative-list {
    gap: 88px;
  }

  .home-brand-page__initiative {
    gap: 29px;
  }

  .home-brand-page__initiative-banner {
    min-height: 213px;
  }

  .home-brand-page__initiative-banner-content h2 {
    font-size: 24px;
    line-height: 29px;
  }

  .home-brand-page__banner-logo img {
    max-width: 139px;
  }

  .home-brand-page__cards-grid {
    gap: 29px 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-brand-page__card-image {
    height: 213px;
  }

  .home-brand-page__floating-logo {
    max-height: calc(100% - 28px);
    max-width: 96px;
    right: 5px;
    top: 14px;
  }

  .home-brand-page__cards-slider {
    grid-column: 1 / -1;
  }

  .home-brand-page__card--wide .home-brand-page__card-image {
    height: 191px;
  }

  .home-brand-page__card-text {
    padding-top: 12px;
  }

  .home-brand-page__info-banner {
    padding: 44px 0 106px;
  }

  .home-brand-page__info-title {
    margin-bottom: 29px;
  }

  .home-brand-page__info-title > *:not(:last-child) {
    margin-bottom: 42px;
  }

  .home-brand-page__info-title h2 {
    font-size: 32px;
    line-height: 39px;
  }

  .home-brand-page__info-text {
    margin-bottom: 56px;
    max-width: 460px;
  }

  .home-brand-page__button {
    padding: 28px 39px;
    width: 620px;
  }

  .home-modal__content-wrapper {
    max-width: 672px;
    width: calc(100% - 100px);
  }

  .home-modal__header {
    padding: 44px 44px 18px;
  }

  .home-modal__close {
    margin-bottom: 22px;
  }

  .home-modal__content {
    padding: 18px 47px 77px;
  }

}

@media (min-width: 992px) {

  .home-brand-page__initiative {
    align-items: stretch;
    grid-template-columns: 303px minmax(0, 1fr);
  }

  .home-brand-page__initiative-banner {
    display: flex;
    min-height: 100%;
    padding: 38px;
    text-align: left;
  }

  .home-brand-page__card--wide .home-brand-page__card-text {
    min-height: 50px;
    padding-right: 146px;
  }

  .home-brand-page__slider-controls {
    bottom: 0;
    gap: 12px;
    justify-content: flex-start;
    padding-top: 0;
    position: absolute;
    right: 0;
    z-index: 2;
  }

  .home-brand-page__slider-button {
    height: 42px;
    width: 42px;
  }

  .home-brand-page__slider-button svg {
    height: 16px;
    width: 16px;
  }

}

@media (min-width: 1200px) {

  .home-brand-page__hero-card {
    padding: 111px 135px;
  }

  .home-brand-page__hero {
    padding-bottom: 35px;
  }

  .home-brand-page__initiatives {
    padding: 35px 0;
  }

  .home-brand-page__info-banner {
    padding: 115px 0 141px;
  }

  .home-brand-page__info-text {
    font-size: 24px;
    max-width: 690px;
  }

  .home-brand-page__button {
    font-size: 24px;
    line-height: 29px;
    padding: 46px 69px;
    width: 874px;
  }

  .home-modal__content-wrapper {
    max-width: 765px;
  }

  .home-modal__header {
    padding: 44px 44px 28px;
  }

  .home-modal__title {
    font-size: 40px;
    padding-left: 50px;
    padding-right: 50px;
  }

  .home-modal__content {
    font-size: 24px;
    padding: 28px 94px 103px;
  }

  .home-modal__content p:not(:last-child) {
    margin-bottom: 25px;
  }

}

@media (min-width: 1400px) {

  .home-brand-page__hero-title {
    font-size: 64px;
    line-height: 78px;
  }

  .home-brand-page__hero-title img {
    height: 79px;
    margin-left: 18px;
    margin-right: 10px;
  }

  .home-brand-page__initiative-list {
    gap: 120px;
  }

  .home-brand-page__initiative {
    gap: 40px 24px;
    grid-template-columns: 426px minmax(0, 1fr);
  }

  .home-brand-page__initiative-banner {
    padding: 53px;
  }

  .home-brand-page__initiative-banner-content h2 {
    font-size: 40px;
    line-height: 49px;
  }

  .home-brand-page__banner-logo img {
    max-width: 196px;
  }

  .home-brand-page__cards-grid {
    gap: 40px 24px;
  }

  .home-brand-page__card-image {
    height: 300px;
  }

  .home-brand-page__card--wide .home-brand-page__card-image {
    height: 268px;
  }

  .home-brand-page__card--wide .home-brand-page__card-text {
    min-height: 78px;
    padding-right: 186px;
  }

  .home-brand-page__card-text {
    padding-top: 16px;
  }

  .home-brand-page__floating-logo {
    max-height: calc(100% - 38px);
    max-width: 135px;
    right: 8px;
    top: 19px;
  }

  .home-brand-page__slider-controls {
    gap: 16px;
  }

  .home-brand-page__slider-button {
    height: 60px;
    width: 60px;
  }

  .home-brand-page__slider-button svg {
    height: 23px;
    width: 23px;
  }

  .home-brand-page__info-title {
    margin-bottom: 51px;
  }

  .home-brand-page__info-title > *:not(:last-child) {
    margin-bottom: 51px;
  }

  .home-brand-page__info-title h2 {
    font-size: 40px;
    line-height: 49px;
  }

  .home-brand-page__info-text {
    margin-bottom: 51px;
  }

}

@media (max-width: 767px) {

  .home-brand-page__container {
    padding-left: 16px;
    padding-right: 16px;
  }

}
