main {
  display: block;
}

.section-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  height: 440px;
  margin-bottom: 50px;
}

.map {
  position: relative;
}

.map::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
  background-color: rgba(0, 0, 0, 0.05);
  cursor: -webkit-grab;
  cursor: grab;
}

.map.map__touched::after {
  z-index: -1;
}

.map,
iframe {
  width: 100%;
  position: absolute;
  width: 100%;
  height: 100%;
}

.ctc {
  z-index: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  border-radius: 5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f3f2f2;
  padding: 0 35px;
}

.ctc__title {
  margin-bottom: 30px;
}

.ctc__data {
  max-width: 295px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.ctc__data svg {
  max-width: 24px;
  max-height: 24px;
  min-width: 24px;
  min-height: 24px;
  fill: #605f5f;
  margin-right: 15px;
}

.ctc__text {
  font-weight: normal;
  font-size: 18px;
  line-height: 150%;
  color: #605f5f;
}

.contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  margin-bottom: 50px;
}

.contact-form .form {
  width: 100%;
}

@media (max-width: 991px) {
  .ctc {
    padding: 0 25px;
  }
}

@media (max-width: 767px) {
  .section-map {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .map,
  iframe {
    position: static;
    height: 180px;
  }
  .ctc {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .ctc__data svg {
    width: 20px;
    height: 20px;
  }
  .ctc__data:last-child {
    margin-bottom: 0;
  }
  .ctc__text {
    font-size: 14px;
  }
}
