/**
 * Theme Name: Wolfson
 * Author: <a href="http://oneltd.co.uk/">One</a>
 * Author URI: http://oneltd.co.uk/
 * Version: 1.0
 * Description: Custom theme for Wolfson
 * Template: oneltd-base
 */

@charset "UTF-8";
@font-face {
  font-family: "Albertus Nova W01 Thin";
  src: url("Fonts/8c7bc1a2-5f25-43f2-aa04-a73e49415e38.woff2") format("woff2"), url("Fonts/ddcce7da-2155-49bd-9d3a-f6740c735358.woff") format("woff");
}
@font-face {
  font-family: "Albertus Nova W01 Regular";
  src: url("Fonts/e91604db-5af7-4be0-a534-f70314c66bf7.woff2") format("woff2"), url("Fonts/cd330d04-2a11-4643-8bbe-f13c2e53a549.woff") format("woff");
}
@font-face {
  font-family: "Albertus Nova W01 Bold";
  src: url("Fonts/1849d5ef-b568-4cf0-8a9c-ff44bc5ef175.woff2") format("woff2"), url("Fonts/25c11ae2-87e9-44ee-aa44-ca8a12db16c2.woff") format("woff");
}
/* 
*   Easing Equations ported to CSS by @matthewlein - http://matthewlein.com/ceaser/
*   Converted to SCSS vars by @pettpett
*   
*   sample usage:
*   a {
*     color: #ff0000;
*     transition: color 0.5s $easeOutQuint;
*     &:hover,
*     &:focus {
*       color: #ff9900;
*     }
*   }
*/
/* Default Equations */
/* Penner Equations (approximated) originally created by @robpenner */
/* line 1, ../../src/sass/helpers/_reset.scss */
html {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

/* line 5, ../../src/sass/helpers/_reset.scss */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
     -moz-box-sizing: inherit;
          box-sizing: inherit;
}

/* line 11, ../../src/sass/helpers/_reset.scss */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
/* line 99, ../../src/sass/helpers/_reset.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* line 112, ../../src/sass/helpers/_reset.scss */
body {
  line-height: 1;
}

/* line 115, ../../src/sass/helpers/_reset.scss */
ol,
ul {
  list-style: none;
}

/* line 119, ../../src/sass/helpers/_reset.scss */
blockquote,
q {
  quotes: none;
}

/* line 123, ../../src/sass/helpers/_reset.scss */
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* line 130, ../../src/sass/helpers/_reset.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 135, ../../src/sass/helpers/_reset.scss */
html {
  -webkit-transition: all 0.4s ease;
     -moz-transition: all 0.4s ease;
       -o-transition: all 0.4s ease;
          transition: all 0.4s ease;
}
/* line 138, ../../src/sass/helpers/_reset.scss */
html.wf-loading {
  opacity: 0;
}
/* line 142, ../../src/sass/helpers/_reset.scss */
html.wf-active, html.wf-inactive {
  opacity: 1;
}

/* line 2, ../../src/sass/helpers/_typography.scss */
body {
  -webkit-font-smoothing: antialiased;
  color: #333;
  font-size: 16px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
  line-height: 1.6;
}

/* line 12, ../../src/sass/helpers/_typography.scss */
h1, .h1, h1,
h2, .h2, h2 {
  text-transform: uppercase;
}

/* line 17, ../../src/sass/helpers/_typography.scss */
.h1, h1, .h2, h2, .h3, h3, .h4, h4, .h5, h5, .h6, h6 {
  font-family: gill-sans-nova, sans-serif;
  font-weight: 700;
}

/* line 18, ../../src/sass/helpers/_typography.scss */
.h1, h1, .h2, h2 {
  line-height: 1.1;
}

/* line 19, ../../src/sass/helpers/_typography.scss */
.h3, h3, .h4, h4 {
  line-height: 1.3;
}

/* line 26, ../../src/sass/helpers/_typography.scss */
.fixed, pre, code {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 15px;
  line-height: 1.2;
}

/* line 28, ../../src/sass/helpers/_typography.scss */
.italic, i, em {
  font-style: italic;
}

/* line 29, ../../src/sass/helpers/_typography.scss */
.bold, b, strong {
  font-weight: 600;
}

/* line 31, ../../src/sass/helpers/_typography.scss */
.block-margins, p, ul, ol, pre {
  margin: 1em 0;
}

/* line 33, ../../src/sass/helpers/_typography.scss */
.unordered-list, ul {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 10px;
}

/* line 34, ../../src/sass/helpers/_typography.scss */
.ordered-list, ol {
  list-style: decimal;
  list-style-position: outside;
  margin-left: 10px;
}

/* line 39, ../../src/sass/helpers/_typography.scss */
h1, .h1, h1 {
  margin: 1em 0 0.5em;
  font-family: "Albertus Nova W01 Bold";
  font-size: 38px;
  letter-spacing: -webkit-calc(1em * 0.001 * 50);
  letter-spacing: -moz-calc(1em * 0.001 * 50);
  letter-spacing: calc(1em * 0.001 * 50);
}
@media only screen and (min-width: 1024px) {
  /* line 39, ../../src/sass/helpers/_typography.scss */
  h1, .h1, h1 {
    font-size: 25px;
  }
}

/* line 46, ../../src/sass/helpers/_typography.scss */
h2, .h2, h2 {
  margin: 1em 0 0.5em;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -webkit-calc(1em * 0.001 * 75);
  letter-spacing: -moz-calc(1em * 0.001 * 75);
  letter-spacing: calc(1em * 0.001 * 75);
  color: #BA000A;
}
@media only screen and (min-width: 1024px) {
  /* line 46, ../../src/sass/helpers/_typography.scss */
  h2, .h2, h2 {
    font-size: 24px;
  }
}

/* line 54, ../../src/sass/helpers/_typography.scss */
h3, .h3, h3 {
  margin: 1em 0 0.5em;
  font-size: 22px;
  font-weight: 600;
}

/* line 55, ../../src/sass/helpers/_typography.scss */
h4, .h4, h4 {
  margin: 1em 0 0.5em;
  font-size: 16px;
  font-weight: 700;
}

/* line 56, ../../src/sass/helpers/_typography.scss */
h5, .h5, h5 {
  margin: 1em 0 0.5em;
}

/* line 57, ../../src/sass/helpers/_typography.scss */
h6, .h6, h6 {
  margin: 1em 0 0.5em;
}

/* line 59, ../../src/sass/helpers/_typography.scss */
blockquote cite, blockquote p {
  font-style: normal !important;
  font-size: 22px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 600;
  letter-spacing: -webkit-calc(1em * 0.001 * 75);
  letter-spacing: -moz-calc(1em * 0.001 * 75);
  letter-spacing: calc(1em * 0.001 * 75);
}

/* line 70, ../../src/sass/helpers/_typography.scss */
.page-template-default .container.thin {
  padding-bottom: 40px;
}

/* line 76, ../../src/sass/helpers/_typography.scss */
.has-intro-font-size {
  line-height: 30px;
}

/* line 81, ../../src/sass/helpers/_typography.scss */
article ul {
  list-style: none;
}
/* line 83, ../../src/sass/helpers/_typography.scss */
article ul li {
  padding-left: 10px;
  list-style-image: url(/wp-content/themes/Wolfson/src/Assets/bullet.svg);
}

/* line 130, ../../src/sass/helpers/_typography.scss */
sup {
  vertical-align: super;
  font-size: smaller;
}

/* line 135, ../../src/sass/helpers/_typography.scss */
sub {
  vertical-align: sub;
  font-size: smaller;
}

/* line 1, ../../src/sass/helpers/_base.scss */
html {
  overflow-x: hidden;
}

/* line 6, ../../src/sass/helpers/_base.scss */
body.scroll-lock {
  overflow: hidden;
}

/* line 11, ../../src/sass/helpers/_base.scss */
.container {
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  max-width: 1248px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
     -moz-transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
       -o-transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
          transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
/* line 13, ../../src/sass/helpers/_base.scss */
.container.thin {
  max-width: 648px;
}
/* line 17, ../../src/sass/helpers/_base.scss */
.container.med {
  max-width: 854px;
}

/* line 22, ../../src/sass/helpers/_base.scss */
.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* line 32, ../../src/sass/helpers/_base.scss */
.error404 .posts-wrapper {
  margin-bottom: 10%;
}
/* line 36, ../../src/sass/helpers/_base.scss */
.error404 .posts-wrapper p {
  margin-top: 0;
}

/* line 45, ../../src/sass/helpers/_base.scss */
table thead {
  border-bottom: 2px solid #9F6B20;
}
/* line 51, ../../src/sass/helpers/_base.scss */
table td, table th {
  padding: 10px 12px;
  border: 1px solid #9F6B20;
}

/* line 66, ../../src/sass/helpers/_base.scss */
.wp-block-table table thead,
.wp-block-table.is-style-stripes table thead,
.wp-block-table.is-style-regular table thead {
  border-bottom: 2px solid #9F6B20;
  background: #9F6B20;
  color: #FFF;
}
/* line 74, ../../src/sass/helpers/_base.scss */
.wp-block-table table td, .wp-block-table table th,
.wp-block-table.is-style-stripes table td,
.wp-block-table.is-style-stripes table th,
.wp-block-table.is-style-regular table td,
.wp-block-table.is-style-regular table th {
  padding: 10px 12px;
  border: 1px solid #9F6B20;
}

/* line 86, ../../src/sass/helpers/_base.scss */
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: #f2efef;
}

/* line 91, ../../src/sass/helpers/_base.scss */
.download-area {
  margin: 40px 0;
}
/* line 94, ../../src/sass/helpers/_base.scss */
.download-area .button-wrapper .button-single span {
  top: 0;
}

