/* =========================================
   INNER HERO
========================================= */

.inner-hero {

  position: relative;

  padding: 220px 0 120px;

  background:
    linear-gradient(
      rgba(8,20,38,0.82),
      rgba(8,20,38,0.88)
    ),
    url('../images/hero/scbanner2.png');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;

}

.inner-hero-content {

  max-width: 850px;

  color: #fff;

}

.inner-tag {

  display: inline-block;

  padding: 10px 18px;

  border-radius: 50px;

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(10px);

  font-size: 13px;

  margin-bottom: 25px;

  letter-spacing: 1px;

}

.inner-hero h1 {

  font-size: 68px;

  line-height: 1.08;

  margin-bottom: 22px;

}

.inner-hero p {

  max-width: 650px;

  color: rgba(255,255,255,0.75);

  font-size: 17px;

}






/* =========================================
   TEAM INTRO
========================================= */

.team-intro{

  padding-bottom:20px;

}

/* =========================================
   FOUNDER SECTION
========================================= */

.founder-section{

  padding:100px 0;

}

.founder-grid{

  display:grid;

  grid-template-columns:520px 1fr;

  gap:70px;

  align-items:center;

}

.founder-image{

  overflow:hidden;

  border-radius:30px;

  box-shadow:
  0 20px 60px rgba(0,0,0,.10);

}

.founder-image img{

  width:100%;
  height:100%;

  display:block;

  object-fit:cover;

}

.founder-content h2{

  font-size:56px;

  line-height:1.1;

  margin:20px 0 10px;

}

.founder-content h4{

  color:#c62828;

  font-size:20px;

  margin-bottom:25px;

  font-weight:600;

}

.founder-content p{

  color:#64748b;

  line-height:1.9;

  margin-bottom:18px;

}

/* =========================================
   TEAM MEMBERS
========================================= */

.team-members{

  background:#f8fafc;

}

.team-grid{

  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:30px;

  margin-top:60px;

}

.team-card{

  background:#fff;

  border-radius:26px;

  overflow:hidden;

  transition:.4s ease;

  border:1px solid rgba(0,0,0,.05);

  box-shadow:
  0 10px 35px rgba(0,0,0,.05);

}

.team-card:hover{

  transform:translateY(-8px);

}

.team-card img{

  width:100%;

  height:420px;

  object-fit:cover;

}

.team-content{

  padding:28px;

}

.team-content h3{

  font-size:26px;

  margin-bottom:8px;

}

.team-content span{

  color:#c62828;

  display:block;

  margin-bottom:15px;

  font-weight:600;

}

.team-content p{

  color:#64748b;

  line-height:1.8;

}

/* =========================================
   PROCESS SECTION
========================================= */

.team-process{

  background:#fff;

}

.process-grid{

  display:grid;

  grid-template-columns:repeat(4,1fr);

  gap:25px;

  margin-top:60px;

}

.process-card{

  background:#f8fafc;

  border-radius:24px;

  padding:40px 30px;

  position:relative;

  transition:.4s ease;

}

.process-card:hover{

  transform:translateY(-8px);

}

.process-card span{

  display:inline-flex;

  width:60px;
  height:60px;

  border-radius:16px;

  align-items:center;
  justify-content:center;

  background:#0f2e57;

  color:#fff;

  font-weight:700;

  margin-bottom:25px;

}

.process-card h3{

  margin-bottom:15px;

  font-size:24px;

}

.process-card p{

  color:#64748b;

  line-height:1.8;

}

/* =========================================
   VALUES
========================================= */

.values-section{

  background:#f8fafc;

}

.values-grid{

  display:grid;

  grid-template-columns:repeat(4,1fr);

  gap:25px;

}

.value-box{

  background:#fff;

  text-align:center;

  padding:45px 25px;

  border-radius:24px;

  transition:.4s ease;

  border:1px solid rgba(0,0,0,.05);

}

.value-box:hover{

  transform:translateY(-8px);

  box-shadow:
  0 15px 40px rgba(0,0,0,.08);

}

.value-box i{

  font-size:46px;

  color:#c62828;

  margin-bottom:22px;

}

.value-box h3{

  font-size:24px;

}

/* =========================================
   CTA SECTION
========================================= */

.practice-cta{

  padding:120px 0;

  background:
  linear-gradient(
  rgba(10,24,45,.90),
  rgba(10,24,45,.90)
  ),
  url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1600&q=80');

  background-size:cover;

  background-position:center;

}

.practice-cta-content{

  max-width:850px;

  margin:auto;

  text-align:center;

  color:#fff;

}

.practice-cta-content h2{

  font-size:60px;

  line-height:1.15;

  margin-bottom:20px;

}

.practice-cta-content p{

  font-size:18px;

  color:rgba(255,255,255,.75);

  margin-bottom:35px;

  line-height:1.8;

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

  .founder-grid{

    grid-template-columns:450px 1fr;

  }

}

@media(max-width:991px){

  .founder-grid{

    grid-template-columns:1fr;

    gap:50px;

  }

  .founder-image{

    max-width:650px;

    margin:auto;

  }

  .team-grid{

    grid-template-columns:repeat(2,1fr);

  }

  .process-grid{

    grid-template-columns:repeat(2,1fr);

  }

  .values-grid{

    grid-template-columns:repeat(2,1fr);

  }

  .practice-cta-content h2{

    font-size:46px;

  }

}

@media(max-width:767px){

  .founder-content h2{

    font-size:40px;

  }

  .team-grid{

    grid-template-columns:1fr;

  }

  .process-grid{

    grid-template-columns:1fr;

  }

  .values-grid{

    grid-template-columns:1fr;

  }

  .team-card img{

    height:360px;

  }

  .practice-cta{

    padding:90px 0;

  }

  .practice-cta-content h2{

    font-size:34px;

  }

  .practice-cta-content p{

    font-size:15px;

  }

}

@media(max-width:575px){

  .founder-section{

    padding:70px 0;

  }

  .founder-content h2{

    font-size:34px;

  }

  .team-card img{

    height:320px;

  }

  .team-content{

    padding:22px;

  }

}