html {
  --pageBackgroundColour: #e0eef6;
  --contentBackgroundColour: #e0eef6;
  --alternateContentBackgroundColour: #c7dae4;
  --cardBackgroundColour: #FFF;
  --transparentCardBackgroundColour: #FFFFFF88;
  --headerBackgroundColour: #FFF;
  --navBackgroundColour: #446d81;
  --buttonBackgroundColour: #88e6fa;
  --footerBackgroundColour: #FFF;
  --textColour: #26343a;
  --contrastyTextColour: #000;
  --headingColour: #446d81;
  --buttonColour: #3e5b6b;
}

@media (prefers-color-scheme: dark) {
  /* Dark theme styles go here */
  html {
    --pageBackgroundColour: #152026;
    --contentBackgroundColour: #152026;
    --alternateContentBackgroundColour: #1c272d;
    --cardBackgroundColour: #2a3b47;
    --transparentCardBackgroundColour: #2a3b4788;
    --headerBackgroundColour: #0f3040;
    --navBackgroundColour: #24556e;
    --footerBackgroundColour: #0f3040;
    --textColour: #d2e9f4;
    --contrastyTextColour: #FFF;
    --headingColour: #d2e9f4;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  font: inherit;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

html {
  font-family: "Open Sans", "Jez Open Sans", sans-serif;
  color: var(--textColour);
  background-color: var(--pageBackgroundColour);
}

body {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--headingColour);
  margin-bottom: 0.3em;
}

h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 0.3em;
}

a h1, a h2, a h3, a h4, a h5, a h6 {
  text-decoration: underline;
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  z-index: 200;
}

a:hover {
  opacity: 0.7;
}

p {
  max-width: 60ch;
  line-height: 1.4em;
  margin-bottom: 1em;
}

p:last-of-type() {
  margin-bottom: 0;
}

p a {
  text-decoration: underline;
}

@font-face {
  font-family: "Jez Open Sans";
  src: url("/fonts/OpenSans-Light.ttf");
  font-weight: 300;
}