/* line 1, ../../src/sass/image-text.scss */
.image-text-wrapper {
  margin-block: 80px;
}
/* line 4, ../../src/sass/image-text.scss */
.image-text-wrapper .image-text-bg {
  min-height: max(60vh, 600px);
  -webkit-background-size: cover;
     -moz-background-size: cover;
          background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
/* line 10, ../../src/sass/image-text.scss */
.image-text-wrapper .image-text-bg .image-text-content {
  height: inherit;
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  bottom: 0;
  left: 10%;
  max-width: 33%;
  display: none;
}
/* line 19, ../../src/sass/image-text.scss */
.image-text-wrapper .image-text-bg .image-text-content h2 {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  line-height: 50px;
  font-size: 25px;
  font-weight: bold;
  font-family: "Albertus Nova W01 Bold";
  letter-spacing: -webkit-calc(1em * 0.001 * 36);
  letter-spacing: -moz-calc(1em * 0.001 * 36);
  letter-spacing: calc(1em * 0.001 * 36);
  color: #333;
}
/* line 34, ../../src/sass/image-text.scss */
.image-text-wrapper .image-text-bg + .image-text-content h2 {
  margin: 0;
  padding-inline: 0;
  padding-block: 10px;
  text-transform: uppercase;
  line-height: 36px;
  font-size: 25px;
  font-weight: bold;
  font-family: "Albertus Nova W01 Bold";
  letter-spacing: -webkit-calc(1em * 0.001 * 36);
  letter-spacing: -moz-calc(1em * 0.001 * 36);
  letter-spacing: calc(1em * 0.001 * 36);
  color: #000;
}

@media only screen and (min-width: 1024px) {
  /* line 59, ../../src/sass/image-text.scss */
  .image-text-wrapper .image-text-bg .image-text-content {
    display: unset;
  }
  /* line 62, ../../src/sass/image-text.scss */
  .image-text-wrapper .image-text-bg .image-text-content h2 {
    font-size: 38px;
    padding-block: 45px;
    padding-inline: 35px;
    line-height: 51px;
  }
  /* line 71, ../../src/sass/image-text.scss */
  .image-text-wrapper .image-text-bg + .image-text-content {
    display: none;
  }
  /* line 73, ../../src/sass/image-text.scss */
  .image-text-wrapper .image-text-bg + .image-text-content h2 {
    font-size: 38px;
    letter-spacing: -webkit-calc(1em * 0.001 * 50);
    letter-spacing: -moz-calc(1em * 0.001 * 50);
    letter-spacing: calc(1em * 0.001 * 50);
    padding-block: 45px;
    padding-inline: 35px;
    line-height: 60px;
  }
}
/* line 1, ../../src/sass/image-content-corner.scss */
.corner-bg-image {
  position: relative;
  position: relative;
}
/* line 6, ../../src/sass/image-content-corner.scss */
.corner-bg-image .corner-bg-image-only {
  -webkit-background-size: cover;
     -moz-background-size: cover;
          background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 280px;
}
@media only screen and (min-width: 1024px) {
  /* line 6, ../../src/sass/image-content-corner.scss */
  .corner-bg-image .corner-bg-image-only {
    min-height: max(65vh, 600px);
  }
}
/* line 18, ../../src/sass/image-content-corner.scss */
.corner-bg-image .corner-content {
  position: relative;
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  padding-inline: 0;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  /* line 18, ../../src/sass/image-content-corner.scss */
  .corner-bg-image .corner-content {
    position: absolute;
    width: 50%;
    padding-inline: 35px;
  }
}
/* line 35, ../../src/sass/image-content-corner.scss */
.corner-bg-image .corner-content * {
  margin: 0;
  font-family: gill-sans-nova, sans-serif;
}
/* line 40, ../../src/sass/image-content-corner.scss */
.corner-bg-image .corner-content h4 {
  text-transform: uppercase;
  padding-top: 25px;
  width: 100%;
  padding-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -webkit-calc(1em * 0.001 * 75);
  letter-spacing: -moz-calc(1em * 0.001 * 75);
  letter-spacing: calc(1em * 0.001 * 75);
  line-height: 28px;
}
@media only screen and (min-width: 1024px) {
  /* line 40, ../../src/sass/image-content-corner.scss */
  .corner-bg-image .corner-content h4 {
    font-size: 22px;
    line-height: 37px;
    padding-top: 55px;
    width: 90%;
    padding-bottom: 50px;
  }
}
/* line 63, ../../src/sass/image-content-corner.scss */
.corner-bg-image .corner-content .corner-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 40px;
}
/* line 68, ../../src/sass/image-content-corner.scss */
.corner-bg-image .corner-content .corner-flex h5 {
  font-size: 18px;
  font-weight: bold;
}
/* line 73, ../../src/sass/image-content-corner.scss */
.corner-bg-image .corner-content .corner-flex a {
  color: inherit;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
/* line 80, ../../src/sass/image-content-corner.scss */
.corner-bg-image .corner-content .corner-flex a:hover {
  text-decoration: underline;
  color: #9F6B20;
}
/* line 84, ../../src/sass/image-content-corner.scss */
.corner-bg-image .corner-content .corner-flex a:hover img {
  -webkit-transform: translateX(10px);
     -moz-transform: translateX(10px);
      -ms-transform: translateX(10px);
       -o-transform: translateX(10px);
          transform: translateX(10px);
}
/* line 89, ../../src/sass/image-content-corner.scss */
.corner-bg-image .corner-content .corner-flex a img {
  margin-left: 5px;
  -webkit-transition-duration: 0.5s;
     -moz-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

/* line 1, ../../src/sass/accordion.scss */
.accordions {
  margin-block: 80px;
  width: 100%;
  margin-inline: auto;
}
/* line 7, ../../src/sass/accordion.scss */
.accordions .accordion-item {
  margin-bottom: 14px;
}
/* line 14, ../../src/sass/accordion.scss */
.accordions .accordion-item.open .title-block .accordion-link h3:after {
  background: url("/wp-content/themes/Wolfson/src/Assets/Accordion-open-red.svg") !important;
}
/* line 22, ../../src/sass/accordion.scss */
.accordions .accordion-item .title-block {
  background-color: transparent;
  border: 1px solid #9F6B20;
  cursor: pointer;
  padding: 0;
  width: 100%;
}
/* line 30, ../../src/sass/accordion.scss */
.accordions .accordion-item .title-block .accordion-link {
  display: inline;
}
/* line 37, ../../src/sass/accordion.scss */
.accordions .accordion-item .title-block .accordion-link h3 {
  text-align: left;
  margin: 0;
  padding: 13px 20px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
  font-size: 22px;
  position: relative;
}
/* line 46, ../../src/sass/accordion.scss */
.accordions .accordion-item .title-block .accordion-link h3 span {
  width: 95%;
  display: block;
}
/* line 51, ../../src/sass/accordion.scss */
.accordions .accordion-item .title-block .accordion-link h3:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
  content: "";
  background: url("/wp-content/themes/Wolfson/src/Assets/Accordion-open.svg");
  background-repeat: no-repeat;
  height: 15px;
  width: 15px;
  -webkit-transition: all 0.4s ease;
     -moz-transition: all 0.4s ease;
       -o-transition: all 0.4s ease;
          transition: all 0.4s ease;
  -webkit-transform: translateY(-50%) rotate(315deg);
     -moz-transform: translateY(-50%) rotate(315deg);
      -ms-transform: translateY(-50%) rotate(315deg);
       -o-transform: translateY(-50%) rotate(315deg);
          transform: translateY(-50%) rotate(315deg);
}
/* line 67, ../../src/sass/accordion.scss */
.accordions .accordion-item .title-block .accordion-link h3 + img {
  padding-right: 15px;
}
/* line 75, ../../src/sass/accordion.scss */
.accordions .accordion-item .text-block {
  display: none;
  border: 1px solid #9F6B20;
  border-top: 0px;
  width: 100%;
  padding: 13px 20px;
}
/* line 81, ../../src/sass/accordion.scss */
.accordions .accordion-item .text-block p {
  margin-top: 0;
}
/* line 96, ../../src/sass/accordion.scss */
.accordions .accordion-item.open .title-block .accordion-link h3:after {
  -webkit-transform: translateY(-50%) rotate(0deg);
     -moz-transform: translateY(-50%) rotate(0deg);
      -ms-transform: translateY(-50%) rotate(0deg);
       -o-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  background: url("/wp-content/themes/Wolfson/src/Assets/Accordion-open.svg");
  background-repeat: no-repeat;
}

/* line 1, ../../src/sass/half-image-content.scss */
.half-image-content-wrapper {
  display: grid;
  grid-template-columns: 100%;
}
/* line 6, ../../src/sass/half-image-content.scss */
.half-image-content-wrapper img {
  width: 100%;
}
/* line 10, ../../src/sass/half-image-content.scss */
.half-image-content-wrapper .half-content {
  padding: 35px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
/* line 16, ../../src/sass/half-image-content.scss */
.half-image-content-wrapper .half-content * {
  font-family: "gill-sans-nova";
  margin: 0;
}
/* line 21, ../../src/sass/half-image-content.scss */
.half-image-content-wrapper .half-content .half-inner-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
/* line 25, ../../src/sass/half-image-content.scss */
.half-image-content-wrapper .half-content .half-inner-content h3 {
  color: #9F6B20;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 400;
  padding-bottom: 15px;
  letter-spacing: -webkit-calc(1em * 0.001 * 75);
  letter-spacing: -moz-calc(1em * 0.001 * 75);
  letter-spacing: calc(1em * 0.001 * 75);
  line-height: 32px;
}
/* line 35, ../../src/sass/half-image-content.scss */
.half-image-content-wrapper .half-content .half-inner-content p {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 20px;
}
/* line 43, ../../src/sass/half-image-content.scss */
.half-image-content-wrapper .half-content .half-inner-content a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  font-size: 18px;
}
/* line 50, ../../src/sass/half-image-content.scss */
.half-image-content-wrapper .half-content .half-inner-content a:hover {
  text-decoration: underline;
  color: #9F6B20;
}
/* line 54, ../../src/sass/half-image-content.scss */
.half-image-content-wrapper .half-content .half-inner-content a:hover img {
  -webkit-transform: translate(10px, 6px);
     -moz-transform: translate(10px, 6px);
      -ms-transform: translate(10px, 6px);
       -o-transform: translate(10px, 6px);
          transform: translate(10px, 6px);
}
/* line 59, ../../src/sass/half-image-content.scss */
.half-image-content-wrapper .half-content .half-inner-content a img {
  max-width: 25px;
  width: 100%;
  margin-left: 5px;
  -webkit-transform: translateY(6px);
     -moz-transform: translateY(6px);
      -ms-transform: translateY(6px);
       -o-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition-duration: 0.5s;
     -moz-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

@media only screen and (min-width: 1024px) {
  /* line 74, ../../src/sass/half-image-content.scss */
  .half-image-content-wrapper {
    grid-template-columns: 50% 50%;
    margin-block: 80px;
  }
  /* line 78, ../../src/sass/half-image-content.scss */
  .half-image-content-wrapper img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  /* line 83, ../../src/sass/half-image-content.scss */
  .half-image-content-wrapper .half-content {
    padding: 35px 60px 35px 120px;
  }
}
/* line 1, ../../src/sass/video.scss */
.video-wrapper {
  width: 100%;
  margin-inline: auto;
  margin-block: 80px;
}
/* line 6, ../../src/sass/video.scss */
.video-wrapper * {
  font-family: "gill-sans-nova";
}
/* line 10, ../../src/sass/video.scss */
.video-wrapper .video-bg {
  background-repeat: no-repeat;
  -webkit-background-size: cover;
     -moz-background-size: cover;
          background-size: cover;
  min-height: 450px;
  cursor: pointer;
}
/* line 16, ../../src/sass/video.scss */
.video-wrapper .video-bg .video-inner {
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 450px;
}
/* line 25, ../../src/sass/video.scss */
.video-wrapper .video-bg + h4 {
  font-size: 22px;
  font-weight: 500;
}
/* line 32, ../../src/sass/video.scss */
.video-wrapper .video-title {
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 2px;
  color: #BA000A;
  font-weight: 300;
}

/* line 42, ../../src/sass/video.scss */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-block: 12%;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4);
}
/* line 56, ../../src/sass/video.scss */
.modal .modal-content {
  margin: auto;
  width: 80%;
  position: relative;
}
/* line 61, ../../src/sass/video.scss */
.modal .modal-content .close {
  color: #000;
  float: right;
  font-size: 28px;
  position: absolute;
  top: -46px;
  right: 0;
}
/* line 69, ../../src/sass/video.scss */
.modal .modal-content .close:hover, .modal .modal-content .close:focus {
  color: #393838;
  text-decoration: none;
  cursor: pointer;
}

/* line 79, ../../src/sass/video.scss */
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

/* line 79, ../../src/sass/video.scss */
.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 1024px) {
  /* line 86, ../../src/sass/video.scss */
  .video-wrapper .video-bg {
    min-height: 300px;
  }
  /* line 89, ../../src/sass/video.scss */
  .video-wrapper .video-bg .video-inner {
    min-height: 300px;
  }
}
/* line 1, ../../src/sass/content-repeater.scss */
.content-heading {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -webkit-calc(1em * 0.001 * 75);
  letter-spacing: -moz-calc(1em * 0.001 * 75);
  letter-spacing: calc(1em * 0.001 * 75);
  padding-block: 30px;
}

