/* Normalize */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}

/* Flexgrid */
.row {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 2em);
  max-width: 70em;
  margin: 0 auto;
  gap: 1em;
}
@media (min-width: 30em) {
  .row {
    width: calc(100% - 2em);
  }
}
@media (min-width: 50em) {
  .row {
    width: calc(100% - 4em);
  }
}
@media (min-width: 70em) {
  .row {
    width: calc(100% - 8em);
  }
}
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12 {
  width: 100%;
}
@media (min-width: 30em) {
  .col-sm-1 {
    width: calc((100% / 12 * 1) - (1 / 12 * 1em));
  }
  .col-sm-2 {
    width: calc((100% / 12 * 2) - (2 / 12 * 1em));
  }
  .col-sm-3 {
    width: calc((100% / 12 * 3) - (3 / 12 * 1em));
  }
  .col-sm-4 {
    width: calc((100% / 12 * 4) - (4 / 12 * 1em));
  }
  .col-sm-5 {
    width: calc((100% / 12 * 5) - (5 / 12 * 1em));
  }
  .col-sm-6 {
    width: calc((100% / 12 * 6) - (6 / 12 * 1em));
  }
  .col-sm-7 {
    width: calc((100% / 12 * 7) - (7 / 12 * 1em));
  }
  .col-sm-8 {
    width: calc((100% / 12 * 8) - (8 / 12 * 1em));
  }
  .col-sm-9 {
    width: calc((100% / 12 * 9) - (9 / 12 * 1em));
  }
  .col-sm-10 {
    width: calc((100% / 12 * 10) - (10 / 12 * 1em));
  }
  .col-sm-11 {
    width: calc((100% / 12 * 11) - (11 / 12 * 1em));
  }
  .col-sm-12 {
    width: 100%;
  }
}
@media (min-width: 50em) {
  .col-md-1 {
    width: calc((100% / 12 * 1) - (1 / 12 * 2em));
  }
  .col-md-2 {
    width: calc((100% / 12 * 2) - (2 / 12 * 2em));
  }
  .col-md-3 {
    width: calc((100% / 12 * 3) - (3 / 12 * 2em));
  }
  .col-md-4 {
    width: calc((100% / 12 * 4) - (4 / 12 * 2em));
  }
  .col-md-5 {
    width: calc((100% / 12 * 5) - (5 / 12 * 2em));
  }
  .col-md-6 {
    width: calc((100% / 12 * 6) - (6 / 12 * 2em));
  }
  .col-md-7 {
    width: calc((100% / 12 * 7) - (7 / 12 * 2em));
  }
  .col-md-8 {
    width: calc((100% / 12 * 8) - (8 / 12 * 2em));
  }
  .col-md-9 {
    width: calc((100% / 12 * 9) - (9 / 12 * 2em));
  }
  .col-md-10 {
    width: calc((100% / 12 * 10) - (10 / 12 * 2em));
  }
  .col-md-11 {
    width: calc((100% / 12 * 11) - (11 / 12 * 2em));
  }
  .col-md-12 {
    width: 100%;
  }
}
@media (min-width: 70em) {
  .col-lg-1 {
    width: calc((100% / 12 * 1) - (1 / 12 * 1em));
  }
  .col-lg-2 {
    width: calc((100% / 12 * 2) - (2 / 12 * 1em));
  }
  .col-lg-3 {
    width: calc((100% / 12 * 3) - (3 / 12 * 1em));
  }
  .col-lg-4 {
    width: calc((100% / 12 * 4) - (4 / 12 * 1em));
  }
  .col-lg-5 {
    width: calc((100% / 12 * 5) - (5 / 12 * 1em));
  }
  .col-lg-6 {
    width: calc((100% / 12 * 6) - (6 / 12 * 1em));
  }
  .col-lg-7 {
    width: calc((100% / 12 * 7) - (7 / 12 * 1em));
  }
  .col-lg-8 {
    width: calc((100% / 12 * 8) - (8 / 12 * 1em));
  }
  .col-lg-9 {
    width: calc((100% / 12 * 9) - (9 / 12 * 1em));
  }
  .col-lg-10 {
    width: calc((100% / 12 * 10) - (10 / 12 * 1em));
  }
  .col-lg-11 {
    width: calc((100% / 12 * 11) - (11 / 12 * 1em));
  }
  .col-lg-12 {
    width: 100%;
  }
}
@media (min-width: 100em) {
  .col-xl-1 {
    width: calc((100% / 12 * 1) - (1 / 12 * 4em));
  }
  .col-xl-2 {
    width: calc((100% / 12 * 2) - (2 / 12 * 4em));
  }
  .col-xl-3 {
    width: calc((100% / 12 * 3) - (3 / 12 * 4em));
  }
  .col-xl-4 {
    width: calc((100% / 12 * 4) - (4 / 12 * 4em));
  }
  .col-xl-5 {
    width: calc((100% / 12 * 5) - (5 / 12 * 4em));
  }
  .col-xl-6 {
    width: calc((100% / 12 * 6) - (6 / 12 * 4em));
  }
  .col-xl-7 {
    width: calc((100% / 12 * 7) - (7 / 12 * 4em));
  }
  .col-xl-8 {
    width: calc((100% / 12 * 8) - (8 / 12 * 4em));
  }
  .col-xl-9 {
    width: calc((100% / 12 * 9) - (9 / 12 * 4em));
  }
  .col-xl-10 {
    width: calc((100% / 12 * 10) - (10 / 12 * 4em));
  }
  .col-xl-11 {
    width: calc((100% / 12 * 11) - (11 / 12 * 4em));
  }
  .col-xl-12 {
    width: 100%;
  }
}
.offset-1 {
  margin-left: calc(100% / 12 * 1);
}
.offset-2 {
  margin-left: calc(100% / 12 * 2);
}
.offset-3 {
  margin-left: calc(100% / 12 * 3);
}
.offset-4 {
  margin-left: calc(100% / 12 * 4);
}
.offset-5 {
  margin-left: calc(100% / 12 * 5);
}
.offset-6 {
  margin-left: calc(100% / 12 * 6);
}
.offset-7 {
  margin-left: calc(100% / 12 * 7);
}
.offset-8 {
  margin-left: calc(100% / 12 * 8);
}
.offset-9 {
  margin-left: calc(100% / 12 * 9);
}
.offset-10 {
  margin-left: calc(100% / 12 * 10);
}
.offset-11 {
  margin-left: calc(100% / 12 * 11);
}
@media (min-width: 30em) {
  .sm-offset-1 {
    margin-left: calc(100% / 12 * 1);
  }
  .sm-offset-2 {
    margin-left: calc(100% / 12 * 2);
  }
  .sm-offset-3 {
    margin-left: calc(100% / 12 * 3);
  }
  .sm-offset-4 {
    margin-left: calc(100% / 12 * 4);
  }
  .sm-offset-5 {
    margin-left: calc(100% / 12 * 5);
  }
  .sm-offset-6 {
    margin-left: calc(100% / 12 * 6);
  }
  .sm-offset-7 {
    margin-left: calc(100% / 12 * 7);
  }
  .sm-offset-8 {
    margin-left: calc(100% / 12 * 8);
  }
  .sm-offset-9 {
    margin-left: calc(100% / 12 * 9);
  }
  .sm-offset-10 {
    margin-left: calc(100% / 12 * 10);
  }
  .sm-offset-11 {
    margin-left: calc(100% / 12 * 11);
  }
}
@media (min-width: 50em) {
  .md-offset-1 {
    margin-left: calc(100% / 12 * 1);
  }
  .md-offset-2 {
    margin-left: calc(100% / 12 * 2);
  }
  .md-offset-3 {
    margin-left: calc(100% / 12 * 3);
  }
  .md-offset-4 {
    margin-left: calc(100% / 12 * 4);
  }
  .md-offset-5 {
    margin-left: calc(100% / 12 * 5);
  }
  .md-offset-6 {
    margin-left: calc(100% / 12 * 6);
  }
  .md-offset-7 {
    margin-left: calc(100% / 12 * 7);
  }
  .md-offset-8 {
    margin-left: calc(100% / 12 * 8);
  }
  .md-offset-9 {
    margin-left: calc(100% / 12 * 9);
  }
  .md-offset-10 {
    margin-left: calc(100% / 12 * 10);
  }
  .md-offset-11 {
    margin-left: calc(100% / 12 * 11);
  }
}
@media (min-width: 70em) {
  .lg-offset-1 {
    margin-left: calc(100% / 12 * 1);
  }
  .lg-offset-2 {
    margin-left: calc(100% / 12 * 2);
  }
  .lg-offset-3 {
    margin-left: calc(100% / 12 * 3);
  }
  .lg-offset-4 {
    margin-left: calc(100% / 12 * 4);
  }
  .lg-offset-5 {
    margin-left: calc(100% / 12 * 5);
  }
  .lg-offset-6 {
    margin-left: calc(100% / 12 * 6);
  }
  .lg-offset-7 {
    margin-left: calc(100% / 12 * 7);
  }
  .lg-offset-8 {
    margin-left: calc(100% / 12 * 8);
  }
  .lg-offset-9 {
    margin-left: calc(100% / 12 * 9);
  }
  .lg-offset-10 {
    margin-left: calc(100% / 12 * 10);
  }
  .lg-offset-11 {
    margin-left: calc(100% / 12 * 11);
  }
}
@media (min-width: 100em) {
  .xl-offset-1 {
    margin-left: calc(100% / 12 * 1);
  }
  .xl-offset-2 {
    margin-left: calc(100% / 12 * 2);
  }
  .xl-offset-3 {
    margin-left: calc(100% / 12 * 3);
  }
  .xl-offset-4 {
    margin-left: calc(100% / 12 * 4);
  }
  .xl-offset-5 {
    margin-left: calc(100% / 12 * 5);
  }
  .xl-offset-6 {
    margin-left: calc(100% / 12 * 6);
  }
  .xl-offset-7 {
    margin-left: calc(100% / 12 * 7);
  }
  .xl-offset-8 {
    margin-left: calc(100% / 12 * 8);
  }
  .xl-offset-9 {
    margin-left: calc(100% / 12 * 9);
  }
  .xl-offset-10 {
    margin-left: calc(100% / 12 * 10);
  }
  .xl-offset-11 {
    margin-left: calc(100% / 12 * 11);
  }
}

