@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(--charcoal);
  font-family: var(--font-family-heading);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 20px;
}
h1 {
  font-size: 3.5em;
}
h2 {
  font-size: 2.6em;
}
h3 {
  font-size: 1.4em;
  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.2em;
}
* + h2,
* + h3,
* + h4 {
  margin-top: 40px;
}
p,
ul,
ol {
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.5;
}
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;
}
li {
  padding: 5px 0;
}
.inset {
  box-sizing: border-box;
  padding: 20px;
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.tiruna-button {
  background-color: var(--red);
  border: 2px solid var(--red);
  color: #FFF;
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-family-heading);
  font-weight: 600;
  padding: 10px 50px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.1s ease-in-out;
  width: fit-content;
}
.tiruna-button:hover {
  background-color: var(--red-dark);
  border-color: var(--red-dark);
}
.tiruna-button--small {
  font-size: 0.9em;
  padding: 4px 20px;
}
.top-bar {
  background-color: var(--red);
  border-bottom: 1px solid var(--white);
}
.top-bar .inset {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: flex-end;
  padding: 0 20px;
}
.top-bar .inset ul.menu {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 20px;
  height: var(--top-bar-height);
  justify-content: flex-end;
  list-style: none;
}
.top-bar .inset ul.menu > li a {
  color: var(--white);
  font-family: var(--font-family-heading);
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
}
.top-bar .inset ul.menu > li:hover a {
  color: var(--grey);
}
header#header {
  background-color: var(--grey);
  border-bottom: 1px solid var(--white);
  color: var(--charcoal);
  height: var(--header-height);
  position: relative;
  width: 100%;
  z-index: 100;
}
header#header .inset {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 20px;
  height: 100%;
  justify-content: flex-end;
  position: relative;
  z-index: 10;
}
header#header .inset .apply-now {
  background-color: var(--red);
  color: #FFF;
  display: block;
  font-family: var(--font-family-heading);
  font-size: 1em;
  font-weight: 600;
  padding: 8px 20px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.1s ease-in-out;
}
header#header .inset .apply-now:hover {
  background-color: var(--red-dark);
}
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: calc(50% - ((var(--header-height) - 50px) / 2));
  left: 20px;
  z-index: 20;
}
header#header .home-logo img {
  height: calc(var(--header-height) - 50px);
  width: auto;
}
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: 30px;
  justify-content: flex-end;
}
header#header nav ul.menu {
  align-items: center;
  display: flex;
  flex-direction: row;
  font-size: 1.1em;
  font-weight: 700;
  gap: 40px;
  list-style: none;
}
header#header nav ul.menu > li {
  position: relative;
}
header#header nav ul.menu > li a {
  color: var(--charcoal);
  padding: 5px 0;
  text-decoration: none;
}
header#header nav ul.menu > li.current-menu-item > a {
  border-bottom: 2px solid var(--green-light);
}
header#header nav ul.menu > li.menu-item-has-children {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: center;
}
header#header nav ul.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="%2300000099" 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;
  margin-left: 10px;
  position: relative;
  top: -6px;
  transition: transform var(--transition-duration);
  width: 14px;
}
header#header nav ul.menu > 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 ul.menu > li > ul {
  background: var(--white);
  border-top: 4px solid var(--red);
  box-sizing: border-box;
  display: none;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: 100%;
  left: -30px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 240px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
