/* #########################################################################
#
#  HERO PROJECTS
#  Version 2.0
#
######################################################################### */

/* ==========================================================
   00 · VARIABLES
========================================================== */

:root {
  --hero-radius: 18px;
  --hero-shadow: 0 4px 12px rgba(0,0,0,.06);
  --hero-transition: .35s ease;
  --hero-border: rgba(255,255,255,.05);
  --hero-background: #121212;
  --hero-surface: #1B1B1B;
  --hero-image-height: 400px;
  --hero-gallery-height: 170px;
  --hero-content-width: 480px;
  --hero-text: #FFFFFF;
  --hero-text-secondary: rgba(255,255,255,.70);
  --hero-divider: rgba(255,255,255,.08);
  --accent: #FF8C00;
  --accent-light: #FFB347;
  --accent-dark: #F57C00;
  --accent-divider: #FFC670;
  --accent-glow: rgba(245,124,0,.35);
}

/* #########################################################################
#
#  LAYOUT
#
######################################################################### */

/* ==========================================================
   01 · GENERAL
========================================================== */

.hero-projects-section {
  background: #FFFFFF;
  padding-top: 25px;
  padding-bottom: 25px;
}

.hero-projects-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--hero-radius);
  background: var(--hero-background);
  border: none;
  box-shadow: var(--hero-shadow);
}

/* #########################################################################
#
#  HERO
#
######################################################################### */

/* ==========================================================
   02 · HERO
========================================================== */

/* ----------------------------------------------------------
   Hero
---------------------------------------------------------- */

.hero-project {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: var(--hero-image-height);
}

/* ----------------------------------------------------------
   Hero Image
---------------------------------------------------------- */

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 1;
}

/* ----------------------------------------------------------
   Hero Overlay
---------------------------------------------------------- */

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient( 90deg, rgba(0,0,0,.90) 0%, rgba(0,0,0,.74) 38%, rgba(0,0,0,.36) 70%, rgba(0,0,0,.12) 100% );
}

/* ----------------------------------------------------------
   Hero Content
---------------------------------------------------------- */

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--hero-content-width);
  padding-top: 0;
  padding-right: 40px;
  padding-bottom: 45px;
  padding-left: 60px;
}

/* ----------------------------------------------------------
   Hero Category
---------------------------------------------------------- */

.hero-category {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 40px;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero-category::after {
  content: "";
  width: 82px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient( 90deg, var(--accent-divider), var(--accent) );
}

/* ----------------------------------------------------------
   Hero Title
---------------------------------------------------------- */

.hero-title {
  margin: 0 0 45px 0;
  color: var(--hero-text);
  font-size: clamp(3.4rem,7vw,5.8rem);
  font-weight: 300;
  line-height: .82;
  letter-spacing: -.03em;
}

/* ----------------------------------------------------------
   Hero Description
---------------------------------------------------------- */

.hero-description {
  margin-top: 22px;
  margin-bottom: 70px;
  max-width: 560px;
  color: var(--hero-text-secondary);
  font-size: .98rem;
  line-height: 1.9;
}

/* #########################################################################
#
#  COMPONENTS
#
######################################################################### */

/* ==========================================================
   03 · BUTTON
========================================================== */

/* ----------------------------------------------------------
   Button
---------------------------------------------------------- */

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 16px 36px;
  margin-top: 30px;
  border: none;
  border-radius: 12px;
  background: linear-gradient( 90deg, var(--accent-light) 0%, var(--accent) 45%, var(--accent-dark) 100% );
  color: #FFFFFF;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--hero-transition);
  box-shadow: 0 8px 20px var(--accent-glow);
}

/* ----------------------------------------------------------
   Button · Hover
---------------------------------------------------------- */

.hero-button:hover {
  color: #FFFFFF;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px var(--accent-glow), 0 0 35px var(--accent-glow);
}

/* ----------------------------------------------------------
   Button · Shine
---------------------------------------------------------- */

.hero-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient( 120deg, transparent, rgba(255,255,255,.35), transparent );
  transition: left .70s ease;
}

.hero-button:hover::before {
  left: 140%;
}

/* ----------------------------------------------------------
   Button · Active
---------------------------------------------------------- */

.hero-button:active {
  transform: translateY(-1px);
}

/* ==========================================================
   04 · DIVIDER
========================================================== */

