
.offers-section{
  position: relative;
}

.offers-section .image-box{
  position: relative;
  display: block;
  border-radius: 5px;
  overflow: hidden;
}

.offers-section .image-box:before{
  position: absolute;
  top: 0;
  left: -85%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 1;
}

.offers-section .image-box:hover:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

.offers-section .image-box img{
  width: 100%;
  border-radius: 5px;
}

.offers-section .content-box{
  position: relative;
  display: block;
}

.offers-section .content-box .icon-box{
  position: relative;
  display: block;
  font-size: 80px;
  color: #0A1426;
  margin-bottom: 30px;
}

.offers-section .content-box p{
  color: #8A90A2;
  margin-bottom: 30px;
}

.offers-section .content-box h3{
  display: block;
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 40px;
}

.offers-section .content-box h3 span{
  color: var(--main-color);
}

.offers-section .content-box .btn-box .theme-btn{
  background: #0B7FE2;
}

.offers-section .content-box .btn-box .theme-btn:hover{
  background: var(--main-color);
}





















