*{
  margin: 0;
  padding: 0 ;
  box-sizing: border-box;
 
}
a{
  text-decoration: none;
  color: white;
}
body{
  font-family: 'Roboto Condensed', sans-serif;
  
}

.header-video{
  background: url("../assets/images/header-bg/buildings.png") no-repeat center ;
  background-size: cover;
}


/* ===== hero section ===== */
.hero{
  height: 45vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  
}
.hero-heading{
  font-size: 1.9rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}
@media screen and (max-width:900px){
  .hero-heading{
    font-size: 1.5rem;
  }
  .hero{
    height: 300px;
  }
 
}

@media screen and (max-width:786px){
  .hero{
    height: 250px;
    padding: 0 2rem;
    /* background-color: lightcoral; */
  }
  .hero-heading{
    font-weight: bold;
  }
}
@media screen and (max-width:500px){
  .hero-heading{
    font-size: 1rem;
  }

}

/*  ==== Our Clients Section ===== */


.client-image{
  width: 100%;
}


.client-list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 5%;
  margin-top: -50px;
  margin-bottom: 70px;
  overflow-x: hidden;
  /* border: 2px solid black; */
}
.client{
  margin: 50px 30px;
  /* border: 2px solid red; */
}

.client-title{
  font-family: 'Montserrat', sans-serif;
  text-transform: capitalize;
  margin: 10px 0;
}
.client-work-title{
  font-size: 0.7rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: capitalize;
  color: grey;
}
@media screen and (min-width:1200px){
  .client-list{
    padding: 0 12%;
  }
}
@media screen and (max-width:768px){
  .client-list{
    padding: 0 10%;
    grid-template-columns: 1fr;
    margin-top: -30px;
    
  }
  
}

@media screen and (max-width:500px){
  .client{
    margin: 30px 10px;
  }
  .client-title{
    font-size: 0.9rem;

  }
 
}




/*  ==== Our Clients Section Ends ===== */




.bottom-section{
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 350px;
  padding: 0vh 20vh;

}
.bottom-heading{
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;

}
.bottom-heading > span {
  display: block;
}
.bottom-section-image{
  width: 200px;
  margin-top: 50px ;
  margin-left: 50px;
  /* border: 2px solid red; */
}

@media screen and (max-width:768px){
  .bottom-section{
    padding: 0px 5vh;
    height: 220px;
    text-align: center;
  }
  .bottom-heading{
    width: 100%;
    font-size: 1rem;
    font-weight: bold;
  }
  .bottom-heading > span {
    display: inline-block;
  }
  .bottom-section-image{
    width: 150px;
    margin: 0;
    margin-top: 35px;
  }
}