.hero-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("../images/hero-img.webp") center / cover no-repeat !important;
}

/* what we do section starts */
.what-we-do-section {
  margin-top: 62px;
}
.what-we-do-section .para20 {
  margin-top: 13px;
}
.services-wrap {
  margin-top: 57px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
  row-gap: 65px;
}
.service {
  border-radius: 4px;
  cursor: pointer;
}
.service .image {
  display: inline-block;
  width: 100%;
  height: 467px;
  overflow: hidden;
  position: relative;
}
.service .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.service .heading2 {
  margin-top: 20px;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 3px;
}
.card-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 23px 25px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.arrow-icon {
  width: 48px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 4px;
  margin-bottom: 6px;
}
.service:hover .image img {
  transform: scale(1.05);
}
.service:hover .arrow-icon svg{
    animation: slideFade 0.3s ease-in-out;
}
/* what we do section ends */

.newsletter-section{
    margin-top: 181px;
}

@media (max-width: 600px){
    .services-wrap{
        grid-template-columns: repeat(1, 1fr);
    }
    .service .image{
        height: 380px;
    }
}