@charset "UTF-8";

/*Переменные*/

/*Миксины*/

.contacts-map__wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 60px;
}

.contacts-map {
  width: 100%;
  height: 700px;
}

.contacts-info {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  width: 320px;
  padding: 20px;
  background: #fff;
  border: 1px solid #CFD4EA;
  border-radius: 16px;
}

.contacts-info .socials {
  margin: 40px 0;
}

.contacts-info__item {
  margin-bottom: 20px;
}

.contacts-info__item:nth-child(1) {
  grid-area: A;
}

.contacts-info__item:nth-child(2) {
  grid-area: B;
}

.contacts-info__item:nth-child(3) {
  grid-area: D;
}

.contacts-info__item:nth-child(4) {
  grid-area: C;
}

.contacts-info__title {
  margin-bottom: 10px;
}

.contacts-info__row {
  margin-bottom: 10px;
}

.contacts-info__row:last-child {
  margin-bottom: 0px;
}

.contacts-info__link {
  text-decoration: none;
  color: #242473;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  display: block;
}

.contacts-info__link:hover {
  color: #4532AD;
}

@media (max-width: 1010px) {
  .contacts-map__wrapper {
    margin-bottom: 40px;
  }

  .contacts-map {
    height: 440px;
  }

  .contacts-info {
    position: relative;
    top: 0;
    left: 0;
    border: none;
    width: 100%;
  }

  .contacts-info .socials {
    margin-top: 20px;
    margin-bottom: 0;
  }

  .contacts-info__grid {
    display: -ms-grid;
    display: grid;
        grid-template-areas: "A B" "C D";
    -ms-grid-columns: calc(50% - 20px) calc(50% - 20px);
    grid-template-columns: calc(50% - 20px) calc(50% - 20px);
  }

  .contacts-info__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .contact-form__title {
    width: 100%;
    margin-bottom: 40px;
  }

  .contact-form__block {
    width: 100%;
  }

  .contacts-info__item:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .contacts-info__item:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }

  .contacts-info__item:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }

  .contacts-info__item:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
}

@media (max-width: 680px) {
  .contacts-map__wrapper {
    margin-bottom: 30px;
  }

  .contacts-map {
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
  }

  .contacts-info {
    padding: 10px;
    border-radius: 12px;
  }

  .contacts-info .socials {
    margin-top: 10px;
  }

  .contacts-info__grid {
    display: block;
  }

  .contacts-info__title {
    margin-bottom: 5px;
  }

  .contacts-info__row {
    margin-bottom: 5px;
  }

  .contact-form__title {
    margin-bottom: 20px;
  }
}