/* Base */
:root {
  font-size: 9px;
  box-sizing: border-box;

  --font-color: #757779;
  --light-gray: #C9CACB;
  --brand-red: #da291c;
  --red-tint: rgba(218,41,28,0.85);
  --white-tint: rgba(255, 255, 255, 0.3);
  --brand-blue: #0096ae;
  --seafome-blue: #5dc3d5;
  --duck-egg-blue: #f2fafc;
  --forest-green: #0D9657;

  --border-radius: 8px;

}

 @media (min-width: 567px) {
  :root {
    font-size: 10px;
  }
}

/*
// Media brakpoints reference
  // 400px xs
  // 576px sm
  // 720px md
  // 940px lg
  // 1140px xl
*/

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

html {
  font-size: 10px;
}

body {
  font-size: 1.5rem;
  font-family: "Ted Next", "Helvetica";
  font-weight: 400;
  color: var(--font-color);
  line-height: 1.24;
}

@media (min-width: 576px) {
  body {
    font-size: 1.8rem;
  }
}

h1, h2, h3, h4, h5,
.h1, .h2, .h3, .h4, .h5 {
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 1rem;
}

h1, .h1 {
  font-size: 4.5rem;
}

h2, .h2 {
  font-size: 2.2rem;
}

h3, .h3 {
  font-size: 2.8rem;
}

h4, .h4 {
  font-size: 1.4rem;
}

h5, .h5 {
  font-size: 1.6rem;
}

p {
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  font-size: 1.6rem;
  
}

/*
a {
  text-decoration: none;
  color: currentColor;
}
*/

strong {
  font-weight: 600;
}

small {
  font-weight: 600;
  font-size: 1.4rem;
}

img {
  max-width: 100%;
  max-height: 100%;
}

button {
  appearance: none;
  border: none;
}