/* line 9, ../../src/sass/content-repeater.scss */
.content-container {
  padding-bottom: 40px;
}
/* line 12, ../../src/sass/content-repeater.scss */
.content-container .content-wrapper {
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 2em;
}
/* line 18, ../../src/sass/content-repeater.scss */
.content-container .content-wrapper .content-single * {
  font-family: gill-sans-nova, sans-serif;
  color: #041424;
}
/* line 24, ../../src/sass/content-repeater.scss */
.content-container .content-wrapper .content-single .update-block h4 {
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  padding-bottom: 10px;
  padding-top: 7px;
}
/* line 32, ../../src/sass/content-repeater.scss */
.content-container .content-wrapper .content-single .update-block h5 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}
/* line 39, ../../src/sass/content-repeater.scss */
.content-container .content-wrapper .content-single .update-block h5 + img {
  -webkit-transition-duration: 0.5s;
     -moz-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
/* line 46, ../../src/sass/content-repeater.scss */
.content-container .content-wrapper .content-single a {
  text-decoration: none;
}
/* line 50, ../../src/sass/content-repeater.scss */
.content-container .content-wrapper .content-single a:hover h5, .content-container .content-wrapper .content-single a:hover h4 {
  text-decoration: underline;
  color: #9F6B20;
}
/* line 60, ../../src/sass/content-repeater.scss */
.content-container .content-wrapper .content-single a:hover h5 + img {
  -webkit-transform: translateX(10px);
     -moz-transform: translateX(10px);
      -ms-transform: translateX(10px);
       -o-transform: translateX(10px);
          transform: translateX(10px);
}

@media only screen and (min-width: 1024px) {
  /* line 77, ../../src/sass/content-repeater.scss */
  .content-container .content-wrapper {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 6em;
  }
}
/* line 1, ../../src/sass/image.scss */
.image-single-wrapper {
  margin-inline: auto;
  text-align: center;
  margin-block: 30px;
}
/* line 6, ../../src/sass/image.scss */
.image-single-wrapper img {
  width: 100%;
}

/* line 1, ../../src/sass/button.scss */
.button-wrapper {
  text-align: center;
  margin-block: 20px;
}
/* line 5, ../../src/sass/button.scss */
.button-wrapper .button-single {
  font-family: gill-sans-nova, sans-serif;
  border: 1px solid #9F6B20;
  padding: 13px 22px;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: 0.5s;
     -moz-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;
}
/* line 15, ../../src/sass/button.scss */
.button-wrapper .button-single span {
  -webkit-transition: 0.5s;
     -moz-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;
  padding-left: 7px;
  position: relative;
  top: 3px;
  color: #9F6B20;
}
/* line 23, ../../src/sass/button.scss */
.button-wrapper .button-single:hover {
  background-color: #BA000A;
  color: #FFF !important;
  border: 1px solid #BA000A;
}
/* line 28, ../../src/sass/button.scss */
.button-wrapper .button-single:hover span {
  color: #FFF !important;
}

/* line 1, ../../src/sass/header.scss */
.page-scroll {
  overflow: hidden;
}

/* line 6, ../../src/sass/header.scss */
header {
  z-index: 99;
  position: relative;
}
/* line 10, ../../src/sass/header.scss */
header .header-wrapper {
  grid-template-columns: repeat(3, auto);
  grid-gap: 1em;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-top: 30px;
  margin-bottom: 60px;
}
@media only screen and (min-width: 1024px) {
  /* line 10, ../../src/sass/header.scss */
  header .header-wrapper {
    padding-top: 60px;
  }
}
/* line 28, ../../src/sass/header.scss */
header .header-wrapper .oxford-uni-logo img {
  width: 100%;
  height: 100%;
  min-width: 20px;
}
/* line 44, ../../src/sass/header.scss */
header .header-wrapper .wolfson-college-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
     -moz-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
/* line 50, ../../src/sass/header.scss */
header .header-wrapper .wolfson-college-logo a img {
  width: 100%;
  height: 100%;
}
/* line 70, ../../src/sass/header.scss */
header .header-wrapper .wolfson-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-left: auto;
}
/* line 76, ../../src/sass/header.scss */
header .header-wrapper .wolfson-menu a span {
  color: #BA000A;
  position: relative;
  top: 1px;
  padding-left: 3px;
}
/* line 84, ../../src/sass/header.scss */
header .header-wrapper .wolfson-menu .menu {
  -webkit-transition-duration: 0.5s;
     -moz-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transform: translateX(0px);
     -moz-transform: translateX(0px);
      -ms-transform: translateX(0px);
       -o-transform: translateX(0px);
          transform: translateX(0px);
}
/* line 91, ../../src/sass/header.scss */
header .header-wrapper .wolfson-menu > a:first-child {
  font-size: 16px;
  margin: 0;
  border: 1px solid #9F6B20;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 7px 23px;
  cursor: pointer;
  text-decoration: none;
  font-family: gill-sans-nova, sans-serif;
  color: #000;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
  -webkit-transition-duration: 0.5s;
     -moz-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
  min-width: 112px;
}
/* line 108, ../../src/sass/header.scss */
header .header-wrapper .wolfson-menu > a span {
  -webkit-transition: 0.5s;
     -moz-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;
  padding-left: 7px;
  position: relative;
  top: 1px;
  color: #BA000A;
}
/* line 116, ../../src/sass/header.scss */
header .header-wrapper .wolfson-menu > a:hover {
  background-color: #BA000A;
  color: #FFF !important;
}
/* line 120, ../../src/sass/header.scss */
header .header-wrapper .wolfson-menu > a:hover span {
  color: #FFF !important;
}
/* line 127, ../../src/sass/header.scss */
header .header-wrapper .wolfson-menu .about-menu-active {
  -webkit-transition-duration: 0.5s;
     -moz-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
  background-color: #BA000A !important;
  color: #FFF !important;
  border: 1px solid #BA000A !important;
}
/* line 134, ../../src/sass/header.scss */
header .header-wrapper .wolfson-menu .about-menu-active span {
  color: #FFF;
}
/* line 141, ../../src/sass/header.scss */
header .about-menu-wrapper {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #FFF;
  height: auto;
  min-height: 100vh;
  width: 0;
  padding-bottom: 30px;
  -webkit-box-shadow: -4px 4px 14px 0px rgba(0, 0, 0, 0.15);
     -moz-box-shadow: -4px 4px 14px 0px rgba(0, 0, 0, 0.15);
          box-shadow: -4px 4px 14px 0px rgba(0, 0, 0, 0.15);
}
/* line 154, ../../src/sass/header.scss */
header .about-menu-wrapper .menu-inner-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
/* line 159, ../../src/sass/header.scss */
header .about-menu-wrapper h4 {
  margin: 0;
  color: #BA000A;
  font-weight: 300;
  font-family: "Albertus Nova W01 Thin";
  font-size: 18px;
  font-weight: 100;
  padding-bottom: 6px;
}
/* line 169, ../../src/sass/header.scss */
header .about-menu-wrapper .menu-about-menu-container {
  display: none;
}
/* line 172, ../../src/sass/header.scss */
header .about-menu-wrapper .menu-about-menu-container ul {
  margin: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
/* line 176, ../../src/sass/header.scss */
header .about-menu-wrapper .menu-about-menu-container ul li {
  list-style-type: none;
  line-height: 24px;
}
/* line 180, ../../src/sass/header.scss */
header .about-menu-wrapper .menu-about-menu-container ul li a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  font-family: gill-sans-nova, sans-serif;
}
/* line 187, ../../src/sass/header.scss */
header .about-menu-wrapper .menu-about-menu-container ul li a:hover {
  text-decoration: underline;
}
/* line 195, ../../src/sass/header.scss */
header .about-menu-wrapper .about-inner-wrapper {
  padding-top: 60px;
  padding-inline: 45px;
  position: relative;
}
/* line 201, ../../src/sass/header.scss */
header .about-menu-wrapper .about-inner-wrapper h4 {
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
/* line 206, ../../src/sass/header.scss */
header .about-menu-wrapper .about-inner-wrapper h4.about-menu-active img {
  -webkit-transform: rotate(90deg) translateY(5px) translateX(10px);
     -moz-transform: rotate(90deg) translateY(5px) translateX(10px);
      -ms-transform: rotate(90deg) translateY(5px) translateX(10px);
       -o-transform: rotate(90deg) translateY(5px) translateX(10px);
          transform: rotate(90deg) translateY(5px) translateX(10px);
}
/* line 211, ../../src/sass/header.scss */
header .about-menu-wrapper .about-inner-wrapper h4 img {
  -webkit-transform: translateY(5px);
     -moz-transform: translateY(5px);
      -ms-transform: translateY(5px);
       -o-transform: translateY(5px);
          transform: translateY(5px);
  margin-left: 3px;
  -webkit-transition-duration: .5s;
     -moz-transition-duration: .5s;
       -o-transition-duration: .5s;
          transition-duration: .5s;
}
/* line 221, ../../src/sass/header.scss */
header .second-menu-wrapper {
  padding-top: 40px;
}
/* line 224, ../../src/sass/header.scss */
header .second-menu-wrapper ul {
  list-style-type: none;
  margin: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
/* line 229, ../../src/sass/header.scss */
header .second-menu-wrapper ul li {
  -webkit-transition-duration: .5s;
     -moz-transition-duration: .5s;
       -o-transition-duration: .5s;
          transition-duration: .5s;
}
/* line 255, ../../src/sass/header.scss */
header .second-menu-wrapper ul li .sub-menu {
  margin-left: 0px;
  margin-top: 5px;
  list-style-type: none;
  display: none;
}
/* line 261, ../../src/sass/header.scss */
header .second-menu-wrapper ul li .sub-menu:after {
  content: "";
}
/* line 266, ../../src/sass/header.scss */
header .second-menu-wrapper ul li .sub-menu li:after {
  content: "";
}
/* line 269, ../../src/sass/header.scss */
header .second-menu-wrapper ul li .sub-menu li a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  font-family: gill-sans-nova, sans-serif;
}
/* line 278, ../../src/sass/header.scss */
header .second-menu-wrapper ul li .sub-menu li a:after {
  content: "";
}
/* line 282, ../../src/sass/header.scss */
header .second-menu-wrapper ul li .sub-menu li a:hover {
  text-decoration: underline;
  color: #BA000A;
}
/* line 291, ../../src/sass/header.scss */
header .second-menu-wrapper ul li.menu-button {
  margin-top: 20px;
}
/* line 294, ../../src/sass/header.scss */
header .second-menu-wrapper ul li.menu-button a {
  border: 1px solid #9F6B20;
  padding: 10px 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-family: gill-sans-nova, sans-serif;
  color: #000;
  font-weight: 500;
}
/* line 303, ../../src/sass/header.scss */
header .second-menu-wrapper ul li.menu-button a:after {
  color: #9F6B20;
}
/* line 311, ../../src/sass/header.scss */
header .second-menu-wrapper ul li a {
  text-decoration: none;
  font-size: 18px;
  font-family: "Albertus Nova W01 Thin";
  font-weight: 100;
  color: #041424;
  cursor: pointer;
}
/* line 320, ../../src/sass/header.scss */
header .second-menu-wrapper ul li a.menu-active-link {
  color: #BA000A;
}
/* line 323, ../../src/sass/header.scss */
header .second-menu-wrapper ul li a.menu-active-link:after {
  -webkit-transform: rotate(90deg) translateX(-3px) !important;
     -moz-transform: rotate(90deg) translateX(-3px) !important;
      -ms-transform: rotate(90deg) translateX(-3px) !important;
       -o-transform: rotate(90deg) translateX(-3px) !important;
          transform: rotate(90deg) translateX(-3px) !important;
}
/* line 329, ../../src/sass/header.scss */
header .second-menu-wrapper ul li a:hover {
  text-decoration: underline;
}
/* line 334, ../../src/sass/header.scss */
header .second-menu-wrapper ul li:not(:last-of-type) {
  padding-bottom: 7px;
}

/* line 346, ../../src/sass/header.scss */
.home-page nav {
  position: absolute;
  width: 100%;
}

/* line 357, ../../src/sass/header.scss */
.home header .header-wrapper .wolfson-menu a span {
  color: #9F6B20;
}

@media only screen and (min-width: 1024px) {
  /* line 400, ../../src/sass/header.scss */
  header .about-menu-wrapper .menu-inner-container {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  /* line 406, ../../src/sass/header.scss */
  header .header-wrapper {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  /* line 412, ../../src/sass/header.scss */
  header .header-wrapper .oxford-uni-logo img {
    width: unset;
    max-height: unset;
  }
  /* line 420, ../../src/sass/header.scss */
  header .header-wrapper .wolfson-college-logo a img {
    width: 176px;
    max-height: unset;
  }
  /* line 428, ../../src/sass/header.scss */
  header .header-wrapper .wolfson-college-logo {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  /* line 432, ../../src/sass/header.scss */
  header .header-wrapper .about-inner-wrapper {
    left: 60vw;
    padding-inline: 0;
  }
}
/* line 444, ../../src/sass/header.scss */
.second-menu-wrapper ul li.menu-item-has-children a:after {
  content: "→";
  padding-left: 7px;
  text-decoration: none;
  display: inline-block;
}

/* line 453, ../../src/sass/header.scss */
.current-button {
  font-size: 16px;
  margin: 0;
  border: 1px solid #9F6B20;
  height: 42px;
  padding: 8px 16px;
  cursor: pointer;
  text-decoration: none;
  font-family: gill-sans-nova, sans-serif;
  color: #000;
  font-weight: 500;
  background: white;
  z-index: 1;
  -webkit-transition-duration: 0.5s;
     -moz-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
/* line 470, ../../src/sass/header.scss */
.current-button a {
  color: #000;
}
/* line 473, ../../src/sass/header.scss */
.current-button a:after {
  content: "→";
  padding-left: 7px;
  text-decoration: none;
  display: inline-block;
}
/* line 489, ../../src/sass/header.scss */
.current-button:hover {
  background-color: #BA000A;
  border: 1px solid #BA000A;
}
/* line 494, ../../src/sass/header.scss */
.current-button:hover a {
  color: #FFF;
}

/* line 1, ../../src/sass/hero.scss */
.home-hero {
  height: max(70vh, 614px);
  background-repeat: no-repeat;
  -webkit-background-size: cover;
     -moz-background-size: cover;
          background-size: cover;
  z-index: 1;
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-position: 90%;
}
@media only screen and (min-width: 1024px) {
  /* line 1, ../../src/sass/hero.scss */
  .home-hero {
    height: max(100vh, 700px);
  }
}
/* line 17, ../../src/sass/hero.scss */
.home-hero .hero-parent {
  margin-top: auto;
  background: -webkit-gradient(linear, left top, right top, color-stop(100%, rgba(255, 255, 255, 0.7)), color-stop(50%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.7) 100%, rgba(255, 255, 255, 0) 50%);
  background: -moz- oldlinear-gradient(left, rgba(255, 255, 255, 0.7) 100%, rgba(255, 255, 255, 0) 50%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0.7) 100%, rgba(255, 255, 255, 0) 50%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0.7) 100%, rgba(255, 255, 255, 0) 50%);
  width: -webkit-calc(100% - 24px);
  width: -moz-calc(100% - 24px);
  width: calc(100% - 24px);
}
@media only screen and (min-width: 1024px) {
  /* line 17, ../../src/sass/hero.scss */
  .home-hero .hero-parent {
    width: 80%;
  }
}
/* line 28, ../../src/sass/hero.scss */
.home-hero .hero-parent .hero-text h1 {
  width: 100%;
  margin: 0;
  font-size: 25px;
  padding-block: 35px;
  text-transform: uppercase;
  font-family: "Albertus Nova W01 Bold";
  line-height: 36px;
  letter-spacing: -webkit-calc(1em * 0.001 * 50);
  letter-spacing: -moz-calc(1em * 0.001 * 50);
  letter-spacing: calc(1em * 0.001 * 50);
}

@media only screen and (min-width: 1024px) {
  /* line 46, ../../src/sass/hero.scss */
  .home-hero {
    background-position: unset;
  }
  /* line 48, ../../src/sass/hero.scss */
  .home-hero .hero-parent {
    width: 100%;
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(255, 255, 255, 0.7)), color-stop(50%, rgba(255, 255, 255, 0)));
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 50%);
    background: -moz- oldlinear-gradient(left, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 50%);
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 50%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 50%);
  }
  /* line 54, ../../src/sass/hero.scss */
  .home-hero .hero-parent .hero-text h1 {
    font-size: 38px;
    line-height: 51px;
    width: 40%;
  }
}
/* line 1, ../../src/sass/posts.scss */
.posts-wrapper {
  border: 1px solid #9F6B20;
  padding: 35px 45px;
  display: grid;
  grid-template-columns: 100%;
}
/* line 8, ../../src/sass/posts.scss */
.posts-wrapper .posts-title h1 {
  font-family: "Albertus Nova W01 Bold";
  font-weight: bold;
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  padding-bottom: 20px;
}
/* line 20, ../../src/sass/posts.scss */
.posts-wrapper .posts-sub-title p {
  margin: 0;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
  word-wrap: break-word;
  font-size: 20px;
}

/* line 30, ../../src/sass/posts.scss */
.upcoming-text {
  font-family: gill-sans-nova, sans-serif;
  font-size: 24px;
  color: #9F6B20;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: -webkit-calc(1em * 0.001 * 75);
  letter-spacing: -moz-calc(1em * 0.001 * 75);
  letter-spacing: calc(1em * 0.001 * 75);
  margin: 0;
  padding-block: 45px;
}

