.map {
  height: 400px;
}


@media (max-width: 1199px) {
  .map {
    height: 300px;
  }
}

@media (max-width: 574px) {
  .map {
    height: 200px;
  }
}



.cont-info {
  margin-top: 40px;
  margin-left: 40px;
  
}
.cont-info__link {
  position: relative;
  transition: 0.3s;
}
.cont-info__link:hover {
  opacity: 0.5;
}

.mail-icon:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  top: 0;
  left: -40px;
  background: url(../../images/icons/fi_mail.svg) 50% no-repeat;
  background-size: contain;
}
.cont-info__phones {
  margin-top: 12px;
  margin-bottom: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.cont-info__phones:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  top: 4px;
  left: -40px;
  background: url(../../images/icons/fi_phone.svg) 50% no-repeat; 
  background-size: contain;
}

.cont-cards {
  margin-top: 40px;
}

.cont-card {
  padding: 20px;
  display: none;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.cont-card.active_city.round-shadow {
  display: flex;
}

.cont-card__content {
  width: 53%;
  padding-left: 50px;
}

.cont-card__info {
margin-left: 40px;
}

.cont-card__phones {
  margin-top: 20px;
  margin-bottom: 12px;
  position: relative;
}

.cont-card__phones:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  top: 4px;
  left: -40px;
  background: url(../../images/icons/fi_phone.svg) 50% no-repeat; 
  background-size: contain;
}

.cont-card__link {
  transition: 0.3s;
  display: block;
}

.cont-card__link:hover {
  opacity: 0.5;
}

.cont-card__address {
  position: relative;
}

.cont-card__address:before {
  position: absolute;
  content: '';
  height: 22px;
  width: 22px;
  top: 0;
  left: -40px;
  background: url(../../images/icons/fi_map-pin.svg) 50% no-repeat; 
  background-size: contain;
}
.cont-card__schedule {
  margin-top: 12px;
  margin-bottom: 12px;
  position: relative;
}

.cont-card__schedule:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  top: 2px;
  left: -40px;
  background: url(../../images/icons/fi_clock.svg) 50% no-repeat; 
  background-size: contain;
}


.cont-card__showmap {
  position: relative;
  transition: 0.3s;
}
.cont-card__showmap:hover {
  opacity: 0.5;
  cursor: pointer;
}

.cont-card__showmap:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  top: -1px;
  left: -40px;
  background: url(../../images/icons/fi_map.svg) 50% no-repeat; 
  background-size: contain;
}

.cont-card__img {
  width: 43%;
  object-fit: contain;
  object-position: center;
  height: 100%;
  border-radius: 10px;
}


@media (max-width: 991px) {
  .cont-card__img {
    width: 48%;
  }

  
.cont-card__content {
  width: 48%;
  padding-left: 20px;
}
}

@media (max-width: 767px) {
    .cont-card {
      flex-direction: column-reverse;
    }

    .cont-card__img {
      max-width: 500px;
      width: 100%;
      margin-bottom: 30px;
    }

    .cont-card__content {
      width: 100%;
      padding-left: 0;
    }


}

@media (max-width: 600px) {
}