/*
==================================================
 FILE: hero.css
 PURPOSE: Hero layout 
 AUTHOR: Arkadiusz Wawer
==================================================
*/

.hero-section {
  position: relative;
   padding: 180px 20px 140px; 
  /* padding: 120px 20px;  */
  overflow: hidden;


  align-items: right;

  background:
    radial-gradient(circle at 80% 20%, rgba(234,179,8,0.08), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(59,130,246,0.08), transparent 40%),
    linear-gradient(135deg, #020617 0%, #020617 100%);
}


/* ========================================
   ROW LAYOUT FIX
======================================== */

.hero-section .kt-row-layout-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100%;
}


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

.hero-content {
  margin-top: -40px;	
  max-width: 820px;
}

.hero-content h1 {
  font-size: 84px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-sub {
  font-size: 20px;
  opacity: 0.6;
  margin-bottom: 30px;
}

.hero-content h2 {
  font-size: 36px;
  max-width: 620px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero-quote {
  font-size: 20px;
  opacity: 0.75;
  font-style: italic;
}

/* ========================================
   HERO IMAGE
======================================== */

.hero-img {
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  max-width: 700px;
  width: 100%;
  height: auto;

  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}


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

@media (max-width: 768px) {

  .hero-section {
    padding: 80px 20px;
  }

  .hero-section .kt-row-layout-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content h2 {
    font-size: 20px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .hero-quote {
    font-size: 14px;
  }

  .hero-img {
    width: 100%;
    margin-top: 40px;
    justify-content: center;
  }

  .hero-image img {
    max-width: 320px;
  }
}