.about-banner {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  --color: #FFFFFF;
}
.about-banner:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.58);
}
.about-banner .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 487px;
}
.about-banner__container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-banner .breadcrumbs {
  color: #FFFFFF;
}
.about-page__title {
  position: relative;
  z-index: 1;
  text-align: center;
}
.about-page__title span {
  color: var(--main);
  font-weight: 700;
  font-size: 48px;
  line-height: 110%;
}
.about-page__title-wrap {
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border-radius: 2px;
  padding: 78px 56px;
  max-width: 684px;
  position: relative;
}
.about-page__title-wrap:before {
  content: "";
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 69px;
  background-image: url("./../images/mini-logo.png");
  z-index: 1;
}
.about-page__title-wrap:after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 1px solid #A0A0A4;
  border-radius: 2px;
}

@media (max-width: 767px) {
  .about-page__title span {
    font-size: 29px;
  }
  .about-page__title-wrap {
    padding: 67px 38px;
  }
  .about-banner .container {
    min-height: 420px;
  }
}
@media (max-width: 592px) {
  .about-page__title-wrap {
    padding: 67px 23px;
  }
  .about-page__title-wrap:after {
    top: 15px;
    left: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
  }
}/*# sourceMappingURL=about-page.css.map */