.ext-section {
  background: #fff;
  margin: 0;
}

.ext-section-inner {
  margin: 0 auto;
  padding: 60px 25px 100px;
  max-width: 1140px;
}

.ext-section .ext-header {
  display: flex;
  padding: 0 0 110px;
}

.ext-section .ext-header-icon {
  text-align: center;
  padding: 0 60px 0 0;
}

.ext-section .ext-header-info {
  flex: 1;
}

.ext-section .ext-heading {
  text-transform: uppercase;
  font-size: 28px;
  font-weight: bold;
  padding: 5px 0 17px;
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0;
}

.ext-section .ext-header-text {
  font-size: 24px;
  letter-spacing: 0;
  line-height: 1.3;
}

.ext-section .ext-header-button {
  display: flex;
  padding: 15px 0 0;
  text-align: center;
}

.ext-section .ext-button {
  border: 1px solid #c6a00c;
  padding: 9px 14px 5px;
  text-align: center;
  display: inline-block;
  margin: 4px 0;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #000;
  line-height: 1.1;
  font-size: 14px;
}

.ext-section .ext-button:hover {
  background: #c6a00c;
  color: #fff;
}

/* Products */

.ext-section .ext-products {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 110px 6%;
}

.ext-section .ext-product {
  flex: 47% 0;
  display: flex;
  gap: 6%;
}

.ext-section .ext-product .ext-image {
  flex: 3;
  text-align: center;
}

.ext-section .ext-product .ext-image img {
  max-width: 90%;
}

.ext-section .ext-product .ext-info {
  flex: 5;
}

.ext-section .ext-product .ext-title {
  font-weight: bold;
}

.ext-section .ext-product .ext-icon {
  margin: 0 15px 0 0;
  float: left;
}

.ext-section .ext-product .ext-title span {
  display: block;
  margin: 0 0 0 50px;
  padding: 10px 0 0;
}

.ext-section .ext-product .ext-text p {
  line-height: 1.3;
}

@media (max-width: 900px) {

  .ext-section {
    margin: 0;
  }

  .ext-section-inner {
    padding: 40px 25px;
  }

  .ext-section .ext-header {
    display: block;
    padding: 0;
  }

  .ext-section .ext-header-icon {
    padding: 0 0 30px;
  }

  .ext-section .ext-heading {
    text-align: center;
  }

  .ext-section .ext-header-button {
    display: block;
    padding: 20px 0 50px;
  }

  .ext-section .ext-products {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 60px;
  }

  .ext-section .ext-product {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 20px;
  }

  .ext-section .ext-product .ext-image img {
    max-width: calc(min(90%, 120px));
  }

  .ext-section .ext-product .ext-title {
    padding-bottom: 5px;
  }

}
