:root {
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Russo One', sans-serif;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.5;
    color: #111;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.02em;
}



.hero-media{
  position: relative;
  display: inline-block;
}

.hero-media::before{
  content:"";
  position:absolute;
  inset:-140px;
  background: url('/wp-content/themes/atga-theme/assets/img/img.svg') center / contain no-repeat;
  z-index:0;
  pointer-events:none;
}

.hero-media img{
  position: relative;
  z-index: 1;
  display:block;
}

.wpcf7 form .wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 0;
    border: none;
    color: #dc3232;
}

/* responsive */
@media (max-width: 768px){
  .hero-media::before{
    inset:-70px;
  }
}

/* Error color CF7 */
.wpcf7-not-valid-tip {
    color: #fff !important;
    font-size: 14px !important;
}

.wpcf7 form .wpcf7-response-output {
    color: #fff !important;
    font-size: 14px !important;
}