.contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.contact__container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 10px 25px 50px;
  max-width: 420px;
  background-color: #ffffff;
}
.contact__tab {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.contact__tab__url {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  padding: 25px 0;
  background-color: #f6f6f6;
  border: 1px solid #dbdbdc;
  color: #8d8c8d;
  font-size: 16px;
  font-size: 1rem;
  line-height: 25.6px;
  line-height: 1.6rem;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s;
}
.contact__tab__url:hover {
  background-color: rgb(225.6, 225.6, 225.6);
}
.contact__tab__url.-active {
  background-color: transparent;
  border: none;
  color: #e22927;
}
.contact__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px 0;
  width: 100%;
}
.contact__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 8px 30px;
  width: 100%;
}
.contact__item__icon {
  margin-right: 8px;
  min-width: 24px;
  width: 20px;
  height: 20px;
}
.contact__item__name {
  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;
}
.contact__map {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 30px 10px 0 63px;
  padding: 15px 15px 15px 30px;
  width: 220px;
  background-color: transparent;
  border: 1px solid #e22927;
  border-radius: 30px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.3s;
}
.contact__map__text {
  color: #000000;
  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;
  transition: color 0.3s;
}
.contact__map__icon {
  width: 15px;
  height: 20px;
  transform: rotate(180deg) translateX(10px);
  transition: transform 0.3s;
}
.contact__map__icon g path {
  fill: #e22927;
  transition: fill 0.3s;
}
.contact__map:hover {
  background-color: #e22927;
}
.contact__map:hover .contact__map__text {
  color: #ffffff;
}
.contact__map:hover .contact__map__icon {
  transform: rotate(180deg) translateX(5px);
}
.contact__map:hover .contact__map__icon g path {
  fill: #ffffff;
}
@media only screen and (min-width: 920px) {
  .contact__container {
    margin-bottom: 100px;
    min-width: 420px;
  }
}
@media only screen and (min-width: 1400px) {
  .contact__container {
    min-width: 540px;
    max-width: 540px;
  }
  .contact__content {
    align-items: flex-start;
  }
  .contact__item__name {
    max-width: 410px;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 28.8px;
    line-height: 1.8rem;
    font-feature-settings: "kern" 1;
    font-kerning: normal;
  }
  .contact__map {
    margin: 30px 30px 15px 63px;
    width: 180px;
  }
}