/**************************************************
 * DEALS SECTION - MAIN CONTAINER
 **************************************************/
.deals-section {
  position: relative;
  padding: 60px 0 80px 0;
  /* background: #FFE8EE; */
}

.deals-section .shape-layer .shape-1 {
  position: absolute;
  left: 50%;
  top: 0px;
  width: 85px;
  height: 187px;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.deals-section .shape-layer .shape-2 {
  position: absolute;
  left: 0px;
  bottom: 140px;
  width: 135px;
  height: 163px;
  background-repeat: no-repeat;
}

.deals-section .shape-layer .shape-3 {
  position: absolute;
  top: 100px;
  right: 360px;
  width: 286px;
  height: 364px;
  background-repeat: no-repeat;
}

/**************************************************
 * DEALS GRID CONTAINER
 **************************************************/
.home-about-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
  margin-top: 20px;
}

.home-about-image-block,
.home-about-text-block {
  width: 100%;
}

/**************************************************
 * DEALS BLOCK - BASE STYLES
 **************************************************/
.home-about-block-one {
  position: relative;
  display: block;
  background: transparent;
  border-radius: 10px;
  padding: 0;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.08);
  height: 100%;
  overflow: hidden;
}

.home-about-block-one .inner-box {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

/**************************************************
 * IMAGE BLOCK STYLES
 **************************************************/
.home-about-block-one .inner-box .image-box {
  position: relative;
  display: block;
  width: 100%;
  min-width: 380px;
  height: 400px;
}

.home-about-block-one .inner-box .image-box .image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
  width: 100%;
  background: transparent;
}

.home-about-block-one .inner-box .image-box .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 500ms ease;
  display: block;
  background: transparent;
  /* background-color: #f8f6f2 */
}
.home-about-block-one .inner-box:hover .image-box .image img {
  transform: scale(1.05);
}

.home-about-image-block .home-about-block-one:hover .image-box .image img {
  transform: scale(1.05);
}

/**************************************************
 * CONTENT BLOCK STYLES (Text Template)
 **************************************************/
.home-about-block-one .inner-box .content-box {
  position: relative;
  display: block;
  padding: 30px 40px;
  flex: 1;
}

.home-about-block-one .inner-box .content-box .text {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 9px;
  color: #F76188;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.home-about-block-one .inner-box .content-box h3 {
  display: block;
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 15px;
}

.home-about-block-one .inner-box .content-box h3 a {
  display: inline-block;
  color: var(--title-color);
  text-decoration: none;
  transition: color 500ms ease;
}

.home-about-block-one .inner-box .content-box h3 a:hover {
  color: #F76188;
}

.home-about-block-one .inner-box .content-box .description {
  color: #666;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
}

/**************************************************
 * TEXT BLOCK STYLES
 **************************************************/
.home-about-text-block .home-about-block-one {
  padding: 0;
}

.home-about-text-block .inner-box .content-box {
  padding: 35px 40px;
}

.home-about-text-block .text-box h2 {
  font-size: 32px;
  line-height: 38px;
  margin-bottom: 10px;
  color: var(--title-color);
}

.home-about-text-block .text-box h5 {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 15px;
  color: #F76188;
  font-weight: 600;
}

.home-about-text-block .text-box p {
  font-size: 16px;
  line-height: 26px;
  color: #666;
  margin-bottom: 0;
}

.about-loading {
  padding: 40px;
  text-align: center;
  color: #999;
  font-style: italic;
}


/**************************************************
 * FEATURE LIST STYLES
 **************************************************/
.home-about-block-one .inner-box .content-box .feature-list ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.home-about-block-one .inner-box .content-box .feature-list ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--title-color);
}

.home-about-block-one .inner-box .content-box .feature-list ul li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #A8DF8E;
  font-size: 16px;
}

/**************************************************
 * BUTTON STYLES
 **************************************************/
.home-about-block-one .inner-box .content-box .theme-btn {
  padding: 10px 35px;
  font-size: 15px;
  background: transparent;
  border: 2px dashed #F76188;
  color: #F76188;
  cursor: pointer;
  transition: all 500ms ease;
}

.home-about-block-one .inner-box .content-box .theme-btn:hover {
  background: #F76188;
  color: #fff;
}

/**************************************************
 * RTL SUPPORT
 **************************************************/
.rtl .home-about-block-one .inner-box .content-box .feature-list ul li {
  padding-left: 0;
  padding-right: 30px;
}

.rtl .home-about-block-one .inner-box .content-box .feature-list ul li i {
  left: auto;
  right: 0;
}

/**************************************************
 * RESPONSIVE STYLES
 **************************************************/
@media only screen and (max-width: 1200px) {
  .home-about-block-one .inner-box .image-box {
    min-width: 320px;
  }
  
  .home-about-block-one .inner-box .content-box {
    padding: 20px 30px;
  }
  
  .home-about-block-one .inner-box .content-box h3 {
    font-size: 24px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .deals-section {
    padding: 50px 0 60px 0;
  }
  
  .home-about-grid-container {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 15px;
  }
  
  .deals-section .shape-layer .shape-3 {
    right: 50px;
    opacity: 0.2;
  }
  
  .deals-section .shape-layer .shape-2 {
    opacity: 0.2;
  }
  
  .home-about-image-block .home-about-block-one .image-box {
    min-width: 100%;
  }
  
  .home-about-image-block .home-about-block-one .image-box .image {
    height: 350px;
  }
}

@media only screen and (max-width: 767px) {
  .home-about-block-one .inner-box {
    flex-direction: column;
  }
  
  .home-about-block-one {
    padding: 20px;
  }
  
  .home-about-block-one .inner-box .image-box {
    min-width: 100%;
    margin-bottom: 20px;
  }
  
  .home-about-block-one .inner-box .content-box {
    padding: 20px 0 0 0;
  }
  
  .deals-section .shape-layer {
    display: none;
  }
}

@media only screen and (max-width: 499px) {
  .home-about-image-block .home-about-block-one .image-box .image {
    height: 250px;
  }
  
  .home-about-text-block .inner-box .content-box {
    padding: 20px 15px;
  }
  
  .home-about-text-block .text-box h2 {
    font-size: 24px;
    line-height: 30px;
  }
  
  .home-about-text-block .text-box p {
    font-size: 14px;
    line-height: 24px;
  }
  
  .home-about-block-one .inner-box .content-box .feature-list ul li {
    font-size: 14px;
  }
  
  .home-about-block-one .inner-box .content-box .theme-btn {
    padding: 8px 25px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }
}


/**************************************************
 * ANIMATIONS
 **************************************************/
@-webkit-keyframes toBottomFromTop {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}

@keyframes toBottomFromTop {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}