/* ==========================================================
   HERO CATALOGS
   ========================================================== */

.gallery-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 430px;
  padding: 70px 0;
  overflow: hidden;
  background-image: url("../img/catalogs/hero-catalogs.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* ==========================================================
   OVERLAY
   ========================================================== */

.gallery-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient( 90deg, rgba(8,10,14,.90) 0%, rgba(8,10,14,.74) 35%, rgba(8,10,14,.38) 65%, rgba(8,10,14,0) 100% );
  z-index: 1;
}

/* ==========================================================
   CONTENT
   ========================================================== */

.gallery-hero .container {
  position: relative;
  z-index: 2;
}

.gallery-content {
  max-width: 700px;
}

.gallery-category {
  display: block;
  margin-bottom: 12px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #ffffff;
}

.gallery-line {
  width: 60px;
  height: 2px;
  margin-bottom: 28px;
  background: #ff8c00;
}

.gallery-title {
  margin: 0 0 24px;
  font-size: 4.6rem;
  font-weight: 300;
  line-height: .92;
  color: #ffffff;
}

.gallery-description {
  max-width: 680px;
  margin-bottom: 34px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255,255,255,.88);
  text-wrap: pretty;
}

/* ==========================================================
   BUTTON
   ========================================================== */

.gallery-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  border-radius: 5px;
  background: #0d6efd;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: background .25s ease, transform .25s ease;
}

.gallery-button:hover {
  background: #0b5ed7;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width:991.98px) {
  .gallery-hero {
    min-height: 360px;
    padding: 55px 0;
  }
}

@media (max-width:991.98px) {
  .gallery-content {
    max-width: 560px;
  }
}

@media (max-width:991.98px) {
  .gallery-title {
    font-size: 3.6rem;
  }
}

@media (max-width:991.98px) {
  .gallery-description {
    max-width: 540px;
    font-size: 1rem;
    line-height: 1.8;
  }
}

/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width:767.98px) {
  .gallery-hero {
    min-height: 300px;
    padding: 45px 0;
    background-position: center;
  }
}

@media (max-width:767.98px) {
  .gallery-hero::before {
    background: linear-gradient( 90deg, rgba(8,10,14,.93) 0%, rgba(8,10,14,.82) 55%, rgba(8,10,14,.52) 100% );
  }
}

@media (max-width:767.98px) {
  .gallery-content {
    max-width: 100%;
  }
}

@media (max-width:767.98px) {
  .gallery-category {
    font-size: .82rem;
    margin-bottom: 10px;
  }
}

@media (max-width:767.98px) {
  .gallery-line {
    width: 48px;
    margin-bottom: 20px;
  }
}

@media (max-width:767.98px) {
  .gallery-title {
    font-size: 2.7rem;
    margin-bottom: 18px;
  }
}

@media (max-width:767.98px) {
  .gallery-description {
    max-width: 100%;
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 26px;
  }
}

@media (max-width:767.98px) {
  .gallery-button {
    width: 100%;
    padding: 13px 22px;
    font-size: .95rem;
  }
}

