/*===========================================================================================
    Start About Area
=============================================================================================*/
.about.style1 .about-content {
  margin-left: 32px;
}
.about.style1 .about-img {
  position: relative;
  margin-right: 32px;
}
.about.style1 .about-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: linear-gradient(
    0deg,
    rgba(17, 24, 39, 0.6) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.about.style1 .about-img img {
  width: 100%;
  border-radius: 32px;
}
.about.style1 .about-funfact-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  margin-top: 32px;
}
.about.style1 .funfact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.about.style1 .funfact-icon {
  width: 48px;
  min-width: 48px;
  height: 48px;
  line-height: 48px;
  background: #e2eeff;
  border-radius: 16px;
  text-align: center;
  line-height: 54px;
}
.about.style1 .funfact-icon i {
  color: var(--primary-color);
  font-size: 24px;
}
.about.style1 .funfact-content h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin: 0;
}
.about.style1 .funfact-content p {
  margin: 0;
}
.about.style1 .about-content-action {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about.style1 .about-content {
    margin-left: 0;
    margin-top: 40px;
  }
  .about.style1 .about-img {
    margin-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .about.style1 .about-img {
    margin-right: 0;
  }

  .about.style1 .about-content {
    margin-left: 0;
  }
  .about.style1 .about-funfact-wrapper {
    gap: 16px;
  }
  .about.style1 .funfact-content h4 {
    font-size: 20px;
  }
  .about.style1 .funfact-content p {
    line-height: 120%;
  }
  .about.style1 .about-content-action {
    gap: 12px;
  }
}

/*===========================================================================================
    End About Area
=============================================================================================*/