.hero-divider {
  width: 100%;
  height: 1px;
  position: relative;
  overflow: hidden;
  background: linear-gradient( 90deg, transparent 0%, var(--accent-divider) 18%, var(--accent) 50%, var(--accent-divider) 82%, transparent 100% );
}

/* ==========================================================
   05 · FOOTER
========================================================== */

.hero-bottom {
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
  column-gap: 50px;
  row-gap: 40px;
  padding: 40px 60px;
  background: var(--hero-surface);
}

/* ----------------------------------------------------------
   Footer · Left
---------------------------------------------------------- */

.hero-bottom > :first-child {
  align-self: center;
}

/* ----------------------------------------------------------
   Footer · Right
---------------------------------------------------------- */

.hero-bottom > :last-child {
  width: 100%;
}

/* ==========================================================
   06 · STATS
========================================================== */

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* ----------------------------------------------------------
   Icon
---------------------------------------------------------- */

.hero-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  transition: all var(--hero-transition);
}

.hero-stat:hover .hero-icon {
  transform: translateY(-3px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
}

.hero-icon i {
  color: var(--accent);
  font-size: 1.35rem;
}

/* ----------------------------------------------------------
   Text
---------------------------------------------------------- */

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-number {
  color: var(--hero-text);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

.hero-label {
  color: var(--hero-text-secondary);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ==========================================================
   07 · GALLERY
========================================================== */

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  width: 100%;
  align-items: center;
}

/* ----------------------------------------------------------
   Gallery Image
---------------------------------------------------------- */

.hero-gallery-image {
  display: block;
  width: 100%;
  height: var(--hero-gallery-height);
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  transition: all var(--hero-transition);
  overflow: hidden;
}

/* ----------------------------------------------------------
   Gallery Hover
---------------------------------------------------------- */

.hero-gallery-image:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

/* #########################################################################
#
#  RESPONSIVE
#
######################################################################### */

/* ==========================================================
   08 · XS
   < 576px
========================================================== */

/* ----------------------------------------------------------
       HERO
    ---------------------------------------------------------- */

@media (max-width:575.98px) {
  .hero-project {
    min-height: 430px;
  }
}

@media (max-width:575.98px) {
  .hero-content {
    max-width: 100%;
    padding: 28px 22px;
  }
}

@media (max-width:575.98px) {
  .hero-category {
    margin-bottom: 10px;
    font-size: .68rem;
  }
}

@media (max-width:575.98px) {
  .hero-title {
    font-size: 2.15rem;
    line-height: .95;
    margin-bottom: 14px;
  }
}

@media (max-width:575.98px) {
  .hero-description {
    max-width: 260px;
    font-size: .72rem !important;
    line-height: 1.45;
    margin-top: 12px;
    margin-bottom: 18px;
  }
}

@media (max-width:575.98px) {
  .hero-button {
    width: 100%;
    max-width: 230px;
    padding: 12px 20px;
    font-size: .76rem;
    margin-top: 14px;
  }
}

/* ----------------------------------------------------------
       FOOTER
    ---------------------------------------------------------- */

@media (max-width:575.98px) {
  .hero-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 22px;
  }
}

/* ----------------------------------------------------------
       STATS
    ---------------------------------------------------------- */

@media (max-width:575.98px) {
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
    width: 100%;
  }
}

@media (max-width:575.98px) {
  .hero-stat {
    justify-content: center;
    gap: 10px;
  }
}

@media (max-width:575.98px) {
  .hero-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
}

@media (max-width:575.98px) {
  .hero-icon i {
    font-size: 1rem;
  }
}

@media (max-width:575.98px) {
  .hero-number {
    font-size: .95rem;
  }
}

@media (max-width:575.98px) {
  .hero-label {
    font-size: .65rem;
  }
}

/* ----------------------------------------------------------
       GALLERY
    ---------------------------------------------------------- */

