.contact_block {
  height: 100vh;
  min-height: 900px;
  position: relative;
  overflow: hidden;
}
.contact_block .map-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
}
.contact_block .container {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  height: 100%;
  pointer-events: none;
}
.contact_block .container .contact_content {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 500px;
  width: 100%;
  pointer-events: auto;
}
@media only screen and (max-width: 1400px) {
  .contact_block .container .contact_content {
    max-width: 340px;
  }
}
.contact_block .container .contact_content .tabs {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 5px;
}
@media only screen and (max-width: 860px) {
  .contact_block .container .contact_content .tabs {
    gap: 3px;
  }
}
.contact_block .container .contact_content .tabs .item {
  border-radius: 5px;
  padding: 10px 15px;
  background: #fff;
  color: #1e1e1e;
  font-family: "MM";
  font-size: 16px;
  line-height: 120%;
  transition: 0.3s;
  cursor: pointer;
}
@media only screen and (max-width: 1400px) {
  .contact_block .container .contact_content .tabs .item {
    padding: 10px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 860px) {
  .contact_block .container .contact_content .tabs .item {
    font-size: 12px;
    background: #f5f6f8;
  }
}
.contact_block .container .contact_content .tabs .item:hover, .contact_block .container .contact_content .tabs .item.active {
  background: #1e1e1e;
  color: #fff;
}
.contact_block .container .contact_content .inform_all {
  padding: 50px 40px;
  backdrop-filter: blur(4.1312589645px);
  background: #fff;
  border-radius: 20px;
}
@media only screen and (max-width: 1400px) {
  .contact_block .container .contact_content .inform_all {
    padding: 20px;
  }
}
.contact_block .container .contact_content .inform_all .inform {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1400px) {
  .contact_block .container .contact_content .inform_all .inform {
    gap: 30px;
    margin-bottom: 40px;
  }
}
.contact_block .container .contact_content .inform_all .inform .item .key {
  font-family: "MM";
  font-size: 16px;
  line-height: 120%;
  color: #000;
  margin-bottom: 5px;
}
.contact_block .container .contact_content .inform_all .inform .item .value {
  font-family: "TTB";
  font-size: 25px;
  line-height: 100%;
  color: #1e1e1e;
}
@media only screen and (max-width: 1400px) {
  .contact_block .container .contact_content .inform_all .inform .item .value {
    font-size: 18px;
  }
}
.contact_block .container .contact_content .inform_all .group_buttons {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.contact_block .container .contact_content .inform_all .group_buttons .white {
  border: 1px solid transparent;
  background: #fff;
}
.contact_block .container .contact_content .inform_all .group_buttons .button {
  padding: 15px;
  font-size: 12px;
}
@media only screen and (max-width: 1400px) {
  .contact_block .container .contact_content .inform_all .group_buttons .button {
    width: 100%;
  }
}
@media only screen and (max-width: 860px) {
  .contact_block {
    height: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
  }
  .contact_block .map-container {
    position: relative;
    height: 400px;
    min-height: 400px;
    width: 100%;
    flex-shrink: 0;
  }
  .contact_block .container {
    position: relative;
    height: auto;
  }
  .contact_block .container .contact_content {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    max-width: 100%;
    margin: 30px 0;
  }
  .contact_block .container .contact_content .tabs {
    justify-content: center;
    flex-wrap: wrap;
  }
  .contact_block .container .contact_content .tabs .item {
    flex: 1;
    text-align: center;
    min-width: fit-content;
  }
  .contact_block .container .contact_content .inform_all {
    padding: 30px 20px;
  }
}
@media only screen and (max-width: 860px) and (max-width: 860px) {
  .contact_block .container .contact_content .inform_all {
    padding: 0;
  }
}
@media only screen and (max-width: 860px) {
  .contact_block .container .contact_content .inform_all .inform {
    gap: 25px;
    margin-bottom: 30px;
  }
  .contact_block .container .contact_content .inform_all .inform .item .key {
    font-size: 12px;
  }
  .contact_block .container .contact_content .inform_all .inform .item .value {
    font-size: 18px;
    word-break: break-word;
  }
  .contact_block .container .contact_content .inform_all .group_buttons .button {
    width: 100%;
    text-align: center;
  }
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}
.popup-overlay.active {
  visibility: visible;
  opacity: 1;
  backdrop-filter: blur(20.6562957764px);
  background: rgba(0, 0, 0, 0.4);
}
.popup-overlay.active .popup-container {
  transform: translateY(0);
  opacity: 1;
}
.popup-overlay .popup-container {
  background: white;
  border-radius: 20px;
  max-width: 680px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(4.1312589645px);
}
.popup-overlay .popup-container::-webkit-scrollbar {
  width: 2px;
}
.popup-overlay .popup-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.popup-overlay .popup-container::-webkit-scrollbar-thumb {
  background: #016bff;
  border-radius: 10px;
}
.popup-overlay .popup-close {
  position: absolute;
  top: 5px;
  right: 20px;
  background: none;
  border: none;
  font-size: 70px;
  cursor: pointer;
  color: #d4d4d4;
  transition: 0.3s;
  z-index: 10;
  line-height: 1;
}
.popup-overlay .popup-close:hover {
  color: #016bff;
}
.popup-overlay .popup-content {
  padding: 46px;
}
@media only screen and (max-width: 860px) {
  .popup-overlay .popup-content {
    padding: 30px 20px;
  }
}
@media only screen and (max-width: 480px) {
  .popup-overlay .popup-content {
    padding: 20px 15px;
  }
}
.popup-overlay .popup-title {
  text-transform: none;
  margin-bottom: 16px;
}
@media only screen and (max-width: 480px) {
  .popup-overlay .popup-title {
    font-size: 24px;
  }
}
.popup-overlay .popup-discount {
  font-size: 12px;
  line-height: 120%;
  color: #000;
  margin-bottom: 50px;
}
.popup-overlay .popup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.popup-overlay .popup-form .form-group {
  width: 100%;
  display: flex;
  gap: 10px;
}
@media only screen and (max-width: 480px) {
  .popup-overlay .popup-form .form-group {
    flex-direction: column;
  }
}
.popup-overlay .popup-form .button {
  width: 100%;
  margin-top: 50px;
}
.popup-overlay .popup-form .form-input,
.popup-overlay .popup-form .form-textarea {
  width: 100%;
  padding: 16px;
  border-radius: 10px;
  border: none;
  font-size: 14px;
  color: #000;
  transition: 0.3s;
  background: #f5f6f8;
  outline: none;
  resize: none;
}
.popup-overlay .popup-form .form-input:focus,
.popup-overlay .popup-form .form-textarea:focus {
  border-color: #016bff;
}
.popup-overlay .popup-form .popup-agreement {
  font-size: 12px;
  text-align: center;
  color: #000;
  max-width: 473px;
  margin: 0 auto;
}
.popup-overlay .popup-form .popup-agreement a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #0063e1;
}/*# sourceMappingURL=contact_block.css.map */