.section__geography__container {
  max-width: 1424px;
}
.section__geography__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.section__geography__title {
  text-align: center;
}
.section__geography__items {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.section__geography__item {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}
.section__geography__img {
  height: 100%;
  max-height: 300px;
  position: relative;
}

.section__geography__img img {
  width: 100%;
  height: 100%;
}
.section__geography__item__title {
  position: relative;
  z-index: 1;
  padding: 24px 8px;
  font-weight: 600;
  font-size: 24px;
  color: var(--color-white);
  text-align: center;
  background: var(--color-dark);
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .section__geography__body {
    gap: 24px;
  }
  .section__geography__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .section__geography__body {
    gap: 16px;
  }
  .section__geography__items {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .section__geography__item__title {
    font-size: 16px;
    padding: 16px 8px;
  }
}
@media(any-hover:hover){
  .section__geography__item:hover .section__geography__item__title{
    background: var(--color-primary);
  }
  .section__geography__item:hover img{
    transform: scale(1.05);
  }
}