header#header nav ul.menu > li > ul li {
  border-bottom: 1px solid var(--grey);
  font-size: 1rem;
  padding: 0;
}
header#header nav ul.menu > li > ul li a {
  display: block;
  padding: 10px 20px;
}
header#header nav ul.menu > li > ul li:last-child {
  border-bottom: none;
}
header#header nav ul.menu > li > ul li:hover a {
  color: var(--red);
}
header#header nav ul.menu > li:hover > a {
  color: var(--red);
}
header#header nav ul.menu > li:hover > ul {
  display: flex;
}
header#header nav .search {
  position: relative;
}
header#header nav .search .button {
  cursor: pointer;
}
header#header nav .search #searchform {
  background: var(--white);
  border-top: 4px solid var(--red);
  opacity: 0;
  pointer-events: none;
  padding: 10px;
  position: absolute;
  right: -10px;
  top: calc(100% + 10px);
  width: 320px;
}
header#header nav .search #searchform input[type=text] {
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: 0;
  color: var(--charcoal);
  font-size: 1em;
  padding: 10px;
  width: 100%;
}
header#header nav .search #searchform button {
  display: none;
}
header#header nav .search #searchform.active {
  opacity: 1;
  pointer-events: all;
  animation: slide-fade-down 100ms ease-out forwards;
}
header#header nav .search #searchform.active input[type=text]:focus,
header#header nav .search #searchform.active input[type=text]:active {
  outline: 1px solid var(--gold);
  outline-offset: 1px;
}
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;
  position: relative;
  text-align: center;
  z-index: 10;
}
section.hero__slide {
  background-color: #01224A;
  background-image: var(--bg-image);
  background-position: center;
  background-size: cover;
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  text-decoration: none;
  top: 0;
  width: 100%;
  animation: hero-fade-out 0s ease-in-out forwards;
  animation-delay: 1s;
}
section.hero__slide--hidden {
  display: none;
}
section.hero__slide--active {
  display: block;
  animation: hero-fade-in 1s ease-in-out forwards;
}
section.hero__slide:before {
  background: #ffffff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.69) 0%, rgba(255, 255, 255, 0.69) 50%, rgba(255, 255, 255, 0) 100%);
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
section.hero__slide__text {
  color: var(--charcoal);
  display: flex;
  flex-direction: column;
  font-size: 1.4em;
  justify-content: center;
  height: 100%;
  margin: 0 auto;
  padding-bottom: 60px;
  padding-right: calc(var(--max-width) / 2);
  position: relative;
  text-align: left;
  max-width: var(--max-width);
  width: calc(100% - 40px);
  z-index: 20;
}
section.hero__slide__text div.label {
  font-size: 1em;
  margin-bottom: 30px;
  width: fit-content;
  background-color: var(--label-color);
  color: #FFF;
  display: inline-block;
  font-family: var(--font-family);
  font-weight: 500;
  padding: 8px 32px;
}
section.hero__slide__text div.title {
  color: var(--red);
  font-family: var(--font-family-heading);
  font-size: 4.4em;
  font-weight: 700;
  line-height: 0.8;
  margin: 0 0 20px;
}
section.hero__slide__text p {
  margin: 0 0 20px;
  text-wrap: balance;
}
@media screen and (max-width: 1440px) {
  section.hero__slide__text {
    padding-right: max(calc(100% - var(--max-width) / 2), 20px);
  }
}
div.page-header .top {
  background-color: var(--charcoal);
  background-image: var(--bg-image-url);
  background-position: var(--bg-position-x) var(--bg-position-y);
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--white);
  color: var(--white);
  padding: 50px 0;
  position: relative;
  text-align: center;
  z-index: 10;
}
div.page-header .top:before {
  background-color: var(--charcoal);
  content: '';
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
div.page-header .top .inset {
  padding: 20px 0;
  position: relative;
  width: 100%;
  z-index: 2;
}
div.page-header .top .inset h1 {
  color: var(--white);
  font-size: 1.8em;
  font-weight: 400;
  margin: 0;
  padding: 0;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
div.page-header .top .inset .breadcrumbs {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  padding: 10px 20px 0;
}
div.page-header .top .inset .breadcrumbs a {
  color: var(--white);
  text-decoration: none;
}
div.page-header .bottom {
  background-attachment: fixed;
  background-color: var(--grey);
  background-image: var(--bg-image-url);
  background-position: var(--bg-position-x) var(--bg-position-y);
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--charcoal);
  padding: 20px 0;
  position: relative;
  text-align: center;
  z-index: 10;
}
div.page-header .bottom:before {
  background-color: #9e180d;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.8;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
div.page-header .bottom .inset {
  color: var(--white);
  padding: 0 20px;
  position: relative;
  width: 100%;
  z-index: 2;
}
div.page-header .bottom .inset h2 {
  color: var(--white);
  margin-bottom: 0;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
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 .inset {
  opacity: 0;
}
section.page-content .inset.watched.seen {
  opacity: 1;
  animation: slide-fade-up 500ms ease-out forwards;
}
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 {
  background-color: var(--red);
  border: 2px solid var(--red);
  color: #FFF;
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-family-heading);
  font-weight: 600;
  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-dark);
  border-color: var(--red-dark);
}
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.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;
}
@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);
  content: '';
  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__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(--grey-dark);
  color: #FFF;
  text-align: center;
}
footer#footer .inset {
  padding: 40px 20px;
}
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: 25%;
}
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--menu nav {
  border-bottom: 1px solid var(--white);
  display: block;
  margin-top: 10px;
}
footer#footer .columns__column--menu nav ul {
  font-size: 0.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
