/* @file
 * This file is where base setup & all the partials are imported.
 */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Roboto:wght@300;400;500;700;900&display=swap");
* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

figcaption {
  font-style: italic;
  max-width: 40.625rem;
  font-size: 0.875rem;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

h1, .h1 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.375rem;
  line-height: 2.875rem;
}

h2, .h2 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  line-height: 2.25rem;
}

h3, .h3 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.375rem;
  line-height: 1.625rem;
  text-transform: uppercase;
}

p {
  margin: 0 0 1rem;
  width: 100%;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

a,
.link {
  color: #000;
  text-decoration: underline;
}

a:hover, a:focus,
.link:hover,
.link:focus {
  color: #000;
  text-decoration: none;
}

a:active,
.link:active {
  color: #444;
  text-decoration: none;
}

a:focus,
.link:focus {
  outline: thin dotted;
}

a:focus-visible,
.link:focus-visible {
  outline: 0.125rem solid #6A24F5;
}

br + br, ul + br {
  display: initial;
}

:focus-visible {
  outline: 0.125rem solid #6A24F5;
}

.site {
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.125rem;
}

.region {
  width: 100%;
  display: block;
}

.region__inner {
  margin-left: auto;
  margin-right: auto;
  padding: 0 0.9375rem;
  position: relative;
}

.accessibly-hidden {
  position: absolute !important;
  clip: rect(0.0625rem, 0.0625rem, 0.0625rem, 0.0625rem);
  overflow: hidden;
  height: 0.0625rem;
  padding: 0;
  left: -625rem;
}

.u-hidden {
  display: none;
}

:root {
  --primary-color: #FCB514;
  --secondary-color: #D81E05;
  --link-color: #FCB514;
  --link-hover-color: #FCB514;
  --button-primary-color: #FCB514;
  --tabs-primary-color: #000058;
  --tabs-secondary-color: #004893;
  --tabs-active-color: #004893;
  --tabs-link-color: #fff;
  --tabs-kill-color: #c30916;
  --tabs-link-hover-color: #fff;
}
