body {
  padding: 0;
  margin: 0;
  background: #FFF;
  font-family: 'Josefin Sans', sans-serif;
}
.containerm {
  min-height: 100vh;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center
}
.image {
  overflow: hidden;
  height: 280px;
  padding-left: 0;
  width: 90%;
  position: relative;
  cursor: pointer;
  margin: 0 0px;
  box-shadow: 0 0 20px -3px rgb(0 0 0);
  transition: .5s;
  background-color: rgb(255, 255, 255);
  border-top-left-radius: 0px;
  border-top-right-radius: 22px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 22px;
}
.image:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-140%, -50%);
  background-color: rgb(206 9 2 / 69%);
  opacity: 0.8;
  border-radius: 50%;
  transition: .8s;
  -webkit-transition: .8s;
  -moz-transition: .8s;
  -ms-transition: .8s;
  -o-transition: .8s;
}
.image:hover:after {
  transform: translate(-50%, -50%);
}
.image:hover img {
  transform: translate(-50%, -50%) scale(1.3) rotate(20deg);
}
img {
  position: absolute;
  height: 52%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .8s
}
i {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-2000px, -50%);
  color: #fff;
  transition: .8s;
  transition-timing-function: ease-in
}
.image:hover i {
  transform: translate(-50%, -50%);
  transition-timing-function: ease
}
.box-content54 {
  margin-top: 5%;
}
.bg-img {
  height: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.container{
  padding: 42px;
}