.events {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 60px;
  width: 100%;
  box-shadow: 0 12px 12px 0 rgba(212, 210, 210, 0.1);
}
.events__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px 25px 30px;
  width: 100%;
  min-height: 255px;
  background-color: #ffffff;
}
.events__content__date {
  color: #e22927;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 17.6px;
  line-height: 1.1rem;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.events__content__name {
  margin: 5px 0;
  width: 100%;
  color: #1b191c;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 36px;
  line-height: 2.25rem;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  font-weight: 600;
}
.events__content__map {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 20px 0;
}
.events__content__map-icon {
  margin-right: 10px;
  width: 30px;
  height: auto;
}
.events__content__map-text {
  width: 100%;
  color: #363338;
  font-size: 16px;
  font-size: 1rem;
  line-height: 25.6px;
  line-height: 1.6rem;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  text-decoration: none;
}
.events__visual {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 161px;
  overflow: hidden;
}
.events__visual.-done .events__visual__inner {
  transform: scale(1);
}
.events__visual__inner {
  width: 100%;
  max-height: 275px;
  object-fit: cover;
  transform: scale(1.2);
  transition: transform 0.5s;
}
@media only screen and (min-width: 640px) {
  .events__visual {
    min-height: 250px;
  }
}
@media only screen and (min-width: 920px) {
  .events {
    margin: 30px;
    width: calc(48% - 52px);
    max-width: 490px;
  }
}
@media only screen and (min-width: 1248px) {
  .events__visual {
    min-height: 285px;
  }
}
@media only screen and (min-width: 1400px) {
  .events__content__name {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 44px;
    line-height: 2.75rem;
    font-feature-settings: "kern" 1;
    font-kerning: normal;
  }
}
@media only screen and (max-width: 919px) {
  .events {
    max-width: 430px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .events__content__map-icon {
    height: 20px;
  }
  .events__content__map-text {
    width: 80%;
  }
  .events__visual__inner {
    height: 100%;
    transform: scale(1);
  }
}