@import 'variables.css';
#is-mobile {
  display: none;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}
body .gap-5 {
  height: 5px;
  width: 100%;
}
body .spacer-5 {
  display: inline-block;
  height: 1px;
  width: 5px;
}
body .gap-10 {
  height: 10px;
  width: 100%;
}
body .spacer-10 {
  display: inline-block;
  height: 1px;
  width: 10px;
}
body .gap-15 {
  height: 15px;
  width: 100%;
}
body .spacer-15 {
  display: inline-block;
  height: 1px;
  width: 15px;
}
body .gap-20 {
  height: 20px;
  width: 100%;
}
body .spacer-20 {
  display: inline-block;
  height: 1px;
  width: 20px;
}
body .gap-25 {
  height: 25px;
  width: 100%;
}
body .spacer-25 {
  display: inline-block;
  height: 1px;
  width: 25px;
}
body .gap-30 {
  height: 30px;
  width: 100%;
}
body .spacer-30 {
  display: inline-block;
  height: 1px;
  width: 30px;
}
body .gap-35 {
  height: 35px;
  width: 100%;
}
body .spacer-35 {
  display: inline-block;
  height: 1px;
  width: 35px;
}
body .gap-40 {
  height: 40px;
  width: 100%;
}
body .spacer-40 {
  display: inline-block;
  height: 1px;
  width: 40px;
}
body .gap-45 {
  height: 45px;
  width: 100%;
}
body .spacer-45 {
  display: inline-block;
  height: 1px;
  width: 45px;
}
body .gap-50 {
  height: 50px;
  width: 100%;
}
body .spacer-50 {
  display: inline-block;
  height: 1px;
  width: 50px;
}
body .gap-55 {
  height: 55px;
  width: 100%;
}
body .spacer-55 {
  display: inline-block;
  height: 1px;
  width: 55px;
}
body .gap-60 {
  height: 60px;
  width: 100%;
}
body .spacer-60 {
  display: inline-block;
  height: 1px;
  width: 60px;
}
body .gap-65 {
  height: 65px;
  width: 100%;
}
body .spacer-65 {
  display: inline-block;
  height: 1px;
  width: 65px;
}
body .gap-70 {
  height: 70px;
  width: 100%;
}
body .spacer-70 {
  display: inline-block;
  height: 1px;
  width: 70px;
}
body .gap-75 {
  height: 75px;
  width: 100%;
}
body .spacer-75 {
  display: inline-block;
  height: 1px;
  width: 75px;
}
body .gap-80 {
  height: 80px;
  width: 100%;
}
body .spacer-80 {
  display: inline-block;
  height: 1px;
  width: 80px;
}
body .gap-85 {
  height: 85px;
  width: 100%;
}
body .spacer-85 {
  display: inline-block;
  height: 1px;
  width: 85px;
}
body .gap-90 {
  height: 90px;
  width: 100%;
}
body .spacer-90 {
  display: inline-block;
  height: 1px;
  width: 90px;
}
body .gap-95 {
  height: 95px;
  width: 100%;
}
body .spacer-95 {
  display: inline-block;
  height: 1px;
  width: 95px;
}
.mobile-only {
  display: none;
}
.not-mobile {
  display: block;
}
h1,
h2,
h3,
h4 {
  color: var(--red);
  font-family: var(--font-family-heading);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 20px;
  text-transform: uppercase;
  text-wrap: pretty;
}
h1 {
  font-size: 3.2em;
}
h1 small {
  display: block;
  font-size: 0.6em;
  color: var(--charcoal);
}
h2 {
  font-size: 2.4em;
}
h3 {
  font-size: 2.1em;
  position: relative;
}
h3.label {
  background-color: var(--label-color);
  color: #FFF;
  display: inline-block;
  font-family: var(--font-family);
  font-weight: 500;
  margin-bottom: 0;
  padding: 8px 32px;
}
h3.label + h2,
h3.label + h3 {
  margin-top: 20px;
}
h4 {
  font-size: 1.5em;
}
* + h2,
* + h3,
* + h4 {
  margin-top: 40px;
}
p,
ul,
ol {
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.75;
}
p a,
ul a,
ol a {
  color: var(--red);
  text-decoration: underline;
  transition: all 0.1s ease-in-out;
}
p a:hover,
ul a:hover,
ol a:hover {
  color: var(--red-dark);
}
p + p,
ul + p,
ol + p,
p + ul,
p + ol,
ul + ul,
ul + ol,
ol + ul,
ol + ol {
  margin-top: 20px;
}
ul,
ol {
  padding-left: 20px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  font-size: 1em;
}
li {
  padding: 5px 0;
}
.inset {
  box-sizing: border-box;
  padding: 20px;
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.columns {
  display: flex;
  flex-direction: row;
  gap: 60px;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}
.columns--reverse {
  flex-direction: row-reverse;
}
.columns__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
}
.columns__column--column-20 {
  width: 20%;
}
.columns__column--column-25 {
  width: 25%;
}
.columns__column--column-30 {
  width: 30%;
}
.columns__column--column-35 {
  width: 35%;
}
.columns__column--column-40 {
  width: 40%;
}
.columns__column--column-45 {
  width: 45%;
}
.columns__column--column-50 {
  width: 50%;
}
.columns__column--column-55 {
  width: 55%;
}
.columns__column--column-60 {
  width: 60%;
}
.columns__column--column-65 {
  width: 65%;
}
.columns__column--column-70 {
  width: 70%;
}
.columns__column--column-75 {
  width: 75%;
}
.columns__column--column-80 {
  width: 80%;
}
.columns__column--left,
.columns__column--wide {
  flex-grow: 1;
}
.columns__column--right,
.columns__column--narrow {
  width: 360px;
}
.columns__column--border-left {
  border-left: 1px solid var(--grey);
  padding-left: 40px;
}
.columns__column .box {
  background-color: var(--grey-light);
  text-align: center;
  padding: 30px;
}
.columns__column .box p {
  text-wrap: balance;
}
.columns__column .box .fosber-button {
  background-color: var(--red);
  color: var(--white);
  margin-top: 30px;
}
.columns__column .box .fosber-button:hover {
  background-color: var(--red-dark);
  color: var(--white);
}
.columns__column section:first-child {
  padding-top: 0;
}
.fosber-button {
  border: 1px solid var(--grey);
  color: var(--charcoal);
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-family-heading);
  font-size: 1.25em;
  font-weight: 500;
  padding: 10px 50px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.1s ease-in-out;
  width: fit-content;
}
.fosber-button:hover {
  background-color: var(--red);
  border-color: var(--red-dark);
  color: var(--white);
}
.fosber-button--small {
  font-size: 0.9em;
  padding: 4px 20px;
}
#wrapper {
  overflow-x: hidden;
}
#container {
  padding-top: calc(var(--header-height) + 28px);
}
.top-bar {
  background-color: var(--charcoal);
  color: var(--white);
  font-size: 0.75em;
  font-weight: 700;
  padding: 5px 10px;
  position: fixed;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  z-index: 9999;
}
header#header {
  background-color: var(--white);
  border-bottom: 1px solid var(--charcoal);
  color: var(--charcoal);
  position: fixed;
  top: 28px;
  width: 100%;
  z-index: 1000;
}
header#header .inset {
  align-items: stretch;
  display: flex;
  flex-direction: row;
  gap: 20px;
  height: var(--header-height);
  justify-content: flex-end;
  max-width: 100%;
  padding: 0;
  position: relative;
  transition: all 0.2s ease-in-out;
  z-index: 10;
}
header#header .inset:after {
  position: absolute;
  content: '';
  top: 0;
  left: calc(100% - 1px);
  width: calc(((100vw - var(--max-width)) / 2) + 1px);
  height: 100%;
  background-color: var(--red);
}
header#header .mobile-menu-button {
  --line-inset: 7px;
  background-color: var(--red);
  border-radius: 4px;
  color: #FFF;
  cursor: pointer;
  display: none;
  height: 40px;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  z-index: 1000;
}
header#header .mobile-menu-button:hover {
  background-color: var(--red-dark);
}
header#header .mobile-menu-button__line {
  background-color: #FFF;
  border-radius: 2px;
  position: absolute;
  top: calc(var(--line-inset) + 4px);
  left: var(--line-inset);
  height: 4px;
  width: calc(100% - (var(--line-inset) * 2));
  transition: all 0.1s ease-in-out;
}
header#header .mobile-menu-button__line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
header#header .mobile-menu-button__line:nth-child(3) {
  top: auto;
  bottom: calc(var(--line-inset) + 4px);
}
header#header .mobile-menu-button--active .mobile-menu-button__line:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
}
header#header .mobile-menu-button--active .mobile-menu-button__line:nth-child(2) {
  display: none;
}
header#header .mobile-menu-button--active .mobile-menu-button__line:nth-child(3) {
  bottom: 18px;
  transform: rotate(-45deg);
}
header#header .home-logo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  height: calc(var(--header-height) - 25px);
  transition: all 0.2s ease-in-out;
  width: auto;
  z-index: 20;
}
header#header .menus {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: flex-end;
  width: 100%;
}
header#header nav {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: flex-end;
  padding: 0 20px 0 30px;
  position: relative;
  text-transform: uppercase;
}
header#header nav:before {
  background-color: var(--red);
  clip-path: polygon(calc(var(--header-height) / 3) 0%, 100% 0, 100% 100%, 0% 100%);
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: all 0.1s ease-in-out;
  width: 100%;
}
header#header nav .menu-main-menu-container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  height: 100%;
}
header#header nav .menu-main-menu-container ul {
  align-items: stretch;
  display: flex;
  flex-direction: row;
  font-size: 1.1em;
  font-weight: 700;
  gap: 5px;
  list-style: none;
  height: 100%;
}
header#header nav .menu-main-menu-container ul > li {
  padding: 0;
  position: relative;
}
header#header nav .menu-main-menu-container ul > li:before {
  background-color: transparent;
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: skew(calc(var(--skew-angle) * -1));
  transition: all var(--transition-duration);
  width: 100%;
}
header#header nav .menu-main-menu-container ul > li a {
  color: var(--white);
  padding: 5px 0;
  position: relative;
  text-decoration: none;
}
header#header nav .menu-main-menu-container ul > li a span {
  display: inline-block;
  height: var(--header-height);
  line-height: var(--header-height);
  padding: 0 20px;
  transition: all 0.2s ease-in-out;
}
header#header nav .menu-main-menu-container ul > li.current-menu-item > a {
  border-bottom: 2px solid var(--green-light);
}
header#header nav .menu-main-menu-container ul > li.menu-item-has-children {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: center;
}
header#header nav .menu-main-menu-container ul > li.menu-item-has-children:after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23FFFFFF" d="M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z"/></svg>');
  display: inline-block;
  height: 14px;
  position: relative;
  right: 10px;
  top: -7px;
  transition: transform var(--transition-duration);
  width: 14px;
}
header#header nav .menu-main-menu-container ul > li.menu-item-has-children:hover:after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23d32011" d="M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z"/></svg>');
}
header#header nav .menu-main-menu-container ul > li > ul.sub-menu {
  background: var(--white);
  border: 1px solid var(--charcoal);
  border-top: none;
  box-sizing: border-box;
  display: none;
  flex-direction: column;
  gap: 0;
  height: auto;
  left: -22px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  width: 240px;
  z-index: 1000;
}
header#header nav .menu-main-menu-container ul > li > ul.sub-menu li {
  border-bottom: 1px solid var(--grey);
  font-size: 1rem;
  padding: 0;
  width: 100%;
}
header#header nav .menu-main-menu-container ul > li > ul.sub-menu li:before {
  display: none;
}
header#header nav .menu-main-menu-container ul > li > ul.sub-menu li.menu-item-has-children {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: center;
}
header#header nav .menu-main-menu-container ul > li > ul.sub-menu li.menu-item-has-children:after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23d32011" d="M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z"/></svg>');
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
}
header#header nav .menu-main-menu-container ul > li > ul.sub-menu li a {
  color: var(--red);
  display: block;
  padding: 10px 20px;
  width: 100%;
}
header#header nav .menu-main-menu-container ul > li > ul.sub-menu li a span {
  height: auto;
  line-height: 1.2;
  padding: 0;
}
header#header nav .menu-main-menu-container ul > li > ul.sub-menu li:last-child {
  border-bottom: none;
}
header#header nav .menu-main-menu-container ul > li > ul.sub-menu li > ul.sub-menu {
  border-top: 1px solid var(--charcoal);
  left: 100%;
  top: -1px;
}
header#header nav .menu-main-menu-container ul > li > ul.sub-menu > li:hover > a {
  background-color: var(--grey-light);
  color: var(--red);
}
header#header nav .menu-main-menu-container ul > li:hover:before {
  background-color: var(--white);
}
header#header nav .menu-main-menu-container ul > li:hover > a {
  color: var(--red);
}
header#header nav .menu-main-menu-container ul > li:hover > ul {
  display: flex;
}
header#header nav .search-button {
  cursor: pointer;
  display: grid;
  margin-right: -40px;
  padding: 0 60px 0 20px;
  place-items: center;
  height: 100%;
  position: relative;
  width: auto;
}
header#header nav .search-button:before {
  background-color: transparent;
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: skew(calc(var(--skew-angle) * -1));
  transition: all var(--transition-duration);
  width: 100%;
  z-index: 1;
}
header#header nav .search-button:after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23FFFFFF" d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"/></svg>');
  display: inline-block;
  height: 20px;
  position: relative;
  width: 20px;
  z-index: 2;
}
header#header nav .search-button:hover:before,
header#header nav .search-button:has(#searchform.active):before {
  background-color: var(--white);
}
header#header nav .search-button:hover:after,
header#header nav .search-button:has(#searchform.active):after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23e30613" d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"/></svg>');
}
header#header nav .search-button #searchform {
  background: var(--white);
  border: 1px solid var(--charcoal);
  border-top: 0;
  opacity: 0;
  pointer-events: none;
  padding: 10px;
  position: absolute;
  right: 30px;
  top: 100%;
  width: auto;
}
header#header nav .search-button #searchform input[type=search] {
  background: var(--white);
  border: 1px solid #949494;
  border-radius: 0;
  color: var(--charcoal);
  font-size: 1em;
  padding: 10px;
  width: 280px;
}
header#header nav .search-button #searchform button[type=submit] {
  display: none;
}
header#header nav .search-button #searchform.active {
  opacity: 1;
  pointer-events: all;
  animation: slide-fade-down 100ms ease-out forwards;
}
header#header nav .search-button #searchform.active input[type=text]:focus,
header#header nav .search-button #searchform.active input[type=text]:active {
  outline: 1px solid var(--gold);
  outline-offset: 1px;
}
body.logged-in header#header {
  top: 60px;
}
body.scrolled * {
  --header-height: 60px;
}
body.scrolled header#header {
  position: fixed;
}
body.mobile-menu--active header#header nav {
  max-height: 1000px;
}
section.hero {
  background-color: var(--grey-light);
  border-bottom: 1px solid var(--white);
  color: #FFF;
  padding: 0;
  position: relative;
  text-align: center;
  z-index: 10;
}
section.hero .slides {
  min-height: 650px;
  position: relative;
}
section.hero .slides .slide {
  background-color: var(--grey-light);
  background-image: var(--bg-image-url);
  background-position: var(--bg-position-x) var(--bg-position-y);
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  animation: fade-out 500ms ease-out forwards;
  animation-delay: 500ms;
}
section.hero .slides .slide.active {
  opacity: 1;
  z-index: 2;
  animation: fade-in 500ms ease-out forwards;
}
section.hero .slides .slide.inactive {
  animation: fade-out 500ms ease-out forwards;
  animation-delay: 500ms;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
div.page-header {
  background-color: var(--grey-light);
}
div.page-header .inset {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  max-width: calc(var(--max-width) - 200px);
}
div.page-header h1 {
  font-size: 2.25em;
  font-weight: 500;
  margin-bottom: 0;
}
div.page-header .breadcrumbs {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
div.page-header .breadcrumbs a {
  color: var(--red);
  text-decoration: none;
}
div.page-header .breadcrumbs a:hover {
  text-decoration: underline;
}
div.header-image {
  background-color: var(--grey-light);
  background-image: var(--bg-image-url);
  background-position: var(--bg-position-x) var(--bg-position-y);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: var(--bg-height);
  padding: 60px 0;
  position: relative;
}
div.header-image--has-overlay:before {
  background-color: var(--bg-overlay-color);
  content: '';
  opacity: calc(var(--bg-overlay-opacity) / 100);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
div.submenu-pages {
  background-color: var(--red);
  border-bottom: 1px solid var(--charcoal);
}
div.submenu-pages .inset {
  padding-bottom: 0;
  padding-top: 0;
}
div.submenu-pages ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  justify-content: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}
div.submenu-pages ul li {
  margin: 0;
  padding: 0;
}
div.submenu-pages ul li:hover,
div.submenu-pages ul li.active {
  background-color: var(--white);
}
div.submenu-pages ul li:hover a,
div.submenu-pages ul li.active a {
  color: var(--red);
}
div.submenu-pages ul li a {
  color: var(--white);
  display: block;
  margin: 0;
  padding: 10px 30px;
  text-decoration: none;
}
section {
  padding: 40px 0;
}
section .inset {
  padding: 0 20px;
  position: relative;
}
section .inset.watched {
  opacity: 0;
}
section .inset.watched.seen {
  opacity: 1;
  animation: slide-fade-up 500ms ease-out forwards;
}
section.basic {
  background-color: var(--bg-overlay-color);
  background-image: var(--bg-image-url);
  background-position: var(--bg-position-x) var(--bg-position-y);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: var(--bg-attachment);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  position: relative;
}
section.basic:before {
  background-color: var(--bg-overlay-color);
  content: '';
  opacity: var(--bg-overlay-opacity);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.basic .inset {
  color: var(--color);
  max-width: calc(var(--max-width) - 400px);
  --bg-overlay-color: #000000;
}
section.basic .inset h1,
section.basic .inset h2,
section.basic .inset h3,
section.basic .inset h4 {
  color: var(--heading-color);
}
section.basic .inset p {
  color: var(--color);
}
section.basic .inset p a {
  color: var(--color);
}
section.basic .inset .fosber-button {
  background-color: var(--bg-overlay-color);
  background-blend-mode: multiply;
  color: var(--color);
  display: block;
  margin: 30px auto 0;
}
section.main-content {
  background-color: var(--grey);
  color: var(--charcoal);
  padding: 40px 0;
  position: relative;
  text-align: left;
  z-index: 10;
}
section.main-content .inset {
  padding: 0 30px;
  width: 100%;
}
section.secondary-content {
  background-color: var(--white);
  color: var(--charcoal);
  padding: 40px 0;
  position: relative;
  text-align: left;
  z-index: 10;
}
section.secondary-content .inset {
  padding: 0 30px;
  width: 100%;
}
section.secondary-content .inset .columns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: space-between;
  margin-bottom: 50px;
  opacity: 0;
}
section.secondary-content .inset .columns__column {
  background-color: var(--white);
  display: block;
  gap: 0;
  padding: 0;
  width: calc(50% - 2em);
}
section.secondary-content .inset .columns__column__label {
  color: var(--charcoal);
  display: block;
  font-family: var(--font-family);
  font-size: 1.2em;
  font-weight: 700;
  padding: 8px 20px;
  text-transform: uppercase;
}
section.secondary-content .inset .columns__column .image img {
  display: block;
  height: auto;
  width: 100%;
}
section.secondary-content .inset .columns.watched.seen {
  animation: slide-fade-up 500ms ease-out forwards;
}
section.secondary-content .inset .photos {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  margin: 0 auto 20px;
  width: 100%;
}
section.secondary-content .inset .photos__item {
  opacity: 0;
}
section.secondary-content .inset .photos__item img {
  display: block;
  height: auto;
  width: 100%;
}
section.secondary-content .inset .photos .photos__item.watched.seen {
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
  animation-name: slide-fade-up;
  animation-timing-function: ease-out;
}
section.secondary-content .inset .photos .photos__item:nth-child(1) {
  animation-delay: 0.1s;
}
section.secondary-content .inset .photos .photos__item:nth-child(2) {
  animation-delay: 0.2s;
}
section.secondary-content .inset .photos .photos__item:nth-child(3) {
  animation-delay: 0.3s;
}
section.secondary-content .inset .photos .photos__item:nth-child(4) {
  animation-delay: 0.4s;
}
section.secondary-content .inset .photos .photos__item:nth-child(5) {
  animation-delay: 0.5s;
}
section.secondary-content .inset .photos .photos__item:nth-child(6) {
  animation-delay: 0.6s;
}
section.secondary-content .inset .photos .photos__item:nth-child(7) {
  animation-delay: 0.7s;
}
section.secondary-content .inset .photos .photos__item:nth-child(8) {
  animation-delay: 0.8s;
}
section.secondary-content .inset .photos .photos__item:nth-child(9) {
  animation-delay: 0.9s;
}
section.secondary-content .inset .photos .photos__item:nth-child(10) {
  animation-delay: 1s;
}
section.secondary-content .inset .photos .photos__item:nth-child(11) {
  animation-delay: 1.1s;
}
section.secondary-content .inset .photos .photos__item:nth-child(12) {
  animation-delay: 1.2s;
}
section.secondary-content .inset .photos .photos__item:nth-child(13) {
  animation-delay: 1.3s;
}
section.secondary-content .inset .photos .photos__item:nth-child(14) {
  animation-delay: 1.4s;
}
section.secondary-content .inset .photos .photos__item:nth-child(15) {
  animation-delay: 1.5s;
}
section.secondary-content .inset .photos .photos__item:nth-child(16) {
  animation-delay: 1.6s;
}
section.secondary-content .inset .photos .photos__item:nth-child(17) {
  animation-delay: 1.7s;
}
section.secondary-content .inset .photos .photos__item:nth-child(18) {
  animation-delay: 1.8s;
}
section.secondary-content .inset .photos .photos__item:nth-child(19) {
  animation-delay: 1.9s;
}
section.page-content h1,
section.page-content h2,
section.page-content h3,
section.page-content h4 {
  color: var(--red);
}
section.page-content .inset {
  max-width: calc(var(--max-width) - 200px);
}
section.page-content .inset.watched {
  opacity: 0;
}
section.page-content .inset.watched.seen {
  opacity: 1;
  animation: slide-fade-up 500ms ease-out forwards;
}
section.page-content .inset .wp-block-image .alignleft {
  margin: 0 30px 30px 0;
}
section.page-content .inset iframe.google-map {
  aspect-ratio: 3/4;
  border: none;
  display: block;
  height: auto;
  width: 100%;
}
section.page-content .inset figure.docs-gallery {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}
section.page-content .inset figure.docs-gallery > figure {
  width: 100% !important;
}
section.page-content .inset figure.docs-gallery > figure > img {
  display: block;
  height: auto;
  width: 100%;
}
section.our-products,
section.products {
  background-color: #F5F5F500;
}
section.our-products .inset,
section.products .inset {
  flex-direction: column;
}
section.our-products .inset .heading,
section.products .inset .heading {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  padding: 0 20px;
}
section.our-products .inset .heading h2,
section.products .inset .heading h2 {
  color: var(--grey-dark);
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}
section.our-products .inset .heading img,
section.products .inset .heading img {
  height: 90px;
}
section.our-products .inset .boxes,
section.products .inset .boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 50px;
  margin: 0 auto;
  max-width: calc(var(--max-width) - 200px);
  width: 100%;
}
section.our-products .inset .boxes .box,
section.products .inset .boxes .box {
  color: var(--charcoal);
  text-align: center;
  text-decoration: none;
  transform: translateY(0);
  transition: all 0.2s ease-in-out;
}
section.our-products .inset .boxes .box h3,
section.products .inset .boxes .box h3 {
  color: var(--charcoal);
  transition: all 0.2s ease-in-out;
}
section.our-products .inset .boxes .box__image,
section.products .inset .boxes .box__image {
  margin-bottom: 20px;
}
section.our-products .inset .boxes .box__image img,
section.products .inset .boxes .box__image img {
  display: block;
  height: auto;
  width: 100%;
}
section.our-products .inset .boxes .box__caption,
section.products .inset .boxes .box__caption {
  font-size: 1.25em;
}
section.our-products .inset .boxes .box:hover,
section.products .inset .boxes .box:hover {
  transform: translateY(-10px);
}
section.our-products .inset .boxes .box:hover h3,
section.products .inset .boxes .box:hover h3 {
  color: var(--red);
}
section.latest-news {
  padding: 40px 20px;
}
section.latest-news .posts {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 30px;
  justify-content: flex-start;
  margin: 30px auto 20px;
  max-width: var(--max-width);
  width: 100%;
}
section.latest-news .posts__post {
  background-color: var(--white);
  box-sizing: border-box;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  width: calc(33.3333% - 20px);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
}
section.latest-news .posts__post__image {
  background-color: var(--grey-light);
  background-image: var(--bg-image);
  background-position: center;
  background-size: cover;
  height: 200px;
  width: 100%;
}
section.latest-news .posts__post__text {
  padding: 20px;
}
section.latest-news .posts__post__text h3 {
  color: var(--red);
  font-size: 1.5em;
  margin: 0 0 10px;
}
section.latest-news .posts__post__text p {
  font-size: 1em;
  margin: 0 0 20px;
}
section.latest-news .posts__post__text .fosber-button {
  padding-right: 40px;
}
section.latest-news .posts__post__text .fosber-button:after {
  content: '\f105';
  font-family: var(--font-awesome);
  margin-left: 10px;
}
section.contact {
  background-attachment: fixed;
  background-color: var(--grey-light);
  background-image: var(--bg-image);
  background-position: var(--bg-position-x) var(--bg-position-y);
  background-size: cover;
  background-repeat: no-repeat;
  color: #FFF;
  padding: 60px 40px;
  position: relative;
  text-align: center;
  z-index: 10;
}
section.contact:before {
  background-color: var(--bg-color);
  content: '';
  display: block;
  height: 100%;
  left: 0;
  opacity: var(--bg-opacity);
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
section.contact .inset {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
  padding: 0 20px;
  position: relative;
  width: 100%;
  z-index: 2;
}
section.contact .inset .box {
  align-items: center;
  background-color: var(--white);
  display: flex;
  flex-direction: row;
  gap: 50px;
  justify-content: center;
  max-width: calc(var(--max-width) - 280px);
  opacity: 0;
  padding: 40px;
}
section.contact .inset .box__content {
  align-items: center;
  color: var(--charcoal);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  height: 100%;
  margin: 0 auto;
  position: relative;
  text-align: left;
  max-width: var(--max-width);
  width: calc(100% - 40px);
  z-index: 20;
}
section.contact .inset .box__content h3 {
  font-size: 2em;
  line-height: 1.3;
  margin-bottom: 0;
  text-wrap: balance;
}
section.contact .inset .box__button {
  width: auto;
}
section.contact .inset .box__button .button {
  border: 1px solid var(--grey);
  color: var(--charcoal);
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-family-heading);
  font-size: 1.25em;
  font-weight: 500;
  padding: 10px 50px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.1s ease-in-out;
  width: fit-content;
  text-wrap: nowrap;
}
section.contact .inset .box__button .button:hover {
  background-color: var(--red);
  border-color: var(--red-dark);
  color: var(--white);
}
section.contact .inset .box__button .button--small {
  font-size: 0.9em;
  padding: 4px 20px;
}
section.contact .inset .box.watched.seen {
  opacity: 1;
  animation: slide-fade-up 500ms ease-out forwards;
}
section.youtube-content {
  background-color: var(--grey-medium);
  padding: 30px 0;
}
section.youtube-content .inset iframe {
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
  height: auto;
  width: 100%;
}
section.half-image-content .inset h2,
section.half-image-content .inset h3 {
  text-align: left;
}
section.half-image-content .inset .columns {
  align-items: flex-start;
  column-gap: 0;
  row-gap: 0;
}
section.half-image-content .inset .columns .columns__column--copy {
  display: block;
}
section.half-image-content .inset .columns .columns__column:first-child {
  padding-left: 0;
  padding-right: 50px;
}
section.half-image-content .inset .columns .columns__column img {
  border-radius: 5px;
  display: block;
  height: auto;
  width: 100%;
}
section.half-image-content .inset .columns .columns__column .images {
  align-content: center;
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  justify-items: center;
}
section.half-image-content .inset .columns .columns__column .vimeo iframe {
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
  height: auto;
  width: 100%;
}
section.half-image-content .inset .fosber-button {
  background-color: var(--red);
  border-color: var(--red);
  color: var(--white);
}
section.half-image-content .inset .fosber-button:hover {
  background-color: var(--red-dark);
  border-color: var(--red-dark);
}
section.half-image-content .inset .buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
section.half-image-content .inset .buttons .button:nth-child(2) {
  background-color: var(--blue-bright);
}
section.half-image-content .inset .buttons .button:nth-child(2):hover {
  background-color: var(--orange);
}
section.half-image-content--grey {
  background-color: var(--grey-light);
}
section.half-image-content--blue {
  background-color: var(--blue);
  color: var(--white);
}
section.half-image-content--blue .inset h2,
section.half-image-content--blue .inset h3 {
  color: var(--white);
}
section.half-image-content--blue .inset p,
section.half-image-content--blue .inset ul,
section.half-image-content--blue .inset ol {
  color: var(--white);
}
section.half-image-content--blue .inset p a,
section.half-image-content--blue .inset ul a,
section.half-image-content--blue .inset ol a {
  color: var(--white);
  text-decoration: underline;
}
section.half-image-content--blue .inset p a:hover,
section.half-image-content--blue .inset ul a:hover,
section.half-image-content--blue .inset ol a:hover {
  color: var(--orange);
}
section.half-image-content--red {
  background-color: var(--red);
  color: var(--white);
}
section.half-image-content--red .inset h2,
section.half-image-content--red .inset h3 {
  color: var(--white);
}
section.half-image-content--red .inset p,
section.half-image-content--red .inset ul,
section.half-image-content--red .inset ol {
  color: var(--white);
}
section.half-image-content--red .inset p a,
section.half-image-content--red .inset ul a,
section.half-image-content--red .inset ol a {
  color: var(--white);
  text-decoration: underline;
}
section.half-image-content--red .inset p a:hover,
section.half-image-content--red .inset ul a:hover,
section.half-image-content--red .inset ol a:hover {
  color: var(--orange);
}
section.half-image-content--red .inset blockquote {
  border-left: 5px solid var(--orange);
}
section.half-image-content--green {
  background-color: var(--green);
  color: var(--white);
}
section.half-image-content--green .inset h2,
section.half-image-content--green .inset h3 {
  color: var(--white);
}
section.half-image-content--green .inset p,
section.half-image-content--green .inset ul,
section.half-image-content--green .inset ol {
  color: var(--white);
}
section.half-image-content--green .inset p a,
section.half-image-content--green .inset ul a,
section.half-image-content--green .inset ol a {
  color: var(--white);
  text-decoration: underline;
}
section.half-image-content--green .inset p a:hover,
section.half-image-content--green .inset ul a:hover,
section.half-image-content--green .inset ol a:hover {
  color: var(--orange);
}
section.half-image-content--right .inset .columns {
  flex-direction: row-reverse;
}
section.half-image-content--right .inset .columns .columns__column:first-child {
  padding-left: 50px;
  padding-right: 0;
}
section.contact-boxes-content {
  background-color: var(--grey);
  padding: 30px 0;
}
section.contact-boxes-content .inset {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: var(--max-width);
  width: 100%;
}
section.contact-boxes-content .inset .boxes {
  --box-gap: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--box-gap);
  justify-content: space-between;
}
section.contact-boxes-content .inset .boxes__box {
  opacity: 0;
  align-items: center;
  background-color: var(--white);
  border-top: 4px solid var(--red);
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: flex-start;
  padding: 30px 20px;
  width: calc(25% - var(--box-gap));
}
section.contact-boxes-content .inset .boxes__box__icon i {
  color: var(--red);
  font-size: 40px;
}
section.contact-boxes-content .inset .boxes__box__label {
  color: var(--charcoal);
  display: block;
  font-family: var(--font-family);
  font-size: 1.2em;
  font-weight: 700;
  padding: 8px 20px;
  text-transform: uppercase;
}
section.contact-boxes-content .inset .boxes__box__button a {
  color: inherit;
}
section.contact-boxes-content .inset .boxes__box.watched.seen {
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
  animation-name: slide-fade-up;
  animation-timing-function: ease-out;
}
section.contact-boxes-content .inset .boxes .boxes__box:nth-child(1) {
  animation-delay: 0.1s;
}
section.contact-boxes-content .inset .boxes .boxes__box:nth-child(2) {
  animation-delay: 0.2s;
}
section.contact-boxes-content .inset .boxes .boxes__box:nth-child(3) {
  animation-delay: 0.3s;
}
section.contact-boxes-content .inset .boxes .boxes__box:nth-child(4) {
  animation-delay: 0.4s;
}
section.contact-boxes-content .inset .boxes .boxes__box:nth-child(5) {
  animation-delay: 0.5s;
}
section.contact-boxes-content .inset .boxes .boxes__box:nth-child(6) {
  animation-delay: 0.6s;
}
section.contact-boxes-content .inset .boxes .boxes__box:nth-child(7) {
  animation-delay: 0.7s;
}
section.contact-boxes-content .inset .boxes .boxes__box:nth-child(8) {
  animation-delay: 0.8s;
}
section.contact-boxes-content .inset .boxes .boxes__box:nth-child(9) {
  animation-delay: 0.9s;
}
section.contact-boxes-content .inset .boxes .boxes__box:nth-child(10) {
  animation-delay: 1s;
}
section.contact-boxes-content .inset .boxes .boxes__box:nth-child(11) {
  animation-delay: 1.1s;
}
section.contact-boxes-content .inset .boxes .boxes__box:nth-child(12) {
  animation-delay: 1.2s;
}
section.contact-boxes-content .inset .boxes .boxes__box:nth-child(13) {
  animation-delay: 1.3s;
}
section.contact-boxes-content .inset .boxes .boxes__box:nth-child(14) {
  animation-delay: 1.4s;
}
section.contact-boxes-content .inset .boxes .boxes__box:nth-child(15) {
  animation-delay: 1.5s;
}
section.contact-boxes-content .inset .boxes .boxes__box:nth-child(16) {
  animation-delay: 1.6s;
}
section.contact-boxes-content .inset .boxes .boxes__box:nth-child(17) {
  animation-delay: 1.7s;
}
section.contact-boxes-content .inset .boxes .boxes__box:nth-child(18) {
  animation-delay: 1.8s;
}
section.contact-boxes-content .inset .boxes .boxes__box:nth-child(19) {
  animation-delay: 1.9s;
}
section.project-boxes-content {
  background-color: var(--grey);
  padding: 30px 0;
}
section.project-boxes-content .inset {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: var(--max-width);
  width: 100%;
}
section.project-boxes-content .inset h3 {
  color: var(--charcoal);
  font-size: 2.4em;
  opacity: 0;
  text-align: center;
}
section.project-boxes-content .inset h3.watched.seen {
  opacity: 1;
  animation: slide-fade-up 500ms ease-out forwards;
}
section.project-boxes-content .inset .boxes {
  --box-gap: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--box-gap);
  justify-content: space-between;
  opacity: 0;
}
section.project-boxes-content .inset .boxes__box {
  align-items: center;
  border-top: 4px solid var(--red);
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: flex-start;
  text-decoration: none;
  width: calc(25% - var(--box-gap));
}
section.project-boxes-content .inset .boxes__box__image {
  aspect-ratio: 4/3;
  display: block;
  height: auto;
  object-fit: cover;
  margin-bottom: 10px;
  width: 100%;
}
section.project-boxes-content .inset .boxes__box__label {
  color: var(--charcoal);
  display: block;
  font-family: var(--font-family);
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.1;
  padding: 8px 20px;
  text-align: center;
  text-transform: uppercase;
}
section.project-boxes-content .inset .boxes.watched.seen {
  opacity: 1;
  animation: slide-fade-up 500ms ease-out forwards;
}
section.product-boxes h1 {
  border-bottom: 1px solid var(--grey);
  color: var(--red);
  font-size: 2.4em;
  margin-bottom: 20px;
  padding: 10px 20px;
  text-align: center;
}
section.product-boxes .boxes {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 30px;
}
section.product-boxes .boxes .box {
  align-items: center;
  background-color: var(--white);
  box-sizing: border-box;
  color: var(--charcoal);
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: calc(var(--max-width) / 3 - 20px);
  padding: 20px;
  text-decoration: none;
  width: 100%;
}
section.product-boxes .boxes .box__image {
  margin-bottom: 10px;
}
section.product-boxes .boxes .box__image img {
  aspect-ratio: 4/3;
  display: block;
  height: auto;
  object-fit: contain;
  width: 100%;
}
section.product-boxes .boxes .box__title {
  color: var(--grey-dark);
  display: block;
  font-family: var(--font-family);
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0;
  margin-top: 0;
  padding: 10px 20px;
  text-align: center;
  text-transform: uppercase;
}
section.product-boxes .boxes .box__excerpt {
  padding: 0 20px 20px;
  text-align: center;
}
section.product-boxes .boxes .box__button {
  border: 1px solid var(--grey);
  color: var(--charcoal);
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-family-heading);
  font-size: 1.25em;
  font-weight: 500;
  padding: 10px 50px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.1s ease-in-out;
  width: fit-content;
  background-color: var(--red);
  color: var(--white);
  border: none;
}
section.product-boxes .boxes .box__button:hover {
  background-color: var(--red);
  border-color: var(--red-dark);
  color: var(--white);
}
section.product-boxes .boxes .box__button--small {
  font-size: 0.9em;
  padding: 4px 20px;
}
section.product-boxes .boxes .box:hover .box__title {
  color: var(--charcoal);
}
section.product-boxes .boxes .box:hover .box__button {
  background-color: var(--red-dark);
  color: var(--white);
}
section.product-sections {
  background-color: var(--grey-light);
}
section.product-sections .inset {
  max-width: calc(var(--max-width) - 200px);
  padding: 40px 20px;
}
section.product-sections .sections {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
section.product-sections .sections .section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
section.product-sections .sections .section__image img {
  display: block;
  height: auto;
  width: 100%;
}
section.product-sections .sections .section__content {
  background-color: var(--white);
  padding: 40px 50px;
}
section.product-sections .sections .section__content h3 {
  color: var(--red);
  margin-bottom: 10px;
}
section.product-sections .sections .section__content p {
  font-size: 1.125em;
}
section.product-sections .sections .section__content a.fosber-button {
  background-color: var(--red);
  border-color: var(--red);
  color: var(--white);
  display: block;
  margin-top: 20px;
  padding: 10px 20px;
  text-decoration: none;
}
section.product-sections .sections .section__content a.fosber-button:hover {
  background-color: var(--red-dark);
  border-color: var(--red-dark);
}
section.product-sections .sections .section:nth-child(odd) .section__image {
  order: 2;
}
section.product-sections .sections .section:nth-child(odd) .section__content {
  order: 1;
}
section.product-detail .inset {
  border-top: 1px solid var(--grey);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0;
  padding: 0;
}
section.product-detail .product-logo {
  margin-bottom: 30px;
  width: 100%;
}
section.product-detail .product-logo img {
  display: block;
  height: auto;
  max-width: 400px;
  margin: 0 auto;
  width: auto;
}
section.product-detail .sidebar {
  border-right: 1px solid var(--grey);
  flex-basis: 300px;
  padding: 20px;
}
section.product-detail .sidebar ul {
  display: flex;
  flex-direction: column;
  font-size: 1em;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  width: 260px;
}
section.product-detail .sidebar ul li {
  margin-bottom: 10px;
}
section.product-detail .sidebar ul li a {
  align-items: center;
  color: var(--charcoal);
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
  text-decoration: none;
  transition: color 0.1s ease-in-out;
}
section.product-detail .sidebar ul li a img {
  height: auto;
  width: 50px;
}
section.product-detail .sidebar ul li a span {
  display: block;
  line-height: 1.2;
  text-align: right;
}
section.product-detail .sidebar ul li a.active,
section.product-detail .sidebar ul li a:hover {
  color: var(--red);
}
section.product-detail .content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
section.product-detail .content > .image {
  border-right: 1px solid var(--grey);
  padding: 20px;
}
section.product-detail .content > .image img {
  display: block;
  height: auto;
  margin-bottom: 20px;
  width: 600px;
}
section.product-detail .content > .image a.fosber-button {
  background-color: var(--red);
  border-color: var(--red);
  color: var(--white);
  display: block;
  margin: 0 auto;
  padding: 10px 20px;
  text-decoration: none;
}
section.product-detail .content > .image a.fosber-button:hover {
  background-color: var(--red-dark);
  border-color: var(--red-dark);
}
section.product-detail .content .tabs {
  width: calc(100% - 641px);
}
section.product-detail .content .tabs__buttons {
  border-bottom: 1px solid var(--grey);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: flex-start;
  margin-bottom: 20px;
  padding: 20px 0 0 20px;
}
section.product-detail .content .tabs__buttons a {
  background-color: var(--white);
  border: 1px solid var(--grey);
  bottom: -1px;
  color: var(--charcoal);
  cursor: pointer;
  font-family: var(--font-family-heading);
  font-weight: 500;
  padding: 10px 20px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}
section.product-detail .content .tabs__buttons a.active {
  background-color: var(--grey-light);
  border-bottom: var(--charcoal) 1px solid;
}
section.product-detail .content .tabs__content {
  background-color: var(--white);
  box-sizing: border-box;
  margin-left: 20px;
  padding: 20px;
  position: relative;
}
section.product-detail .content .tabs__content .tab {
  display: none;
}
section.product-detail .content .tabs__content .tab.active {
  display: block;
}
section.product-detail .content .tabs__content h3 {
  color: var(--red);
  font-size: 1.5em;
  margin-bottom: 10px;
}
section.product-detail .content .tabs__content p {
  font-size: 1.1em;
  line-height: 1.5;
}
section.product-detail .content .gallery {
  border-top: 1px solid var(--grey);
  padding: 20px;
  width: 100%;
}
section.product-detail .content .gallery h4 {
  color: var(--charcoal);
}
section.product-detail .content .gallery .images {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  margin-top: 20px;
}
section.product-detail .content .gallery .images img {
  aspect-ratio: 4/3;
  cursor: pointer;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}
section.product-detail .content .gallery .images img:hover {
  outline: var(--red) 2px solid;
  outline-offset: 2px;
}
.wp-block-gallery {
  gap: 20px !important;
  margin-top: 30px;
}
.wp-block-gallery figure {
  width: calc(25%) !important;
}
.wp-block-gallery figure img:hover {
  outline: var(--red) 2px solid;
  outline-offset: 2px;
}
section.line-400 h1,
section.line-400 h2,
section.line-400 h3,
section.line-400 h4 {
  display: block;
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 0 20px;
  width: 100%;
}
section.line-400 .inset {
  margin: 0 auto;
  padding: 0;
  position: relative;
}
section.line-400 .inset .frgd {
  aspect-ratio: 1440/78.66;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: 0;
  gap: 0;
  height: auto;
  position: relative;
  width: 100%;
  z-index: 2;
}
section.line-400 .inset .frgd img {
  cursor: pointer;
  display: block;
  opacity: 0;
  position: relative;
  width: auto;
}
section.line-400 .inset .frgd img:hover {
  opacity: 1;
}
section.line-400 .inset .frgd .tooltip {
  background-color: #000000DD;
  border-radius: 4px;
  color: #FFF;
  display: none;
  font-family: var(--font-family);
  font-size: 14px;
  padding: 6px 12px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 10px);
  z-index: 10;
}
section.line-400 .inset .frgd .tooltip:before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #000000DD;
}
section.line-400 .inset .frgd .tooltip.active {
  display: block;
}
section.line-400 .inset .bkgd {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
section.line-400 .inset .bkgd img {
  height: auto;
  width: 100%;
}
section.regional-map .inset .columns {
  gap: 30px;
}
section.regional-map .inset .map {
  margin-bottom: 50px;
  position: relative;
}
section.regional-map .inset .map .tooltip {
  background-color: #000000DD;
  border-radius: 4px;
  color: #FFF;
  display: none;
  font-family: var(--font-family);
  font-size: 1em;
  padding: 10px 20px;
  pointer-events: none;
  position: absolute;
  text-align: center;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 30px);
  z-index: 10;
}
section.regional-map .inset .map .tooltip:before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #000000DD;
}
section.regional-map .inset .map .tooltip.active {
  display: block;
}
section.regional-map .inset .map .tooltip .region {
  font-size: 1.1em;
  text-transform: uppercase;
}
section.testimonials .testimonials {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}
section.testimonials .testimonials .testimonial {
  border-left: 4px solid var(--red);
  padding: 30px 20px;
}
section.testimonials .testimonials .testimonial .author {
  color: var(--red);
  font-size: 1.375em;
  font-weight: 500;
  text-transform: uppercase;
}
section.testimonials .testimonials .testimonial .job-title {
  color: var(--grey-dark);
  font-size: 1em;
  font-weight: 500;
  margin-bottom: 20px;
}
.image-banner--right .image-banner__image {
  order: 2;
}
.image-banner__copy {
  align-items: flex-start;
}
.team {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.team__member {
  align-items: flex-start;
  border-bottom: 1px solid var(--grey);
  border-left: 1px solid var(--grey);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 30px;
  padding: 20px;
}
.team__member:last-child {
  border-bottom: none;
}
.team__member__image {
  width: 240px;
}
.team__member p.team__member__region {
  background-color: var(--region-color);
  color: var(--grey-dark);
  font-size: 0.9em;
  margin-bottom: 15px;
  padding: 3px 15px;
  text-transform: uppercase;
  width: fit-content;
}
.team__member a.team__member__email {
  color: var(--charcoal);
  display: block;
  text-decoration: underline;
  transition: color 0.1s ease-in-out;
  width: fit-content;
}
.team__member a.team__member__email:hover {
  color: var(--red);
}
.team__member__info {
  text-align: left;
  width: 100%;
}
.team__member img {
  aspect-ratio: 1/1;
  border-radius: 50%;
  height: auto;
  object-fit: cover;
  width: 100%;
  outline: var(--outline-color) solid 4px;
  outline-offset: 4px;
}
.team__member h3.team__member__name {
  color: var(--charcoal);
  font-size: 1.5em;
  margin: 5px 0;
}
.team__member p {
  color: var(--grey-dark);
  font-size: 1em;
}
.team__member p.team__member__position {
  font-style: italic;
  margin-top: 0 !important;
}
.team__member .fosber-button {
  background-color: var(--red);
  border-color: var(--red);
  color: #FFF;
  font-size: 1em;
  margin-top: 10px;
  padding: 5px 20px;
}
.team__member .fosber-button:hover {
  background-color: var(--red-dark);
}
.team--two-columns {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0;
  width: 100%;
}
.team--two-columns .team__member {
  border-bottom: 1px solid var(--grey);
  flex-basis: calc(50% - 20px);
  padding: 20px;
}
.team--two-columns .team__member:nth-child(odd) {
  border-left: none;
}
.team--short .team__member {
  align-items: center;
  border-right: none;
  padding: 20px;
}
.team--short .team__member__image {
  width: 160px;
}
.team-bio {
  max-width: calc(var(--max-width) - 200px);
}
.team-bio__image img {
  display: block;
  height: auto;
  width: 100%;
}
.team-bio__contact {
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.75;
  text-transform: uppercase;
}
.team-bio__contact a {
  color: var(--charcoal);
  font-weight: 400;
  text-decoration: underline;
  transition: color 0.1s ease-in-out;
}
.team-bio__contact a:hover {
  color: var(--red);
}
.team-bio__years {
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.team-bio__years p {
  font-weight: 500;
}
.team-bio__quote {
  color: var(--red);
  font-size: 1.125em;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 20px;
}
.team-bio__content h4 {
  color: var(--charcoal);
  font-size: 1.25em;
}
.support-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  width: 100%;
}
.support-items__item {
  align-items: center;
  aspect-ratio: 1;
  background-size: cover;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  position: relative;
  text-decoration: none;
}
.support-items__item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.support-items__item .label {
  background-color: var(--red);
  border-radius: 0;
  color: var(--white);
  line-height: 1.1;
  max-width: 70%;
  padding: 10px 40px 10px 20px;
  position: relative;
  transition: background-color 0.1s ease-in-out;
  z-index: 20;
}
.support-items__item .label:after {
  aspect-ratio: 320/512;
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="%23FFFFFF" d="M311.1 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L243.2 256 73.9 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z"/></svg>');
  display: block;
  height: auto;
  width: 12px;
  position: absolute;
  right: 10px;
  top: calc(50% + 4px);
  transform: translateY(-50%);
}
.support-items__item:hover .label {
  background-color: var(--charcoal);
}
.form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0;
}
.form .field {
  flex-basis: 100%;
  padding: 10px;
}
.form .field--half {
  flex-basis: 50%;
}
.form .field input,
.form .field textarea {
  background-color: var(--white);
  border: 1px solid var(--grey);
  border-radius: 4px;
  box-sizing: border-box;
  color: var(--charcoal);
  font-family: var(--font-family);
  font-size: 1em;
  padding: 10px;
  width: 100%;
}
.form .field input:focus,
.form .field textarea:focus {
  outline: var(--red) solid 2px;
  outline-offset: 2px;
}
.form .field button {
  border: 1px solid var(--grey);
  color: var(--charcoal);
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-family-heading);
  font-size: 1.25em;
  font-weight: 500;
  padding: 10px 50px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.1s ease-in-out;
  width: fit-content;
}
.form .field button:hover {
  background-color: var(--red);
  border-color: var(--red-dark);
  color: var(--white);
}
.form .field button--small {
  font-size: 0.9em;
  padding: 4px 20px;
}
table.holiday-schedule {
  border-collapse: collapse;
  margin-top: 30px;
  width: 100%;
}
table.holiday-schedule th,
table.holiday-schedule td {
  border-top: 1px solid var(--grey);
  padding: 10px;
  text-align: left;
}
table.holiday-schedule th {
  background-color: var(--grey-light);
  font-weight: 700;
}
table.holiday-schedule td {
  color: var(--charcoal);
}
table.holiday-schedule td:last-child {
  text-align: right;
}
#us-canada-map g {
  cursor: pointer;
}
#us-canada-map g#CA path {
  fill: var(--CA);
}
#us-canada-map g#NE path {
  fill: var(--NE);
}
#us-canada-map g#SE path {
  fill: var(--SE);
}
#us-canada-map g#MW path {
  fill: var(--MW);
}
#us-canada-map g#WC path {
  fill: var(--WC);
}
@keyframes hero-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes hero-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slide-fade-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-fade-down {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-content {
  padding: 40px 20px;
}
.page-content--main {
  font-size: 1.2em;
}
.page-content > .inset * + p,
.page-content > .inset * + ul,
.page-content > .inset * + ol {
  font-weight: 400;
  margin-top: 20px;
}
.page-content > .inset * + p a,
.page-content > .inset * + ul a,
.page-content > .inset * + ol a {
  color: var(--red);
  text-decoration: underline;
  transition: all 0.1s ease-in-out;
}
.page-content > .inset * + p a:hover,
.page-content > .inset * + ul a:hover,
.page-content > .inset * + ol a:hover {
  color: var(--red-dark);
}
.page-content > .inset > h3 {
  margin-top: 40px;
}
.page-content > .inset > h3:before {
  background-color: var(--grey-medium);
  display: block;
  height: 1px;
  position: absolute;
  top: -16px;
  left: calc((100vw - 100%) / -2);
  width: 100vw;
}
.page-content.blog-content .inset {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  justify-content: space-between;
}
.page-content.blog-content .inset .blog-content__posts {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  margin: 0 auto 20px;
  max-width: var(--max-width);
  padding-right: 20px;
  width: calc(100% - 320px);
}
.page-content.blog-content .inset .blog-content__posts article.post,
.page-content.blog-content .inset .blog-content__posts article.page,
.page-content.blog-content .inset .blog-content__posts article.corrugating-rolls {
  border-top: 4px solid var(--red);
  background-color: #E4E4E4;
  opacity: 0;
}
.page-content.blog-content .inset .blog-content__posts article.post img.wp-post-image,
.page-content.blog-content .inset .blog-content__posts article.page img.wp-post-image,
.page-content.blog-content .inset .blog-content__posts article.corrugating-rolls img.wp-post-image {
  aspect-ratio: 5/3;
  object-fit: cover;
  display: block;
  height: auto;
  margin: 0 auto 20px;
  width: 100%;
}
.page-content.blog-content .inset .blog-content__posts article.post .entry-summary,
.page-content.blog-content .inset .blog-content__posts article.page .entry-summary,
.page-content.blog-content .inset .blog-content__posts article.corrugating-rolls .entry-summary {
  color: var(--charcoal);
  font-family: var(--font-family);
  font-size: 0.9em;
}
.page-content.blog-content .inset .blog-content__posts article.post .entry-summary .entry-summary__text,
.page-content.blog-content .inset .blog-content__posts article.page .entry-summary .entry-summary__text,
.page-content.blog-content .inset .blog-content__posts article.corrugating-rolls .entry-summary .entry-summary__text {
  color: var(--charcoal);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 20px 20px;
}
.page-content.blog-content .inset .blog-content__posts article.post .entry-summary .entry-summary__text__category,
.page-content.blog-content .inset .blog-content__posts article.page .entry-summary .entry-summary__text__category,
.page-content.blog-content .inset .blog-content__posts article.corrugating-rolls .entry-summary .entry-summary__text__category {
  display: none;
}
.page-content.blog-content .inset .blog-content__posts article.post .entry-summary .entry-summary__text__category a,
.page-content.blog-content .inset .blog-content__posts article.page .entry-summary .entry-summary__text__category a,
.page-content.blog-content .inset .blog-content__posts article.corrugating-rolls .entry-summary .entry-summary__text__category a {
  background-color: var(--red);
  color: #FFF;
  padding: 4px 8px;
  text-decoration: none;
}
.page-content.blog-content .inset .blog-content__posts article.post .entry-summary .entry-summary__text__category a:hover,
.page-content.blog-content .inset .blog-content__posts article.page .entry-summary .entry-summary__text__category a:hover,
.page-content.blog-content .inset .blog-content__posts article.corrugating-rolls .entry-summary .entry-summary__text__category a:hover {
  background-color: var(--red);
}
.page-content.blog-content .inset .blog-content__posts article.post .entry-summary .entry-summary__text__date,
.page-content.blog-content .inset .blog-content__posts article.page .entry-summary .entry-summary__text__date,
.page-content.blog-content .inset .blog-content__posts article.corrugating-rolls .entry-summary .entry-summary__text__date {
  color: var(--red);
}
.page-content.blog-content .inset .blog-content__posts article.post .entry-summary .entry-summary__text a.button,
.page-content.blog-content .inset .blog-content__posts article.page .entry-summary .entry-summary__text a.button,
.page-content.blog-content .inset .blog-content__posts article.corrugating-rolls .entry-summary .entry-summary__text a.button {
  background-color: var(--red);
  color: #FFF;
  display: inline-block;
  font-family: var(--font-family-heading);
  font-weight: 500;
  padding: 6px 24px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.1s ease-in-out;
  width: fit-content;
}
.page-content.blog-content .inset .blog-content__posts article.post .entry-summary .entry-summary__text a.button:hover,
.page-content.blog-content .inset .blog-content__posts article.page .entry-summary .entry-summary__text a.button:hover,
.page-content.blog-content .inset .blog-content__posts article.corrugating-rolls .entry-summary .entry-summary__text a.button:hover {
  background-color: var(--red-dark);
}
.page-content.blog-content .inset .blog-content__posts article.post .entry-summary h2,
.page-content.blog-content .inset .blog-content__posts article.page .entry-summary h2,
.page-content.blog-content .inset .blog-content__posts article.corrugating-rolls .entry-summary h2 {
  font-size: 1.8em;
  font-weight: 600;
  margin: 0;
}
.page-content.blog-content .inset .blog-content__posts article.post .entry-summary h2 a,
.page-content.blog-content .inset .blog-content__posts article.page .entry-summary h2 a,
.page-content.blog-content .inset .blog-content__posts article.corrugating-rolls .entry-summary h2 a {
  color: var(--charcoal);
  text-decoration: none;
}
.page-content.blog-content .inset .blog-content__posts article.post .entry-summary h2 a:hover,
.page-content.blog-content .inset .blog-content__posts article.page .entry-summary h2 a:hover,
.page-content.blog-content .inset .blog-content__posts article.corrugating-rolls .entry-summary h2 a:hover {
  color: var(--red);
}
.page-content.blog-content .inset .blog-content__posts.watched.seen article.post,
.page-content.blog-content .inset .blog-content__posts.watched.seen article.page,
.page-content.blog-content .inset .blog-content__posts.watched.seen article.corrugating-rolls {
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
  animation-name: slide-fade-up;
  animation-timing-function: ease-out;
}
.page-content.blog-content .inset .blog-content__posts article.post:nth-child(1) {
  animation-delay: 0.1s;
}
.page-content.blog-content .inset .blog-content__posts article.post:nth-child(2) {
  animation-delay: 0.2s;
}
.page-content.blog-content .inset .blog-content__posts article.post:nth-child(3) {
  animation-delay: 0.3s;
}
.page-content.blog-content .inset .blog-content__posts article.post:nth-child(4) {
  animation-delay: 0.4s;
}
.page-content.blog-content .inset .blog-content__posts article.post:nth-child(5) {
  animation-delay: 0.5s;
}
.page-content.blog-content .inset .blog-content__posts article.post:nth-child(6) {
  animation-delay: 0.6s;
}
.page-content.blog-content .inset .blog-content__posts article.post:nth-child(7) {
  animation-delay: 0.7s;
}
.page-content.blog-content .inset .blog-content__posts article.post:nth-child(8) {
  animation-delay: 0.8s;
}
.page-content.blog-content .inset .blog-content__posts article.post:nth-child(9) {
  animation-delay: 0.9s;
}
.page-content.blog-content .inset .blog-content__posts article.post:nth-child(10) {
  animation-delay: 1s;
}
.page-content.blog-content .inset .blog-content__posts article.post:nth-child(11) {
  animation-delay: 1.1s;
}
.page-content.blog-content .inset .blog-content__posts article.post:nth-child(12) {
  animation-delay: 1.2s;
}
.page-content.blog-content .inset .blog-content__posts article.post:nth-child(13) {
  animation-delay: 1.3s;
}
.page-content.blog-content .inset .blog-content__posts article.post:nth-child(14) {
  animation-delay: 1.4s;
}
.page-content.blog-content .inset .blog-content__posts article.post:nth-child(15) {
  animation-delay: 1.5s;
}
.page-content.blog-content .inset .blog-content__posts article.post:nth-child(16) {
  animation-delay: 1.6s;
}
.page-content.blog-content .inset .blog-content__posts article.post:nth-child(17) {
  animation-delay: 1.7s;
}
.page-content.blog-content .inset .blog-content__posts article.post:nth-child(18) {
  animation-delay: 1.8s;
}
.page-content.blog-content .inset .blog-content__posts article.post:nth-child(19) {
  animation-delay: 1.9s;
}
.page-content.blog-content .inset .blog-content__post {
  margin: 0 auto 20px;
  max-width: var(--max-width);
  padding-right: 20px;
  width: 100%;
}
.page-content.blog-content .inset .blog-content__post article.single img.featured-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  height: auto;
  margin: 0 auto 20px;
  width: 100%;
}
.page-content.blog-content .inset .blog-content__post article.single .meta {
  color: var(--red);
  display: flex;
  flex-direction: row;
  gap: 20px;
  font-family: var(--font-family);
  font-size: 0.9em;
  margin-top: 10px;
}
.page-content.blog-content .inset .blog-content__post article.single .meta .categories a {
  background-color: var(--red);
  color: #FFF;
  padding: 4px 8px;
  text-decoration: none;
}
.page-content.blog-content .inset .blog-content__post article.single .meta .categories a:hover {
  background-color: var(--red);
}
.page-content.blog-content .inset .blog-content__post article.single .share {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.page-content.blog-content .inset .blog-content__post article.single .share h4 {
  font-family: var(--font-family);
  font-size: 0.9em;
  font-weight: 400;
  margin: 0;
}
.page-content.blog-content .inset .blog-content__post article.single .share__links {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 10px 0;
}
.page-content.blog-content .inset .blog-content__post article.single .share__links a {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: 1.2em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.1s ease-in-out;
}
.page-content.blog-content .inset .blog-content__post article.single .share__links a svg {
  fill: var(--red);
  height: 20px;
  width: 20px;
}
.page-content.blog-content .inset .blog-content__post article.single .share__links a:hover svg {
  fill: var(--red);
}
.page-content.blog-content .inset .blog-content__post article.single .content {
  margin-top: 30px;
}
.page-content.blog-content .inset .blog-content__post article.single h1 {
  font-size: 2.4em;
  font-weight: 600;
  line-height: 1.1;
  margin: 20px 0 0;
}
.page-content.blog-content .inset .blog-content__post article.single h2 {
  font-size: 1.8em;
  font-weight: 600;
  line-height: 1.1;
  margin: 30px 0 20px;
}
.page-content.blog-content .inset .blog-content__post article.single h2 b {
  font-weight: 600;
}
.page-content.blog-content .inset .blog-content__post article.single p a,
.page-content.blog-content .inset .blog-content__post article.single ul a,
.page-content.blog-content .inset .blog-content__post article.single ol a {
  color: var(--red);
  text-decoration: underline;
}
.page-content.blog-content .inset .blog-content__post article.single p a:hover,
.page-content.blog-content .inset .blog-content__post article.single ul a:hover,
.page-content.blog-content .inset .blog-content__post article.single ol a:hover {
  color: var(--red);
}
.page-content.blog-content .inset .blog-content__post article.single iframe {
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
  height: auto;
  width: 100%;
}
.page-content.blog-content .inset .blog-content__sidebar {
  border-left: 1px solid var(--grey-light);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 20px;
  width: 320px;
}
.page-content.blog-content .inset .blog-content__sidebar h2 {
  font-size: 1.8em;
  font-weight: 600;
  margin: 0;
}
.page-content.blog-content .inset .blog-content__sidebar form[role="search"] label {
  display: none;
}
.page-content.blog-content .inset .blog-content__sidebar form[role="search"] input[type="search"] {
  padding: 10px 20px;
}
.page-content.blog-content .inset .blog-content__sidebar form[role="search"] button.wp-block-search__button {
  background-color: transparent;
  border: none;
  font-size: 0;
}
.page-content.blog-content .inset .blog-content__sidebar form[role="search"] button.wp-block-search__button:before {
  content: var(--search-icon);
  display: inline-block;
  height: 24px;
  width: 24px;
}
.page-content.blog-content .inset .blog-content__sidebar .widget-area {
  background-color: var(--white);
  padding: 0 20px;
  width: 100%;
}
.page-content.blog-content .inset .blog-content__sidebar .widget-area h3 {
  font-size: 1.4em;
  margin: 0 0 20px;
}
.page-content.blog-content .inset .blog-content__sidebar .widget-area ul,
.page-content.blog-content .inset .blog-content__sidebar .widget-area ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 20px 0 0;
}
.page-content.blog-content .inset .blog-content__sidebar .widget-area ul.xoxo > li,
.page-content.blog-content .inset .blog-content__sidebar .widget-area ol.xoxo > li {
  margin-bottom: 20px;
}
.page-content.blog-content .inset .blog-content__sidebar .widget-area ul li,
.page-content.blog-content .inset .blog-content__sidebar .widget-area ol li {
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}
.page-content.blog-content .inset .blog-content__sidebar .widget-area ul li > a,
.page-content.blog-content .inset .blog-content__sidebar .widget-area ol li > a {
  display: block;
}
.page-content.blog-content .inset .blog-content__sidebar .widget-area ul li a,
.page-content.blog-content .inset .blog-content__sidebar .widget-area ol li a {
  color: var(--navy);
  line-height: 1.2;
  text-decoration: none;
}
.page-content.blog-content .inset .blog-content__sidebar .widget-area ul li a:hover,
.page-content.blog-content .inset .blog-content__sidebar .widget-area ol li a:hover {
  color: var(--red);
}
.page-content.blog-content .inset .nav-links {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
  margin-top: 40px;
}
.page-content.blog-content .inset .nav-links a {
  background-color: var(--grey-light);
  border-radius: 25px;
  color: var(--navy);
  display: block;
  font-size: 1em;
  font-weight: 400;
  padding: 12px 24px;
  text-decoration: none;
  text-transform: uppercase;
  text-wrap: balance;
  transition: background-color var(--transition-duration);
  width: fit-content;
}
.page-content.blog-content .inset .nav-links a:hover {
  background-color: var(--navy);
  color: var(--white);
}
.page-content.blog-content .inset .nav-links .nav-next {
  text-align: right;
}
footer#footer {
  background-color: var(--charcoal);
  color: #FFF;
  position: relative;
  text-align: center;
  z-index: 100;
}
footer#footer .inset {
  padding: 40px 20px;
}
footer#footer .home-logo {
  height: auto;
  width: 200px;
}
footer#footer .boxes {
  --box-size: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
}
footer#footer .boxes__box {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 60px;
  justify-content: flex-start;
  padding: 0 20px 0 60px;
  position: relative;
  width: 100%;
}
footer#footer .boxes__box__icon {
  background-color: transparent;
  border: 1px solid #555;
  display: grid;
  place-items: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 40px;
}
footer#footer .boxes__box__icon i {
  color: var(--red);
  font-size: 16px;
}
footer#footer .boxes__box__label {
  color: var(--white);
  display: block;
  font-family: var(--font-family);
  font-size: 1.1em;
  font-weight: 500;
  padding: 0;
  width: auto;
}
footer#footer .boxes__box__button {
  padding: 0;
}
footer#footer .boxes__box__button a {
  color: inherit;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
}
footer#footer .boxes__box__button a:hover {
  color: var(--red);
}
footer#footer .columns {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 40px;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: var(--max-width);
  width: 100%;
}
footer#footer .columns__column {
  text-align: left;
}
footer#footer .columns__column:nth-child(1) {
  flex-basis: 30%;
}
footer#footer .columns__column:nth-child(2) {
  flex-basis: 60%;
}
footer#footer .columns__column:nth-child(3) {
  flex-basis: 45%;
}
footer#footer .columns__column h3 {
  border-left: 4px solid var(--red);
  color: #FFF;
  font-size: 1.1em;
  margin: 0 0 20px;
  padding: 5px 20px;
}
footer#footer .columns__column p {
  font-size: 1em;
}
footer#footer .columns__column nav {
  display: block;
}
footer#footer .columns__column nav ul {
  font-size: 0.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
