
main {
  margin-top: 105px;

  transform: translateX(-10px);
}
.main-container {
  max-width: 1145px;
}
.map-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map-title {
  margin: 0 auto 35px;

  font-weight: 500;
  font-size: 36px;
}
.map {
  width: 100%;
  max-width: 1145px;
}

.filter {
  margin-top: 45px;
}
.filter-select {
  margin-left: 10px;

  background-color: white;
  border: 1px solid #c4c4c4;
  border-radius: 5px 5px 10px 10px;
  outline: none;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.country-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 100px;
}
.country-card {
  flex-basis: 290px;
  flex-wrap: wrap;
  width: 270px;
  margin-bottom: 50px;
}
.country-name {
  margin: 0 auto 10px;

  font-weight: 500;
  font-size: 25px;
}
.city-block {
  margin-bottom: 27px;
}
.city-name {
  margin: 0 auto 7px;

  font-weight: 500;
  font-size: 25px;
  color: #0288d1;
}
.mentor a {
  position: relative;

  margin-right: 10px;

  font-size: 20px;
  text-align: center;
  color: #000000;

  text-decoration-line: underline;
}
.mentor a:first-child::after {
  content: "|";
  position: absolute;
  top: 0;
  right: -10px;
}

@media screen and (max-width: 1180px) {
  main {
    transform: translateX(0);
  }
}

@media screen and (max-width: 925px) {
  .filter {
    margin-left: 20px;
  }

  .country-cards {
    justify-content: space-around;
  }
  .country-card {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .city-block {
    text-align: center;
  }
}
