header{
    height: 100vh;
  }
  .quote {
    height: auto;
    width: 40%;
    padding: 30px;
    text-align: left;
    position: absolute;
    top: 40%;
}
.quote h1{
  margin: 10px 0px;
  font-weight: 600;
  font-family: sans-serif;
  text-transform: uppercase;
}
.quote h1 span{
  color: #a4a4a4;
}
.content-box{
  margin-top: 20vh;
  width: 100%;
  height: auto;
  text-align: center;
  padding: 10px;
}
.content-box h2{
  margin: 10px 0;
  color: var(--bg-color);
}

.background{
  height: 100vh;
  width: 50%;
  float: right;
  background: url(Services.png) no-repeat center;
  background-size: cover;
}
.strip{
  margin-top: 20vh;
  height: 30vh;
  width: 100%;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  background-color: var(--bg-color);
}
.strip .card{
  height: 58vh;
  width: 24%;
  background-color: white;
  padding: 30px;
  box-shadow:0 6px 20px 0 rgba(48, 132, 131, 0.1);
  gap: 26%;
  min-width:300px;
  border-radius: 10px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
}
.strip .card .heading{
  font-size: 1.6em;
  text-align: center;
  font-weight: 600;
  color: var(--bg-color);
}
.strip .card i{
  font-size: 2em;
  padding: 20px;
  color: white;
  border-radius: 100px;
  background-color: var(--bg-color);
}
.strip .act{
  transform: scale(1.1);
}
@media screen and (max-width: 800px){
  .quote {
    top: 60%;
    width: 70%;
}
.background{
  width: 100%;
}
}
@media screen and (max-width: 480px){
  .background{
    margin-top: 8vh;
    height: 50vh;
  }
  .quote {
    top: 55%;
    width: 100%;
}
.strip{
  height: auto;
  gap: 40px;
  padding: 8px;
}
.strip .act{
  transform: none;
}
.strip .card{
  height: 40vh;
  min-width: 100%;
}
.content-box p{
  text-align: justify;
}
}