main {
  padding: 30px 0 0;
  background: #fff;
}

.contact-page {
  padding: 0 20px;
}

.contact-page-items {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 70px 0 60px;
}

.contact-page-item {
  width: 23.5%;
  background: #EFF4F9;
  border-radius: 7px;
  height: 313px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 35px 15px 0;
}

.contact-page-title {
  font-family: "IntroDemo";
  text-transform: uppercase;
  text-align: center;
  color: #0060C1;
  font-size: 26px;
  padding: 25px 0 5px;
}

.contact-page-descr {
  font-size: 18px;
  color: #353535;
  transition: .3s;
  padding-top: 5px;
  text-align: center;
}

.contact-page-link:hover {
  color: #8D8D8D;
}

.consultation-form {
  display: none;
}

.contact-page-map {
  width: 100%;
  height: 560px;
}

.contact-callback {
  background-image: url('../img/bg-callback.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 65px 20px 70px;
}

.contact-callback-form {
  background: #fff;
  border-radius: 12px;
  padding: 45px 40px 35px;
}

.contact-callback-text {
  width: 100%;
  border: none;
  outline: 1px solid #88BAED;
  border-radius: 5px;
  padding: 20px 25px;
  font-size: 18px;
  resize: none;
  margin: 50px 0 20px;
}

.contact-callback-text:focus-visible {
  outline: 1px solid #0060C1;
}

.contact-callback-text::placeholder {
  color: #8D8D8D;
}

.contact-callback-inputs {
  display: flex;
  gap: 20px;
}

.contact-callback-inputs .form-input {
  background: #fff;
  outline: 1px solid #88BAED;
  width: 347px;
}

.contact-callback-inputs .form-input {
  background: #fff;
  outline: 1px solid #88BAED;
  width: 347px;
}

.contact-callback-inputs .form-input:focus-visible {
  outline: 1px solid #0060C1;
}
#wrapMap {
    position: relative;
    cursor: help;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(204, 204, 204);
    border-image: initial;
    height: 560px;
}
#yaMap {
    height: 560px;
}
.mapTitle {
    position: absolute;
    z-index: 1000;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 5px;
    display: none;
    padding: 5px 20px;
    border-radius: 5px;
    background: rgb(255, 255, 255);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(204, 204, 204);
    border-image: initial;
}
@media screen and (max-width: 1100px) {
  .contact-callback-inputs .form-input {
    width: 280px;
  }
}

@media screen and (max-width: 950px) {
  .contact-page-items {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .contact-page-item {
    width: 48%;
  }
  .contact-page-map {
    height: 450px;
  }
}

@media screen and (max-width: 900px) {
  main {
    padding: 0;
  }
  .contact-callback-inputs {
    flex-direction: column;
    gap: 20px;
  }
  .contact-callback-inputs .form-input {
    width: 100%;
  }
  .contact-callback-inputs .form-submit {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .contact-page {
    padding: 0 15px;
  }
  .contact-page-items {
    gap: 10px;
    padding: 35px 0 30px;
  }
  .contact-page-item {
    height: 195px;
    padding: 15px 10px 0;
  }
  .contact-page-img {
    width: 90px;
  }
  .contact-page-title {
    font-size: 16px;
    padding: 15px 0 5px;
  }
  .contact-page-descr {
    font-size: 13px;
  }
  .contact-page-map {
    height: 300px;
  }
  .contact-callback {
    padding: 35px 15px 30px;
  }
  .contact-callback-form {
    padding: 25px 20px 15px;
  }
  .contact-callback-text {
    padding: 10px 15px;
    font-size: 14px;
    resize: none;
    margin: 30px 0 10px;
    height: 150px;
  }
  .contact-callback-inputs {
    gap: 10px;
  }
  .contact-callback-inputs .form-input,
  .contact-callback-inputs .phone-label {
    font-size: 14px;
    padding: 10px 15px;
  }
  .contact-callback-inputs .form-submit {
    font-size: 16px;
    padding: 12px;
  }
}