/*=====================================================
About Section
=====================================================*/

.about-section {
  padding: 110px 0;

  background: #fff;
}

.about-image {
  overflow: hidden;

  border-radius: 20px;
}

.about-image img {
  transition: 0.5s;
}

.about-image:hover img {
  transform: scale(1.05);
}

.section-subtitle {
  display: inline-block;

  font-size: 0.85rem;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: #ba1515;

  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;

  font-weight: 800;

  line-height: 1.3;

  margin-bottom: 30px;

  color: #1f2937;
}

.about-text {
  font-size: 1.05rem;

  line-height: 1.9;

  color: #6b7280;

  margin-bottom: 20px;
}

.about-section .btn {
  padding: 14px 32px;

  font-weight: 600;

  border-radius: 50px;

  margin-top: 10px;
}

/*=====================================================
Key Facts
=====================================================*/

.fact-card {
  background: #fff;

  border-radius: 18px;

  padding: 35px 30px;

  text-align: center;

  height: 100%;

  transition: 0.35s;

  border: 1px solid #ececec;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.fact-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.fact-icon {
  width: 75px;

  height: 75px;

  margin: 0 auto 25px;

  border-radius: 50%;

  background: rgba(220, 53, 69, 0.08);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 30px;

  color: #ba1515;

  transition: 0.3s;
}

.fact-card:hover .fact-icon {
  background: #ba1515;
  color: #fff;
}

.fact-card h5 {
  font-size: 1rem;

  font-weight: 700;

  line-height: 1.6;

  margin: 0;

  color: #1f2937;
}

.row.key-facts {
  row-gap: 20px;
}

/*=====================================================
Responsive
=====================================================*/

@media (max-width: 991px) {
  .section-title {
    font-size: 2rem;
  }

  .about-section {
    text-align: center;
  }

  .about-section .btn {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.7rem;
  }

  .fact-card {
    padding: 25px;
  }

  .fact-icon {
    width: 65px;

    height: 65px;

    font-size: 26px;
  }
}
