h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6 {
  font-family: "Exo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}

body {
  font-family: "Inter", sans-serif;
}

.hero {
  position: relative;
  display: flex;
  min-height: 600px;
  background: #131517 url("../images/bg.webp") no-repeat center center/contain;
}

.hero .container {
  display: flex;
  flex-direction: column;
}

.hero-content {
  flex: 1;
  max-width: 650px;
  color: white;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 50px;
}

.hero-content h1 {
  font-size: 3.875rem;
}

.hero-content h2 {
  margin-bottom: 50px;
}
  
.hero-content p {
  font-size: 1.125rem;
}
  
.overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  background: linear-gradient(150deg, #262630 0%, rgba(1, 0, 5, 0.60) 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.navbar img {
  height: auto;
  max-width: 100%;
}

.featured-products .row > div,
.supporting-products .row > div {
  margin-bottom: 20px;
}

.featured-products {
  max-width: 950px;
  margin:  0 auto;
  padding-top: 50px;
  padding-bottom: 30px;
}

.featured-products .heading {
  text-align: center;
  margin-bottom: 50px;
}

.supporting-products {
  max-width: 950px;
  margin: 0 auto;
  padding-bottom: 30px;
}

.featured-products .card {
  width: 100%;
  height: 100%;
}

.featured-products .card img {
  display: block;
  height: 300px;
  object-fit: cover;
  border-bottom: 1px solid #e0e0e0;
}
  
.supporting-products p {
  text-align: center;
  margin-bottom: 50px;
}

.supporting-products .heading {
  text-align: center;
  text-transform: uppercase;
}

.supporting-products .card {
  height: 100%;
}

.supporting-products .card img {
  display: block;
  height: 300px;
  object-fit: scale-down;
  border-bottom: 1px solid #e0e0e0;
}

.about-section {
  background-color: #262630;
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
  color: #ffffff;
}

.about-section .btn {
  margin-top: 50px;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: bold;
  min-width: 200px;
  background-color: #d82727;
  border-color: #d82727;
}

.about-section .btn:hover {
  background-color: #910f0f;
  border-color: #910f0f;
}