.bottom-thing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bottom-thing__item {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  padding: 57px 20px;
}

.bottom-thing__item:first-child {
  background: #0057FF;
}

.bottom-thing__item:first-child .bottom-thing__image {
  top: 42%;
}

.bottom-thing__item:first-child .bottom-thing__descr {
  max-width: 230px;
}

.bottom-thing__item:last-child {
  background: #485268;
}

.bottom-thing__item a {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.bottom-thing__image {
  position: absolute;
  max-width: 50%;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  -webkit-transition: 0.5s all ease-in-out;
  -o-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}

.bottom-thing__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bottom-thing__content {
  position: relative;
  z-index: 2;
  max-width: 50%;
  display: flex;
  gap: 23px;
  flex-direction: column;
}

.bottom-thing__title {
  -webkit-transition: 0.5s all ease-in-out;
  -o-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}

.bottom-thing__descr {
  color: #fff;
}


@media (max-width: 950px) {
  .bottom-thing__item {
    padding: 30px;
  }
  
  .bottom-thing__title {
    font-size: 15px;
    font-style: normal;
    font-weight: 800;
    line-height: 18px;
  }

  .bottom-thing__descr {
    font-size: 12px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
  }
}

@media (max-width: 680px) {
  .bottom-thing {
    flex-direction: column;
  }

  .bottom-thing__item {
    min-height: 160px;
  }

  .bottom-thing__image {
    max-width: unset;
    width: 32%;
  }

  .bottom-thing__content {
    max-width: unset;
    width: 68%;
  }
}

@media (max-width: 500px) {
  .bottom-thing__item {
    padding: 20px;
    min-height: unset;
  }

  .bottom-thing__image {
    width: 40%;
  }

  .bottom-thing__content {
    width: 58%;
  }
}
