/*============================================================================================
	Funfact Area
==============================================================================================*/
.funfact-area.style1 {
  background: #4361ee0a;
}
.funfact-area.style1 .funfact-card-area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.funfact-area.style1 .funfact-card-single {
  display: flex;
  align-items: center;
  background: var(--white-color);
  padding: 28px 24px;
  box-shadow: 0px 2px 4px rgba(6, 40, 61, 0.12);
  border-radius: 10px;
  transition: all 0.4s ease;
}
.funfact-area.style1 .funfact-card-single:hover {
  box-shadow: 0px 16px 48px rgba(6, 40, 61, 0.08);
}
.funfact-area.style1 .funfact-card-cont-title {
  margin-bottom: 8px;
  line-height: 120%;
  font-weight: 800;
}
.funfact-area.style1 .funfact-card-cont-text {
  margin: 0;
  line-height: 120%;
}
.funfact-area.style1 .funfact-card-icon i {
  font-size: 48px;
  color: var(--primary-color);
}
.funfact-area.style1 .funfact-card-icon {
  margin-right: 16px;
}
.funfact-area.style1 .funfact-section-head {
  padding-right: 48px;
}
.funfact-area.style1 .funfact-section-head-title {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 24px;
}
.funfact-area.style1 .funfact-section-head-title::before {
  position: absolute;
  content: "";
  width: 30%;
  height: 3px;
  bottom: -1.5px;
  background: var(--primary-color);
  left: 0;
}
.funfact-area.style1 .funfact-section-head-sm-title {
  font-weight: 600;
  color: var(--paragraph-color);
  margin-bottom: 16px;
}
.funfact-area.style1 .funfact-section-head-text {
  margin: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .funfact-area.style1 .funfact-card-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 56px;
  }
}

@media only screen and (max-width: 767px) {
  .funfact-area.style1 .funfact-section-head-title {
    font-size: 24px;
  }
  .funfact-area.style1 .funfact-section-head-sm-title {
    font-size: 16px;
  }
  .funfact-area.style1 .funfact-card-area {
    margin-top: 40px;
  }
  .funfact-area.style1 .funfact-card-single {
    display: block;
    text-align: center;
    padding: 18px;
  }
  .funfact-area.style1 .funfact-card-icon {
    margin-right: 0;
    margin-bottom: 12px;
  }
  .funfact-area.style1 .funfact-card-cont-title {
    font-size: 22px;
  }
}
/*============================================================================================
	End Funfact Area
==============================================================================================*/
