/* Hero */
.hero {
    background: url("images/heavyconstruction.jpg") center/cover no-repeat;
    text-align: center;
    padding: 100px 20px;
    }

.hero-content{
    color: white;
}
  
.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: white
    ;
  }
  
.hero p {
    font-size: 1.2rem;
  }


/* Overview */

.overview h2{
    text-align: left;
    font-size: 2.0rem;
    margin-left: 10%;
  }
  
  .overview h3{
    text-align: left;
    font-size: 1.5rem;
    margin-left: 10%;
  }
  
  .overview h4{
    text-align: left;
    font-size: 1.1rem;
    margin-left: 11%;
  }
  
  .overview p {
    text-align: left;
    font-size: 1.1rem;
    margin-left: 12%;
    margin-right: 12%;
    
  }

  .overview p2{
    font-weight: bold;
  }

 /* Features */
 .container{
  text-align: center;
  margin-bottom: 5%;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
  margin-left: 5%;
  margin-right:5%;
}

.feature-box {
  background: #16436f;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: white;
}

/* contact */
.cta {
  background: white;
  color: black;
  text-align: center;
  padding: 40px 10px;
  margin-left: 10%;
  margin-right: 10%;
}

.call {
  color: #16436f;
  font-weight: bold;
  text-decoration: none;
  font-size: 20px;
}
.cta p2{
  font-weight: bold;
}