:root {
  --color-brand: #53939a;
}

/*******************************************************************************
* HOME
*******************************************************************************/

.home-companies-link {
  display: block;
  max-width: 200px;
  margin: 0 auto;
}

/*******************************************************************************
* Products Header
*******************************************************************************/

.products-header {
  padding: 124px 0 40px;
  min-height: 500px;

  display: grid;
  place-content: center;

  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  background: hsl(0, 0%, 100%);
  background: linear-gradient(90deg, hsl(0, 0%, 100%) 50%, hsl(184, 75%, 27%) 100%);
}

@media (min-width: 992px) {
  .products-header {
    padding-bottom: 0;
  }
}

.products-header__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.products-header__logo {
  width: 100%;
  margin-bottom: 30px;
  max-width: 350px;
}

@media (min-width: 992px) {
  .products-header__logo {
    margin-bottom: 0;
  }
}

.products-header__heading {
  color: var(--color-brand);
  font-weight: bold !important;
  text-transform: uppercase;
  font-size: 36px;
  margin: 0;
}

.products-header__subheading {
  color: #000;
  font-weight: bold;
  font-size: 22px;
  margin: 0;
  margin-top: 20px;
}

/*******************************************************************************
* Products Section
*******************************************************************************/

.products-section {
  padding: 60px 0;
}

.products-section__heading {
  color: var(--color-brand);
  font-weight: bold;
  font-size: 22px;
  padding: 0;
  margin: 0;
  margin-bottom: 16px;
}

.products-section__text {
  font-size: 16px;
  margin-bottom: 16px;
}

.products-section__download-links {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;

  margin-top: 40px;
}

.products-section__download-links--evenly {
  justify-content: space-evenly;
}

@media (min-width: 992px) {
  .products-section__download-links {
    flex-direction: row;
  }
}

/*******************************************************************************
* Download Link
*******************************************************************************/

.download-link {
  display: flex;
  align-items: center;
  gap: 8px;

  color: var(--color-brand);
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-brand);
  padding-bottom: 5px;
  font-size: 14px;
}

.download-link:hover,
.download-link:focus {
  color: var(--color-brand);
  text-decoration: none;
}

.download-link__icon {
  margin-top: 4px;
}

/*******************************************************************************
* Product
*******************************************************************************/

.products-container {
  display: grid;
  gap: 30px 20px;

  max-width: 350px;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .products-container {
    max-width: initial;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .products-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product {
  display: block;
  text-decoration: none !important;
  margin-bottom: 30px;
}

.product__img {
  border: 1px solid #eee;
  width: 100%;
  height: 230px;
  object-fit: contain;
  padding: 15px;
}

.product__title {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Source Sans Pro';
  line-height: 24px;
  text-align: left;
  text-transform: uppercase;
  margin: 15px 0 0 0;
}

.product__title::before,
.product__title::after {
  display: none;
}

/*******************************************************************************
* Utilities
*******************************************************************************/

.u-object-cover {
  object-fit: cover;
}

.u-padding-0 {
  padding: 0;
}

.u-text-red {
  color: #f2575f;
}

.u-text-brand {
  color: var(--color-brand);
}

.u-uppercase {
  text-transform: uppercase;
}

.u-fw-bold {
  font-weight: bold;
}

.u-mb-30 {
  margin-bottom: 30px;
}

.u-mt-0 {
  margin-top: 0;
}