/*
 * Legacy site-wide rules extracted from src/styles/index.scss.
 *
 * This file intentionally contains only the small project-specific layer.
 * Normalize + Bootstrap grid/utilities are copied from the exact installed
 * npm packages by this local Gatsby plugin, so /landing-sites never imports
 * those large styles into its own page bundle.
 */
*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: var(--font-family);
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

:root {
  --black: #201f1f;
  --color: #fff;
  --gray: #7d7d7d;
  --green: #00dc8a;
  --orange: #ffaa6c;
  --pink: #ffa7fb;
  --white: #fff;
  --yellow: #fcff74;
  --gray-bg: #ededed;
  --blue-light: #b4e1fa;
  --blue-main: #0085ff;
  --font-family: "Montserrat", sans-serif;
  --second-family: "Oswald", sans-serif;
  --third-family: "Inter", sans-serif;
}

p {
  margin: 0;
}

.bgPrimary {
  background: var(--gray-bg);
}

h2 {
  color: white;
  font-family: var(--second-family);
  font-size: clamp(7.5rem, 11.43vw + 1.29rem, 15rem);
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 0;
  margin-top: 0;
  text-transform: uppercase;
}

@media (max-width: 869.98px) {
  h2 {
    font-size: clamp(3.75rem, 10.91vw + 1.57rem, 7.5rem);
    -webkit-text-stroke-width: 2px !important;
  }
}

h3 {
  color: white;
  font-family: var(--second-family);
  font-size: clamp(7.5rem, 11.43vw + 1.29rem, 15rem);
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 0;
  -webkit-text-stroke: 4px var(--green);
  text-transform: uppercase;
}

h4 {
  color: var(--black);
  font-family: var(--second-family);
  font-size: clamp(0.94rem, 0.67vw + 0.58rem, 1.38rem);
  font-weight: 500;
  line-height: 100%;
  margin: 0;
  text-transform: uppercase;
}

.gatsby-image-wrapper-constrained {
  width: 100%;
}

button,
.buttonLink {
  background-color: transparent;
  border-bottom: 4px solid transparent;
  border-left: 1px solid transparent;
  border-radius: 100px;
  border-right: 3px solid transparent;
  border-top: 1px solid transparent;
  color: inherit;
  cursor: pointer;
  padding: 8px 24px;
  text-decoration: none;
  text-wrap: nowrap;
}

button:hover,
.buttonLink:hover {
  border-bottom: 4px solid var(--black);
  border-left: 1px solid var(--black);
  border-right: 3px solid var(--black);
  border-top: 1px solid var(--black);
}

.svg-part {
  display: block;
  position: absolute;
  transition: transform 0.5s ease;
}

.svg-part.open {
  transform: translateX(100px);
}

.svg-part.close {
  transform: translateX(0);
}