@font-face {
  font-family: "Jez Open Sans";
  src: url("/fonts/OpenSans-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: "Jez Open Sans";
  src: url("/fonts/OpenSans-Italic.ttf");
  font-weight: 400;
}

@font-face {
  font-family: "Jez Open Sans";
  src: url("/fonts/OpenSans-SemiBold.ttf");
  font-weight: 600;
}

@font-face {
  font-family: "Jez Open Sans";
  src: url("/fonts/OpenSans-Bold.ttf");
  font-weight: 700;
}

.margin {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0px 50px;
}

@media (max-width: 700px) {
  .margin {
    padding: 0px 20px;
  }
}

@media (max-width: 400px) {
  .margin {
    padding: 0px 20px;
  }
}

.fullWidth {
  width: 100%;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flexSpaceBetween {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flexCenterV {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flexCenterH {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flexColumn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flexReverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media (max-width: 700px) {
  .flexMobileWrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  .flexMobileCenter {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.cardContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.card {
  background-color: var(--cardBackgroundColour);
  border-radius: 8px;
  max-width: 400px;
  width: 100%;
  display: block;
}

.card .title {
  padding-top: 10px;
  margin-left: 20px;
  margin-right: 20px;
}

.card img {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}

.card .body {
  margin-left: 20px;
  margin-right: 20px;
  padding-bottom: 20px;
}

.fillBackground {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

.fillBackground.faded {
  -webkit-filter: grayscale(30%) opacity(0.4);
          filter: grayscale(30%) opacity(0.4);
}

@media (prefers-color-scheme: dark) {
  .fillBackground.faded {
    -webkit-filter: brightness(50%) grayscale(40%);
            filter: brightness(50%) grayscale(40%);
  }
}

header {
  background-color: var(--headerBackgroundColour);
  z-index: 100;
  width: 100%;
  overflow: hidden;
}

header .headerBar {
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 15px;
}

header .headerFlex {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.profileImage {
  height: 50px;
  width: 50px;
  overflow: hidden;
  border-radius: 50px;
  border: solid 2px #91daff;
  margin-top: 0px;
  z-index: 101;
}

@media (max-width: 700px) {
  .profileImage {
    width: 40px;
    height: 40px;
    margin-top: 0px;
    margin-bottom: 0px;
  }
}

@media (max-width: 400px) {
  .profileImage {
    width: 30px;
    height: 30px;
    margin-top: 0px;
    margin-bottom: 0px;
  }
}

.title {
  font-size: 26px;
  font-weight: 400;
  color: var(--headingColour);
}

@media (max-width: 1000px) {
  .title {
    font-size: 26px;
  }
}

@media (max-width: 700px) {
  .title {
    font-size: 20px;
    font-weight: 400;
  }
}

.subtitle {
  font-size: 18px;
}

@media (max-width: 700px) {
  .subtitle {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .subtitle {
    font-size: 12px;
  }
}

nav {
  background-color: var(--navBackgroundColour);
  color: #dce6f0;
  padding: 5px 0px;
  z-index: 1;
  width: 100%;
}

nav a {
  margin-right: 20px;
}

.mainImageLink:hover {
  opacity: 1;
}

.mainImageLink:hover::before {
  content: '';
  display: block;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99999;
  border-radius: 50%;
}

section {
  background-color: var(--pageBackgroundColour);
}

section.alternateBackground {
  background-color: var(--alternateContentBackgroundColour);
}

section h2 {
  font-size: 24px;
  font-weight: 700;
}

section .sectionSplit {
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1000px) {
  section .sectionSplit {
    gap: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

section .sectionSplit .featureImage {
  max-width: 500px;
  width: 100%;
}

@media (max-width: 1000px) {
  section .sectionSplit .featureImage {
    margin-bottom: 10px;
  }
}

@media (max-width: 700px) {
  section .sectionSplit .featureImage {
    max-width: initial;
    width: 100%;
  }
}

section .sectionSplit .rhs {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

section .sectionBody {
  list-style-position: inside;
}

section .sectionBody h2 {
  margin-top: 0.5em;
}

section .sectionBody li {
  line-height: 1.5em;
}

section .sectionBody p {
  margin-bottom: 1em;
}

.sectionPadding {
  padding-top: 40px;
  padding-bottom: 40px;
}

.button {
  padding: 5px 10px;
  background-color: var(--buttonBackgroundColour);
  color: var(--buttonColour);
  border-radius: 12px;
  font-weight: 600;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

a.button {
  text-decoration: none;
}

.fullWidthBanner {
  width: 100%;
  min-height: 400px;
}

@media (max-width: 700px) {
  .fullWidthBanner {
    min-height: 300px;
  }
}

.fullWidthBannerCompact {
  width: 100%;
  min-height: 200px;
}

@media (max-width: 700px) {
  .fullWidthBannerCompact {
    min-height: 100px;
  }
}

.pageTopTitle {
  font-size: 30px;
  color: var(--contrastyTextColour);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 20px;
  border-radius: 6px;
  text-align: center;
}

@media (max-width: 700px) {
  .pageTopTitle {
    font-size: 24px;
  }
}

@media (max-width: 400px) {
  .pageTopTitle {
    font-size: 20px;
  }
}

.pageTopIcons {
  margin-bottom: 20px;
  gap: 100px;
}

@media (max-width: 700px) {
  .pageTopIcons {
    gap: 40px;
    margin-bottom: 10px;
  }
}

.pageTopIcons .pageTopIcon {
  color: var(--contrastyTextColour);
  font-size: 60px;
}

@media (max-width: 700px) {
  .pageTopIcons .pageTopIcon {
    font-size: 40px;
  }
}

.pageTopIcons .pageTopIcon .title {
  color: var(--contrastyTextColour);
}

.photoBlurbContainer {
  gap: 20px;
}

.photoBlurbContainer .photoFrame {
  max-height: 300px;
}

@media (max-width: 1000px) {
  .photoBlurbContainer .photoFrame {
    max-height: 250px;
  }
}

@media (max-width: 850px) {
  .photoBlurbContainer .photoFrame {
    max-height: 200px;
  }
}

@media (max-width: 700px) {
  .photoBlurbContainer .photoFrame {
    max-height: initial;
    width: 100%;
  }
}

.photoBlurbContainer .photoBlurb {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.photoGridSection {
  padding: 10px;
}

.photoGridSection .photoGrid {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  grid-gap: 10px;
  -ms-grid-columns: minmax(0px, 0.25fr) minmax(0px, 0.25fr) minmax(0px, 0.25fr) minmax(0px, 0.25fr);
      grid-template-columns: minmax(0px, 0.25fr) minmax(0px, 0.25fr) minmax(0px, 0.25fr) minmax(0px, 0.25fr);
}

@media (max-width: 700px) {
  .photoGridSection .photoGrid {
    -ms-grid-columns: minmax(0px, 0.5fr) minmax(0px, 0.5fr);
        grid-template-columns: minmax(0px, 0.5fr) minmax(0px, 0.5fr);
  }
}

.photoGridSection .photoGrid .photoGridItem {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 3/2;
  background-color: var(--cardBackgroundColour);
}

.iPhoneImage {
  height: 600px;
}

.appStoreButton {
  margin: 20px;
}

footer {
  background-color: var(--footerBackgroundColour);
  padding-top: 20px;
  padding-bottom: 20px;
}
/*# sourceMappingURL=style.css.map */