/*============================================================================================
	Funfact Area
==============================================================================================*/
.funfact-area.style-3 {
  background: var(--secondary-color);
  position: relative;
  z-index: 2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.funfact-area.style-3.section-padding::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../../../images/funfact-shape-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.funfact-area.style-3 .funfact-card-area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding-right: 24px;
}
.funfact-area.style-3 .funfact-card-single {
  text-align: center;
  padding: 32px;
  border-radius: 6px;
  background: var(--white-color);
  box-shadow: 0px 2px 4px rgba(6, 40, 61, 0.12);
}

.funfact-area.style-3 .funfact-card-cont-text {
  margin: 0;
}
.funfact-area.style-3 .funfact-content {
  padding-left: 24px;
}

.funfact-area.style-3 .funfact-card-icon {
  width: 56px;
  height: 56px;
  line-height: 60px;
  display: flex;
  justify-content: center;
  margin: auto;
  background: #f9f9f9;
  border-radius: 100%;
  border: 1px solid #ddd;
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 12px;
}
.funfact-area.style-3 .funfact-card-cont-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 4px;
}
.funfact-area.style-3 .funfact-card-cont-text {
  font-size: 15px;
  color: var(--primary-color);
  font-weight: 500;
  margin: 0;
}

.funfact-area.style-3 .funfact-cont-sm-title {
  color: var(--white-color);
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 18px;
}
.funfact-area.style-3 .funfact-cont-text p {
  margin: 0;
  font-size: 15px;
  color: var(--white-color);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .funfact-area.style-3 .funfact-content {
    padding-left: 0;
    margin-top: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .funfact-area.style-3 .funfact-card-area {
    grid-template-columns: repeat(1, 1fr);
    padding-right: 0px;
  }
  .funfact-area.style-3 .funfact-content {
    padding-left: 0;
    margin-top: 40px;
  }
  .funfact-area.style-3 .funfact-cont-sm-title {
    font-size: 16px;
  }
}

/*============================================================================================
	End Funfact Area
==============================================================================================*/
