/*================================================
LC About Area CSS
=================================================*/
.lc-about-area {
  z-index: 1;
  position: relative;
  background-color: var(--blackColor);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.lc-about-area::before {
  top: 0;
  left: 0;
  bottom: 0;
  width: 32%;
  content: '';
  z-index: -1;
  position: absolute;
  background-color: var(--mainColor);
}

.lc-about-image {
  padding-right: 15px;
  text-align: center;
}

.lc-about-image img {
  border-radius: 85px;
}

.lc-about-content {
  padding-left: 15px;
  color: var(--whiteColor);
}

.lc-about-content .sub-title {
  display: block;
  margin-bottom: 10px;
  color: var(--mainColor);
  font-size: 14px;
  font-weight: 600;
}

.lc-about-content h2 {
  font-size: 38px;
  margin-bottom: 15px;
  color: var(--whiteColor);
}

.lc-about-content p {
  color: var(--whiteColor);
  opacity: .9;
}

.lc-about-content .features-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 30px;
  margin-left: -10px;
  margin-right: -10px;
}

.lc-about-content .features-list li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33333%;
          flex: 0 0 33.33333%;
  max-width: 33.33333%;
  padding-left: 10px;
  padding-right: 10px;
}

.lc-about-content .features-list li h3 {
  line-height: 1;
  font-size: 40px;
  margin-bottom: 10px;
  color: var(--mainColor);
}

.lc-about-content .features-list li p {
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
}

/* Start LC About Responsive Style */

/*============================================================================================*/
/*============================================================================================*/

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .lc-about-area {
    background-image: unset !important;
  }
  .lc-about-area::before {
    display: none;
  }
  .lc-about-image {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .lc-about-image img {
    border-radius: 25px;
  }
  .lc-about-content {
    padding-left: 0;
    text-align: center;
  }
  .lc-about-content .sub-title {
    font-size: 13px;
  }
  .lc-about-content h2 {
    font-size: 23px;
    margin-bottom: 12px;
  }
  .lc-about-content .features-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0;
  }
  .lc-about-content .features-list li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    margin-top: 25px;
  }
  .lc-about-content .features-list li h3 {
    font-size: 28px;
  }
  .lc-about-content .features-list li p {
    font-size: 13px;
  }
}

/* Min width 576px to Max width 767px */
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .lc-about-content .features-list li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33%;
            flex: 0 0 33%;
    max-width: 33%;
  }
}

/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .lc-about-area::before {
    display: none;
  }
  .lc-about-image {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .lc-about-content {
    padding-left: 0;
    text-align: center;
  }
  .lc-about-content .sub-title {
    font-size: 13px;
  }
  .lc-about-content h2 {
    font-size: 28px;
  }
  .lc-about-content .features-list li h3 {
    font-size: 30px;
  }
  .lc-about-content .features-list li p {
    font-size: 13px;
  }
}

/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .lc-about-area::before {
    width: 25%;
  }
  .lc-about-image {
    padding-right: 0;
  }
  .lc-about-content {
    padding-left: 0;
  }
  .lc-about-content h2 {
    font-size: 35px;
  }
  .lc-about-content .features-list {
    margin-top: 25px;
  }
  .lc-about-content .features-list li h3 {
    font-size: 35px;
  }
}

/* Min width 1200px to Max width 1399px */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .lc-about-area::before {
    width: 25%;
  }
}