* {
  box-sizing: border-box;
}

:root {
  --clrRed: #ba161e;
  --clrMidGrey: #a1a1a1;
  --clrLightGrey: #e6e6e6;
  --fntHeading: "Exo 2", sans-serif;
  --fntText: "Open Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fntText);
  font-size: 1rem;
  background: black;
  color: var(--clrLightGrey);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--fntHeading);
  text-transform: uppercase;
  font-weight: 200;
}

h1,
h2 {
  font-size: 3rem;
}

a {
  text-decoration: none;
  color: white;
}

p {
  line-height: 1.65em;
  color: var(--clrLightGrey);
}

/* Main navigation, mobile */

#head.wrapper {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  overflow: hidden;
  z-index: 1;
}

#head > img.branding {
  position: absolute;
  top: 20px;
  left: 20px;
  width: auto;
  height: 65px;
}

#toggle-open {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 65px;
  top: 20px;
  right: 0;
  background-image: linear-gradient(
    to bottom,
    hsl(3, 80%, 50%),
    hsl(3, 80%, 40%)
  );
  transition: all 250ms ease-in-out;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0 100%);
}

#toggle-open span {
  margin-left: 1em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

#navbar {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  left: 100%;
  letter-spacing: 0.033em;
  background: rgba(225, 35, 25, 0.95);
  transition: left 500ms ease-in-out;
}

