.container {
  max-width: 100%;
  /* margin: 0 auto; */
  /* justify-content: center; */
  /* align-items: center; */
  padding-top: 1%;
}

.row{
  width: 80%;
  padding: 0px 15px;
  margin-bottom: 20px;
}

.row1{
  width: 62%;
  padding: 0px 15px;
  display: flex;
  gap: 20px;
  margin-top: 20px;
  margin-left: 3%;
  /* justify-content: center; */
}

.card {
  position: relative;
  width: 100%;
  height: 136px;
  font-family: sans-serif;
  text-align: center;
  line-height: 8rem;
  color: #ecf0f1;
  border-radius: 0.8rem;
  font-size: 1.2rem;
}
.face {
  position: absolute;
  width: 100%;
  overflow: hidden;
  height: 100%;
  font-weight: 600;
  color: #1fa119;
  font-size: 25px;
  border: 1px solid #a4e216;
  border-radius: 0.8rem;
  transition: 0.2s ease;
  backface-visibility: hidden;
  background: rgb(255 255 255);
  /* background: linear-gradient(151deg, rgb(19 106 141) 0%, rgb(48 173 99) 50%, rgb(215 195 17) 100%); */
}
.face-back {
  transform: rotateY(180deg);
  background: #41b14c;
  border: 2px solid #fff;
  line-height: 9.4rem;
}
.card:hover .face-front {
  transform: rotateY(-180deg);
}
.card:hover .face-back {
  transform: rotateY(0deg);
}


.side-img img {
  width: 86%;
}

.side-img {
    position: absolute;
    bottom: 0px;
    width: 36%;
    right: 0%;
    text-align: center;
}


.face:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    scale: 1.04;
    margin-top: -10px;
    background: #59da41;
    color: #fff;
}


h3 {
    font-size: 82%;
}


@media screen and (min-device-width: 240px) and (max-device-width: 640px) { 
    
  .row{
    width: 100%;
    padding: 0px 15px;
    margin-bottom: 20px;
  }

   .row1 {
        width: 99%;
        padding: 0px 15px;
        display: flex;
        gap: 20px;
        margin-top: 20px !important;
        margin: 0 auto;
        justify-content: center;
    }

    .side-img {
    position: absolute;
    bottom: 18%;
    width: 70%;
    right: 12%;
    text-align: center;
	}
}