/* -------------------- 
  foreign Section Styles
 -------------------- */
.foreign {
  padding-top: 180px;
  background-image: url('/images/foreign.jpg');
  background-size: cover;
  background-position: inherit;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}
.foreign::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.foreign-content {
  background-color: rgba(17, 121, 226, 0.85);  /* semi-transparent background */
  padding: 5px 10px;
  border-radius: 8px;
  opacity: 0.9;
  font-size: 2rem;
  z-index: 2;
  position: relative;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.home {
  margin-top: 20px;
  position: relative;
  z-index: 2;  /* makes it appear above the background overlay */
}
.home-span{
  color: rgba(3, 29, 68, 0.8);
  font-weight:600;
  font-size: 1.2rem;
}
.home-btn {
  display: inline-block;
  background-color: rgba(224, 224, 224, 0.6);
  color: #020202;
  padding: 10px 20px;
  font-size: 1.2rem;
  border-radius: 15px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 2;  /* make sure it's clickable */
}
.home-btn:hover,.foreign-content:hover {
  background-color: #0055aa;
  color: #fff;
}
.main-content {
  padding: 0;
  margin: 0 auto;
}
.foreign-container {
  max-width: 1080px;
  padding: 20px;
  margin: 0 auto;
}
.foreign-container p{
  font-size: 15px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #3c3c3c;
  margin-bottom: 10px;
  line-height: 1.3rem;
}