#navbar.open {
  left: 0;
}

#navbar.close {
  left: 100%;
}

#navbar #toggle-close {
  width: 50px;
  height: 50px;
  margin: 50px auto 0;
}

ul#menu {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

ul#menu li {
  display: block;
  text-align: center;
  text-transform: uppercase;
}

ul#menu li {
  font-size: 1.33rem;
}

ul#menu li:nth-child(4) {
  padding-bottom: 1em;
}

ul#menu li.telephone {
  padding-top: 1em;
  border-top: 1px solid hsla(0, 0%, 100%, 0.25);
}

ul#menu li.email {
  text-transform: lowercase;
}

ul#menu a {
  display: inline-block;
  padding: 0.5em;
}

/* Main navigation, iPad portrait */

@media (min-width: 40em) {
  #head.wrapper {
    position: absolute;
    display: flex;
    justify-content: space-between;
    width: calc(100% - 4em);
    max-width: 100em;
    height: auto;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    overflow: auto;
    z-index: 1;
  }

  #head > img.branding {
    position: relative;
    top: auto;
    left: auto;
  }

  #toggle-open {
    display: none;
  }

  #navbar {
    position: relative;
    left: auto;
    width: auto;
    height: auto;
    background-image: linear-gradient(
      to bottom,
      hsl(3, 80%, 50%),
      hsl(3, 80%, 40%)
    );
    clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0 100%);
    padding: 0 2.5em;
  }

  #navbar #toggle-close {
    display: none;
  }

  ul#menu {
    display: flex;
  }

  ul#menu li {
    display: flex;
    align-items: center;
    padding: 0.5em 0;
    background-image: linear-gradient(to right, white, white);
    background-repeat: no-repeat;
    background-size: 0 5px;
    background-position: 0 100%;
    transition: background 500ms;
  }

  ul#menu li:hover {
    background-size: 100% 5px;
  }

  ul#menu li {
    font-size: 1rem;
  }

  ul#menu li:nth-child(4) {
    padding-bottom: 0.5em;
  }

  ul#menu li.telephone {
    padding-top: 0.5em;
    display: none;
  }

  ul#menu li.email {
    display: none;
  }

  ul#menu a {
    padding: 0.75em;
  }
}

/* Main navigation, iPad landscape and larger */

@media (min-width: 50em) {
  #navbar {
    clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0 100%);
  }

  ul#menu li:nth-child(4) {
    padding-right: 0.5em;
  }

  ul#menu li.telephone,
  ul#menu li.email {
    display: flex;
    font-size: 0.75em;
  }

  ul#menu li.telephone {
    border-top: 0;
    border-left: 1px solid hsla(0, 0%, 100%, 0.125);
    padding-left: 0.5em;
  }
}

/* Landing page, hero image */

section#hero.home {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("../images/hero_image-landing-sm.webp") no-repeat;
  background-size: cover;
  background-position: center;
}