@media (max-width:575.98px) {
  .hero-gallery {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
}

@media (max-width:575.98px) {
  .hero-gallery-image {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 14px;
  }
}

@media (max-width:575.98px) {
  .hero-gallery-image:nth-child(2), .hero-gallery-image:nth-child(3) {
    display: none;
  }
}

/* ==========================================================
   09 · SM
   576px - 767.98px
========================================================== */

/* ----------------------------------------------------------
       HERO
    ---------------------------------------------------------- */

@media (min-width:576px) and (max-width:767.98px) {
  .hero-project {
    min-height: 470px;
  }
}

@media (min-width:576px) and (max-width:767.98px) {
  .hero-content {
    max-width: 320px;
    padding: 34px 26px;
  }
}

@media (min-width:576px) and (max-width:767.98px) {
  .hero-category {
    margin-bottom: 10px;
    font-size: .72rem;
  }
}

@media (min-width:576px) and (max-width:767.98px) {
  .hero-title {
    font-size: 2.45rem;
    line-height: .94;
    margin-bottom: 14px;
  }
}

@media (min-width:576px) and (max-width:767.98px) {
  .hero-description {
    max-width: 300px;
    font-size: .88rem !important;
    line-height: 1.50;
    margin-top: 14px;
    margin-bottom: 20px;
  }
}

@media (min-width:576px) and (max-width:767.98px) {
  .hero-button {
    padding: 12px 24px;
    font-size: .80rem;
    margin-top: 14px;
  }
}

/* ----------------------------------------------------------
       FOOTER
    ---------------------------------------------------------- */

@media (min-width:576px) and (max-width:767.98px) {
  .hero-bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px 26px;
  }
}

/* ----------------------------------------------------------
       STATS
    ---------------------------------------------------------- */

@media (min-width:576px) and (max-width:767.98px) {
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    width: 100%;
  }
}

@media (min-width:576px) and (max-width:767.98px) {
  .hero-stat {
    justify-content: center;
    gap: 12px;
  }
}

@media (min-width:576px) and (max-width:767.98px) {
  .hero-icon {
    width: 48px;
    height: 48px;
  }
}

@media (min-width:576px) and (max-width:767.98px) {
  .hero-icon i {
    font-size: 1.1rem;
  }
}

@media (min-width:576px) and (max-width:767.98px) {
  .hero-number {
    font-size: 1rem;
  }
}

@media (min-width:576px) and (max-width:767.98px) {
  .hero-label {
    font-size: .70rem;
  }
}

/* ----------------------------------------------------------
       GALLERY
    ---------------------------------------------------------- */

@media (min-width:576px) and (max-width:767.98px) {
  .hero-gallery {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
}

@media (min-width:576px) and (max-width:767.98px) {
  .hero-gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
}

@media (min-width:576px) and (max-width:767.98px) {
  .hero-gallery-image:nth-child(2), .hero-gallery-image:nth-child(3) {
    display: none;
  }
}

/* ==========================================================
   10 · MD
   768px - 991.98px
========================================================== */

/* ----------------------------------------------------------
       HERO
    ---------------------------------------------------------- */

@media (min-width:768px) and (max-width:991.98px) {
  .hero-project {
    min-height: 520px;
  }
}

@media (min-width:768px) and (max-width:991.98px) {
  .hero-content {
    max-width: 360px;
    padding-top: 0;
    padding-right: 28px;
    padding-bottom: 28px;
    padding-left: 36px;
  }
}

@media (min-width:768px) and (max-width:991.98px) {
  .hero-category {
    margin-bottom: 12px;
    font-size: .74rem;
  }
}

@media (min-width:768px) and (max-width:991.98px) {
  .hero-title {
    font-size: 2.9rem;
    line-height: .92;
    margin-bottom: 16px;
  }
}

@media (min-width:768px) and (max-width:991.98px) {
  .hero-description {
    max-width: 340px;
    font-size: 0.85rem !important;
    line-height: 1.55;
    margin-top: 16px;
    margin-bottom: 22px;
  }
}

@media (min-width:768px) and (max-width:991.98px) {
  .hero-button {
    padding: 13px 26px;
    font-size: .82rem;
    margin-top: 16px;
  }
}

/* ----------------------------------------------------------
       FOOTER
    ---------------------------------------------------------- */

@media (min-width:768px) and (max-width:991.98px) {
  .hero-bottom {
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: center;
    column-gap: 26px;
    padding: 26px 36px;
  }
}

/* ----------------------------------------------------------
       STATS
    ---------------------------------------------------------- */

@media (min-width:768px) and (max-width:991.98px) {
  .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
}

@media (min-width:768px) and (max-width:991.98px) {
  .hero-stat {
    gap: 14px;
  }
}

@media (min-width:768px) and (max-width:991.98px) {
  .hero-icon {
    width: 50px;
    height: 50px;
  }
}

@media (min-width:768px) and (max-width:991.98px) {
  .hero-icon i {
    font-size: 1.15rem;
  }
}

@media (min-width:768px) and (max-width:991.98px) {
  .hero-number {
    font-size: 1.1rem;
  }
}

@media (min-width:768px) and (max-width:991.98px) {
  .hero-label {
    font-size: .72rem;
  }
}

/* ----------------------------------------------------------
       GALLERY
    ---------------------------------------------------------- */

@media (min-width:768px) and (max-width:991.98px) {
  .hero-gallery {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: end;
  }
}

@media (min-width:768px) and (max-width:991.98px) {
  .hero-gallery-image {
    width: 100%;
    max-width: 320px;
    height: 180px;
    object-fit: cover;
  }
}

@media (min-width:768px) and (max-width:991.98px) {
  .hero-gallery-image:nth-child(2), .hero-gallery-image:nth-child(3) {
    display: none;
  }
}

/* ==========================================================
   11 · LG
   992px - 1199.98px
========================================================== */

/* ----------------------------------------------------------
       HERO
    ---------------------------------------------------------- */

@media (min-width:992px) and (max-width:1199.98px) {
  .hero-project {
    min-height: 560px;
  }
}

@media (min-width:992px) and (max-width:1199.98px) {
  .hero-content {
    max-width: 420px;
    padding-top: 0;
    padding-right: 32px;
    padding-bottom: 32px;
    padding-left: 44px;
  }
}

@media (min-width:992px) and (max-width:1199.98px) {
  .hero-category {
    margin-bottom: 14px;
    font-size: .78rem;
  }
}

@media (min-width:992px) and (max-width:1199.98px) {
  .hero-title {
    font-size: 3.4rem;
    line-height: .90;
    margin-bottom: 18px;
  }
}

@media (min-width:992px) and (max-width:1199.98px) {
  .hero-description {
    max-width: 390px;
    font-size: .90rem;
    line-height: 1.65;
    margin-top: 18px;
    margin-bottom: 26px;
  }
}

@media (min-width:992px) and (max-width:1199.98px) {
  .hero-button {
    margin-top: 18px;
    padding: 14px 30px;
    font-size: .86rem;
  }
}

/* ----------------------------------------------------------
       FOOTER
    ---------------------------------------------------------- */

@media (min-width:992px) and (max-width:1199.98px) {
  .hero-bottom {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    column-gap: 32px;
    row-gap: 0;
    padding: 30px 44px;
  }
}

/* ----------------------------------------------------------
       STATS
    ---------------------------------------------------------- */

@media (min-width:992px) and (max-width:1199.98px) {
  .hero-stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    width: 100%;
  }
}

