section {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

#our-production-header {
  font-size: clamp(22px, 2vw, 25px);
  font-weight: bold;
  position: relative;
  text-decoration: none;
  font-family: 'MontserratBold', sans-serif;
  display: inline-block;
}

#our-production-header::after {
  position: absolute;
  content: '';
  display: block;
  left: 30%;
  right: 30%;
  bottom: -28px;
  height: 1.5px;
  background: #f6af43;
  transition: .35s;
  margin: 0 auto;
}

#our-production-text {
  font-size: 18px;
  text-align: justify;
}

.article-header {
  font-size: clamp(22px, 2vw, 25px);
  font-family: 'MontserratBold', sans-serif;
}

.work-order {
  font-size: 18px;
  margin-bottom: 0;
  counter-reset: item;
}

.work-name {
  margin: 5px 0 5px 0;
  display: block;
}

.work-name:before {
  content: counter(item) ". ";
  counter-increment: item;
  color: #f6af43;
}

.contacts-button {
  font-size: 16px;
  background: rgba(246, 175, 67, 0.9);
  border: none;
  padding: 11px 23px;
  margin-top: 12px;
  transition: 0.5s;
}

.images-row {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 768px) and (max-width: 992px) {
    .w-md-lg-50 { width: 50% !important; }
}