section#hero.home > .overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 150vh;
  background-image: linear-gradient(
    to bottom,
    hsl(0deg 0% 100% / 5%) 100vh,
    hsl(0deg 0% 100% / 0%)
  );
  clip-path: polygon(80% 0%, 100% 0%, 100% 100%, 0 100%);
}

section#hero.home span {
  position: absolute;
  display: block;
  bottom: 1em;
  left: 10%;
  margin: 0;
  padding: 0;
  font-family: var(--fntHeading);
  font-size: 3rem;
  font-weight: 200;
  text-transform: uppercase;
}

@media (min-width: 40em) {
  section#hero.home {
    background: url("../images/hero_image-landing-lg.webp") no-repeat;
    background-size: cover;
    background-position: center;
  }

  section#hero.home span {
    font-size: 3.5rem;
    bottom: 1.5em;
  }

  section#hero.home > .overlay {
    width: 80%;
    margin-left: 30%;
    clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 0 100%);
  }
}

@media (min-width: 40em) and (orientation: landscape) {
  section#hero.home span {
    left: 40%;
  }
}

@media (min-width: 50em) {
  section#hero.home > .overlay {
    clip-path: polygon(45% 0%, 100% 0%, 100% 100%, 0 100%);
  }

  section#hero.home span {
    left: 38%;
  }
}

@media (min-width: 70em) {
  section#hero.home span {
    font-size: 4.5rem;
  }
}

@media (min-width: 100em) {
  section#hero.home span {
    font-size: 5.25rem;
  }
}

/* Grid system */

.row {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 2em);
  max-width: 70em;
  margin: 0 auto;
  gap: 1em;
}

/* iPhone 6s Plus horizontal & iPad vertical */
@media (min-width: 30em) {
  .row {
    width: calc(100% - 2em);
  }
}

/* iPad horizontal */
@media (min-width: 50em) {
  .row {
    width: calc(100% - 4em);
  }
}

/* iPad Pro horizontal & laptop screen */
@media (min-width: 70em) {
  .row {
    width: calc(100% - 8em);
  }
}

/* Extra small screen size column width reset */
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12 {
  width: 100%;
}

/* Small screen size, iPad vertical orientation */
@media (min-width: 30em) {
  .col-sm-1 {
    width: calc((100% / 12 * 1) - (1 / 12 * 1em));
  }

  .col-sm-2 {
    width: calc((100% / 12 * 2) - (2 / 12 * 1em));
  }

  .col-sm-3 {
    width: calc((100% / 12 * 3) - (3 / 12 * 1em));
  }

  .col-sm-4 {
    width: calc((100% / 12 * 4) - (4 / 12 * 1em));
  }

  .col-sm-5 {
    width: calc((100% / 12 * 5) - (5 / 12 * 1em));
  }

  .col-sm-6 {
    width: calc((100% / 12 * 6) - (6 / 12 * 1em));
  }

  .col-sm-7 {
    width: calc((100% / 12 * 7) - (7 / 12 * 1em));
  }

  .col-sm-8 {
    width: calc((100% / 12 * 8) - (8 / 12 * 1em));
  }

  .col-sm-9 {
    width: calc((100% / 12 * 9) - (9 / 12 * 1em));
  }

  .col-sm-10 {
    width: calc((100% / 12 * 10) - (10 / 12 * 1em));
  }

  .col-sm-11 {
    width: calc((100% / 12 * 11) - (11 / 12 * 1em));
  }

  .col-sm-12 {
    width: 100%;
  }
}

/* Medium size screen, iPad horizontal */
@media (min-width: 50em) {
  .col-md-1 {
    width: calc((100% / 12 * 1) - (1 / 12 * 2em));
  }

  .col-md-2 {
    width: calc((100% / 12 * 2) - (2 / 12 * 2em));
  }

  .col-md-3 {
    width: calc((100% / 12 * 3) - (3 / 12 * 2em));
  }

  .col-md-4 {
    width: calc((100% / 12 * 4) - (4 / 12 * 2em));
  }

  .col-md-5 {
    width: calc((100% / 12 * 5) - (5 / 12 * 2em));
  }

  .col-md-6 {
    width: calc((100% / 12 * 6) - (6 / 12 * 2em));
  }

  .col-md-7 {
    width: calc((100% / 12 * 7) - (7 / 12 * 2em));
  }

  .col-md-8 {
    width: calc((100% / 12 * 8) - (8 / 12 * 2em));
  }

  .col-md-9 {
    width: calc((100% / 12 * 9) - (9 / 12 * 2em));
  }

  .col-md-10 {
    width: calc((100% / 12 * 10) - (10 / 12 * 2em));
  }

  .col-md-11 {
    width: calc((100% / 12 * 11) - (11 / 12 * 2em));
  }

  .col-md-12 {
    width: 100%;
  }
}

