@font-face {
  font-family: "Lora";
  src: url("../fonts/Lora-Regular.ttf"); /* IE9 Compat Modes */
  src: url("../fonts/Lora-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Lora";
  src: url("../fonts/Lora-Bold.ttf"); /* IE9 Compat Modes */
  src: url("../fonts/Lora-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Bold.ttf"); /* IE9 Compat Modes */
  src: url("../fonts/OpenSans-Bold.ttf") format("truetype");
  font-weight: 700;
}

/* Reset & Set-up */

:root {
  font-size: 18px;
}

@media only screen and (max-width: 760px) {
  :root {
    font-size: 62.5%;
  }
}

html {
  box-sizing: border-box;
  font-size: 18px;
}

/* https://css-tricks.com/box-sizing/#universal-box-sizing-with-inheritance */
*,
*:before,
*:after {
  box-sizing: inherit;
}

/* https://css-tricks.com/snippets/css/system-font-stack/#method-1-system-fonts-at-the-element-level */
* {
  font-family: "Open Sans", "system-ui", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol";
}

/* Utilities */

.cover-image {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-only {
  display: none !important;
}

@media screen and (hover: none) and (pointer: coarse) {
  .mobile-only {
    display: block !important;
    display: initial !important;
  }
}

/* ----------- Galaxy S6 Portrait ----------- */
@media screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 4) and (orientation: portrait) {
  .mobile-only {
    display: block !important;
    display: initial !important;
  }
}

/* ----------- Galaxy S8, S8+, S9, S9+, S10, S10+ ----------- */
@media only screen and (min-device-width: 360px) and (max-device-width: 740px) and (-webkit-min-device-pixel-ratio: 4) {
  .mobile-only {
    display: block !important;
    display: initial !important;
  }
}

/* ----------- Galaxy S10+ https://yesviz.com/devices/s10+/ ----------- */
@media only screen and (min-width: 412px) and (max-width: 767px) {
  .mobile-only {
    display: block !important;
    display: initial !important;
  }
}

/* .gutters {
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container {
  width: 100%;
  max-width: 824px;
  margin-left: auto;
  margin-right: auto;
} */

.PageWidth {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 760px) {
  .PageWidth {
    max-width: 1008px;
  }
}
@media only screen and (min-width: 1280px) {
  .PageWidth {
    max-width: 1280px;
  }
}

@media only screen and (min-width: 760px) {
  .TextContentWidth {
    margin-left: auto;
    margin-right: auto;
    max-width: 826px;
  }
}

.PageSidePadding {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}

@media only screen and (min-width: 360px) {
  .smallPlus-PageSidePadding {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media only screen and (min-width: 560px) {
  .mediumPlus-PageSidePadding {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media only screen and (min-width: 760px) {
  .largePlus-PageSidePadding {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .hugePlus-PageSidePadding {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Elements */

.logo-link:focus,
.logo-link:hover {
  filter: brightness(1.1);
}

.navigation-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: #1e222c;
  z-index: 9000;
}

@media only screen and (min-width: 1024px) {
  .navigation-bar {
    padding-left: 3.2222222222rem;
    padding-right: 3.2222222222rem;
  }
}

@media only screen and (max-width: 1024px) {
  .navigation-bar {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.navigation-bar img {
  display: block;
}

.pages-navigation {
  color: white;
  font-size: 0.7777777778rem;
  font-weight: 400;
  font-family: "system-ui", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
}

.pages-navigation a {
  font: inherit;
  color: inherit;
  text-decoration: none;
}

.pages-navigation a:focus,
.pages-navigation a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 400px) {
  .pages-navigation {
    display: none;
  }
}

.hero-section {
  position: relative;
  width: 100%;
}

@media only screen and (min-width: 1024px) {
  .hero-section__sizer {
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56%;
  }
}

@media only screen and (min-width: 1024px) {
  .hero-section__image {
    z-index: 0;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media only screen and (max-width: 1024px) {
  .hero-section__image {
    width: 100%;
    display: block;
    height: auto;
  }
}

@media only screen and (min-width: 1024px) {
  .hero-section__text {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 4.4444444444rem 0;
    color: white;
  }
}

.Hero-subTitle {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.25;
}

.Hero-subHeading,
.Hero-intro {
  font-size: 18px;
  line-height: 1.77;
  color: #a7a7a7;
}

@media only screen and (min-width: 760px) {
  .Hero-subTitle {
    font-size: 48px;
    line-height: 1.25;
  }

  .Hero-subHeading,
  .Hero-intro {
    font-size: 24px;
    line-height: 1.66;
  }
}
@media only screen and (min-width: 1024px) {
  .Hero-subTitle {
    color: #fff;
    font-size: 56px;
    line-height: 1.25;
  }

  .Hero-subHeading {
    color: #fff;
  }
}

.site-footer {
  background-color: #000;
  color: #fff;
  padding: 0.5rem 1.5rem;
  font-size: 12px;
  font-weight: 300;
  font-family: "system-ui", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
}

.site-footer a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}

.body-copy {
  margin-bottom: 3rem;
}

.body-copy *:not(img) {
  max-width: 824px;
  margin-left: auto;
  margin-right: auto;
}

.body-copy p {
  font-family: "Lora", serif;
  font-size: 1rem;
  color: #191919;
  line-height: 1.7777777778;
}

.body-copy p * {
  font-family: inherit;
}

.body-copy img {
  width: 960px;
  max-width: 100%;
  display: block;
  height: auto;
  margin-top: 5rem;
  margin-bottom: 5rem;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 1024px) {
  .PageSidePadding .body-copy img {
    width: 100vw;
    max-width: 100vw;
    margin-left: -16px;
    margin-right: -16px;
  }
}

@media only screen and (min-width: 560px) and (max-width: 1024px) {
  .PageSidePadding.mediumPlus-PageSidePadding .body-copy img {
    width: 100vw;
    max-width: 100vw;
    margin-left: -48px;
    margin-right: -48px;
  }
}

.body-copy img + h2 {
  margin-top: 5rem;
}

.body-copy p {
  color: rgb(26, 26, 26);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.625em;
  margin-bottom: 1.38em;
  margin-top: 0px;
  vertical-align: baseline;
}

.body-copy a {
  text-decoration: none;
  color: inherit;
  font-weight: 700;
}

.body-copy a:focus,
.body-copy a:hover {
  text-decoration: underline;
  color: #a2a6b1;
}

.call-to-action {
  background-color: #f7f7f7;
  padding: 1.5rem 0 5rem;
}

.call-to-action__content {
  max-width: 824px;
  margin-left: auto;
  margin-right: auto;
}

.call-to-action h2 {
  font-weight: 700;
  font-size: 2rem;
  color: #191919;
  margin-bottom: 0.5em;
}

.call-to-action .container {
  max-width: 708px;
}

.call-to-action p {
  font-family: "Lora", serif;
  font-size: 20px;
  color: #191919;
  line-height: 2;
}

.call-to-action__button {
  display: inline-block;
  padding: 1em 1.5em;
  background: #000;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
}

.call-to-action__button:focus,
.call-to-action__button:hover {
  background: #333;
}

/* Social Buttons */

.social-buttons {
  text-align: center;
  margin: 3rem 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.facebook-share-button,
.twitter-share-button,
.whatsapp-share-button {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: block;
  margin: 1rem;
  background: none;
  border: none;
}

.facebook-share-button button,
.twitter-share-button button,
.whatsapp-share-button button {
  display: block;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  appearance: none;
  width: 100%;
  height: 100%;
}

.facebook-share-button button:hover,
.twitter-share-button button:hover,
.whatsapp-share-button button:hover {
  filter: brightness(1.1);
}

.facebook-share-button img,
.twitter-share-button img,
.whatsapp-share-button img {
  display: block;
  height: 100%;
  width: auto;
  margin: 0 auto;
}

@supports (object-fit: contain) {
  .facebook-share-button img,
  .twitter-share-button img,
  .whatsapp-share-button img {
    object-fit: contain;
    height: 100%;
    width: 100%;
  }
}
