/* stylelint-disable order/order */
/* stylelint-enable order/order */
/*
* Used to add the CSS Grid properties for the 12-column grid.
*
* @return string  The CSS Grid properties for the 12-column grid.
*/
/****************
 * Fonts
 *
 * The font settings are defined via the gulp figma task creates variables in the css/__base-includes/figma/_figma-font-styles.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/****************
 * Colors
 *
 * The primary colors are defined via the gulp figma task creates variables in the css/__base-includes/figma/_figma-color-variables.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/****************
 * Effects
 ****************/
/****************
 * Grid Settings
 ****************/
/*
This file can be used for optional additions to the Figma-generated font style mixins in the figma/_figma-font-styles.scss file.

For example, if you want to add styles to the @overline mixin, just create a mixin here called @overline-custom and that CSS will be added to the primary mixin:

@mixin overline-custom() {
	font-weight: 700;
}
*/
.block-hero-contact {
  position: relative;
  z-index: 1;
}
@media (min-width: 48rem) {
  .block-hero-contact__container {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem);
    row-gap: clamp(1.25rem, 0.3928571429rem + 1.7857142857vw, 2rem);
  }
}
.block-hero-contact__content {
  margin-bottom: 4.5rem;
}
@media (min-width: 48rem) {
  .block-hero-contact__content {
    grid-area: 1/1/2/7;
    margin-bottom: 0;
  }
}
@media (min-width: 62rem) {
  .block-hero-contact__content {
    grid-area: 1/1/2/6;
  }
}
@media (max-width: 47.98rem) {
  .block-hero-contact__form-wrapper {
    margin-top: 3rem;
  }
}
@media (min-width: 48rem) {
  .block-hero-contact__form-wrapper {
    grid-area: 1/7/2/13;
  }
}
.block-hero-contact__decoration {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.block-hero-contact__decoration::before {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  width: 175rem;
  height: 175rem;
  background: #f0f2f9;
  transform: translate(3%, 20%);
  clip-path: url(#crescent-mask);
}
@media (max-width: 47.98rem) {
  .block-hero-contact__decoration::before {
    left: 0;
    right: auto;
    transform: translate(-52%, clamp(6.25rem, -18.75rem + 100vw, 18.75rem));
  }
}