/* Medium large size screen, iPad Pro and standard laptop */
@media (min-width: 70em) {
  .col-lg-1 {
    width: calc((100% / 12 * 1) - (1 / 12 * 1em));
  }

  .col-lg-2 {
    width: calc((100% / 12 * 2) - (2 / 12 * 1em));
  }

  .col-lg-3 {
    width: calc((100% / 12 * 3) - (3 / 12 * 1em));
  }

  .col-lg-4 {
    width: calc((100% / 12 * 4) - (4 / 12 * 1em));
  }

  .col-lg-5 {
    width: calc((100% / 12 * 5) - (5 / 12 * 1em));
  }

  .col-lg-6 {
    width: calc((100% / 12 * 6) - (6 / 12 * 1em));
  }

  .col-lg-7 {
    width: calc((100% / 12 * 7) - (7 / 12 * 1em));
  }

  .col-lg-8 {
    width: calc((100% / 12 * 8) - (8 / 12 * 1em));
  }

  .col-lg-9 {
    width: calc((100% / 12 * 9) - (9 / 12 * 1em));
  }

  .col-lg-10 {
    width: calc((100% / 12 * 10) - (10 / 12 * 1em));
  }

  .col-lg-11 {
    width: calc((100% / 12 * 11) - (11 / 12 * 1em));
  }

  .col-lg-12 {
    width: 100%;
  }
}

@media (min-width: 100em) {
  .col-xl-1 {
    width: calc((100% / 12 * 1) - (1 / 12 * 4em));
  }

  .col-xl-2 {
    width: calc((100% / 12 * 2) - (2 / 12 * 4em));
  }

  .col-xl-3 {
    width: calc((100% / 12 * 3) - (3 / 12 * 4em));
  }

  .col-xl-4 {
    width: calc((100% / 12 * 4) - (4 / 12 * 4em));
  }

  .col-xl-5 {
    width: calc((100% / 12 * 5) - (5 / 12 * 4em));
  }

  .col-xl-6 {
    width: calc((100% / 12 * 6) - (6 / 12 * 4em));
  }

  .col-xl-7 {
    width: calc((100% / 12 * 7) - (7 / 12 * 4em));
  }

  .col-xl-8 {
    width: calc((100% / 12 * 8) - (8 / 12 * 4em));
  }

  .col-xl-9 {
    width: calc((100% / 12 * 9) - (9 / 12 * 4em));
  }

  .col-xl-10 {
    width: calc((100% / 12 * 10) - (10 / 12 * 4em));
  }

  .col-xl-11 {
    width: calc((100% / 12 * 11) - (11 / 12 * 4em));
  }

  .col-xl-12 {
    width: 100%;
  }
}

/* Offset settings, all screen sizes */
.offset-1 {
  margin-left: calc(100% / 12 * 1);
}

.offset-2 {
  margin-left: calc(100% / 12 * 2);
}

.offset-3 {
  margin-left: calc(100% / 12 * 3);
}

.offset-4 {
  margin-left: calc(100% / 12 * 4);
}

.offset-5 {
  margin-left: calc(100% / 12 * 5);
}

.offset-6 {
  margin-left: calc(100% / 12 * 6);
}

.offset-7 {
  margin-left: calc(100% / 12 * 7);
}

.offset-8 {
  margin-left: calc(100% / 12 * 8);
}

.offset-9 {
  margin-left: calc(100% / 12 * 9);
}

.offset-10 {
  margin-left: calc(100% / 12 * 10);
}

.offset-11 {
  margin-left: calc(100% / 12 * 11);
}

/* Offset settings, small screen size */
@media (min-width: 30em) {
  .sm-offset-1 {
    margin-left: calc(100% / 12 * 1);
  }

  .sm-offset-2 {
    margin-left: calc(100% / 12 * 2);
  }

  .sm-offset-3 {
    margin-left: calc(100% / 12 * 3);
  }

  .sm-offset-4 {
    margin-left: calc(100% / 12 * 4);
  }

  .sm-offset-5 {
    margin-left: calc(100% / 12 * 5);
  }

  .sm-offset-6 {
    margin-left: calc(100% / 12 * 6);
  }

  .sm-offset-7 {
    margin-left: calc(100% / 12 * 7);
  }

  .sm-offset-8 {
    margin-left: calc(100% / 12 * 8);
  }

  .sm-offset-9 {
    margin-left: calc(100% / 12 * 9);
  }

  .sm-offset-10 {
    margin-left: calc(100% / 12 * 10);
  }

  .sm-offset-11 {
    margin-left: calc(100% / 12 * 11);
  }
}

@media (min-width: 50em) {
  .md-offset-1 {
    margin-left: calc(100% / 12 * 1);
  }

  .md-offset-2 {
    margin-left: calc(100% / 12 * 2);
  }

  .md-offset-3 {
    margin-left: calc(100% / 12 * 3);
  }

  .md-offset-4 {
    margin-left: calc(100% / 12 * 4);
  }

  .md-offset-5 {
    margin-left: calc(100% / 12 * 5);
  }

  .md-offset-6 {
    margin-left: calc(100% / 12 * 6);
  }

  .md-offset-7 {
    margin-left: calc(100% / 12 * 7);
  }

  .md-offset-8 {
    margin-left: calc(100% / 12 * 8);
  }

  .md-offset-9 {
    margin-left: calc(100% / 12 * 9);
  }

  .md-offset-10 {
    margin-left: calc(100% / 12 * 10);
  }

  .md-offset-11 {
    margin-left: calc(100% / 12 * 11);
  }
}

