/*================================================
OHC Feedback Area CSS
=================================================*/
.ohc-feedback-area {
  background-color: #FBFFF2;
  position: relative;
  z-index: 1;
}

.ohc-feedback-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--OHCwhiteColor);
  z-index: -1;
  height: 100px;
}

.single-ohc-feedback-box {
  position: relative;
  z-index: 1;
  margin-top: 80px;
}

.single-ohc-feedback-box .rating {
  margin-bottom: 10px;
}

.single-ohc-feedback-box .rating i {
  line-height: 1;
  font-size: 20px;
  color: #FE824C;
}

.single-ohc-feedback-box p {
  font-size: 25px;
}

.single-ohc-feedback-box .client-info {
  margin-top: 20px;
}

.single-ohc-feedback-box .client-info img {
  border-radius: 50%;
  width: 70px !important;
  display: inline-block !important;
  border: 3px solid var(--OHCmainColor);
  border-top: none;
  height: 70px;
}

.single-ohc-feedback-box .client-info .title {
  margin-left: 15px;
}

.single-ohc-feedback-box .client-info .title h5 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--OHCmainColor);
  font-family: var(--optionalfontFamily);
}

.single-ohc-feedback-box .client-info .title span {
  display: block;
  font-size: 14px;
  color: var(--OHCparagraphColor);
}

.single-ohc-feedback-box::before {
  content: "\ee35";
  position: absolute;
  right: 100px;
  z-index: -1;
  line-height: 1;
  opacity: .07;
  bottom: -12px;
  font-family: 'boxicons';
  font-size: 100px;
}

.ohc-feedback-shape-1 {
  position: absolute;
  bottom: -10%;
  left: 2%;
  -webkit-transform: translateY(-10%) translateX(-2%);
          transform: translateY(-10%) translateX(-2%);
}

.ohc-feedback-shape-1 img {
  -webkit-animation: movebounce 5s linear infinite;
          animation: movebounce 5s linear infinite;
}

.ohc-feedback-shape-2 {
  position: absolute;
  top: 35%;
  right: 5%;
  -webkit-transform: translateY(-35%) translateX(-5%);
          transform: translateY(-35%) translateX(-5%);
}

.ohc-feedback-shape-2 img {
  -webkit-animation: movebounce 5s linear infinite;
          animation: movebounce 5s linear infinite;
}

.ohc-feedback-shape-3 {
  position: absolute;
  bottom: 5%;
  right: 15%;
  -webkit-transform: translateY(-5%) translateX(-15%);
          transform: translateY(-5%) translateX(-15%);
}

.ohc-feedback-shape-3 img {
  -webkit-animation: movebounce 5s linear infinite;
          animation: movebounce 5s linear infinite;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
    .ohc-feedback-area::before {
        display: none;
    }
    .ohc-feedback-shape-1 {
        display: none;
    }
    .ohc-feedback-shape-2 {
        display: none;
    }
    .ohc-feedback-shape-3 {
        display: none;
    }
    .ohc-feedback-image {
        text-align: center;
        margin-top: 35px;
    }
    .single-ohc-feedback-box {
        margin-top: 50px;
    }
    .single-ohc-feedback-box p {
        font-size: 16px;
    }
    .single-ohc-feedback-box .client-info .title h5 {
        font-size: 20px;
    }
    .single-ohc-feedback-box::before {
        right: 30px;
        bottom: 45px;
    }
}

/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .ohc-feedback-area::before {
        display: none;
    }
    .ohc-feedback-shape-1 {
        display: none;
    }
    .ohc-feedback-shape-2 {
        display: none;
    }
    .ohc-feedback-shape-3 {
        display: none;
    }
    .ohc-feedback-image {
        text-align: center;
        margin-top: 35px;
    }
    .single-ohc-feedback-box {
        margin-top: 50px;
    }
    .single-ohc-feedback-box p {
        font-size: 20px;
    }
    .single-ohc-feedback-box .client-info .title h5 {
        font-size: 20px;
    }
}