/*!*********************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./app/public/wp-content/themes/webimpact/components/contact/src/contact.scss ***!
  \*********************************************************************************************************************************************************************/
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: var(--container-s);
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .contact {
    padding-inline: 2rem;
  }
  .contact__title {
    max-width: 100%;
  }
}
.contact__intro {
  font-size: 2rem;
}
.contact .heading {
  text-align: center;
  margin-bottom: 4rem;
}
.contact .heading .contact__title {
  margin-bottom: 0.5rem;
}
.contact .contact__actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .contact .contact__actions {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact .contact__actions .contact__action {
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
  background: var(--white);
  transition: box-shadow 0.2s;
  cursor: pointer;
  border: none;
  outline: none;
}
.contact .contact__actions .contact__action:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.contact .contact__actions .contact__action .contact__icon {
  background: var(--grey-600);
  padding: 10px;
  border-radius: 50%;
  margin-bottom: 2rem;
}
.contact .contact__actions .contact__action .contact__icon svg {
  width: 2.5rem;
  height: 2.5rem;
  display: block;
}
.contact .contact__actions .contact__action .contact__label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.contact .contact__actions .contact__action .contact__value {
  color: #222;
  word-break: break-all;
}
.contact .contact__map {
  position: relative;
  margin-top: 2rem;
  width: 100%;
}
.contact .contact__map img {
  width: 100%;
  border-radius: 1rem;
  display: block;
  position: relative;
  overflow: hidden;
}
.contact .contact__map .overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.3137254902);
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
}
.contact .contact__map .contact__map-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  padding: 3rem;
  border-radius: 2rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.2s;
}
@media only screen and (max-width: 767px) {
  .contact .contact__map .contact__map-btn {
    left: 0%;
    transform: translate(10%, -50%);
  }
}
.contact .contact__map .contact__map-btn:hover {
  background: #0056b3;
}
