.clientsHero {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clientsHero::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(80deg,#325488, #bfcedf);
clip-path: circle(370px at center 790px);
background-size: cover;
background-repeat: no-repeat;
z-index: -1;
}

.clientsHeroCenter {
width: 90%;
max-width: 1170px;
margin: .1px auto;
margin-top: -12rem;
display: grid;
padding: 0px 10px;
z-index: 99;
}

.clientsHeroInfo h1 {
  font-size: 2.8rem;
  text-transform: capitalize;
  color: #325488;
  line-height: 4rem;
  letter-spacing: 3.5px;
  margin-bottom: 1.5rem;
}

.clientsHeroInfo p {
  color: #325488;
  font-size: 1rem;
  margin-bottom: 2rem;
  text-align: justify;
}


.clientsBtn {
display: inline-block;
position: relative;
padding: 18px 30px;
background: transparent;
border: 1px solid #325488;
border-radius: 5px;
color: #325488;
font-size: 1.1em;
font-weight: 500;
letter-spacing: 1px;
}

.clientsBtn:hover{
border-color: transparent;
color: #fff;
}

.clientsBtn::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height:100%;
background: linear-gradient(to right, #325488, #28446ed5 );
z-index: -1;
transition: transform .5s;
transform-origin: right;
transform: scaleX(0);
border-radius: 5px;
}

.clientsBtn:hover::before {
transition: transform .5s;
transform-origin: left;
transform: scaleX(1);
}


@media screen and (min-width:1200px) {
  
.clientsHero::before {
    background-size: cover;
    height: 100%;
  }

  .clientsHeroCenter {
    display: grid;
    margin-top: -5rem;
    grid-template-columns: 2fr 1fr;
    column-gap: 5rem;
  }

.clientsHeroInfo h1 {
    font-size: 4.3rem;
    line-height: 5.4rem;
    letter-spacing: 1px;
 }

.clientsHeroInfo p {
    font-size: 1.2rem;
    line-height: 2.2rem;
    margin-bottom: 1.7rem;
}

.heroImg {
    margin-top: -40px;
     height: 350px;
      display: block;
      justify-self: center;
  }

  .heroImg {
    display: block;
  }
}

