p {
	font-family: "Gotham", sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: rgb(106, 108, 111);
}
    
    .hero {
      text-align: center;
      display: flex;
       flex-direction: column;
       align-items: center;
       
    }
    
    .hero-text {
      width: 85%;
       color: white;
    }
@media screen and (min-width: 992px) {
	.hero-text {
      width: 50%;
    }
}
    .hero-img-box {
      width: 100%;
      min-height: 300px;
      background-size: cover;
      background-position: center;
      margin-bottom: -25px;
    }
    
    .hero-text h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
      background-color: #ff6347;
      padding: 10px 20px;
      font-size: 2rem;
    }
    
    .intro-text {
      text-align: center;
		padding: 30px 15px;
      color: #333;
    }
@media screen and (min-width: 992px) {
	.intro-text {
      padding: 30px 15%;
    }
}

.service-section {
      background-color: #FFBB33;
      padding: 20px;
      text-align: center;
    }
    
    .service-section h2 {
      color: #555;
      margin-bottom: 20px;
	  font-size: 24px;
    }
    
    .services-container {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
    }
    
    .service-item {
      margin: 10px;
      width: 25%;
    }
    
    .services {
      color: #e66054;
		text-transform: uppercase;
		font-weight: 700;
    }
    
    .icon {
      margin-bottom: 10px;
    }
    
    .icon i {
      font-size: 2rem;
      color: #6A6C6F;
    }
    
    .service-item p {
      color: #6A6C6F;
    }

.project-images {
	margin: 30px auto;
	display: flex;
	flex-direction: column;
	align-items: center
    justify-content: center;
    text-align: center;
	gap: 2em;
}
.image-item img {
	max-height: 700px;
	width: auto;
}