#hero-block {
  position: relative;
  min-height: 550px;
  display: flex;
}

#hero-block .container {
  height: auto;
}

#hero-block .hero-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#hero-block .hero-image-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(55, 106, 197, 0.85);
}

#hero-block .hero-image-bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

#hero-block .hero {
  position: relative;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

#hero-block .hero__content {
  width: 41.6666666667%;
}

#hero-block .hero__image {
  width: 58.3333333333%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(images/hero-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#hero-block .hero__image img {
  object-fit: scale-down;
  width: 510px;
  height: 400px;
}

#hero-block .hero__title {
  margin: 0;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 36px;
  line-height: 128%;
  color: #FFFFFF;
}

#hero-block .hero__desc {
  font-size: 20px;
  color: #FFFFFF;
}

@media (max-width: 960px) {
  #hero-block .hero__title {
    font-size: 28px;
  }

  #hero-block .hero__desc {
    font-size: 18px;
  }

  #hero-block .hero__image {
    background-size: contain;
  }

  #hero-block .hero__image img {
    width: 76%;
    height: auto;
  }
}

@media (max-width: 775px) {
  #hero-block {
    display: block;
    padding-top: 40px;
  }

  #hero-block .hero {
    flex-direction: column-reverse;
  }

  #hero-block .hero__content {
    margin-bottom: 40px;
    width: 100%;
  }

  #hero-block .hero__image {
    margin-top: 10px;
    margin-bottom: -40px;
    width: 100%;
    padding: 50px;
  }
}

/*# sourceMappingURL=block.css.map */