/*
* Global button styling
*/
/*
* Breakpoint debugging
*/
/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* SASS Parent append
* Useful if you want to add an append to the parent without writing it out again
* Usage: @include parent-append(":hover")
* Source: https://codepen.io/imkremen/pen/RMVBvq
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(bottomright, 3deg, topleft, 3deg, #fff);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
.block-contact {
  margin-bottom: 6rem;
}
.block-contact__contacts {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}
@media (max-width: 782px) {
  .block-contact__contacts {
    flex-direction: column;
  }
}
.block-contact__contact {
  flex: 1;
}
@media (min-width: 1025px) {
  .block-contact__contact {
    margin-bottom: 4rem;
  }
}
.block-contact__header {
  margin-bottom: 2rem;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--wp--preset--color--blue-grey);
  width: 100%;
  color: var(--wp--preset--color--primary);
}
.block-contact__company {
  font-weight: 600;
  color: white;
}
.block-contact__details {
  width: 100%;
  flex: 1;
}
.block-contact__details span {
  display: block;
}
.block-contact__details address {
  margin: 2rem 0;
  font-weight: 300;
}
.block-contact__map {
  flex: 1;
}
.block-contact__map a {
  width: 100%;
  max-height: 400px;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.block-contact__map a img {
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}