@media (min-width: 70em) {
  .lg-offset-1 {
    margin-left: calc(100% / 12 * 1);
  }

  .lg-offset-2 {
    margin-left: calc(100% / 12 * 2);
  }

  .lg-offset-3 {
    margin-left: calc(100% / 12 * 3);
  }

  .lg-offset-4 {
    margin-left: calc(100% / 12 * 4);
  }

  .lg-offset-5 {
    margin-left: calc(100% / 12 * 5);
  }

  .lg-offset-6 {
    margin-left: calc(100% / 12 * 6);
  }

  .lg-offset-7 {
    margin-left: calc(100% / 12 * 7);
  }

  .lg-offset-8 {
    margin-left: calc(100% / 12 * 8);
  }

  .lg-offset-9 {
    margin-left: calc(100% / 12 * 9);
  }

  .lg-offset-10 {
    margin-left: calc(100% / 12 * 10);
  }

  .lg-offset-11 {
    margin-left: calc(100% / 12 * 11);
  }
}

@media (min-width: 100em) {
  .xl-offset-1 {
    margin-left: calc(100% / 12 * 1);
  }

  .xl-offset-2 {
    margin-left: calc(100% / 12 * 2);
  }

  .xl-offset-3 {
    margin-left: calc(100% / 12 * 3);
  }

  .xl-offset-4 {
    margin-left: calc(100% / 12 * 4);
  }

  .xl-offset-5 {
    margin-left: calc(100% / 12 * 5);
  }

  .xl-offset-6 {
    margin-left: calc(100% / 12 * 6);
  }

  .xl-offset-7 {
    margin-left: calc(100% / 12 * 7);
  }

  .xl-offset-8 {
    margin-left: calc(100% / 12 * 8);
  }

  .xl-offset-9 {
    margin-left: calc(100% / 12 * 9);
  }

  .xl-offset-10 {
    margin-left: calc(100% / 12 * 10);
  }

  .xl-offset-11 {
    margin-left: calc(100% / 12 * 11);
  }
}

/* Styling */

/* Landing page, common elements */

section h1,
section h2 {
  position: relative;
  line-height: 1em;
}

section h1::after,
section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 9999em;
  height: 1px;
  background: hsla(0, 0%, 100%, 0.1);
  z-index: 1;
}

/* Landing page, ABOUT section */

section#about {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 2em 0 17.5em 0;
  border: 0;
  border-bottom: 3px solid;
  border-image: linear-gradient(
      to right,
      green 33%,
      white 33%,
      white 66%,
      red 66%
    )
    1;
  background: url("../images/section_bg-about-sm.jpg") no-repeat;
  background-size: 175%;
  background-position: bottom;
}

#about h1::after,
#cgmitalia h2::after {
  bottom: 0.3em;
}

#about h1 > span,
#cgmitalia h2 > span {
  display: block;
  font-size: 1.5rem;
  color: #808080;
}

#about p > span,
#cgmitalia p > span {
  font-family: var(--fntHeading);
  font-size: 1.5em;
  text-transform: uppercase;
  color: white;
}

#about .entry p:last-child {
  margin-top: 2em;
}

#about .image {
  display: flex;
  justify-content: center;
  align-items: center;
}

#about img.branding {
  display: block;
  width: auto;
  height: 65px;
  margin: 2em auto;
}

@media (min-width: 40em) {
  section#about {
    padding: 4em 0 20em 0;
    background: url("../images/section_bg-about-lg.jpg") no-repeat;
    background-size: 100%;
    background-position: bottom;
  }

  #about .entry,
  #cgmitalia .entry {
    border-left: 2px solid var(--clrRed);
    margin-top: 1em;
    padding: 0 0 0 2em;
  }

  #about .entry *:first-child,
  #cgmitalia .entry *:first-child {
    margin-top: 0;
  }

  #about .entry *:last-child,
  #cgmitalia .entry *:first-child {
    margin-bottom: 0;
  }

  #about img.branding {
    width: auto;
    height: 100px;
    margin: 4em 0;
  }
}

@media (min-width: 50em) {
  section#about {
    padding: 4em 0 30em 0;
  }
}

@media (min-width: 50em) and (orientation: landscape) {
  section#about .overlay {
    position: absolute;
    top: 0;
    right: -5%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(
      to bottom,
      hsla(0, 0%, 100%, 0.1),
      hsla(0, 0%, 100%, 0) 50%
    );
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0 100%);
  }
}

