contact-bottom.scss 1.39 KB
Newer Older
Sergey's avatar
Sergey committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
@import "../settings/color";

.contact__map-h{

}

.contact__map-val {
  background: $grey-product;
  padding-bottom: 20px;
}
.contact__map-list{
  display: flex;
  list-style-type: none;
  padding-left: 0;
  justify-content: space-between;
}

.contact__map-item{
  width: 33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -70px;
}

.map-list__h{
  position: relative;
  margin: 0;
  height: 70px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  text-transform: uppercase;
}
.map-list__marker{
  position: absolute;
  display: flex;
  left: 0;
  bottom: 0;
  padding: 15px;
  border-radius: 50%;
  background: white;
  width: 70px;
  height: 70px;
  justify-content: center;
  transform: translate(25%, 20%);
  align-items: center;
}

.map-list__marker-img{
  max-height: 40px;
}
.contact__map-h{
  height: 70px;
}

.map-list__city{
  list-style-type: none;
  padding-left: 0;
}

.map-list__item{
  padding: 7px 0;
}
@media screen and (max-width: 1024px){
  .map-list__marker{
    transform: none;
  }
}
@media screen and (max-width: 700px){
  .contact__map-list{
    flex-wrap: wrap;
  }
  .contact__map-item{
    width: 100%;
  }
  .contact__map-item{
    margin-top: 0;
  }
  .contact__map-h{
    display: none;
  }
  .map-list__h{
    background: white;
  }
  .contact__map-val{
    padding: 0;
  }
  .map-list__city{
    padding: 15px 0;
  }
}