section.offer-right {
  width: 80%;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  section.offer-right {
    width: 70%;
  }
}
@media only screen and (min-width: 1200px) {
  section.offer-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
    margin: 0 auto 120px;
  }
}
@media only screen and (min-width: 1700px) {
  section.offer-right {
    width: 60%;
  }
}
section.offer-right .offer-tile {
  width: 100%;
  position: relative;
  height: 40vh;
  overflow: hidden;
  transition: .5s;
  margin: 0px 0px 30px;
}
@media only screen and (min-width: 768px) {
  section.offer-right .offer-tile {
    margin: 0px 0px 60px;
  }
}
@media only screen and (min-width: 1200px) {
  section.offer-right .offer-tile {
    margin: 0;
  }
}
@media only screen and (min-width: 1700px) {
  section.offer-right .offer-tile {
    height: 35vh;
  }
}
section.offer-right .offer-tile .tile-content {
  padding: 10px;
  box-sizing: border-box;
  position: relative;
  height: 100%;
  transition: .5s;
  text-align: center;
}
@media only screen and (min-width: 500px) {
  section.offer-right .offer-tile .tile-content {
    padding: 20px;
  }
}
@media only screen and (min-width: 768px) {
  section.offer-right .offer-tile .tile-content {
    padding: 25px;
  }
}
@media only screen and (min-width: 1000px) {
  section.offer-right .offer-tile .tile-content {
    padding: 35px;
  }
}
section.offer-right .offer-tile .tile-content h3 {
  transition: .5s;
  transform: scale(1.3);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.offer-right .offer-tile .tile-content p {
  opacity: 0;
  transition: .5s;
  margin: 10% 0 0;
}
section.offer-right .offer-tile .tile-content h5 {
  opacity: 0;
  transition: .5s;
  position: absolute;
  bottom: 3%;
  right: 3%;
}
section.offer-right .offer-tile img.offer-bg {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%);
  height: 100%;
  z-index: -1;
}
section.offer-right .offer-tile.animation:hover .tile-content {
  display: block;
}
section.offer-right .offer-tile.animation:hover .tile-content h3 {
  padding: 0;
  transform: scale(1);
  height: 20%;
}
@media only screen and (min-width: 1200px) {
  section.offer-right .offer-tile.animation:hover .tile-content h3 {
    height: 15%;
  }
}
section.offer-right .offer-tile.animation:hover .tile-content p {
  opacity: 1;
}
section.offer-right .offer-tile.animation:hover .tile-content h5 {
  opacity: 1;
}
section.offer-right .offer-tile.half-animation:hover .tile-content {
  display: block;
}
section.offer-right .offer-tile.half-animation:hover .tile-content h5 {
  opacity: 1;
}
