.brand {
  gap: 12px;
}

.brand img {
  width: 68px;
  height: 68px;
  max-height: none;
  object-fit: cover;
  border-radius: 50%;
}

.brand__text,
.footer-brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__text strong {
  color: #0b2742;
  font-family: Roboto, Arial, sans-serif;
  font-size: 21px;
}

.brand__text small {
  margin-top: 5px;
  color: #607080;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-about > .footer-brand img {
  width: 82px;
  height: 82px;
  margin: 0;
  border-radius: 50%;
  object-fit: cover;
  filter: none;
}

.footer-brand strong {
  color: #fff;
  font-family: Roboto, Arial, sans-serif;
  font-size: 23px;
}

.footer-brand small {
  margin-top: 5px;
  color: #9fb6c5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .brand img {
    width: 56px;
    height: 56px;
  }

  .brand__text strong {
    font-size: 17px;
  }

  .brand__text small {
    font-size: 9px;
  }
}

.home-hero {
  overflow: hidden;
  background: #071f34;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slides {
  z-index: 0;
}

.hero-slide {
  opacity: 0;
  background-image: linear-gradient(90deg, rgba(5,29,49,.93) 0%, rgba(5,29,49,.78) 46%, rgba(5,29,49,.2) 100%), var(--hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.home-hero__content {
  position: relative;
  z-index: 2;
}

.hero-dots {
  position: absolute;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 70px;
  z-index: 3;
  display: flex;
  gap: 9px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.hero-dots button.is-active {
  width: 30px;
  border-radius: 8px;
  background: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transform: none;
    transition: opacity .2s ease;
  }
}