@media (min-width: 70em) {
  section#about {
    padding: 6em 0 35em 0;
    background-size: 85%;
  }
}

@media (min-width: 100em) {
  section#about {
    padding: 10em 0 40em 0;
  }
}

@media (min-width: 100em) and (orientation: landscape) {
  section#about {
    background-size: 75%;
  }

  section#about .overlay {
    right: -19%;
    clip-path: polygon(21% 0%, 100% 0%, 100% 100%, 0 100%);
  }
}

@media (min-width: 150em) and (orientation: landscape) {
  section#about {
    background-size: 57.5%;
  }
}

/* Landing page, OFFER section */

section#offer {
  position: relative;
  padding: 2em 0;
  overflow: hidden;
}

#offer--intro {
  width: 100%;
  background-image: linear-gradient(
    to bottom,
    hsl(0, 0%, 0%),
    hsl(0, 0%, 10%) 66%,
    hsl(0, 0%, 0%)
  );
}

#offer--intro img {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 2em 0;
}

#offer--details .row > div {
  padding-bottom: 1.5em;
}

#offer--details h3 {
  font-size: 1.5rem;
  color: white;
}

#offer--details h3 span {
  margin-right: 0.5em;
  font-size: 1.125rem;
  color: var(--clrMidGrey);
}

#offer--details p {
  margin: 0;
  padding-left: 2em;
  border-left: 2px solid var(--clrRed);
}

#offer--more .disclaimer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 5em 0;
}

#offer--more .disclaimer img {
  height: 100px;
  width: 100px;
}

#offer--more .disclaimer p {
  text-align: center;
}

@media (min-width: 40em) {
  #offer--details .row > div {
    padding-bottom: 2em;
  }

  #offer--more .disclaimer {
    flex-wrap: nowrap;
  }

  #offer--more .disclaimer p {
    padding-left: 2em;
  }
}

@media (min-width: 50em) and (orientation: landscape) {
  #offer .overlay {
    position: absolute;
    top: 0;
    right: -25%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(
      to bottom,
      hsla(0, 0%, 100%, 0.1),
      hsla(0, 0%, 100%, 0) 50%
    );
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0 100%);
  }

  #offer--details .row > div {
    padding-bottom: 3.5em;
  }
}

@media (min-width: 70em) {
  section#offer {
    padding: 6em 0;
  }

  #offer--details .row > div {
    padding-bottom: 5em;
  }
}

@media (min-width: 100em) {
  section#offer {
    padding: 10em 0;
  }
}

/* Landing page, COMMENTS section */

section#comments.lazy {
  background-image: none;
  background-color: #aeaeae;
}

section#comments {
  position: relative;
  padding: 2.5em 0 1em;
  background: url("../images/section_bg-comments-sm.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}

.google-comments {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  z-index: 2;
}

.google-comments .person {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 1em;
  font-family: var(--fntHeading);
  background: var(--clrRed);
}

.google-comments .initials {
  display: flex;
  justify-content: center;
  width: 100%;
}

.google-comments .initials > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  margin: 1em 0;
  padding: 0;
  font-size: 1.5em;
  background: hsl(0deg 0% 100% / 10%);
  border-radius: 50%;
}

.google-comments .name {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 0 1em 0;
}

.google-comments .name span {
  font-size: 1.125em;
  text-align: center;
}

.google-comments .name > span > span {
  display: block;
  font-size: 0.875em;
  font-weight: bold;
}

.google-comments .message {
  position: relative;
  padding: 1em 1.5em 1.5em;
  background: hsla(0, 0%, 0%, 0.9);
}

.google-comments .message::before {
  content: "";
  position: absolute;
  top: -20px;
  right: 1em;
  width: 40px;
  height: 40px;
  background: url("../images/icon-quote.svg") no-repeat;
  background-position: center;
}

.google-comments .message::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 1em;
  width: 40px;
  height: 40px;
  background: url("../images/icon-quote.svg") no-repeat;
  background-position: center;
}

.google-comments .message p {
  font-size: 0.875em;
  text-align: center;
}

.google-comments .message small {
  display: block;
  text-align: right;
  color: #8e8e8e;
}

#comments .tab-content {
  display: none;
}

#comments .tab-content.active {
  display: block;
  box-shadow: 0 0 50px hsl(0deg 0% 0% / 50%);
}

#comments ul {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 1.5em 0 0 0;
  padding: 0;
  list-style-type: none;
  z-index: 2;
}

#comments li {
  padding: 1em;
  cursor: pointer;
}

#comments li > span {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: hsl(0deg 0% 100% / 25%);
  transition: background 350ms;
}

#comments li.active > span {
  background: hsla(0, 0%, 100%, 1);
}

#comments li:hover > span {
  background: hsla(0, 0%, 100%, 0.5);
}

@media (min-width: 40em) {
  section#comments {
    padding: 5em 0 3em;
  }
}