@media (min-width:992px) and (max-width:1199.98px) {
  .hero-stat {
    display: flex;
    align-items: center;
    gap: 16px;
  }
}

@media (min-width:992px) and (max-width:1199.98px) {
  .hero-icon {
    width: 54px;
    height: 54px;
  }
}

@media (min-width:992px) and (max-width:1199.98px) {
  .hero-icon i {
    font-size: 1.25rem;
  }
}

@media (min-width:992px) and (max-width:1199.98px) {
  .hero-number {
    font-size: 1.20rem;
  }
}

@media (min-width:992px) and (max-width:1199.98px) {
  .hero-label {
    font-size: .75rem;
  }
}

/* ----------------------------------------------------------
       GALLERY
    ---------------------------------------------------------- */

@media (min-width:992px) and (max-width:1199.98px) {
  .hero-gallery {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
    width: 100%;
    align-items: center;
  }
}

@media (min-width:992px) and (max-width:1199.98px) {
  .hero-gallery-image {
    display: block;
    width: 100%;
    height: 165px;
    object-fit: cover;
  }
}

@media (min-width:992px) and (max-width:1199.98px) {
  .hero-gallery-image:nth-child(3) {
    display: none;
  }
}

/* ==========================================================
   12 · XL
   1200px - 1399.98px
========================================================== */

/* ----------------------------------------------------------
       HERO
    ---------------------------------------------------------- */

@media (min-width:1200px) and (max-width:1399.98px) {
  .hero-project {
    min-height: 600px;
  }
}

@media (min-width:1200px) and (max-width:1399.98px) {
  .hero-content {
    max-width: 460px;
    padding-left: 52px;
    padding-top: 10px;
  }
}

@media (min-width:1200px) and (max-width:1399.98px) {
  .hero-category {
    margin-bottom: 14px;
  }
}

@media (min-width:1200px) and (max-width:1399.98px) {
  .hero-title {
    font-size: 4.2rem;
    line-height: .90;
    margin-bottom: 22px;
  }
}

