.contact-block .wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.333rem;
}
.contact-block .heading {
  text-align: left;
}
.contact-block .contacts {
  margin: 0;
  width: 100%;
  display: grid;
  grid-gap: 1.333rem;
  overflow: hidden;
}
.contacts .contact-card {
  position: relative;
  padding: 1.333rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.333rem;
  background: #151516;
  border-radius: 5px;
  overflow: hidden;
}
.contacts .contact-card .contact-info{
  display: flex;
  flex-direction: column;
  gap: 0.444rem;
}

.contacts .contact-card .contact-info * {
  margin: 0;
  padding: 0;
}

.contact-card .contact-title {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.222rem;
}
.contact-card .description {
  margin: 0;
  font-weight: 400;
  font-size: 0.778rem;
  line-height: 1.111rem;
}
.contact-card .action-link {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.611rem 0.667rem;
  width: 2.333rem;
  height: 2.222rem;
  border-radius: 5px;
  background: #FFFFFF;
  backdrop-filter: blur(40px);
  cursor: pointer;
}
.contact-card .action-link img{
  width: 1rem;
  height: 1rem;
  transition: all 100ms ease;
  -webkit-transition: all 100ms ease;
}
.contact-card .action-link:hover img{
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
}


@media only screen and (max-width: 576px) {
  .contact-block .contacts {
    grid-template-columns: repeat(1, 1fr); */
  }
}
@media only screen and (min-width: 577px) {
  .contacts .contact-card {
    aspect-ratio: 1.16;
  }
}
@media only screen and (min-width: 577px) and (max-width: 991px) {
  .contact-block .contacts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 992px) {
  .contact-block .contacts {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*  popup form  */
.popup_container {
  display: none;
  align-items: center;
  height: 100%;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.popup_container.show {
  display: flex;
}

.popup_overlay {
  background: rgba(0,0,0,.75);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.popup_form-content {
  max-height: 95vh;
  overflow-y: auto;
  align-items: flex-start;
  background: #fff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  padding: 48px;
  position: relative;
  width: 90%;
  z-index: 1002;
}

.popup_close {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  left: auto;
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 9;
}

.popup_close svg {
  height: 35px;
  pointer-events: none;
  width: 35px;
}

.popup_container .title {
  width: 100%;
  margin: 0 0 16px;
  font-weight: 600;
  font-size: 27px;
  line-height: 30px;
  text-align: center;
}

.popup_container .hs_cos_wrapper {
  display: block;
  width: 100%;
}

.popup_form-content .form-title {
  display: none;
}

.popup_form-content .hs-button.large {
  width: 100%;
}

body.popup-open {
  overflow: hidden;
}