@media (min-width: 50em) {
  #comments > .overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100vh;
    background-image: linear-gradient(
      to bottom,
      hsl(0deg 0% 100% / 5%) 50%,
      hsl(0deg 0% 100% / 0%)
    );
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0 100%);
  }

  .google-comments {
    flex-wrap: nowrap;
  }

  .google-comments .person {
    padding: 1em 2em;
  }

  .google-comments .message {
    padding: 2em 3em;
  }

  .google-comments .message::before {
    right: 3em;
  }

  .google-comments .message::after {
    left: 3em;
  }

  .google-comments .message p {
    font-size: 1em;
    text-align: left;
  }
}

@media (min-width: 70em) {
  section#comments {
    padding: 10em 0 6em;
  }

  #comments ul {
    margin: 3em 0 0 0;
  }

  #comments li > span {
    width: 10px;
    height: 10px;
  }
}

@media (min-width: 100em) {
  section#comments {
    padding: 12em 0 10em;
  }
}

/* Landing page, CGM ITALIA section */

section#cgmitalia {
  padding: 2rem 0;
  overflow: hidden;
}

#cgmitalia .image {
  display: flex;
  justify-content: center;
  align-items: center;
}

#cgmitalia .image > div {
  width: 80%;
}

#cgmitalia .image img {
  flex: 1;
  width: auto;
  margin: 0;
  padding: 2rem 0;
}

#cgmitalia .image img:first-of-type {
  border-bottom: 1px solid hsl(0, 0%, 100%, 0.1);
}

#cgmitalia .gallery > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#cgmitalia .gallery img {
  width: auto;
  height: auto;
}

#cgmitalia .entry.more {
  padding-left: 0;
  font-size: 0.85rem;
  border-left: 0;
}

@media (min-width: 40em) {
  section#cgmitalia {
    padding: 4rem 0;
  }

  #cgmitalia .image > div {
    display: flex;
    justify-content: center;
    margin-top: 5vh;
  }

  #cgmitalia .image img {
    max-width: 50%;
    margin: 0;
    padding: 0 2rem;
  }

  #cgmitalia .image img:first-of-type {
    border-bottom: 0;
    border-right: 1px solid hsl(0, 0%, 100%, 0.1);
  }

  #cgmitalia .gallery > div {
    flex-direction: row;
    margin-top: min(5rem, 10vw);
  }

  #cgmitalia .gallery img {
    min-width: 30%;
    min-height: 100%;
    height: 300px;
    object-fit: cover;
  }

  #cgmitalia .entry.more {
    text-align: center;
  }
}

@media (min-width: 60em) {
  section#cgmitalia {
    padding: 6rem 0 4rem;
  }

  #cgmitalia .image > div {
    flex-direction: column;
    padding: 0;
    margin: 0;
  }

  #cgmitalia .image img {
    max-width: 80%;
    padding: 2rem 0;
  }

  #cgmitalia .image img:first-of-type {
    border-right: 0;
    border-bottom: 1px solid hsl(0, 0%, 100%, 0.1);
  }
}

/* Landing page, CONTACT section */

section#contact {
  overflow: hidden;
  padding: 2em 0 4em 0;
}

#contact img.branding {
  height: 65px;
}

#contact h3 {
  margin: 2em 0 0 0;
  line-height: 1.25em;
}

#contact h3 > span {
  display: block;
  font-size: 0.875rem;
  color: var(--clrMidGrey);
}

dl {
  margin: 2em 0;
  padding: 0 0 0 1.5em;
  border-left: 2px solid var(--clrRed);
}

dt {
  margin: 0.5em 0;
  padding: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

dd {
  margin: 0 0 1em 0;
  padding: 0;
  line-height: 1.5em;
}

#map {
  width: 100%;
  height: 400px;
  margin: 2em 0 0 0;
  padding: 0;
  background: white;
}

#contact .social {
  display: flex;
}

img.social {
  height: 35px;
  margin: 0 1em 1em 0;
}

@media (any-hover: hover) {
  a > img.social {
    opacity: 0.75;
    transition: opacity 500ms;
  }

  a:hover > img.social {
    opacity: 1;
  }
}

@media (min-width: 40em) {
  img.social {
    margin: 0 1em 0 0;
  }

  #map {
    height: 100%;
    margin: 0;
  }
}

@media (min-width: 70em) {
  section#contact {
    padding: 6em 0 10em;
  }
}

@media (min-width: 100em) {
  section#contact {
    padding: 10em 0 12em;
  }
}

/* Pre footer & Footer */

.top {
  display: flex;
  justify-content: center;
}

.top > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  background: var(--clrRed);
}

.top a > img {
  width: auto;
  height: 30px;
}

footer {
  padding: 2em 0;
  background: hsl(0, 0%, 10%);
}

footer small {
  display: block;
  font-size: 0.625rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clrMidGrey);
}

@media (any-hover: hover) {
  .top a {
    opacity: 0.75;
    transition: opacity 500ms;
  }

  .top a:hover {
    opacity: 1;
  }
}
