﻿:root {
  --primaryLight: #ff6645;
  --secondary: #ffbd07;
  --secondaryLight: #ffbd07;
  --headerColor: #1a1a1a;
  --bodyTextColor: #555555;
  --bodyTextColorWhite: #fafbfc;
  --topperFontSize: clamp(0.8rem, 1.5vw, 0.95rem);
  --headerFontSize: clamp(1.75rem, 3.5vw, 2.5rem);
  --bodyFontSize: 1rem;
  --sectionPadding: clamp(3rem, 6vw, 5rem) 1rem;
}

body {
  margin: 0;
  padding: 0;
  padding-top: 120px;
}

#header-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

@media (max-width: 900px) {
  body {
    padding-top: 100px;
  }
}

@media (max-width: 600px) {
  body {
    padding-top: 90px;
  }
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

.cs-topper {
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: inherit;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #ffbd07;
  margin-bottom: 0.4rem;
  display: block;
}

.cs-title {
  font-size: var(--headerFontSize);
  font-weight: 700;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  position: relative;
}

.cs-text {
  font-size: var(--bodyFontSize);
  line-height: 1.6em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}

