* {
  padding: 0px !important;
  margin: 0px !important;
}

/* desktop view css */
@media (min-width: 992px) {
  .who-desktop-image {
    height: 100%;
    width: 80%;
    object-fit: cover;
    padding-top: 100px !important;
  }
}

.who-row-width {
  width: 85%;
}

/* mobile view css */
@media (max-width: 992px) {
  .who-mobile-image {
    height: 100%;
    width: 30%;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
}


/* title css*/
@media (min-width: 992px) {
  .heading-wrapper {
    display: inline-block;
    position: relative;
  }

  .image-under-heading {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
}