@media (min-width:1200px) and (max-width:1399.98px) {
  .hero-description {
    max-width: 430px;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 26px;
  }
}

/* ----------------------------------------------------------
       FOOTER
    ---------------------------------------------------------- */

@media (min-width:1200px) and (max-width:1399.98px) {
  .hero-bottom {
    padding: 34px 52px;
  }
}

/* ----------------------------------------------------------
       STATS
    ---------------------------------------------------------- */

@media (min-width:1200px) and (max-width:1399.98px) {
  .hero-stats {
    width: 300px;
  }
}

/* ----------------------------------------------------------
       GALLERY
    ---------------------------------------------------------- */

@media (min-width:1200px) and (max-width:1399.98px) {
  .hero-gallery {
    gap: 16px;
  }
}

@media (min-width:1200px) and (max-width:1399.98px) {
  .hero-gallery-image {
    height: 150px;
  }
}

/* ==========================================================
   13 · XXL
   ≥ 1400px
========================================================== */

/* ----------------------------------------------------------
       HERO
    ---------------------------------------------------------- */

@media (min-width:1400px) {
  .hero-project {
    min-height: 650px;
  }
}

@media (min-width:1400px) {
  .hero-content {
    max-width: 480px;
    padding-left: 60px;
    padding-top: 0;
  }
}

@media (min-width:1400px) {
  .hero-category {
    margin-bottom: 40px;
  }
}

@media (min-width:1400px) {
  .hero-title {
    font-size: clamp(3.4rem,7vw,5.8rem);
    line-height: .82;
    margin-bottom: 45px;
  }
}

@media (min-width:1400px) {
  .hero-description {
    max-width: 560px;
    font-size: .98rem;
    line-height: 1.9;
    margin-bottom: 70px;
  }
}

@media (min-width:1400px) {
  .hero-button {
    padding: 16px 36px;
    margin-top: 30px;
  }
}

/* ----------------------------------------------------------
       FOOTER
    ---------------------------------------------------------- */

@media (min-width:1400px) {
  .hero-bottom {
    grid-template-columns: 300px 1fr;
    column-gap: 50px;
    row-gap: 40px;
    padding: 40px 60px;
  }
}

/* ----------------------------------------------------------
       STATS
    ---------------------------------------------------------- */

@media (min-width:1400px) {
  .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
}

/* ----------------------------------------------------------
       GALLERY
    ---------------------------------------------------------- */

@media (min-width:1400px) {
  .hero-gallery {
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
  }
}

@media (min-width:1400px) {
  .hero-gallery-image {
    display: block;
    height: 170px;
  }
}

/* #########################################################################
#
#  THEMES
#
######################################################################### */

/* ==========================================================
   14 · HOME
========================================================== */

.theme-home {
  --accent: #20B5F5;
  --accent-light: #56CBFF;
  --accent-dark: #0099D9;
  --accent-divider: #7AD8FF;
  --accent-glow: rgba(32,181,245,.30);
}

/* ==========================================================
   15 · PHOTOGRAPHY
========================================================== */

.theme-photography {
  --accent: #FF8C00;
  --accent-light: #FFB347;
  --accent-dark: #F57C00;
  --accent-divider: #FFC670;
  --accent-glow: rgba(245,124,0,.35);
}

/* ==========================================================
   16 · CATALOGS
========================================================== */

.theme-catalogs {
  --accent: #2ECC71;
  --accent-light: #58D68D;
  --accent-dark: #27AE60;
  --accent-divider: #7EE2A7;
  --accent-glow: rgba(46,204,113,.35);
}

/* ==========================================================
   17 · 3D
========================================================== */

.theme-3d {
  --accent: #8E44AD;
  --accent-light: #A569BD;
  --accent-dark: #7D3C98;
  --accent-divider: #C39BD3;
  --accent-glow: rgba(142,68,173,.35);
}

/* ==========================================================
   18 · APPLICATIONS
========================================================== */

.theme-applications {
  --accent: #3498DB;
  --accent-light: #5DADE2;
  --accent-dark: #2E86C1;
  --accent-divider: #85C1E9;
  --accent-glow: rgba(52,152,219,.35);
}

/* ==========================================================
   19 · SPECIAL PROJECTS
========================================================== */

.theme-special-projects {
  --accent: #B87333;
  --accent-light: #D89A5B;
  --accent-dark: #996633;
  --accent-divider: #E2B17C;
  --accent-glow: rgba(184,115,51,.35);
}

