.banner-company {
    position: relative;
    padding-top: 40px;
}

.banner-company--background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75%;
    background-color: var(--blue-4-background);
    z-index: -1;
}

.banner-company__content {
    position: relative;
    height: 250px;
    margin: 32px -16px 0;
    width: calc(100% + 32px);
}

.banner-company__title * {
    font-size: inherit;
    line-height: inherit;
}

.banner-company__content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-company__description {
    position: absolute;
    bottom: 28px;
    left: 16px;
    max-width: 268px;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}

.banner-company__description *:not(strong) {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    text-transform: uppercase;
    color: var(--white);
}

.banner-company__description strong {
    display: block;
}

@media screen and (max-width: 576px) {
  .banner-company__title h2 {
    font-size: 32px;
    line-height: 110%;
  }
}

@media screen and (min-width: 576px) {
    .banner-company__content {
        height: auto;
        margin: 32px 0 0;
        width: 100%:
    }

    .banner-company__content img {
        border-radius: 4px;
    }
}

@media screen and (min-width: 992px) {
    .banner-company__title strong {
        display: block;
    }

    .banner-company {
        padding-top: 80px;
        background-color: transparent;
    }

    .banner-company__content {
        margin: 56px 0 0;
    }
  
  .banner-company__title h2 {
    font-size: 48px !important;
  }
  
  .banner-company__description h3,
  .banner-company__title h3 {
    font-size: 44px;
    line-height: 110%;
  }
  
    .banner-company__description h4,
    .banner-company__title h4 {
    font-size: 40px;
    line-height: 110%;
  }
}

@media screen and (min-width: 1200px) {
    .banner-company__description {
        bottom: 164px;
        left: 110px;
        max-width: 477px;
    
        font-size: 32px;
        line-height: 36px;
    }
}

@media screen and (min-width: 1380px) {
    .banner-company__description {
        bottom: 194px;
    }
}