@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-var.woff2') format('woff2');
  display: swap;
}

/* Override Bootstrap variables */
:root {
  --bs-primary: #f5e500;
  --bs-primary-rgb: rgba(245, 229, 0, var(--bs-bg-opacity, 1));

  --bs-primary-light: #ffda6a;
  --bs-primary-light-rgb: rgba(255, 218, 106, var(--bs-bg-opacity, 1));

  --bs-primary-dark: #ffc107;
  --bs-primary-dark-rgb: rgba(255, 193, 7, var(--bs-bg-opacity, 1));

  --color-secondary: #d0c300;
}

.btn-primary {
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);

  --bs-btn-hover-color: var(--bs-body-color);
  --bs-btn-hover-bg: var(--bs-primary-light);
  --bs-btn-hover-border-color: var(--bs-primary);

  --bs-btn-padding-x: 0.875rem;
  --bs-btn-padding-y: 0.5rem;

  font-size: 0.875rem;
  font-weight: bold;
}

/*------------------------------------*\
  MAIN
\*------------------------------------*/

body {
  background: #e6e6e6 url('img/background.png') center top no-repeat;
  color: var(--bs-body-color);
  text-align: center;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', 'Roboto', 'Ubuntu', 'Cantarell', 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  font-size: 87.5%;
  line-height: 1.5rem;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

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

a {
  --bs-link-color-rgb: rgba(0, 0, 0, 1);
}

.container,
.container-fluid {
  text-align: left;
}

@media (max-width: 991px) {
  .container {
    max-width: 100%;
  }
}

.section {
  clear: both;
  width: 100%;
}

#header {
  height: 80px;
}

#header .container {
  position: relative;
}

#header #logo {
  position: absolute;
  top: 12px;
  left: 10px;
  z-index: 100;
}

#header #logo img {
  transition: all 0.2s ease;
  width: 106px;
}

@media (min-width: 768px) {
  #header #logo img {
    width: 132px;
  }
}

#header #nav {
  float: right;
  display: inline;
  margin: 30px 10px 0 0;
}
#header #nav li {
  display: inline;
  margin-left: 12px;
}

@media (min-width: 768px) {
  #header #nav li {
    margin-left: 24px;
  }
}

#header #nav li a {
  color: #222;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
}
#header #nav li a:hover {
  color: #c20002;
}
#header #nav li.current_menu_item a {
  color: #c20002;
}

@media only screen and (max-width: 767px) {
  #header {
    height: auto;
    text-align: center;
  }

  #header #logo {
    position: relative;
    display: block;
    left: auto;
  }

  #header #nav {
    float: none;
    display: block;
    background: #fff;
    border-radius: 4px;
    padding-left: 0;
  }

  #header #nav li {
    display: block;
    margin: 0;
  }

  #header #nav li a {
    display: block;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid #dfdfdf;
  }

  #header #nav li:last-child a {
    border-bottom: 0;
  }
} /* max-width 768px, mobile-only styles, use when QAing mobile issues */

#slideshow {
  margin-bottom: 24px;
  padding-top: 24px;
}

#slideshow #slides .slide-image .slide-image-wrapper {
  background: #fff;
  display: flex;
  padding: 12px;
  margin-bottom: 0;
}

#slideshow #slides .slide-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

#slideshow .text {
  padding-left: 18px;
}

#slideshow img.car {
  float: left;
  margin-top: 44px;
  margin-left: 80px;
}

#slideshow img.car {
  float: left;
  max-width: 425px;
}

.slider .text h1,
.slider .text h2 {
  margin-top: 18px;
  font-size: 2.125rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-transform: none;
}

#slideshow h1 strong,
#slideshow h2 strong {
  color: #c20002;
}

.button.red {
  display: inline-flex;
  padding: 0.75rem 1.25rem;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: inset 0 -2px 1px 1px #a50002;
  -webkit-box-shadow: inset 0 -2px 1px 1px #a50002;
  box-shadow: inset 0 -2px 1px 1px #a50002;
  background: #c20002; /* Old browsers */
  background: -moz-linear-gradient(top, #c20002 0%, #d80103 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #c20002), color-stop(100%, #d80103)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #c20002 0%, #d80103 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #c20002 0%, #d80103 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #c20002 0%, #d80103 100%); /* IE10+ */
  background: linear-gradient(to bottom, #c20002 0%, #d80103 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c20002', endColorstr='#d80103',GradientType=0 ); /* IE6-9 */
}

.button.yellow {
  padding: 0.875rem 1.125rem;
  color: var(--bs-body-color);
  font-weight: bold;
  text-decoration: none;
  -moz-box-shadow: inset 0 -2px 1px 1px #d0c300;
  -webkit-box-shadow: inset 0 -2px 1px 1px #d0c300;
  box-shadow: inset 0 -2px 1px 1px #d0c300;
  background: #f5e500; /* Old browsers */
  background: -moz-linear-gradient(top, #f5e500 0%, #ffee00 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f5e500), color-stop(100%, #ffee00)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #f5e500 0%, #ffee00 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #f5e500 0%, #ffee00 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #f5e500 0%, #ffee00 100%); /* IE10+ */
  background: linear-gradient(to bottom, #f5e500 0%, #ffee00 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5e500', endColorstr='#ffee00',GradientType=0 ); /* IE6-9 */
}

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

#main,
.site-main {
  padding: 32px 32px;
  background: #fff;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  #main,
  .site-main {
    padding: 48px 64px;
    margin-bottom: 0;
  }
}

ul.contact,
p.note {
  display: inline-block;
  color: #666;
  list-style: none;
  margin-left: 0;
  padding: 1em;
  border: 1px solid #e8e8e8;
  margin-bottom: 1.5em;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
ul.contact li {
  margin-bottom: 0.5em;
}
ul.contact strong {
  color: #222;
}

p.first,
p.subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
}

#main .pre {
  margin-left: 80px;
}

strong {
  font-weight: bold;
}

.callout-black {
  padding: 12px 24px;
  background: #272626;
  color: #fff;
  text-align: center;
  margin-bottom: 1.5em;
  font-weight: bold;
}
.callout-black img {
  float: left;
  display: inline;
}
.callout-black p {
  margin-bottom: 0;
}
.callout-black span,
.callout-black a {
  color: #ffee00;
  text-decoration: none;
}

.callout-black a:hover {
  text-decoration: underline;
}

.callout-yellow {
  padding: 16px 24px;
  background: #ffee00;
  color: var(--bs-body-color);
  text-align: center;
  margin-bottom: 1.5em;
}
.callout-yellow a {
  text-decoration: none;
  color: #111;
  font-weight: bold;
}
.callout-yellow p {
  margin-bottom: 0;
}

.callout-yellow.big {
  margin-right: 12px;
  margin-left: 12px;
}
.callout-yellow.big p strong {
  color: #111;
  font-weight: bold;
}

.box {
  padding: 24px 24px 32px;
  background: #fff;
  margin-bottom: 20px;
}

#footer {
  font-size: 0.875em;
  color: #555;
  padding: 28px 0 0 0;
}
#footer .container {
  padding: 28px 0 28px 0;
  border-top: 1px solid #d0d0d0;
  position: relative;
}
#footer p {
  margin-bottom: 0;
}
#footer a {
  color: #333;
  text-decoration: none;
}
#footer img.cbr {
  position: absolute;
  right: 0;
  top: 28px;
}

.right {
  float: right;
}
.note {
  font-size: 0.875em;
}

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%; /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}