footer#footer .columns__column--menu nav ul li {
  border-bottom: 1px solid var(--white);
  margin: 0;
  padding: 0;
}
footer#footer .columns__column--menu nav ul li:last-child {
  border-bottom: none;
}
footer#footer .columns__column--menu nav ul li a {
  color: #FFF;
  display: block;
  padding: 10px 0;
  text-decoration: none;
}
footer#footer .columns__column--menu nav ul li a:hover {
  color: var(--gold);
}
footer#footer .columns__column--menu nav ul li ul {
  border-top: 1px solid var(--white);
}
footer#footer .columns__column--contact-info .boxes {
  --box-size: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
}
footer#footer .columns__column--contact-info .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 .columns__column--contact-info .boxes__box__icon {
  background-color: var(--grey);
  display: grid;
  place-items: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 60px;
  width: 60px;
}
footer#footer .columns__column--contact-info .boxes__box__icon i {
  color: var(--red);
  font-size: 20px;
}
footer#footer .columns__column--contact-info .boxes__box__label {
  color: var(--white);
  display: block;
  font-family: var(--font-family);
  font-size: 1.2em;
  font-weight: 700;
  padding: 0 20px;
  text-transform: uppercase;
  width: auto;
}
footer#footer .columns__column--contact-info .boxes__box__button {
  padding: 0 20px;
}
footer#footer .columns__column--contact-info .boxes__box__button a {
  color: inherit;
}
footer#footer .columns__column .inner-box {
  background-color: var(--red);
  border: 2px solid #FFF;
  color: #FFF;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 80px 40px 40px;
  width: fit-content;
}
footer#footer .columns__column .inner-box .contact-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
}
footer#footer .columns__column .inner-box .contact-info .phone,
footer#footer .columns__column .inner-box .contact-info .address {
  padding-left: 30px;
  position: relative;
}
footer#footer .columns__column .inner-box .contact-info .phone:before,
footer#footer .columns__column .inner-box .contact-info .address:before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path fill="%23FFF" d="M192 512s192-208 192-320C384 86 298 0 192 0S0 86 0 192C0 304 192 512 192 512zm0-384a64 64 0 1 1 0 128 64 64 0 1 1 0-128z"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
  content: '';
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  top: 2px;
  width: 20px;
}
footer#footer .columns__column .inner-box .contact-info .phone:before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23FFF" d="M0 32L144 0l80 144-83.8 67c36.1 68.4 92.3 124.6 160.8 160.8L368 288l144 80L480 512H448C200.6 512 0 311.4 0 64L0 32zM464 256c0-114.9-93.1-208-208-208l0-48C397.4 0 512 114.6 512 256l-48 0zM256 224a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm0-80l0-48c88.4 0 160 71.6 160 160l-48 0c0-61.9-50.1-112-112-112z"/></svg>');
  background-size: 19px;
  transform: rotate(10deg);
}
footer#footer .columns__column .inner-box .contact-info svg {
  fill: #FFF;
  height: 20px;
  width: 20px;
}
footer#footer .columns__column .inner-box .contact-info a {
  color: inherit;
}
footer#footer .columns__column .inner-box h3 {
  font-size: 1.2em;
  line-height: 1.3;
  margin: 0;
}
footer#footer .columns__column .inner-box p {
  font-size: 1em;
}
footer#footer .copyright {
  background-color: var(--charcoal);
  font-size: 0.9em;
  padding: 10px 0;
  text-align: center;
}
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%;
}
@media screen and (max-width: 768px) {
  .mobile-only {
    display: block;
  }
  .not-mobile {
    display: none;
  }
  #is-mobile {
    display: block;
  }
  body h1 {
    font-size: 2.8em;
  }
  body h2 {
    font-size: 2.4em;
  }
  body h3 {
    font-size: 1.2em;
  }
  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(--white);
    display: none;
    height: 100vh;
    left: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    padding-top: calc(var(--header-height) + var(--top-bar-height) + 20px);
    position: fixed;
    top: 0;
    width: 100%;
  }
  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: #00000022 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 {
    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 {
    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: #00000022 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 {
    transform: translateY(-50%) rotate(180deg);
  }
  header#header .inset nav .menu-main-menu-container {
    background-color: var(--blue);
    padding: 20px 0;
  }
  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: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--active nav {
    display: block;
  }
  header#header.menus--active {
    background-color: var(--blue);
    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;
  }
  header#header .mobile-menu-button {
    right: 10px;
  }
  body:has(header.menus--active) .top-bar {
    position: fixed;
    width: 100%;
    z-index: 10000;
  }
  body:has(header.menus--active) header#header .home-logo {
    top: calc(50% - ((var(--header-height) - 50px) / 2) + var(--top-bar-height) + 1px);
  }
  body:has(header.menus--active) header#header .mobile-menu-button {
    top: calc(50% + var(--top-bar-height) + 1px);
  }
  .hero__slide:before {
    background: rgba(255, 255, 255, 0.69);
  }
  .hero__slide__text {
    font-size: 1.2em;
    padding-right: 20px;
  }
  .hero__slide__text div.title {
    font-size: 3em;
  }
  .hero__slide__text div.label {
    margin-bottom: 20px;
  }
  .columns__column {
    flex-basis: 100%;
  }
  div.page-header .top {
    padding: 20px 0;
  }
  div.page-header .top .inset .breadcrumbs {
    flex-direction: column;
    gap: 0;
  }
  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%;
  }
  .page-content.blog-content .inset {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .page-content.blog-content .inset .blog-content__posts {
    width: 100%;
    padding-right: 0;
  }
  .page-content.blog-content .inset .blog-content__sidebar {
    width: 100%;
    padding-left: 0;
  }
  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;
  }
  .latest-news__posts {
    flex-direction: column;
  }
  .latest-news__posts__post {
    width: 100%;
  }
  .staff-boxes__boxes__box {
    flex-basis: 100%;
    margin-bottom: 0;
  }
  footer#footer .columns {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  footer#footer .columns__column:nth-child(1),
  footer#footer .columns__column:nth-child(2) {
    flex-basis: 100%;
  }
}
/*# sourceMappingURL=style.less.css.map */