footer#footer .columns__column nav ul li {
  margin: 0;
  padding: 0;
}
footer#footer .columns__column nav ul li:last-child {
  border-bottom: none;
}
footer#footer .columns__column nav ul li a {
  color: #FFF;
  display: block;
  padding: 5px 0;
  text-decoration: none;
}
footer#footer .columns__column nav ul li a:hover {
  color: var(--red);
}
footer#footer .columns__column nav ul li ul {
  border-top: 1px solid var(--white);
}
footer#footer .partners {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
  margin-top: 40px;
}
footer#footer .partners a {
  display: block;
  opacity: 0.8;
}
footer#footer .partners a img {
  display: block;
  height: var(--H);
  width: var(--W);
}
footer#footer .partners a:hover {
  opacity: 1;
}
footer#footer .copyright {
  background-color: #1B1B1B;
  font-size: 0.9em;
  padding: 10px 0;
  text-align: center;
}
footer#footer .copyright .inset {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
  padding: 0;
}
footer#footer .copyright .inset ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}
footer#footer .copyright .inset ul li {
  display: inline-block;
  margin: 0;
}
footer#footer .copyright .inset ul li a {
  color: #FFF;
  display: flex;
  flex-direction: row;
  text-decoration: none;
  padding: 0 10px;
}
footer#footer .copyright .inset ul li a:hover {
  color: var(--red);
}
footer#footer .copyright .inset ul li ul {
  display: none;
}
a.back-to-top {
  background-color: var(--red);
  border-radius: 0;
  bottom: 20px;
  color: #FFF;
  display: flex;
  height: 50px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 20px;
  text-align: center;
  text-decoration: none;
  width: 50px;
  transform: translateX(100px);
  transition: all 0.2s ease-in-out;
  z-index: 1000;
}
a.back-to-top i {
  color: #FFF;
  font-size: 1.2em;
  line-height: 50px;
}
a.back-to-top.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
a.back-to-top:hover {
  background-color: var(--red-dark);
}
.bottom {
  background-color: var(--red);
  color: #FFF;
}
.bottom .copyright {
  font-size: 1em;
  padding: 20px;
  text-align: center;
}
.bottom .copyright > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.bottom .copyright > div a {
  color: inherit;
}
.bottom .copyright svg {
  fill: #FFF;
  height: 20px;
  margin: 0 10px;
  width: 20px;
}
.yt-embed {
  max-width: 100% !important;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
}
.yt-embed iframe {
  width: 100%;
  height: 100%;
  transform: scale(1.2);
}
.yt-embed .yt-embed-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.lightbox-overlay {
  background-color: rgba(0, 0, 0, 0.69);
  backdrop-filter: blur(5px);
  display: none;
  height: 100vh;
  left: 0;
  overflow: hidden auto;
  position: fixed;
  top: 0;
  width: 100vw;
  animation: lightbox-fade-in 0.25s ease-in-out forwards;
  z-index: 11000;
}
.lightbox-overlay--active {
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes lightbox-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.lightbox-overlay .lightbox__content img {
  border: 2px solid var(--white);
  max-width: 100%;
  width: 100%;
}
.lightbox-overlay .lightbox__close {
  cursor: pointer;
  height: 30px;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
}
.lightbox-overlay .lightbox__close::before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23FFF" d="M393.4 41.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L269.3 256 438.6 425.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L224 301.3 54.6 470.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L178.7 256 9.4 86.6C-3.1 74.1-3.1 53.9 9.4 41.4s32.8-12.5 45.3 0L224 210.7 393.4 41.4z"/></svg>');
  display: block;
  text-align: center;
}
.lightbox-overlay .lightbox__arrow {
  cursor: pointer;
  display: block;
  height: 60px;
  position: absolute;
  top: 50%;
  width: 40px;
  z-index: 1000;
}
.lightbox-overlay .lightbox__arrow:before {
  display: block;
  height: 30px;
  position: absolute;
  top: 50%;
  transition: all var(--transition-duration) ease-in-out;
  transform: translateY(-50%);
  width: 30px;
}
.lightbox-overlay .lightbox__arrow--prev {
  left: 10px;
}
.lightbox-overlay .lightbox__arrow--prev:before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="%23FFF" d="M15 239c-9.4 9.4-9.4 24.6 0 33.9L207 465c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L65.9 256 241 81c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L15 239z"/></svg>');
  right: 0;
}
.lightbox-overlay .lightbox__arrow--prev:hover:before {
  right: 10px;
}
.lightbox-overlay .lightbox__arrow--next {
  right: 10px;
}
.lightbox-overlay .lightbox__arrow--next:before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="%23FFF" d="M305 239c9.4 9.4 9.4 24.6 0 33.9L113 465c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l175-175L79 81c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L305 239z"/></svg>');
  left: 0;
}
.lightbox-overlay .lightbox__arrow--next:hover:before {
  left: 10px;
}
@media screen and (max-width: 1200px) {
  * {
    --header-height: 80px;
  }
  .mobile-only {
    display: block;
  }
  .not-mobile {
    display: none;
  }
  #is-mobile {
    display: block;
  }
  body h1 {
    font-size: 2.4em !important;
  }
  body h2 {
    font-size: 2em !important;
  }
  body h3 {
    font-size: 1.6em !important;
  }
  body h3.label {
    font-size: 1.2em;
    margin-bottom: 0;
  }
  header#header {
    z-index: 9999;
  }
  header#header nav .search .button {
    display: none;
  }
  header#header nav .search #searchform {
    opacity: 1;
    padding: 20px;
    position: relative;
    right: 0;
    width: 100%;
  }
  header#header .inset nav {
    background-color: var(--red);
    display: none;
    height: calc(100vh - var(--header-height) - 28px);
    left: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 0;
    position: fixed;
    top: calc(var(--header-height) + 28px);
    width: 100%;
  }
  header#header .inset nav:before {
    clip-path: none;
    display: none;
  }
  header#header .inset nav ul.menu {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  header#header .inset nav ul.menu > li,
  header#header .inset nav ul.menu > li:hover {
    border-top: var(--grey) 1px solid;
    font-size: 1.2em;
    padding: 0;
    text-align: center;
    width: 100%;
  }
  header#header .inset nav ul.menu > li > a,
  header#header .inset nav ul.menu > li:hover > a {
    color: var(--white);
    filter: none;
    text-shadow: none;
  }
  header#header .inset nav ul.menu > li a,
  header#header .inset nav ul.menu > li:hover a {
    filter: none;
    display: block;
    padding: 12px 0;
  }
  header#header .inset nav ul.menu > li.menu-item-has-children,
  header#header .inset nav ul.menu > li:hover.menu-item-has-children {
    display: block;
  }
  header#header .inset nav ul.menu > li.menu-item-has-children:after,
  header#header .inset nav ul.menu > li:hover.menu-item-has-children:after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23FFFFFF" d="M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z"/></svg>');
    display: block;
    line-height: 14px;
    position: absolute;
    right: 20px;
    top: 27px;
    transform: translateY(-50%);
  }
  header#header .inset nav ul.menu > li:last-child a,
  header#header .inset nav ul.menu > li:hover:last-child a {
    display: block;
    width: 100%;
  }
  header#header .inset nav ul.menu > li > ul,
  header#header .inset nav ul.menu > li:hover > ul {
    background-color: transparent;
    border-top: none;
    display: none;
    left: 0;
    padding: 0 0 10px;
    position: relative;
    top: 0;
    width: 100%;
    box-shadow: none;
  }
  header#header .inset nav ul.menu > li > ul li,
  header#header .inset nav ul.menu > li:hover > ul li {
    border-top: var(--grey) 1px solid;
    border-bottom: none;
  }
  header#header .inset nav ul.menu > li > ul li a,
  header#header .inset nav ul.menu > li:hover > ul li a {
    display: block;
    font-size: 1.1rem !important;
    font-weight: 400;
    padding: 5px 10px;
  }
  header#header .inset nav ul.menu > li > ul li:hover a,
  header#header .inset nav ul.menu > li:hover > ul li:hover a {
    text-shadow: none;
  }
  header#header .inset nav ul.menu > li.menu-item--active ul,
  header#header .inset nav ul.menu > li:hover.menu-item--active ul {
    display: block;
  }
  header#header .inset nav ul.menu > li.menu-item--active:after,
  header#header .inset nav ul.menu > li:hover.menu-item--active:after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23E30613" d="M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z"/></svg>');
    transform: translateY(-50%) rotate(180deg);
  }
  header#header .inset nav .menu-main-menu-container {
    align-items: flex-start;
    height: auto;
    padding-bottom: 20px;
  }
  header#header .inset nav .menu-main-menu-container ul.menu {
    align-items: center;
    height: auto;
    width: 100%;
  }
  header#header .inset nav .menu-main-menu-container ul.menu > li {
    border-top-color: #00000022;
  }
  header#header .inset nav .menu-main-menu-container ul.menu > li a span {
    height: auto;
    line-height: 1.2;
  }
  header#header .inset nav .menu-main-menu-container ul.menu > li > ul.sub-menu {
    border: none;
  }
  header#header .inset nav .menu-main-menu-container ul.menu > li > ul.sub-menu > li.menu-item-has-children {
    display: block;
  }
  header#header .inset nav .menu-main-menu-container ul.menu > li > ul.sub-menu > li.menu-item-has-children:after {
    right: 20px;
    top: 7px;
    transform: none;
  }
  header#header .inset nav .menu-main-menu-container ul.menu > li > ul.sub-menu > li:hover a {
    background-color: var(--white);
    color: var(--red);
  }
  header#header .inset nav .menu-main-menu-container ul.menu > li > ul.sub-menu > li > ul {
    border: none;
    display: none;
    left: auto;
    position: relative;
    top: auto;
    width: 100%;
  }
  header#header .inset nav .menu-main-menu-container ul.menu > li > ul.sub-menu > li > ul > li:hover a {
    background-color: var(--white);
  }
  header#header .inset nav .menu-main-menu-container ul.menu > li > ul.sub-menu > li > ul > li a {
    font-size: 0.9em !important;
  }
  header#header .inset nav .menu-main-menu-container ul.menu > li > ul.sub-menu > li.menu-item--active > ul {
    display: block;
  }
  header#header .inset nav .menu-main-menu-container ul.menu > li > ul.sub-menu > li.menu-item--active:after {
    top: 17px;
    transform: rotate(180deg);
  }
  header#header .inset nav .menu-main-menu-container ul.menu > li.menu-item--active a {
    background-color: var(--white);
    color: var(--red);
  }
  header#header .inset nav .menu-main-menu-container ul.menu > li:hover:before {
    display: none;
    transform: skew(0);
  }
  header#header .inset nav .menu-main-menu-container ul.menu > li:first-child {
    border-top: none;
  }
  header#header .inset nav .menu-top-menu-container {
    background-color: var(--green);
    display: block;
    padding: 20px 0;
  }
  header#header .inset nav .menu-top-menu-container ul.menu > li {
    border-top-color: #00000022;
    font-size: 1.1em;
  }
  header#header .inset nav .menu-top-menu-container ul.menu > li > a {
    color: var(--white);
    font-weight: 500;
  }
  header#header .inset nav .menu-top-menu-container ul.menu > li:hover a {
    color: var(--white);
    text-shadow: 0 0 10px var(--charcoal);
  }
  header#header .inset nav .menu-top-menu-container ul.menu > li:first-child {
    border-top: none;
  }
  header#header .inset nav .menu-top-menu-container ul.menu > li:last-child {
    border-top: #00000022 1px solid;
  }
  header#header .inset nav .menu-top-menu-container ul.menu > li:last-child a {
    background-color: transparent;
    margin: 0;
    padding: 0;
  }
  header#header .inset nav .search-button {
    height: auto;
    margin-right: 0;
    padding: 20px;
  }
  header#header .inset nav .search-button:before,
  header#header .inset nav .search-button:after {
    display: none;
  }
  header#header .inset nav .search-button #searchform {
    background: none;
    border: none;
    display: block;
    opacity: 1;
    pointer-events: auto;
    position: relative;
    right: auto;
    padding: 0;
    top: auto;
    width: 100%;
  }
  header#header .inset nav .search-button #searchform form {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
  }
  header#header .inset nav .search-button #searchform form label {
    width: 100%;
  }
  header#header .inset nav .search-button #searchform input[type="search"] {
    background-color: var(--white);
    border: none;
    color: var(--navy);
    font-size: 1em;
    padding: 10px 20px;
    width: calc(100%);
  }
  header#header .inset nav .search-button #searchform button[type="submit"] {
    background-color: transparent;
    border: none;
    display: grid;
    place-items: center;
    height: 40px;
    width: 40px;
    font-size: 0;
  }
  header#header .inset nav .search-button #searchform button[type="submit"]:before {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23FFFFFF" d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"/></svg>');
    display: block;
    height: 24px;
    width: 24px;
  }
  header#header .inset--active nav {
    display: block;
  }
  header#header.menus--active {
    position: fixed;
  }
  header#header.menus--active .inset nav {
    display: block;
  }
  header#header .mobile-menu-button {
    --line-inset: 7px;
    border-radius: 4px;
    color: #FFF;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    z-index: 1000;
  }
  header#header .mobile-menu-button__line {
    background-color: #FFF;
    border-radius: 2px;
    position: absolute;
    top: calc(var(--line-inset) + 4px);
    left: var(--line-inset);
    height: 4px;
    width: calc(100% - (var(--line-inset) * 2));
    transition: all 0.1s ease-in-out;
  }
  header#header .mobile-menu-button__line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  header#header .mobile-menu-button__line:nth-child(3) {
    top: auto;
    bottom: calc(var(--line-inset) + 4px);
  }
  header#header .mobile-menu-button--active .mobile-menu-button__line:nth-child(1) {
    top: 18px;
    transform: rotate(45deg);
  }
  header#header .mobile-menu-button--active .mobile-menu-button__line:nth-child(2) {
    display: none;
  }
  header#header .mobile-menu-button--active .mobile-menu-button__line:nth-child(3) {
    bottom: 18px;
    transform: rotate(-45deg);
  }
  header#header .social-links,
  header#header a.search-button {
    display: none;
  }
  header#header .search-dropdown {
    right: 0;
  }
  header#header .home-logo {
    left: 10px;
    height: calc(var(--header-height) - 25px);
  }
  header#header .mobile-menu-button {
    right: 10px;
  }
  body.scrolled header#header .home-logo {
    height: calc(var(--header-height) - 25px);
  }
  body:has(header.menus--active) .top-bar {
    position: fixed;
    width: 100%;
    z-index: 10000;
  }
  .columns {
    flex-direction: column;
  }
  .columns__column {
    flex-basis: 100%;
    width: 100%;
  }
  div.page-header .top {
    padding: 20px 0;
  }
  div.page-header .top .inset .breadcrumbs {
    flex-direction: column;
    gap: 0;
  }
  div.page-header .inset .breadcrumbs {
    display: none;
  }
  div.submenu-pages .inset {
    padding: 0;
  }
  div.submenu-pages ul {
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 0;
  }
  div.submenu-pages ul li a {
    padding: 5px 20px;
  }
  section.hero .slides {
    min-height: 400px;
  }
  section.secondary-content .inset .photos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }
  section.secondary-content .inset .photos img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  section.contact-boxes-content .inset .boxes {
    flex-direction: column;
    gap: 20px;
  }
  section.contact-boxes-content .inset .boxes__box {
    width: 100%;
  }
  section.page-content .inset .wp-block-image .alignleft,
  section.page-content .inset .wp-block-image .alignright {
    width: 100%;
    margin: 0 auto 20px;
  }
  section.page-content .inset .wp-block-image .alignleft img,
  section.page-content .inset .wp-block-image .alignright img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  section.page-content.blog-content .inset {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  section.page-content.blog-content .inset .blog-content__posts {
    width: 100%;
    padding-right: 0;
  }
  section.page-content.blog-content .inset .blog-content__sidebar {
    width: 100%;
    padding-left: 0;
  }
  section.half-image-content .inset h2,
  section.half-image-content .inset h3,
  section.half-image-content .inset h4 {
    padding: 0 20px;
  }
  section.half-image-content .inset .columns .columns__column {
    margin-bottom: 30px;
    padding: 0 20px;
  }
  section.half-image-content .inset .columns .columns__column:first-child {
    padding-left: 20px;
    padding-right: 20px;
  }
  section.hiring-team .inset {
    padding: 0;
  }
  .team__member {
    border-bottom: 0;
    border-left: 0;
    flex-direction: column;
    margin-bottom: 20px;
    padding: 0;
  }
  .team--short .team__member {
    gap: 10px;
  }
  .team--short .team__member__info {
    text-align: center;
    padding: 0 20px;
  }
  .team--short .team__member p.team__member__region {
    margin: 0 auto 15px;
  }
  .team--short .team__member a.team__member__email {
    margin: 0 auto 10px;
  }
  .team--two-columns .team__member {
    flex-basis: 100%;
    width: 100%;
  }
  .team--two-columns .team__member__info {
    text-align: center;
  }
  section.products .inset .heading {
    flex-direction: column;
  }
  section.products .inset .boxes {
    display: flex;
    flex-direction: column;
  }
  section.line-400 {
    display: none;
  }
  section.product-detail .inset {
    flex-direction: column;
  }
  section.product-detail .inset .content {
    order: 1;
    flex-direction: column;
    flex-basis: 100%;
    width: 100%;
  }
  section.product-detail .inset .content > .image {
    border-right: none;
    width: 100%;
  }
  section.product-detail .inset .content > .image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  section.product-detail .inset .content .tabs {
    width: 100%;
  }
  section.product-detail .inset .content .gallery .images {
    grid-template-columns: 1fr 1fr;
  }
  section.product-detail .inset .sidebar {
    border-top: 1px solid var(--grey);
    border-right: none;
    order: 2;
    flex-basis: 100%;
    width: 100%;
  }
  section.product-detail .inset .sidebar ul {
    width: 100%;
  }
  section.product-detail .product-logo img {
    max-width: 240px;
  }
  section.latest-news .posts {
    flex-direction: column;
  }
  section.latest-news .posts__post {
    width: 100%;
  }
  div.image-banner .inset {
    display: flex;
    flex-direction: column;
  }
  div.image-banner .inset .image-banner__image {
    aspect-ratio: 3/2;
  }
  section.contact .inset {
    min-height: 0;
    padding: 0;
  }
  section.contact .inset .box {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  section.contact .inset .box__content h3 {
    font-size: 1.4em;
    margin: 0 0 10px;
  }
  section.contact .inset .box__button {
    width: 100%;
  }
  section.contact .inset .box__button .button {
    display: block;
    width: 100%;
  }
  .strip-holder .strip {
    width: calc(var(--number) * 100%);
  }
  .immediate-assistance h2 {
    font-size: 1em;
  }
  .immediate-assistance h2:before {
    width: 80px;
  }
  .immediate-assistance .numbers {
    flex-direction: column;
    font-size: 0.9em;
    gap: 10px;
    margin-top: 10px;
  }
  .outlined-boxes .boxes {
    flex-direction: column;
  }
  .outlined-boxes .boxes__box {
    width: 100%;
  }
  .photo-boxes__boxes__box {
    height: 280px;
  }
  .staff-boxes__boxes__box {
    flex-basis: 100%;
    margin-bottom: 0;
  }
  .support-items {
    grid-template-columns: 1fr;
  }
  footer#footer .columns {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  footer#footer .columns__column {
    width: 100% !important;
  }
  footer#footer .columns__column:nth-child(1),
  footer#footer .columns__column:nth-child(2) {
    flex-basis: 100%;
  }
  footer#footer .partners {
    justify-content: center;
  }
  footer#footer .partners a img {
    height: calc(var(--H) * 0.8);
    width: calc(var(--W) * 0.8);
  }
}
/*# sourceMappingURL=style.less.css.map */