/* line 42, ../../src/sass/posts.scss */
.single-news-post-content h1 {
  margin-bottom: 5px !important;
  padding-bottom: 0 !important;
}
/* line 48, ../../src/sass/posts.scss */
.single-news-post-content .single-post-content h1, .single-news-post-content .single-post-content h2, .single-news-post-content .single-post-content h3, .single-news-post-content .single-post-content h4, .single-news-post-content .single-post-content h5, .single-news-post-content .single-post-content h6 {
  font-size: 22px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
  line-height: 30px;
  color: #000;
}
/* line 57, ../../src/sass/posts.scss */
.single-news-post-content .single-post-content h2 {
  margin-top: 0;
}
/* line 61, ../../src/sass/posts.scss */
.single-news-post-content .single-post-content * {
  font-weight: 500;
  font-family: gill-sans-nova, sans-serif;
  font-size: 16px;
}
/* line 70, ../../src/sass/posts.scss */
.single-news-post-content .single-post-content p, .single-news-post-content .single-post-content span {
  font-size: 16px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
  line-height: 25px;
  color: #000;
}
/* line 78, ../../src/sass/posts.scss */
.single-news-post-content .single-post-content ul {
  margin-left: 0px;
  list-style-type: none;
}
/* line 82, ../../src/sass/posts.scss */
.single-news-post-content .single-post-content ul li {
  font-family: gill-sans-nova, sans-serif;
  display: grid;
  grid-template-columns: 4% auto;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
     -moz-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
/* line 89, ../../src/sass/posts.scss */
.single-news-post-content .single-post-content ul li:before {
  width: 18px;
  content: "";
  height: 9px;
  background-image: url("/wp-content/themes/Wolfson/src/Assets/list-bullet.png");
  display: inline-block;
  background-repeat: no-repeat;
  padding-right: 10px;
}
/* line 99, ../../src/sass/posts.scss */
.single-news-post-content .single-post-content ul li:not(:last-of-type) {
  padding-bottom: 10px;
}

@media only screen and (min-width: 1024px) {
  /* line 110, ../../src/sass/posts.scss */
  .posts-wrapper {
    grid-template-columns: 50% 50%;
  }
  /* line 113, ../../src/sass/posts.scss */
  .posts-wrapper .posts-title {
    padding-bottom: 0;
  }
  /* line 116, ../../src/sass/posts.scss */
  .posts-wrapper .posts-title h1 {
    font-size: 41px;
  }
  /* line 122, ../../src/sass/posts.scss */
  .posts-wrapper .posts-sub-title h3 {
    font-size: 22px;
  }
}
/* line 3, ../../src/sass/events.scss */
.events-wrapper-grid {
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 2em;
  padding-bottom: 60px;
}
/* line 12, ../../src/sass/events.scss */
.events-wrapper-grid a h2 + img {
  -webkit-transition-duration: 0.5s;
     -moz-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
/* line 19, ../../src/sass/events.scss */
.events-wrapper-grid a:hover h2 {
  color: #9F6B20;
}
/* line 22, ../../src/sass/events.scss */
.events-wrapper-grid a:hover h2 + img {
  -webkit-transform: translateX(10px);
     -moz-transform: translateX(10px);
      -ms-transform: translateX(10px);
       -o-transform: translateX(10px);
          transform: translateX(10px);
}
/* line 28, ../../src/sass/events.scss */
.events-wrapper-grid a:hover h5,
.events-wrapper-grid a:hover .event-date {
  color: #9F6B20;
}
/* line 35, ../../src/sass/events.scss */
.events-wrapper-grid .event-single-wrapper {
  text-decoration: none;
  border-bottom: 1px solid #CA8C32;
  padding-bottom: 15px;
}
/* line 41, ../../src/sass/events.scss */
.events-wrapper-grid .event-single-wrapper img {
  width: 100%;
}
/* line 43, ../../src/sass/events.scss */
.events-wrapper-grid .event-single-wrapper img:last-of-type {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
/* line 51, ../../src/sass/events.scss */
.events-wrapper-grid .event-single-wrapper .event-arrow {
  color: #CA8C32;
}
/* line 56, ../../src/sass/events.scss */
.events-wrapper-grid .event-single-wrapper:hover h3 {
  text-decoration: underline;
  color: #9F6B20;
}
/* line 62, ../../src/sass/events.scss */
.events-wrapper-grid .event-single-wrapper h3 {
  margin: 0;
  color: #000;
  font-family: gill-sans-nova, sans-serif;
  font-size: 22px;
  font-weight: 500;
  padding-bottom: 10px;
  letter-spacing: 0;
}
/* line 72, ../../src/sass/events.scss */
.events-wrapper-grid .event-single-wrapper .event-date {
  font-family: gill-sans-nova, sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  margin: 0;
  padding-bottom: 10px;
  text-transform: uppercase;
  padding-top: 15px;
}
/* line 82, ../../src/sass/events.scss */
.events-wrapper-grid .event-single-wrapper .event-date span {
  font-weight: bold;
}

/* line 93, ../../src/sass/events.scss */
.events-single-post .button-wrapper {
  text-align: left;
  padding-bottom: 30px;
}
/* line 97, ../../src/sass/events.scss */
.events-single-post .button-wrapper span {
  color: #BA000A;
  padding-left: 0;
  padding-right: 7px;
}
/* line 104, ../../src/sass/events.scss */
.events-single-post h1 {
  font-size: 24px;
  text-transform: uppercase;
  color: #BA0C11;
  font-weight: 300;
  letter-spacing: -webkit-calc(1em * 0.001 * 75);
  letter-spacing: -moz-calc(1em * 0.001 * 75);
  letter-spacing: calc(1em * 0.001 * 75);
  line-height: 35px;
  margin-block: 0;
  font-family: gill-sans-nova, sans-serif;
}
/* line 130, ../../src/sass/events.scss */
.events-single-post .single-event-text-heading h5:not(.event-sub) {
  font-size: 16px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
  margin: 0;
}
/* line 138, ../../src/sass/events.scss */
.events-single-post .single-event-text-heading .event-sub {
  font-size: 22px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
  margin: 0;
}
/* line 144, ../../src/sass/events.scss */
.events-single-post .single-event-text-heading .event-sub:not(:last-of-type) {
  padding-bottom: 10px;
}
/* line 149, ../../src/sass/events.scss */
.events-single-post .single-event-text-heading .calendar-book {
  padding-top: 45px;
}
/* line 155, ../../src/sass/events.scss */
.events-single-post .single-event-text-heading .calendar-book > a {
  text-decoration: none;
  font-family: gill-sans-nova, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-right: 40px;
}
/* line 163, ../../src/sass/events.scss */
.events-single-post .single-event-text-heading .calendar-book > a:hover {
  text-decoration: underline;
}
/* line 167, ../../src/sass/events.scss */
.events-single-post .single-event-text-heading .calendar-book > a span {
  padding-left: 7px;
  position: relative;
  top: 1px;
  color: #BA000A;
}
/* line 177, ../../src/sass/events.scss */
.events-single-post .single-event-text-heading .calendar-book .button-wrapper .button-single {
  padding: 7px 9px 7px 20px;
}
/* line 179, ../../src/sass/events.scss */
.events-single-post .single-event-text-heading .calendar-book .button-wrapper .button-single span {
  padding-left: 18px;
}

/* line 190, ../../src/sass/events.scss */
.related-events-heading {
  padding-top: 60px;
  color: #9F6B20;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: -webkit-calc(1em * 0.001 * 75);
  letter-spacing: -moz-calc(1em * 0.001 * 75);
  letter-spacing: calc(1em * 0.001 * 75);
  font-weight: 400;
  padding-bottom: 20px;
}

/* line 200, ../../src/sass/events.scss */
.related-events-wrapper {
  padding-bottom: 40px;
}
/* line 202, ../../src/sass/events.scss */
.related-events-wrapper .related-events-grid {
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 20px;
}
/* line 207, ../../src/sass/events.scss */
.related-events-wrapper .related-events-grid .related-event-single {
  text-decoration: none;
  color: #041424;
}
/* line 212, ../../src/sass/events.scss */
.related-events-wrapper .related-events-grid .related-event-single:hover h3 {
  text-decoration: underline;
}
/* line 216, ../../src/sass/events.scss */
.related-events-wrapper .related-events-grid .related-event-single:hover .related-event-arrow {
  -webkit-transform: translateX(10px);
     -moz-transform: translateX(10px);
      -ms-transform: translateX(10px);
       -o-transform: translateX(10px);
          transform: translateX(10px);
}
/* line 220, ../../src/sass/events.scss */
.related-events-wrapper .related-events-grid .related-event-single:hover * {
  color: #9F6B20;
}
/* line 226, ../../src/sass/events.scss */
.related-events-wrapper .related-events-grid .related-event-single img:not(.related-event-arrow) {
  width: 100%;
  max-width: 75%;
}
/* line 232, ../../src/sass/events.scss */
.related-events-wrapper .related-events-grid .related-event-single .related-event-arrow {
  -webkit-transition-duration: 0.5s;
     -moz-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
/* line 236, ../../src/sass/events.scss */
.related-events-wrapper .related-events-grid .related-event-single h4 {
  font-family: gill-sans-nova, sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}
/* line 243, ../../src/sass/events.scss */
.related-events-wrapper .related-events-grid .related-event-single h4 span {
  font-weight: 500;
}
/* line 248, ../../src/sass/events.scss */
.related-events-wrapper .related-events-grid .related-event-single h4 + h3 {
  font-family: gill-sans-nova, sans-serif;
  font-size: 22px;
  font-weight: 500;
  margin-top: 5px;
}

@media only screen and (min-width: 1024px) {
  /* line 264, ../../src/sass/events.scss */
  .related-events-wrapper .related-events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  /* line 268, ../../src/sass/events.scss */
  .related-events-wrapper .related-events-grid img:not(.related-event-arrow) {
    display: none;
  }

  /* line 277, ../../src/sass/events.scss */
  .events-wrapper-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 6em;
  }
  /* line 286, ../../src/sass/events.scss */
  .events-wrapper-grid .event-single-wrapper:hover img:last-of-type {
    -webkit-transform: translateX(10px);
       -moz-transform: translateX(10px);
        -ms-transform: translateX(10px);
         -o-transform: translateX(10px);
            transform: translateX(10px);
  }
  /* line 292, ../../src/sass/events.scss */
  .events-wrapper-grid .event-single-wrapper img {
    -webkit-transition-duration: .5s;
       -moz-transition-duration: .5s;
         -o-transition-duration: .5s;
            transition-duration: .5s;
  }
  /* line 296, ../../src/sass/events.scss */
  .events-wrapper-grid .event-single-wrapper img:last-of-type {
    display: block;
    width: auto;
  }
  /* line 304, ../../src/sass/events.scss */
  .events-wrapper-grid .event-single-wrapper .event-date {
    padding-top: 0;
  }
  /* line 308, ../../src/sass/events.scss */
  .events-wrapper-grid .event-single-wrapper .event-date span {
    font-weight: 500;
  }
}
/* line 318, ../../src/sass/events.scss */
.event-image {
  width: 100%;
}

/* line 323, ../../src/sass/events.scss */
.upcoming-events-heading-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 45px;
}
/* line 328, ../../src/sass/events.scss */
.upcoming-events-heading-wrapper h2 {
  padding-block: 0;
  padding-bottom: 30px;
}
/* line 333, ../../src/sass/events.scss */
.upcoming-events-heading-wrapper a {
  text-decoration: none;
  color: #041424;
  text-transform: uppercase;
}
/* line 338, ../../src/sass/events.scss */
.upcoming-events-heading-wrapper a:hover {
  color: #9F6B20;
}
/* line 342, ../../src/sass/events.scss */
.upcoming-events-heading-wrapper a:hover img {
  -webkit-transform: translate(10px, 4px);
     -moz-transform: translate(10px, 4px);
      -ms-transform: translate(10px, 4px);
       -o-transform: translate(10px, 4px);
          transform: translate(10px, 4px);
}
/* line 347, ../../src/sass/events.scss */
.upcoming-events-heading-wrapper a img {
  -webkit-transform: translateY(4px);
     -moz-transform: translateY(4px);
      -ms-transform: translateY(4px);
       -o-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-transition-duration: 0.5s;
     -moz-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
/* line 353, ../../src/sass/events.scss */
.upcoming-events-heading-wrapper a:hover {
  text-decoration: underline;
}

/* line 2, ../../src/sass/person.scss */
.person-single-post .button-wrapper {
  text-align: left;
  margin-bottom: 35px;
}
/* line 7, ../../src/sass/person.scss */
.person-single-post .button-wrapper a span {
  padding-left: 0;
  padding-right: 7px;
  color: #BA000A;
}
/* line 15, ../../src/sass/person.scss */
.person-single-post .single-person-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
/* line 19, ../../src/sass/person.scss */
.person-single-post .single-person-details .single-inner-details {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
/* line 22, ../../src/sass/person.scss */
.person-single-post .single-person-details .single-inner-details h2 {
  color: #333;
}
/* line 26, ../../src/sass/person.scss */
.person-single-post .single-person-details .single-inner-details .social-media-person-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-block: 30px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
/* line 32, ../../src/sass/person.scss */
.person-single-post .single-person-details .single-inner-details .social-media-person-wrapper a {
  text-decoration: none;
  width: 35px;
  height: 35px;
  background-color: #BA000A;
  padding: 8px;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  -webkit-transition: 0.5s;
     -moz-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;
}
/* line 41, ../../src/sass/person.scss */
.person-single-post .single-person-details .single-inner-details .social-media-person-wrapper a:not(:last-of-type) {
  margin-right: 10px;
}
/* line 47, ../../src/sass/person.scss */
.person-single-post .single-person-details .single-inner-details .social-media-person-wrapper a img {
  width: 100%;
  height: 100%;
}
/* line 52, ../../src/sass/person.scss */
.person-single-post .single-person-details .single-inner-details .social-media-person-wrapper a:hover {
  background-color: #000;
}
/* line 60, ../../src/sass/person.scss */
.person-single-post .single-person-details .single-inner-details h1 {
  color: #BA0C11;
  font-size: 24px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  padding-bottom: 10px;
}
/* line 73, ../../src/sass/person.scss */
.person-single-post .single-person-details .single-inner-details h2 {
  font-size: 22px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
  margin: 0;
  margin-bottom: 4px;
}
/* line 89, ../../src/sass/person.scss */
.person-single-post .single-person-details .single-inner-details h5 {
  margin: 0;
  font-size: 22px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
}
/* line 91, ../../src/sass/person.scss */
.person-single-post .single-person-details .single-inner-details h5:not(.person-sub-text) {
  font-size: 16px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
  padding-top: 20px;
}
/* line 104, ../../src/sass/person.scss */
.person-single-post .single-person-details .single-inner-details .person-sub-text:not(:last-of-type) {
  padding-bottom: 25px;
}
/* line 107, ../../src/sass/person.scss */
.person-single-post .single-person-details .single-inner-details .person-sub-text a {
  text-decoration: none;
  color: #000;
}
/* line 112, ../../src/sass/person.scss */
.person-single-post .single-person-details .single-inner-details .person-sub-text a:hover {
  text-decoration: underline;
}
/* line 122, ../../src/sass/person.scss */
.person-single-post .single-person-image {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
     -moz-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  padding-bottom: 20px;
}
/* line 126, ../../src/sass/person.scss */
.person-single-post .single-person-image img {
  width: 100%;
  width: 186px;
  height: 186px;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* line 137, ../../src/sass/person.scss */
.facetwp-search {
  background: url("/wp-content/themes/Wolfson/src/Assets/search.svg") no-repeat;
  background-position: center right 10px;
  -webkit-background-size: 8% 8%;
     -moz-background-size: 8%;
          background-size: 8%;
}

/* line 144, ../../src/sass/person.scss */
.fs-wrap .fs-label-wrap {
  border: 1px solid #9F6B20;
}
/* line 145, ../../src/sass/person.scss */
.fs-wrap .fs-label-wrap .fs-label {
  padding: 12px 22px 12px 8px !important;
  font-size: 16px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
  background: url("/wp-content/themes/Wolfson/src/Assets/arrow-down.svg") no-repeat;
  background-position: center right 10px;
  -webkit-background-size: 4% 4%;
     -moz-background-size: 4%;
          background-size: 4%;
}
/* line 156, ../../src/sass/person.scss */
.fs-wrap .fs-label-wrap .fs-arrow {
  display: none;
}
/* line 163, ../../src/sass/person.scss */
.fs-wrap.fs-open .fs-label-wrap .fs-label {
  background: url("/wp-content/themes/Wolfson/src/Assets/arrow-up.svg") no-repeat;
  background-position: center right 10px;
  -webkit-background-size: 4% 4%;
     -moz-background-size: 4%;
          background-size: 4%;
}

/* line 173, ../../src/sass/person.scss */
.facetwp-facet {
  margin-bottom: 0 !important;
}
/* line 177, ../../src/sass/person.scss */
.facetwp-facet .fs-options .fs-option {
  background-color: #fef6e6;
}

/* line 184, ../../src/sass/person.scss */
.bpa-front-module--service-item .bpa-front-si-card {
  -webkit-border-radius: 0 !important;
     -moz-border-radius: 0 !important;
          border-radius: 0 !important;
}

/* line 190, ../../src/sass/person.scss */
.facetwp-icon {
  display: none !important;
}

/* line 194, ../../src/sass/person.scss */
textarea:focus, input:focus {
  outline: none;
}

/* line 198, ../../src/sass/person.scss */
.facet-flyout {
  text-align: left;
}
/* line 201, ../../src/sass/person.scss */
.facet-flyout .button-single {
  padding: 13px 30px;
  cursor: pointer;
  background-color: #FFF;
}

/* line 208, ../../src/sass/person.scss */
.fs-wrap,
.facetwp-search,
.facetwp-input-wrap {
  width: 100% !important;
}

/* line 215, ../../src/sass/person.scss */
.facetwp-facet-reset .facetwp-reset {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  font-family: gill-sans-nova, sans-serif;
  font-size: 22px;
  color: #000;
  font-weight: 500;
}

/* line 231, ../../src/sass/person.scss */
.facetwp-flyout-content h3 {
  font-family: "gill-sans-nova";
  font-size: 22px;
  color: #000;
  font-weight: 500;
}

/* line 239, ../../src/sass/person.scss */
.name-reset {
  padding-top: 15px;
}
/* line 241, ../../src/sass/person.scss */
.name-reset h3 {
  display: none;
}

/* line 246, ../../src/sass/person.scss */
.facetwp-search {
  padding-block: 10.25px;
  border: 1px solid #9F6B20;
  padding-left: 10px;
  color: #000;
}
/* line 252, ../../src/sass/person.scss */
.facetwp-search::-webkit-input-placeholder {
  font-size: 16px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
}
.facetwp-search::-moz-placeholder {
  font-size: 16px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
}
.facetwp-search:-ms-input-placeholder {
  font-size: 16px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
}
.facetwp-search::placeholder {
  font-size: 16px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
}

/* line 260, ../../src/sass/person.scss */
.person-facet-wrapper {
  display: grid;
  grid-template-columns: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-block: 65px 10px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: none;
}
/* line 270, ../../src/sass/person.scss */
.person-facet-wrapper > div:first-child {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
/* line 274, ../../src/sass/person.scss */
.person-facet-wrapper > div:first-child span:not(.facetwp-input-wrap) {
  font-family: gill-sans-nova, sans-serif;
  font-size: 22px;
  color: #000;
  font-weight: 500;
  padding-right: 20px;
  display: none;
}
/* line 285, ../../src/sass/person.scss */
.person-facet-wrapper > div input {
  padding-block: 10.25px;
  border: 1px solid #9F6B20;
  padding-left: 12px;
  color: #000;
  padding: 13px 22px 12px 8px !important;
}
/* line 292, ../../src/sass/person.scss */
.person-facet-wrapper > div input::-webkit-input-placeholder {
  font-size: 16px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
}
.person-facet-wrapper > div input::-moz-placeholder {
  font-size: 16px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
}
.person-facet-wrapper > div input:-ms-input-placeholder {
  font-size: 16px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
}
.person-facet-wrapper > div input::placeholder {
  font-size: 16px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
}

/* line 302, ../../src/sass/person.scss */
.single-person-content {
  padding-bottom: 25px;
}
/* line 304, ../../src/sass/person.scss */
.single-person-content h4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
/* line 308, ../../src/sass/person.scss */
.single-person-content h4 .archive-person-arrow {
  width: 25px !important;
  padding-left: 7.5px;
}
/* line 314, ../../src/sass/person.scss */
.single-person-content ul {
  margin-left: 0;
}
/* line 316, ../../src/sass/person.scss */
.single-person-content ul li {
  list-style-type: none;
  display: grid;
  grid-template-columns: 4% auto;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
     -moz-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
/* line 322, ../../src/sass/person.scss */
.single-person-content ul li::before {
  width: 18px;
  content: "";
  height: 9px;
  background-image: url(/wp-content/themes/Wolfson/src/Assets/list-bullet.png);
  display: inline-block;
  background-repeat: no-repeat;
}

/* line 334, ../../src/sass/person.scss */
.person-looking-for {
  background-color: #DDC8A2;
  padding: 45px 35px;
  margin-bottom: 70px;
}
/* line 339, ../../src/sass/person.scss */
.person-looking-for h3 {
  font-size: 24px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 5px;
  color: #BA000A;
  letter-spacing: -webkit-calc(1em * 0.001 * 75);
  letter-spacing: -moz-calc(1em * 0.001 * 75);
  letter-spacing: calc(1em * 0.001 * 75);
  text-transform: uppercase;
}
/* line 349, ../../src/sass/person.scss */
.person-looking-for h5 {
  margin: 0;
  font-weight: 500;
  margin-bottom: 20px;
}
/* line 355, ../../src/sass/person.scss */
.person-looking-for a {
  background-color: #FFF;
  border: none;
  padding: 10px 13px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #041424;
  font-size: 16px;
  font-weight: 500;
}
/* line 368, ../../src/sass/person.scss */
.person-looking-for a img {
  margin-left: 10px;
  -webkit-transform: translateY(-1px);
     -moz-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
       -o-transform: translateY(-1px);
          transform: translateY(-1px);
}

/* line 375, ../../src/sass/person.scss */
.person-wrapper-grid {
  grid-template-columns: 100%;
  display: grid;
  margin-block: 60px;
  grid-gap: 1em;
}
/* line 381, ../../src/sass/person.scss */
.person-wrapper-grid .single-person-inner-wrapper {
  text-decoration: none;
}
/* line 386, ../../src/sass/person.scss */
.person-wrapper-grid .single-person-inner-wrapper .single-person-wrapper .single-person-content img {
  -webkit-transition-duration: .5s;
     -moz-transition-duration: .5s;
       -o-transition-duration: .5s;
          transition-duration: .5s;
}
/* line 393, ../../src/sass/person.scss */
.person-wrapper-grid .single-person-inner-wrapper:not(:last-of-type) {
  padding-bottom: 45px;
}
/* line 401, ../../src/sass/person.scss */
.person-wrapper-grid .single-person-inner-wrapper:hover .single-person-wrapper .single-person-content img {
  -webkit-transform: translateX(10px);
     -moz-transform: translateX(10px);
      -ms-transform: translateX(10px);
       -o-transform: translateX(10px);
          transform: translateX(10px);
}
/* line 405, ../../src/sass/person.scss */
.person-wrapper-grid .single-person-inner-wrapper:hover .single-person-wrapper .single-person-content h4 {
  color: #9F6B20;
}
/* line 407, ../../src/sass/person.scss */
.person-wrapper-grid .single-person-inner-wrapper:hover .single-person-wrapper .single-person-content h4:not(:first-of-type) {
  text-decoration: underline;
}
/* line 415, ../../src/sass/person.scss */
.person-wrapper-grid .single-person-inner-wrapper .single-person-wrapper {
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 1em;
}
/* line 421, ../../src/sass/person.scss */
.person-wrapper-grid .single-person-inner-wrapper .single-person-wrapper img {
  width: 100%;
  max-width: 186px;
  max-height: 186px;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
/* line 429, ../../src/sass/person.scss */
.person-wrapper-grid .single-person-inner-wrapper .single-person-wrapper .single-person-content {
  padding-left: 10px;
}
/* line 432, ../../src/sass/person.scss */
.person-wrapper-grid .single-person-inner-wrapper .single-person-wrapper .single-person-content .archive-job-title {
  color: #041424;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin-top: 0;
}
/* line 439, ../../src/sass/person.scss */
.person-wrapper-grid .single-person-inner-wrapper .single-person-wrapper .single-person-content .archive-job-title:not(:first-of-type) {
  line-height: 28px;
}
/* line 445, ../../src/sass/person.scss */
.person-wrapper-grid .single-person-inner-wrapper .single-person-wrapper .single-person-content > h4 {
  font-weight: bold;
  color: #041424;
  font-family: gill-sans-nova, sans-serif;
  font-size: 16px;
  margin-bottom: 3px;
}

@media only screen and (min-width: 768px) {
  /* line 459, ../../src/sass/person.scss */
  .person-facet-wrapper {
    grid-template-columns: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  /* line 465, ../../src/sass/person.scss */
  .person-wrapper-grid {
    grid-template-columns: 50% 50%;
  }

  /* line 474, ../../src/sass/person.scss */
  .person-wrapper-grid .single-person-inner-wrapper .single-person-wrapper {
    grid-template-columns: 30% auto;
  }

  /* line 480, ../../src/sass/person.scss */
  .person-facet-wrapper {
    grid-template-columns: repeat(5, auto);
  }

  /* line 484, ../../src/sass/person.scss */
  .facet-flyout {
    display: none;
  }

  /* line 488, ../../src/sass/person.scss */
  .person-facet-wrapper {
    display: grid;
  }

  /* line 492, ../../src/sass/person.scss */
  .facetwp-search,
  .facetwp-input-wrap {
    width: auto;
  }

  /* line 497, ../../src/sass/person.scss */
  .fs-wrap {
    width: 220px !important;
  }
  /* line 499, ../../src/sass/person.scss */
  .fs-wrap .fs-label {
    padding: 10px 22px 10px 8px !important;
  }

  /* line 504, ../../src/sass/person.scss */
  .name-reset {
    padding-top: unset;
  }

  /* line 509, ../../src/sass/person.scss */
  .person-single-post .single-person-details {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  /* line 514, ../../src/sass/person.scss */
  .person-single-post .single-person-details .single-inner-details,
  .person-single-post .single-person-details .single-person-image {
    -webkit-box-ordinal-group: NaN;
    -webkit-order: unset;
       -moz-box-ordinal-group: NaN;
        -ms-flex-order: unset;
            order: unset;
  }
  /* line 519, ../../src/sass/person.scss */
  .person-single-post .single-person-details .single-person-image {
    padding-bottom: unset;
  }
}
@media only screen and (min-width: 1248px) {
  /* line 532, ../../src/sass/person.scss */
  .person-facet-wrapper > div:first-child span:not(.facetwp-input-wrap) {
    display: unset;
  }
}
/* line 4, ../../src/sass/news.scss */
.post-type-archive-news .news-wrapper-grid {
  padding-block: 60px;
}

/* line 9, ../../src/sass/news.scss */
.news-parent {
  padding-block: 75px;
}
/* line 11, ../../src/sass/news.scss */
.news-parent .latest-news-heading {
  padding-bottom: 30px;
  font-size: 24px;
  font-family: gill-sans-nova, sans-serif;
  text-transform: uppercase;
  color: #BA000A;
  font-weight: 300;
  letter-spacing: 1px;
  letter-spacing: -webkit-calc(1em * 0.001 * 75);
  letter-spacing: -moz-calc(1em * 0.001 * 75);
  letter-spacing: calc(1em * 0.001 * 75);
}
/* line 22, ../../src/sass/news.scss */
.news-parent .see-all-news-mobile {
  display: block;
}
/* line 26, ../../src/sass/news.scss */
.news-parent .latest-news-heading-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
/* line 30, ../../src/sass/news.scss */
.news-parent .latest-news-heading-wrapper a {
  text-decoration: none;
  color: #041424;
  text-transform: uppercase;
  display: none;
}
/* line 36, ../../src/sass/news.scss */
.news-parent .latest-news-heading-wrapper a:hover {
  color: #9F6B20;
}
/* line 40, ../../src/sass/news.scss */
.news-parent .latest-news-heading-wrapper a:hover img {
  -webkit-transform: translate(10px, 4px);
     -moz-transform: translate(10px, 4px);
      -ms-transform: translate(10px, 4px);
       -o-transform: translate(10px, 4px);
          transform: translate(10px, 4px);
}
/* line 45, ../../src/sass/news.scss */
.news-parent .latest-news-heading-wrapper a img {
  -webkit-transform: translateY(4px);
     -moz-transform: translateY(4px);
      -ms-transform: translateY(4px);
       -o-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-transition-duration: 0.5s;
     -moz-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
/* line 51, ../../src/sass/news.scss */
.news-parent .latest-news-heading-wrapper a:hover {
  text-decoration: underline;
}

/* line 58, ../../src/sass/news.scss */
.news-wrapper-grid {
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 2em;
}
/* line 64, ../../src/sass/news.scss */
.news-wrapper-grid .single-news-inner-wrapper {
  display: block;
  text-decoration: none;
}
/* line 70, ../../src/sass/news.scss */
.news-wrapper-grid .single-news-inner-wrapper:hover .single-news-inner-content h3, .news-wrapper-grid .single-news-inner-wrapper:hover .single-news-inner-content h5 {
  color: #9F6B20 !important;
}
/* line 81, ../../src/sass/news.scss */
.news-wrapper-grid .single-news-inner-wrapper .single-news-inner-content .news-date-type + h3 + img {
  -webkit-transition-duration: 0.5s;
     -moz-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
/* line 94, ../../src/sass/news.scss */
.news-wrapper-grid .single-news-inner-wrapper:hover .single-news-inner-content .news-date-type + h3 {
  text-decoration: underline;
}
/* line 98, ../../src/sass/news.scss */
.news-wrapper-grid .single-news-inner-wrapper:hover .single-news-inner-content .news-date-type + h3 + img {
  -webkit-transform: translateX(10px);
     -moz-transform: translateX(10px);
      -ms-transform: translateX(10px);
       -o-transform: translateX(10px);
          transform: translateX(10px);
}
/* line 109, ../../src/sass/news.scss */
.news-wrapper-grid .single-news-inner-wrapper .single-news-inner-image img {
  width: 100%;
  max-height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
/* line 116, ../../src/sass/news.scss */
.news-wrapper-grid .single-news-inner-wrapper .single-news-inner-content {
  padding-block: 20px;
}
/* line 119, ../../src/sass/news.scss */
.news-wrapper-grid .single-news-inner-wrapper .single-news-inner-content .news-date-type {
  margin: 0;
  text-transform: uppercase;
  font-family: gill-sans-nova, sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #041424;
  padding-bottom: 20px;
}
/* line 128, ../../src/sass/news.scss */
.news-wrapper-grid .single-news-inner-wrapper .single-news-inner-content .news-date-type span {
  font-weight: 500;
}
/* line 133, ../../src/sass/news.scss */
.news-wrapper-grid .single-news-inner-wrapper .single-news-inner-content .news-date-type + h3 {
  margin: 0;
  font-size: 22px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
  color: #000;
  padding-bottom: 15px;
}
/* line 142, ../../src/sass/news.scss */
.news-wrapper-grid .single-news-inner-wrapper .single-news-inner-content .news-date-type + h3 + .news-single-arrow {
  font-size: 22px;
  color: #BA0C11;
}

@media only screen and (min-width: 1024px) {
  /* line 156, ../../src/sass/news.scss */
  .news-wrapper-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 6em;
  }
  /* line 160, ../../src/sass/news.scss */
  .news-wrapper-grid .single-news-inner-wrapper {
    display: grid;
    grid-template-columns: 50% 50%;
  }
  /* line 165, ../../src/sass/news.scss */
  .news-wrapper-grid .single-news-inner-wrapper .single-news-inner-content {
    padding-left: 20px;
    padding-block: 0;
  }

  /* line 174, ../../src/sass/news.scss */
  .news-parent .see-all-news-mobile {
    display: none;
  }
  /* line 179, ../../src/sass/news.scss */
  .news-parent .latest-news-heading-wrapper a {
    display: block;
  }
}
/* line 192, ../../src/sass/news.scss */
.news-single-post .news-btn-share {
  display: block;
}
/* line 195, ../../src/sass/news.scss */
.news-single-post .news-btn-share .button-wrapper {
  text-align: left;
}
/* line 197, ../../src/sass/news.scss */
.news-single-post .news-btn-share .button-wrapper span {
  padding-left: 0;
  padding-right: 7px;
  color: #BA000A;
}
/* line 204, ../../src/sass/news.scss */
.news-single-post .news-btn-share .share-news {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 10px;
}
/* line 209, ../../src/sass/news.scss */
.news-single-post .news-btn-share .share-news h6 {
  font-size: 18px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
  margin: 0;
}
/* line 216, ../../src/sass/news.scss */
.news-single-post .news-btn-share .share-news ul {
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  padding-left: 10px;
}
/* line 223, ../../src/sass/news.scss */
.news-single-post .news-btn-share .share-news ul li:not(:last-of-type) {
  padding-right: 10px;
}
/* line 229, ../../src/sass/news.scss */
.news-single-post .news-btn-share .share-news ul li:nth-of-type(2) img, .news-single-post .news-btn-share .share-news ul li:nth-of-type(3) img {
  -webkit-transform: translateY(2px);
     -moz-transform: translateY(2px);
      -ms-transform: translateY(2px);
       -o-transform: translateY(2px);
          transform: translateY(2px);
}
/* line 234, ../../src/sass/news.scss */
.news-single-post .news-btn-share .share-news ul li a {
  background-color: #BA000A;
  padding: 0px 6px 3px;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  width: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 25px;
  -webkit-transition: 0.5s;
     -moz-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;
}
/* line 244, ../../src/sass/news.scss */
.news-single-post .news-btn-share .share-news ul li a:hover {
  background-color: #000;
}
/* line 248, ../../src/sass/news.scss */
.news-single-post .news-btn-share .share-news ul li a img {
  width: 100%;
  height: 100%;
}

/* line 260, ../../src/sass/news.scss */
.published-category {
  padding-block: 50px;
  display: block;
}
/* line 264, ../../src/sass/news.scss */
.published-category .published-date,
.published-category .news-category {
  font-family: gill-sans-nova, sans-serif;
}
/* line 268, ../../src/sass/news.scss */
.published-category .published-date h6,
.published-category .published-date h5,
.published-category .news-category h6,
.published-category .news-category h5 {
  margin: 0;
}
/* line 273, ../../src/sass/news.scss */
.published-category .published-date h5,
.published-category .news-category h5 {
  font-size: 22px;
  font-weight: 500;
}
/* line 278, ../../src/sass/news.scss */
.published-category .published-date h6,
.published-category .news-category h6 {
  font-size: 16px;
  font-weight: 500;
}
/* line 284, ../../src/sass/news.scss */
.published-category .published-date {
  padding-bottom: 10px;
}
/* line 291, ../../src/sass/news.scss */
.published-category + .single-news-post-content h1 {
  margin: 0;
  font-family: gill-sans-nova, sans-serif;
  color: #BA000A;
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 33px;
  padding-bottom: 15px;
}

/* line 307, ../../src/sass/news.scss */
.related-news-wrapper {
  padding-bottom: 80px;
  padding-top: 60px;
}
/* line 311, ../../src/sass/news.scss */
.related-news-wrapper .see-all-news-mobile {
  text-decoration: none;
  color: #041424;
  text-transform: uppercase;
  margin-bottom: 30px;
}
/* line 317, ../../src/sass/news.scss */
.related-news-wrapper .see-all-news-mobile:hover {
  text-decoration: underline;
}
/* line 321, ../../src/sass/news.scss */
.related-news-wrapper .see-all-news-mobile img {
  margin-left: 5px;
  -webkit-transform: translateY(4px);
     -moz-transform: translateY(4px);
      -ms-transform: translateY(4px);
       -o-transform: translateY(4px);
          transform: translateY(4px);
}
/* line 327, ../../src/sass/news.scss */
.related-news-wrapper .related-news-all-news {
  display: block;
}
/* line 331, ../../src/sass/news.scss */
.related-news-wrapper .related-news-all-news a:first-of-type {
  display: none;
}
/* line 335, ../../src/sass/news.scss */
.related-news-wrapper .related-news-all-news a img {
  margin-left: 5px;
  -webkit-transform: translateY(4px);
     -moz-transform: translateY(4px);
      -ms-transform: translateY(4px);
       -o-transform: translateY(4px);
          transform: translateY(4px);
}
/* line 341, ../../src/sass/news.scss */
.related-news-wrapper .related-news-all-news h3 {
  color: #BA000A;
  font-size: 24px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* line 350, ../../src/sass/news.scss */
.related-news-wrapper .related-news-all-news h3 + a {
  text-decoration: none;
  color: #041424;
  text-transform: uppercase;
}
/* line 355, ../../src/sass/news.scss */
.related-news-wrapper .related-news-all-news h3 + a:hover {
  text-decoration: underline;
}
/* line 359, ../../src/sass/news.scss */
.related-news-wrapper .related-news-all-news h3 + a span {
  display: inline-block;
  padding-left: 7px;
}
/* line 368, ../../src/sass/news.scss */
.related-news-wrapper .related-news-grid {
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 2em;
  padding-bottom: 15px;
}
/* line 374, ../../src/sass/news.scss */
.related-news-wrapper .related-news-grid .related-news-single {
  display: block;
  text-decoration: none;
}
/* line 378, ../../src/sass/news.scss */
.related-news-wrapper .related-news-grid .related-news-single img {
  min-height: 230px;
  min-width: 230px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
/* line 387, ../../src/sass/news.scss */
.related-news-wrapper .related-news-grid .related-news-single:hover .related-news-single-inner h5 {
  color: #9F6B20;
}
/* line 390, ../../src/sass/news.scss */
.related-news-wrapper .related-news-grid .related-news-single:hover .related-news-single-inner h5 + h3 {
  text-decoration: underline;
  color: #9F6B20;
}
/* line 397, ../../src/sass/news.scss */
.related-news-wrapper .related-news-grid .related-news-single:hover .related-news-single-inner img {
  -webkit-transform: translateX(10px);
     -moz-transform: translateX(10px);
      -ms-transform: translateX(10px);
       -o-transform: translateX(10px);
          transform: translateX(10px);
}
/* line 404, ../../src/sass/news.scss */
.related-news-wrapper .related-news-grid .related-news-single .related-news-single-inner img {
  width: auto;
  min-width: auto;
  min-height: auto;
  -webkit-transition-duration: .5s;
     -moz-transition-duration: .5s;
       -o-transition-duration: .5s;
          transition-duration: .5s;
}
/* line 411, ../../src/sass/news.scss */
.related-news-wrapper .related-news-grid .related-news-single .related-news-single-inner h5 {
  margin: 0;
  font-family: gill-sans-nova, sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 20px;
  color: #041424;
}
/* line 420, ../../src/sass/news.scss */
.related-news-wrapper .related-news-grid .related-news-single .related-news-single-inner h5 span {
  font-weight: 500;
}
/* line 425, ../../src/sass/news.scss */
.related-news-wrapper .related-news-grid .related-news-single .related-news-single-inner h5 + h3 {
  margin: 0;
  font-size: 22px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
  padding-bottom: 15px;
  color: #041424;
}
/* line 434, ../../src/sass/news.scss */
.related-news-wrapper .related-news-grid .related-news-single .related-news-single-inner h5 + h3 + span {
  font-size: 22px;
  color: #BA000A;
}

/* line 447, ../../src/sass/news.scss */
.latest-news-heading {
  margin: 0;
}

@media only screen and (min-width: 1248px) {
  /* line 452, ../../src/sass/news.scss */
  .published-category {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  /* line 456, ../../src/sass/news.scss */
  .published-category .published-date {
    padding-bottom: 0;
  }

  /* line 462, ../../src/sass/news.scss */
  .news-parent .see-all-news-mobile {
    display: none;
  }

  /* line 475, ../../src/sass/news.scss */
  .news-single-post .news-btn-share {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  /* line 480, ../../src/sass/news.scss */
  .news-single-post .news-btn-share .share-news {
    padding-top: 0;
  }

  /* line 487, ../../src/sass/news.scss */
  .related-news-wrapper .see-all-news-mobile {
    display: none;
  }
  /* line 491, ../../src/sass/news.scss */
  .related-news-wrapper .related-news-grid {
    grid-template-columns: auto auto;
  }
  /* line 494, ../../src/sass/news.scss */
  .related-news-wrapper .related-news-grid .related-news-single {
    display: grid;
    grid-template-columns: auto auto;
  }
  /* line 498, ../../src/sass/news.scss */
  .related-news-wrapper .related-news-grid .related-news-single .related-news-single-inner {
    padding-left: 20px;
  }
  /* line 508, ../../src/sass/news.scss */
  .related-news-wrapper .related-news-all-news {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  /* line 514, ../../src/sass/news.scss */
  .related-news-wrapper .related-news-all-news a:first-of-type {
    display: unset;
  }
  /* line 518, ../../src/sass/news.scss */
  .related-news-wrapper .related-news-all-news a img {
    -webkit-transition-duration: .5s;
       -moz-transition-duration: .5s;
         -o-transition-duration: .5s;
            transition-duration: .5s;
  }
  /* line 523, ../../src/sass/news.scss */
  .related-news-wrapper .related-news-all-news a:hover {
    color: #9F6B20;
  }
  /* line 526, ../../src/sass/news.scss */
  .related-news-wrapper .related-news-all-news a:hover img {
    -webkit-transform: translate(10px, 5px);
       -moz-transform: translate(10px, 5px);
        -ms-transform: translate(10px, 5px);
         -o-transform: translate(10px, 5px);
            transform: translate(10px, 5px);
  }
}
/* line 1, ../../src/sass/venue.scss */
.venue-wrapper {
  margin-block: 80px;
}
/* line 4, ../../src/sass/venue.scss */
.venue-wrapper .venue-archive-single {
  display: grid;
  grid-template-columns: 100%;
}
/* line 15, ../../src/sass/venue.scss */
.venue-wrapper .venue-archive-single .venue-archive-image img {
  width: 100%;
  max-height: 650px;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 450px;
}
/* line 23, ../../src/sass/venue.scss */
.venue-wrapper .venue-archive-single .venue-archive-details {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
/* line 29, ../../src/sass/venue.scss */
.venue-wrapper .venue-archive-single .venue-archive-details .venue-archive-inner-details {
  padding: 30px 0px;
}
/* line 33, ../../src/sass/venue.scss */
.venue-wrapper .venue-archive-single .venue-archive-details .venue-archive-inner-details h3 {
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 4px;
  font-weight: 400;
  margin: 0;
  font-family: gill-sans-nova, sans-serif;
  color: #9F6B20;
}
/* line 44, ../../src/sass/venue.scss */
.venue-wrapper .venue-archive-single .venue-archive-details .venue-archive-inner-details .archive-inner-content {
  width: 100%;
  font-family: gill-sans-nova, sans-serif;
}
/* line 49, ../../src/sass/venue.scss */
.venue-wrapper .venue-archive-single .venue-archive-details .venue-archive-inner-details .archive-inner-content + a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  font-size: 18px;
  font-family: gill-sans-nova, sans-serif;
}
/* line 56, ../../src/sass/venue.scss */
.venue-wrapper .venue-archive-single .venue-archive-details .venue-archive-inner-details .archive-inner-content + a:hover {
  text-decoration: underline;
  color: #9F6B20;
}
/* line 61, ../../src/sass/venue.scss */
.venue-wrapper .venue-archive-single .venue-archive-details .venue-archive-inner-details .archive-inner-content + a:hover img {
  -webkit-transform: translate(10px, 6px);
     -moz-transform: translate(10px, 6px);
      -ms-transform: translate(10px, 6px);
       -o-transform: translate(10px, 6px);
          transform: translate(10px, 6px);
}
/* line 66, ../../src/sass/venue.scss */
.venue-wrapper .venue-archive-single .venue-archive-details .venue-archive-inner-details .archive-inner-content + a img {
  -webkit-transform: translateY(6px);
     -moz-transform: translateY(6px);
      -ms-transform: translateY(6px);
       -o-transform: translateY(6px);
          transform: translateY(6px);
  margin-left: 5px;
  -webkit-transition-duration: 0.5s;
     -moz-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

@media only screen and (min-width: 1024px) {
  /* line 83, ../../src/sass/venue.scss */
  .venue-wrapper .venue-archive-single {
    grid-template-columns: 50% 50%;
  }
  /* line 87, ../../src/sass/venue.scss */
  .venue-wrapper .venue-archive-single .venue-archive-details .venue-archive-inner-details {
    padding: 50px 100px;
  }
  /* line 93, ../../src/sass/venue.scss */
  .venue-wrapper .venue-archive-single:nth-child(even) .venue-archive-image {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
       -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  /* line 97, ../../src/sass/venue.scss */
  .venue-wrapper .venue-archive-single:nth-child(even) .venue-archive-details {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  /* line 100, ../../src/sass/venue.scss */
  .venue-wrapper .venue-archive-single:nth-child(even) .venue-archive-details .venue-archive-inner-details h3 {
    color: #BA000A;
  }
  /* line 104, ../../src/sass/venue.scss */
  .venue-wrapper .venue-archive-single:nth-child(even) .venue-archive-details .venue-archive-inner-details .archive-inner-content {
    width: 75%;
  }
}
/* line 116, ../../src/sass/venue.scss */
.venue-single-wrapper {
  margin-block: 80px;
}
/* line 120, ../../src/sass/venue.scss */
.venue-single-wrapper .button-wrapper:first-of-type {
  text-align: right;
  margin-bottom: 40px;
}
/* line 124, ../../src/sass/venue.scss */
.venue-single-wrapper .button-wrapper:first-of-type span {
  color: #9F6B20;
}
/* line 129, ../../src/sass/venue.scss */
.venue-single-wrapper .button-wrapper:last-of-type {
  text-align: right;
  margin-top: 60px;
}
/* line 133, ../../src/sass/venue.scss */
.venue-single-wrapper .button-wrapper:last-of-type span {
  color: #9F6B20;
}
/* line 139, ../../src/sass/venue.scss */
.venue-single-wrapper .venue-single {
  display: grid;
  grid-template-columns: 100%;
  -webkit-column-gap: 2em;
     -moz-column-gap: 2em;
          column-gap: 2em;
  row-gap: 2em;
}
/* line 145, ../../src/sass/venue.scss */
.venue-single-wrapper .venue-single:not(:nth-last-of-type(2)) {
  padding-bottom: 80px;
}
/* line 149, ../../src/sass/venue.scss */
.venue-single-wrapper .venue-single .venue-table {
  width: 100%;
}
/* line 152, ../../src/sass/venue.scss */
.venue-single-wrapper .venue-single .venue-table .venue-single-heading {
  text-transform: uppercase;
  font-size: 24px;
  color: #9F6B20;
  margin: 0;
  font-weight: 300;
  letter-spacing: 2px;
  padding-bottom: 35px;
}
/* line 162, ../../src/sass/venue.scss */
.venue-single-wrapper .venue-single .venue-table .venue-table-parent {
  border: 1px solid #9F6B20;
}
/* line 165, ../../src/sass/venue.scss */
.venue-single-wrapper .venue-single .venue-table .venue-table-parent thead {
  text-align: left;
}
/* line 168, ../../src/sass/venue.scss */
.venue-single-wrapper .venue-single .venue-table .venue-table-parent thead tr {
  padding-bottom: 10px;
  display: block;
  border-right: 1px solid #9F6B20;
  padding: 15px 20px 10px 20px;
  -webkit-transform: translateX(0.5px);
     -moz-transform: translateX(0.5px);
      -ms-transform: translateX(0.5px);
       -o-transform: translateX(0.5px);
          transform: translateX(0.5px);
}
/* line 175, ../../src/sass/venue.scss */
.venue-single-wrapper .venue-single .venue-table .venue-table-parent thead tr th {
  font-family: gill-sans-nova, sans-serif;
  font-size: 16px;
  font-weight: 600;
}
/* line 184, ../../src/sass/venue.scss */
.venue-single-wrapper .venue-single .venue-table .venue-table-parent tbody tr {
  margin-block: 10px;
}
/* line 192, ../../src/sass/venue.scss */
.venue-single-wrapper .venue-single .venue-table .venue-table-parent tbody tr:nth-child(even) {
  background-color: #F8F8F8;
}
/* line 195, ../../src/sass/venue.scss */
.venue-single-wrapper .venue-single .venue-table .venue-table-parent tbody tr:nth-child(even) td {
  padding-top: 10px;
}
/* line 201, ../../src/sass/venue.scss */
.venue-single-wrapper .venue-single .venue-table .venue-table-parent tbody tr:last-of-type td {
  padding-bottom: 20px;
}
/* line 206, ../../src/sass/venue.scss */
.venue-single-wrapper .venue-single .venue-table .venue-table-parent tbody tr td {
  font-family: gill-sans-nova, sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding-inline: 20px;
  width: 50%;
  padding-block: 10px;
}
/* line 214, ../../src/sass/venue.scss */
.venue-single-wrapper .venue-single .venue-table .venue-table-parent tbody tr td .td-bold {
  display: block;
  font-weight: bold;
}
/* line 220, ../../src/sass/venue.scss */
.venue-single-wrapper .venue-single .venue-table .venue-table-parent tbody tr td + td {
  border-left: 1px solid #9F6B20;
}
/* line 227, ../../src/sass/venue.scss */
.venue-single-wrapper .venue-single .venue-table .venue-table-parent tbody tr:not(:first-of-type) td {
  font-weight: 600;
}
/* line 230, ../../src/sass/venue.scss */
.venue-single-wrapper .venue-single .venue-table .venue-table-parent tbody tr:not(:first-of-type) td:not(:first-of-type) {
  font-weight: 500;
}
/* line 240, ../../src/sass/venue.scss */
.venue-single-wrapper .venue-single .venue-images {
  display: grid;
  grid-gap: 20px;
}
/* line 244, ../../src/sass/venue.scss */
.venue-single-wrapper .venue-single .venue-images img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 330px;
  -o-object-fit: cover;
     object-fit: cover;
}
/* line 256, ../../src/sass/venue.scss */
.venue-single-wrapper .venue-single .venue-3 img:first-of-type {
  grid-column: 1 / 3;
}

@media only screen and (min-width: 1024px) {
  /* line 268, ../../src/sass/venue.scss */
  .venue-single-wrapper .venue-single {
    grid-template-columns: 50% auto;
    row-gap: 0;
  }
  /* line 272, ../../src/sass/venue.scss */
  .venue-single-wrapper .venue-single:not(:nth-last-of-type(2)) {
    padding-bottom: 120px;
  }
  /* line 276, ../../src/sass/venue.scss */
  .venue-single-wrapper .venue-single .venue-table {
    width: 100%;
  }
  /* line 280, ../../src/sass/venue.scss */
  .venue-single-wrapper .venue-single .venue-table .venue-single-heading {
    padding-bottom: 13px;
  }
}
/* line 3, ../../src/sass/footer.scss */
footer .footer-main {
  background-color: #EDEDED;
}
/* line 6, ../../src/sass/footer.scss */
footer .footer-main .footer-grid {
  padding-block: 70px 100px;
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 2em;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
/* line 14, ../../src/sass/footer.scss */
footer .footer-main .footer-grid .footer-wolfson-logos .footer-images {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
/* line 16, ../../src/sass/footer.scss */
footer .footer-main .footer-grid .footer-wolfson-logos .footer-images a {
  text-decoration: none;
}
/* line 19, ../../src/sass/footer.scss */
footer .footer-main .footer-grid .footer-wolfson-logos .footer-images a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
/* line 29, ../../src/sass/footer.scss */
footer .footer-main .footer-grid .footer-wolfson-logos .footer-images a:first-of-type img {
  padding-right: 15px;
}
/* line 37, ../../src/sass/footer.scss */
footer .footer-main .footer-grid .footer-wolfson-logos .footer-images + .button-wrapper {
  text-align: left;
}
/* line 43, ../../src/sass/footer.scss */
footer .footer-main .footer-grid .footer-wolfson-logos .button-wrapper {
  margin-top: 60px;
}
/* line 46, ../../src/sass/footer.scss */
footer .footer-main .footer-grid .footer-wolfson-logos .button-wrapper .button-single {
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 500;
}
/* line 52, ../../src/sass/footer.scss */
footer .footer-main .footer-grid .footer-wolfson-logos .button-wrapper .button-single span {
  color: #BA0C11;
  font-size: 22px;
}
/* line 62, ../../src/sass/footer.scss */
footer .footer-main .footer-grid .footer-links h4 {
  font-size: 18px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: bold;
  margin: 0;
  padding-bottom: 10px;
}
/* line 70, ../../src/sass/footer.scss */
footer .footer-main .footer-grid .footer-links ul {
  margin: 0;
  list-style-type: none;
}
/* line 75, ../../src/sass/footer.scss */
footer .footer-main .footer-grid .footer-links ul li a {
  font-size: 16px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 300;
  text-decoration: none;
  color: #041424;
}
/* line 82, ../../src/sass/footer.scss */
footer .footer-main .footer-grid .footer-links ul li a:hover {
  text-decoration: underline;
}
/* line 91, ../../src/sass/footer.scss */
footer .footer-main .footer-grid .footer-contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
/* line 96, ../../src/sass/footer.scss */
footer .footer-main .footer-grid .footer-contact h4 {
  font-size: 18px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: bold;
  margin: 0;
  padding-bottom: 10px;
}
/* line 104, ../../src/sass/footer.scss */
footer .footer-main .footer-grid .footer-contact .footer-social-wrapper {
  padding-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
/* line 109, ../../src/sass/footer.scss */
footer .footer-main .footer-grid .footer-contact .footer-social-wrapper a {
  text-decoration: none;
  width: 35px;
  height: 35px;
  background-color: #BA000A;
  padding: 8px;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  -webkit-transition: 0.5s;
     -moz-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;
}
/* line 118, ../../src/sass/footer.scss */
footer .footer-main .footer-grid .footer-contact .footer-social-wrapper a:not(:last-of-type) {
  margin-right: 12px;
}
/* line 124, ../../src/sass/footer.scss */
footer .footer-main .footer-grid .footer-contact .footer-social-wrapper a img {
  width: 100%;
  height: 100%;
}
/* line 129, ../../src/sass/footer.scss */
footer .footer-main .footer-grid .footer-contact .footer-social-wrapper a:hover {
  background-color: #000;
}
/* line 138, ../../src/sass/footer.scss */
footer .footer-main .footer-grid .footer-contact ul {
  margin: 0;
  list-style-type: none;
}
/* line 142, ../../src/sass/footer.scss */
footer .footer-main .footer-grid .footer-contact ul li {
  font-size: 16px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 300;
  color: #041424;
}
/* line 148, ../../src/sass/footer.scss */
footer .footer-main .footer-grid .footer-contact ul li a {
  color: #041424;
  text-decoration: none;
}
/* line 152, ../../src/sass/footer.scss */
footer .footer-main .footer-grid .footer-contact ul li a:hover {
  text-decoration: underline;
}
/* line 165, ../../src/sass/footer.scss */
footer .footer-site-by {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
/* line 169, ../../src/sass/footer.scss */
footer .footer-site-by .by-one {
  color: #000;
}
/* line 172, ../../src/sass/footer.scss */
footer .footer-site-by .by-one a {
  text-decoration: none;
  color: inherit;
}
/* line 176, ../../src/sass/footer.scss */
footer .footer-site-by .by-one a:hover {
  text-decoration: underline;
}

@media only screen and (min-width: 1024px) {
  /* line 191, ../../src/sass/footer.scss */
  footer .footer-main .footer-grid {
    grid-template-columns: 40% auto 35%;
  }
}
/* line 1, ../../src/sass/breadcrumb.scss */
.wolfson-bc {
  padding-bottom: 20px;
}
/* line 4, ../../src/sass/breadcrumb.scss */
.wolfson-bc span {
  font-family: gill-sans-nova, sans-serif;
  font-size: 16px;
  font-weight: 500;
}
/* line 10, ../../src/sass/breadcrumb.scss */
.wolfson-bc span span a {
  color: #000;
  text-decoration: none;
  padding-right: 2px;
}
/* line 15, ../../src/sass/breadcrumb.scss */
.wolfson-bc span span a:hover {
  text-decoration: underline;
}
/* line 21, ../../src/sass/breadcrumb.scss */
.wolfson-bc span .breadcrumb_last {
  color: #BA000A;
  padding-left: 2px;
}

/* line 1, ../../src/sass/directions.scss */
.directions-heading {
  font-size: 24px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 300;
  color: #9F6B20;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  padding-bottom: 30px;
  letter-spacing: -webkit-calc(1em * 0.001 * 75);
  letter-spacing: -moz-calc(1em * 0.001 * 75);
  letter-spacing: calc(1em * 0.001 * 75);
}

/* line 13, ../../src/sass/directions.scss */
.directions-grid {
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 2em;
  padding-bottom: 30px;
}
/* line 19, ../../src/sass/directions.scss */
.directions-grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
/* line 26, ../../src/sass/directions.scss */
.directions-grid .directions-content ul {
  list-style-type: none;
  margin-left: 0;
  margin-block: 0;
}
/* line 31, ../../src/sass/directions.scss */
.directions-grid .directions-content ul li {
  display: block;
}
/* line 33, ../../src/sass/directions.scss */
.directions-grid .directions-content ul li::before {
  content: "";
  background-image: none;
  width: 0;
}
/* line 41, ../../src/sass/directions.scss */
.directions-grid .directions-content p {
  margin-block: 0px;
}
/* line 43, ../../src/sass/directions.scss */
.directions-grid .directions-content p:has(strong) {
  margin-top: 10px;
}
/* line 49, ../../src/sass/directions.scss */
.directions-grid .directions-content h1:first-of-type, .directions-grid .directions-content h2:first-of-type, .directions-grid .directions-content h3:first-of-type, .directions-grid .directions-content h4:first-of-type, .directions-grid .directions-content h5:first-of-type, .directions-grid .directions-content h6:first-of-type, .directions-grid .directions-content p:first-of-type, .directions-grid .directions-content span:first-of-type {
  margin-top: 0;
}
/* line 53, ../../src/sass/directions.scss */
.directions-grid .directions-content h1:last-of-type, .directions-grid .directions-content h2:last-of-type, .directions-grid .directions-content h3:last-of-type, .directions-grid .directions-content h4:last-of-type, .directions-grid .directions-content h5:last-of-type, .directions-grid .directions-content h6:last-of-type, .directions-grid .directions-content p:last-of-type, .directions-grid .directions-content span:last-of-type {
  margin-bottom: 0;
}

@media only screen and (min-width: 1024px) {
  /* line 62, ../../src/sass/directions.scss */
  .directions-grid {
    grid-template-columns: auto auto;
    grid-gap: 6em;
    padding-bottom: 80px;
  }
}
/* line 1, ../../src/sass/instagram.scss */
.instagram-feed-wrapper .ff-dots-visible:not(.ff-mobile) .slick-dots, .ff-mobile.ff-dots-mob .slick-dots {
  display: none !important;
}

/* line 5, ../../src/sass/instagram.scss */
.ff-errors {
  display: none;
}

/* line 9, ../../src/sass/instagram.scss */
.instagram-feed-wrapper {
  margin-block: 80px;
}
/* line 12, ../../src/sass/instagram.scss */
.instagram-feed-wrapper .instagram-heading {
  font-family: gill-sans-nova, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  margin: 0;
  color: #BA000A;
  font-weight: 300;
  letter-spacing: 1px;
  padding-bottom: 30px;
  letter-spacing: -webkit-calc(1em * 0.001 * 75);
  letter-spacing: -moz-calc(1em * 0.001 * 75);
  letter-spacing: calc(1em * 0.001 * 75);
}

@media only screen and (min-width: 1024px) {
  /* line 29, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .flaticon-chevron-left,
  .instagram-feed-wrapper .laticon-chevron-right,
  .instagram-feed-wrapper .slick-next,
  .instagram-feed-wrapper .slick-prev {
    display: none !important;
  }
  /* line 36, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .ff-carousel-slide {
    grid-template-columns: unset !important;
  }
  /* line 39, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .ff-carousel-slide:not(:first-of-type, :nth-of-type(2)) {
    display: none !important;
  }
  /* line 45, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .ff-item-cont .ff-video-icon,
  .instagram-feed-wrapper .ff-item-cont .ff-carousel-icon,
  .instagram-feed-wrapper .ff-item-cont .ff-label-text,
  .instagram-feed-wrapper .ff-item-cont .ff-icon-inner {
    display: none;
  }
  /* line 54, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .ff-img-loaded img {
    height: 100% !important;
  }
  /* line 60, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .ff-stream-wrapper .slick-track {
    -webkit-transform: unset !important;
       -moz-transform: unset !important;
        -ms-transform: unset !important;
         -o-transform: unset !important;
            transform: unset !important;
  }
  /* line 64, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .ff-stream-wrapper .slick-list {
    overflow: unset;
  }
  /* line 71, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .ff-img-holder {
    height: 100% !important;
    position: relative;
  }
  /* line 77, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .ff-item .ff-content {
    position: absolute;
    top: 0;
    z-index: 1;
    color: #FFF;
    display: none;
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 45% !important;
  }
  /* line 91, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .ff-item:hover .ff-content {
    display: -webkit-box;
  }
  /* line 95, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .ff-item:hover .ff-item-bar {
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
    display: block;
  }
  /* line 101, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .ff-item:hover .ff-img-holder img {
    -webkit-filter: brightness(0.4);
            filter: brightness(0.4);
  }
  /* line 108, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .ff-initial-image {
    height: 100%;
    -webkit-transform: perspective(0px) scale3d(1, 1.1, 1) rotateZ(0deg) translate(-50%, -50%) !important;
       -moz-transform: perspective(0px) scale3d(1, 1.1, 1) rotateZ(0deg) translate(-50%, -50%) !important;
            transform: perspective(0px) scale3d(1, 1.1, 1) rotateZ(0deg) translate(-50%, -50%) !important;
  }
  /* line 113, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .ff-item-meta {
    display: none;
  }
  /* line 117, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .ff-item-bar {
    position: absolute;
    bottom: 0px;
    z-index: 11;
    width: 100%;
    background: transparent;
    display: none;
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
  }
  /* line 126, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .ff-item-bar i, .instagram-feed-wrapper .ff-item-bar span {
    color: #FFF !important;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) {
  /* line 134, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .slick-track,
  .instagram-feed-wrapper .ff-carousel-slide {
    width: 100% !important;
  }
  /* line 139, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .ff-stream {
    background-color: unset !important;
  }
  /* line 143, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .ff-header {
    display: none !important;
  }
  /* line 147, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .ff-stream-wrapper {
    margin: 0 !important;
  }
  /* line 151, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .ff-img-holder {
    min-height: 300px !important;
  }
  /* line 155, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .ff-carousel-slide {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    grid-gap: 1em;
  }
  /* line 162, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .shuffle--container .ff-instagram {
    position: unset !important;
    width: unset !important;
    -webkit-transform: translate(0px, 0px) !important;
       -moz-transform: translate(0px, 0px) !important;
        -ms-transform: translate(0px, 0px) !important;
         -o-transform: translate(0px, 0px) !important;
            transform: translate(0px, 0px) !important;
    height: 100%;
    margin-bottom: 25px;
    min-height: 300px;
    max-height: 30px;
  }
  /* line 172, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .shuffle--container .ff-instagram .ff-img-holder img {
    -webkit-transform: translate(-50%, 0%) !important;
       -moz-transform: translate(-50%, 0%) !important;
        -ms-transform: translate(-50%, 0%) !important;
         -o-transform: translate(-50%, 0%) !important;
            transform: translate(-50%, 0%) !important;
  }
  /* line 178, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .shuffle--container .ff-instagram:hover img {
    position: relative;
    -webkit-filter: brightness(0.3);
            filter: brightness(0.3);
  }
  /* line 183, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .shuffle--container .ff-instagram:hover .ff-content {
    display: -webkit-box;
  }
  /* line 187, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .shuffle--container .ff-instagram:hover .ff-item-bar {
    display: block;
  }
  /* line 192, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .shuffle--container .ff-instagram .ff-item-cont {
    height: unset !important;
  }
  /* line 195, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .shuffle--container .ff-instagram .ff-item-cont img {
    position: relative;
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
    min-height: 300px !important;
    max-height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  /* line 204, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .shuffle--container .ff-instagram .ff-content {
    position: absolute;
    top: 0;
    z-index: 1;
    color: #FFF;
    display: none;
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 25% !important;
  }
  /* line 217, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .shuffle--container .ff-instagram .ff-item-meta {
    display: none;
  }
  /* line 221, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .shuffle--container .ff-instagram .ff-item-bar {
    position: absolute;
    bottom: 0px;
    z-index: 11;
    width: 100%;
    background: transparent;
    display: none;
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
  }
  /* line 230, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .shuffle--container .ff-instagram .ff-item-bar i, .instagram-feed-wrapper .shuffle--container .ff-instagram .ff-item-bar span {
    color: #FFF !important;
  }
  /* line 239, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper #ff-stream-1 {
    background: unset !important;
  }
  /* line 243, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .ff-loadmore-wrapper {
    display: none !important;
  }
  /* line 247, ../../src/sass/instagram.scss */
  .instagram-feed-wrapper .ff-stream-wrapper {
    height: 100% !important;
  }
}

/* line 1, ../../src/sass/pager.scss */
.facetwp-facet-pager_ {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 50px;
}
/* line 6, ../../src/sass/pager.scss */
.facetwp-facet-pager_ a {
  color: #000;
  text-decoration: none;
  font-weight: 500 !important;
}
/* line 11, ../../src/sass/pager.scss */
.facetwp-facet-pager_ a:hover {
  text-decoration: underline;
}
/* line 16, ../../src/sass/pager.scss */
.facetwp-facet-pager_ .active {
  color: #BA000A;
  text-decoration: underline;
}

/* line 1, ../../src/sass/where-next.scss */
.where-next-heading {
  text-transform: uppercase;
  color: #9F6B20;
  letter-spacing: -webkit-calc(1em * 0.001 * 75);
  letter-spacing: -moz-calc(1em * 0.001 * 75);
  letter-spacing: calc(1em * 0.001 * 75);
  margin-bottom: 25px;
}

/* line 8, ../../src/sass/where-next.scss */
.where-next-wrapper {
  display: grid;
  grid-gap: 190px;
  grid-template-columns: repeat(1, minmax(260px, 1fr));
}
@media only screen and (min-width: 1024px) {
  /* line 8, ../../src/sass/where-next.scss */
  .where-next-wrapper {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}
/* line 21, ../../src/sass/where-next.scss */
.where-next-wrapper a {
  width: -webkit-fill-available;
  text-decoration: none;
  padding-bottom: 20px;
}
/* line 27, ../../src/sass/where-next.scss */
.where-next-wrapper a:hover h3 {
  text-decoration: underline;
  color: #9F6B20;
}
/* line 32, ../../src/sass/where-next.scss */
.where-next-wrapper a:hover .relation-arrow {
  -webkit-transform: translateX(10px);
     -moz-transform: translateX(10px);
      -ms-transform: translateX(10px);
       -o-transform: translateX(10px);
          transform: translateX(10px);
}
/* line 39, ../../src/sass/where-next.scss */
.where-next-wrapper a img:not(.relation-arrow) {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 16px;
}
/* line 44, ../../src/sass/where-next.scss */
.where-next-wrapper a img:not(.relation-arrow).fallback {
  background: #9F6B20;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 50px 20px;
}
/* line 53, ../../src/sass/where-next.scss */
.where-next-wrapper a .relation-arrow {
  padding-bottom: 30px;
  -webkit-transition-duration: 0.5s;
     -moz-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
/* line 58, ../../src/sass/where-next.scss */
.where-next-wrapper a h3 {
  margin: 0;
  color: #000;
  font-weight: 500;
}
/* line 64, ../../src/sass/where-next.scss */
.where-next-wrapper a section {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* line 3, ../../src/sass/current-members.scss */
.posts-wrapper .posts-sub-title .button-wrapper {
  text-align: left;
  margin-top: 30px;
}

/* line 10, ../../src/sass/current-members.scss */
.current-members-wrapper {
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 0.5rem;
  margin-block: 30px 70px;
}
/* line 16, ../../src/sass/current-members.scss */
.current-members-wrapper .current-member-single {
  color: #000;
  text-decoration: none;
  border-bottom: 2px solid #CA8C32;
  padding-bottom: 15px;
}
/* line 22, ../../src/sass/current-members.scss */
.current-members-wrapper .current-member-single h3 {
  margin-bottom: 1px;
  margin-top: 0;
}
/* line 27, ../../src/sass/current-members.scss */
.current-members-wrapper .current-member-single img {
  margin-left: 5px;
  -webkit-transform: translateY(4px);
     -moz-transform: translateY(4px);
      -ms-transform: translateY(4px);
       -o-transform: translateY(4px);
          transform: translateY(4px);
}
/* line 33, ../../src/sass/current-members.scss */
.current-members-wrapper .current-member-single:hover h3 {
  text-decoration: underline;
}

@media only screen and (min-width: 1024px) {
  /* line 43, ../../src/sass/current-members.scss */
  .current-members-wrapper {
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 2rem;
  }
  /* line 48, ../../src/sass/current-members.scss */
  .current-members-wrapper .current-member-single img {
    display: block;
  }
}
/* line 1, ../../src/sass/hub-home.scss */
.hub-bg-home-image {
  min-height: 650px;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
     -moz-background-size: cover;
          background-size: cover;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
/* line 11, ../../src/sass/hub-home.scss */
.hub-bg-home-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
/* line 21, ../../src/sass/hub-home.scss */
.hub-bg-home-image h2 {
  color: #FFF;
  font-size: 5.5rem;
  font-family: gill-sans-nova, sans-serif;
  z-index: 1;
  position: relative;
  padding-top: 0;
  margin-top: 0;
}
/* line 31, ../../src/sass/hub-home.scss */
.hub-bg-home-image .button-wrapper {
  z-index: 1;
  position: relative;
}
/* line 35, ../../src/sass/hub-home.scss */
.hub-bg-home-image .button-wrapper .button-single {
  font-family: gill-sans-nova, sans-serif;
  border: 1px solid #9F6B20;
  background-color: #BA000A;
  color: #FFF !important;
  border: 1px solid #BA000A;
  padding: 13px 22px;
  text-decoration: none;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: 0.5s;
     -moz-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;
}
/* line 48, ../../src/sass/hub-home.scss */
.hub-bg-home-image .button-wrapper .button-single span {
  color: #FFF;
}

/* line 1, ../../src/sass/login.scss */
#login-form-container,
.forgot-password,
.password-confirm {
  padding-block: 30px 65px;
}

/* line 7, ../../src/sass/login.scss */
.input {
  width: 250px;
  padding: 10px;
}

/* line 12, ../../src/sass/login.scss */
#wp-submit {
  font-family: gill-sans-nova, sans-serif;
  border: 1px solid #9F6B20;
  padding: 10px 22px;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: 0.5s;
     -moz-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;
  cursor: pointer;
}

/* line 24, ../../src/sass/login.scss */
.error-message {
  display: none;
}

/* line 28, ../../src/sass/login.scss */
.login-menu {
  margin-top: 7px !important;
}

/* line 32, ../../src/sass/login.scss */
#login-fail-message {
  display: block;
  margin-top: 25px;
  font-size: 25px;
  color: #BA000A;
  font-weight: bold;
}
/* line 39, ../../src/sass/login.scss */
#login-fail-message:empty {
  display: none;
}

/* line 1, ../../src/sass/booking-press.scss */
.__bpa-is-active,
.bpa-front-customer-panel-container {
  padding-bottom: 65px !important;
  z-index: 1;
  position: relative;
}

/* line 4, ../../src/sass/hotspots.scss */
.hotspots .hs-container {
  position: relative;
}
/* line 8, ../../src/sass/hotspots.scss */
.hotspots .hs-container .hs-image img {
  width: 100%;
  height: auto;
}
/* line 14, ../../src/sass/hotspots.scss */
.hotspots .hs-container .hs-hotspots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* line 22, ../../src/sass/hotspots.scss */
.hotspots .hs-container .hs-wrap {
  position: absolute;
}
/* line 25, ../../src/sass/hotspots.scss */
.hotspots .hs-container .hs-wrap.desktop-only {
  display: none;
}
@media only screen and (min-width: 768px) {
  /* line 30, ../../src/sass/hotspots.scss */
  .hotspots .hs-container .hs-wrap.desktop-only {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}
/* line 37, ../../src/sass/hotspots.scss */
.hotspots .hs-container .hs-hotspot {
  position: absolute;
  height: 30px;
  width: 30px;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
     -moz-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
  border: 1px solid;
  cursor: pointer;
  background-color: #BA000A;
  border-color: #FFF;
  color: white;
  text-align: center;
  line-height: 30px;
  -webkit-transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
     -moz-transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
       -o-transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
          transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  font-family: "Albertus Nova W01 Bold";
}
/* line 57, ../../src/sass/hotspots.scss */
.hotspots .hs-container .hs-reveal {
  background-color: rgba(51, 51, 51, 0.9);
  padding: 6px 20px 12px;
  width: -webkit-calc(100vw - 32px);
  width: -moz-calc(100vw - 32px);
  width: calc(100vw - 32px);
  cursor: default;
  position: fixed;
  top: 50%;
  left: 24px;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  max-height: -webkit-calc(100vh - 48px);
  max-height: -moz-calc(100vh - 48px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  z-index: 9;
  -webkit-box-shadow: 0 8px 8px rgba(0, 0, 0, 0.3);
     -moz-box-shadow: 0 8px 8px rgba(0, 0, 0, 0.3);
          box-shadow: 0 8px 8px rgba(0, 0, 0, 0.3);
  display: none;
  color: white;
}
@media only screen and (min-width: 768px) {
  /* line 57, ../../src/sass/hotspots.scss */
  .hotspots .hs-container .hs-reveal {
    position: absolute;
    height: auto;
    max-width: 370px;
  }
}
/* line 80, ../../src/sass/hotspots.scss */
.hotspots .hs-container .hs-reveal.hs-right {
  right: 24px;
  left: unset;
}
/* line 85, ../../src/sass/hotspots.scss */
.hotspots .hs-container .hs-reveal.hs-top {
  -webkit-transform: translate(0);
     -moz-transform: translate(0);
      -ms-transform: translate(0);
       -o-transform: translate(0);
          transform: translate(0);
  top: -12px;
}
/* line 90, ../../src/sass/hotspots.scss */
.hotspots .hs-container .hs-reveal.hs-bottom {
  -webkit-transform: translate(0);
     -moz-transform: translate(0);
      -ms-transform: translate(0);
       -o-transform: translate(0);
          transform: translate(0);
  top: unset;
  bottom: -12px;
}
/* line 95, ../../src/sass/hotspots.scss */
.hotspots .hs-container .hs-reveal h4 {
  color: #FFF;
}
/* line 99, ../../src/sass/hotspots.scss */
.hotspots .hs-container .hs-reveal p {
  font-size: 16px;
  line-height: 24px;
}
/* line 105, ../../src/sass/hotspots.scss */
.hotspots .hs-container .hs-close {
  font-size: 1px;
  text-indent: -2000px;
  height: 15px;
  width: 15px;
  background-image: url(src/Assets/hotspot-close.svg);
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
  background-position: center center;
  position: absolute;
  top: 16px;
  right: 12px;
  cursor: pointer;
  opacity: .8;
  -webkit-transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
     -moz-transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
       -o-transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
          transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
/* line 120, ../../src/sass/hotspots.scss */
.hotspots .hs-container .hs-close:hover {
  opacity: 1;
}
/* line 125, ../../src/sass/hotspots.scss */
.hotspots .hs-container .hs-image {
  max-width: 100%;
  margin-top: 35px;
}
/* line 130, ../../src/sass/hotspots.scss */
.hotspots .hs-container img.hs-image {
  max-height: 260px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

/* line 142, ../../src/sass/hotspots.scss */
.hotspots .container .standard-tiles {
  margin-top: 60px;
}
/* line 145, ../../src/sass/hotspots.scss */
.hotspots .container .standard-tiles .grid {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(1, minmax(150px, 1fr));
}
@media only screen and (min-width: 640px) {
  /* line 145, ../../src/sass/hotspots.scss */
  .hotspots .container .standard-tiles .grid {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }
}
/* line 156, ../../src/sass/hotspots.scss */
.hotspots .container .standard-tiles .grid .tile {
  -webkit-transition: all 1s;
     -moz-transition: all 1s;
       -o-transition: all 1s;
          transition: all 1s;
}
/* line 160, ../../src/sass/hotspots.scss */
.hotspots .container .standard-tiles .grid .tile .image-block {
  height: 270px;
}
/* line 163, ../../src/sass/hotspots.scss */
.hotspots .container .standard-tiles .grid .tile .image-block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
/* line 175, ../../src/sass/hotspots.scss */
.hotspots .container .standard-tiles.mobile-only {
  display: none;
}
@media only screen and (max-width: 767px) {
  /* line 180, ../../src/sass/hotspots.scss */
  .hotspots .container .standard-tiles.mobile-only {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* line 35, ../../src/sass/style.scss */
a {
  color: #BA000A;
  text-decoration: underline;
}
/* line 39, ../../src/sass/style.scss */
a:hover {
  text-decoration: none;
}

/* line 45, ../../src/sass/style.scss */
.alignleft {
  float: none;
  margin: 0 0 20px 0;
}
@media only screen and (min-width: 560px) {
  /* line 45, ../../src/sass/style.scss */
  .alignleft {
    float: left;
    margin: 0 20px 20px 0;
  }
}

/* line 54, ../../src/sass/style.scss */
.alignright {
  float: none;
  margin: 0 0 20px 0;
}
@media only screen and (min-width: 560px) {
  /* line 54, ../../src/sass/style.scss */
  .alignright {
    float: right;
    margin: 0 0 20px 20px;
  }
}

/* line 63, ../../src/sass/style.scss */
sup {
  vertical-align: super;
}

/* line 66, ../../src/sass/style.scss */
sub {
  vertical-align: sub;
}
/* DO NOT EDIT THIS FILE! */
/* to make changes, create a file called hacks.css and put them in there */
/* DO NOT EDIT THIS FILE! */