/* ==========================================================
   HERO PORTFOLIO
   ========================================================== */

.portfolio-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 620px;
  padding: 90px 0;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

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

.portfolio-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient( ellipse at center, rgba(255,255,255,0) 18%, rgba(12,14,18,.18) 42%, rgba(12,14,18,.55) 68%, rgba(12,14,18,.82) 86%, rgba(12,14,18,.94) 100% );
  z-index: 1;
}

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

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

.portfolio-content {
  max-width: 620px;
}

.portfolio-category {
  display: block;
  margin-bottom: 12px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: #00b5d6;
  text-transform: uppercase;
}

.portfolio-line {
  width: 68px;
  height: 2px;
  margin-bottom: 34px;
  background: #f28b30;
}

.portfolio-title {
  margin: 0 0 34px;
  font-size: 5rem;
  font-weight: 300;
  line-height: .92;
  color: #ffffff;
}

.portfolio-description {
  max-width: 620px;
  margin-bottom: 42px;
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(255,255,255,.88);
}

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

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

@media (max-width:991.98px) {
  .portfolio-hero {
    min-height: 520px;
    padding: 70px 0;
  }
}

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

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

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

@media (max-width:767.98px) {
  .portfolio-hero {
    min-height: 420px;
    padding: 55px 0;
    background-position: center;
  }
}

@media (max-width:767.98px) {
  .portfolio-hero::before {
    background: radial-gradient( ellipse at center, rgba(255,255,255,0) 10%, rgba(12,14,18,.35) 42%, rgba(12,14,18,.72) 72%, rgba(12,14,18,.95) 100% );
  }
}

@media (max-width:767.98px) {
  .portfolio-category {
    font-size: .82rem;
  }
}

@media (max-width:767.98px) {
  .portfolio-line {
    width: 50px;
    margin-bottom: 22px;
  }
}

@media (max-width:767.98px) {
  .portfolio-title {
    font-size: 2.8rem;
    margin-bottom: 22px;
  }
}

@media (max-width:767.98px) {
  .portfolio-description {
    font-size: .95rem;
    line-height: 1.75;
    margin-bottom: 30px;
  }
}

