/*==================================================
International Presence
==================================================*/

.international-section {
  padding: 110px 0;

  background: #fff;
}

.world-map {
  max-width: 100%;

  transition: 0.4s;
}

.world-map:hover {
  transform: scale(1.03);
}

.section-subtitle {
  display: inline-block;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: #ba1515;
}

.section-title {
  font-size: 42px;

  font-weight: 800;

  line-height: 1.3;

  color: #222;
}

.section-description {
  font-size: 17px;

  line-height: 1.9;

  color: #666;
}

.section-small-title {
  font-size: 24px;

  font-weight: 700;

  color: #222;
}

/*======================*/

.office-card {
  background: #fff;

  border: 1px solid #eee;

  border-radius: 15px;

  padding: 30px;

  text-align: center;

  transition: 0.35s;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

  height: 100%;
}

.office-card:hover {
  transform: translateY(-8px);

  border-color: #ba1515;

  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

.office-card i {
  font-size: 30px;

  color: #ba1515;

  margin-bottom: 15px;
}

.office-card h6 {
  margin: 0;

  font-weight: 700;
}

/*======================*/

.country-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 15px;
}

.country-tags span {
  padding: 10px 18px;

  border-radius: 30px;

  background: #f8f9fa;

  border: 1px solid #eee;

  font-weight: 600;

  transition: 0.3s;
}

.country-tags span:hover {
  background: #ba1515;

  color: #fff;

  border-color: #ba1515;
}

/*======================*/

.milestone-card {
  display: flex;

  align-items: center;

  gap: 25px;

  background: #ba1515;

  color: #fff;

  padding: 35px;

  border-radius: 18px;

  box-shadow: 0 20px 40px rgba(220, 53, 69, 0.25);
}

.milestone-card i {
  font-size: 55px;
}

.milestone-card h4 {
  font-weight: 700;

  margin-bottom: 10px;
}

.milestone-card p {
  margin: 0;

  opacity: 0.95;
}

/*======================*/

@media (max-width: 991px) {
  .international-section {
    text-align: center;
  }

  .section-title {
    font-size: 34px;
  }

  .milestone-card {
    flex-direction: column;

    text-align: center;
  }

  .country-tags {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 28px;
  }

  .international-section {
    padding: 80px 0;
  }

  .office-card {
    padding: 20px;
  }
}
