*,::after,::before{box-sizing:border-box}*{margin:0}body,html{min-height:100%}body{line-height:1.5;-webkit-font-smoothing:antialiased}canvas,img,picture,svg,video{display:block;max-width:100%}button,input,select,textarea{font:inherit}h1,h2,h3,h4,h5,h6,p{overflow-wrap:break-word}#__next,#root{isolation:isolate}

:root {
  --color-background-nav-bar: rgb(36, 73, 122);
  --color-foreground-nav-bar: rgb(255, 255, 255);
  --color-background-hero-overlay: rgb(37, 74, 123);
  --color-background-cta-pane: rgb(64, 100, 151);
  --color-background-follow-us-bar: rgba(7, 10, 246, 0.7);
  --color-background-board-of-directors-placeholder: rgb(7, 10, 246);
  --color-background-button: rgb(237, 182, 71);
  --color-foreground-button-text: rgb(0, 0, 0);
  --color-foreground-button-icon: rgb(0, 0, 0);
  --color-background-about-pane: rgb(240, 241, 243);
  --color-foreground-about-pane-title: var(--color-background-nav-bar);
  --color-background-footer: var(--color-background-nav-bar);
  --color-foreground-contact-icon: var(--color-background-button);
  --width: 350mm;
  --half-width: calc(var(--width) / 2);
}

html {
  scroll-padding-top: 4rem;
}

body {
  font-family: 'Fira Sans', sans-serif;
  background-color: rgb(30, 30, 30);
}

img {
  height: auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-background-nav-bar);
}

a.mobile-menu-selector {
  display: none;
  color:  white;
  text-decoration: none;
  text-align: right;
  padding: 2mm 4mm;
}

nav {
  
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: end;
  margin-right: 5vw;
}

nav ul li {
  margin: 0;
  padding: 0;
}

nav a {
  padding: 2mm 5mm;
}

nav a:link,
nav a:visited,
nav a:active,
nav a:hover {
  color: var(--color-foreground-nav-bar);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  display: block;
}

nav a:hover {
  background-color: var(--color-background-button);
  color: var(--color-background-nav-bar);
}

.hero {
  background-image: url('../images/hero_background.jpg');
  background-size: cover;
  color:  white;
  text-align: center;
}

.hero h1 {
  font-size: 2em;
  margin: 10mm 0;
}

.hero > div {
  margin: auto;
  max-width: 200mm;
  padding: 10mm;
}

.hero .logo img {
  width:  75mm;
  height: auto;
  margin: auto;
}

.styled-line {
  background-image: url(../images/arrow_line_piece.svg);
  margin: 10mm 0;
  background-size: 3mm;
  background-repeat: repeat-x;
  background-position: center center;
  height: 5mm;
}

.badge-box {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}

.badge-box img {
  width: 20%;
  height: auto;
}

.cta-pane {
  background-color: var(--color-background-cta-pane);
  color: white;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.cta-pane .title-container {
  background-image: url(../images/arrow_line_piece.svg);
  background-size: 3mm;
  background-repeat: repeat-x;
  background-position: center center;
}

.cta-pane h2 {
  background-color: var(--color-background-cta-pane);
  text-transform: uppercase;
  font-size: 2.5em;
  display: inline-block;
  padding-right: 3mm;
}

.cta-image {
  background-image: url(../images/cta_image.jpg);
  background-size: cover;
}

.cta-pane .copy {
  width: var(--half-width);
  justify-self: right;
  padding: 15mm;
}

.copy p {
  font-size: 1.2em;
}

a.button,
a.button:visited,
a.button:active,
a.button:hover {
  display: inline-block;
  background-color: var(--color-background-nav-bar);
  color: white;
  padding:  2mm 5mm;
  border-radius: 2mm;
  border: 0.75mm solid transparent;
  text-decoration: none;
  font-weight: bold;
}

.follow-us {
  position: relative;

}

.follow-us .background-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.follow-us .background-images > div {
  background-image: url('../images/follow_us_left.jpg');
  background-size: cover;
  height: 120mm;
}

.follow-us .background-images > div:nth-child(2) {
  background-image: url('../images/follow_us_right.jpg');
}

.follow-us .follow-us-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.follow-us .copy {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  color:  white;
  padding: 10mm 0;
}

.follow-us h2 {
  text-transform: uppercase;
  font-size: 2.5em;
  color: white;
}

.follow-us h3 {
  font-size: 1.5em;
  padding: 0 10mm;
}

.follow-us .social-icons {
  background-color: var(--color-background-follow-us-bar);
  width: 100%;
  margin-top: 10mm;
}

.follow-us .social-icons > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);  
  justify-content: center;
  justify-items: center;
  gap: 10mm;
  padding: 10mm 0 7mm 0;
  margin: auto;
  width: var(--width);
}

.follow-us a {
  font-size: 8mm;
}

.follow-us a:link,
.follow-us a:visited,
.follow-us a:active,
.follow-us a:hover {
  color: var(--color-background-button);
}

.follow-us a:hover {
  color: var(--color-background-nav-bar);
  border-color: var(--color-background-button);
}

.content-section {
  background-color: white;
  padding: 10mm;
}

.content-section > div {
  width: var(--width);
  margin: auto;
}

.content-section .title-container {
  background-image: url(../images/arrow_line_piece.svg);
  background-size: 3mm;
  background-repeat: repeat-x;
  background-position: center center;
  text-align: center;
  padding: 10mm 0;
}

.content-section h2 {
  background-color: white;
  color: var(--color-background-nav-bar);
  text-transform: uppercase;
  font-size: 2.5em;
  display: inline-block;
  padding: 0 2mm;
}

.board-of-directors-listing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10mm;
}

.board-of-directors-listing > a {
  border: 1px solid rgb(179, 179, 179);
  display: block;
  color: black;
  text-decoration: none;

}

.board-of-directors-listing > a > div:nth-child(1) {
  background-color: var(--color-background-board-of-directors-placeholder);
  background-image: url('../images/shopohawaii_logo.svg');
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 0;
  padding-top: 100%;
  overflow: hidden;
  position: relative;
}

.board-of-directors-listing > a > div:nth-child(1) img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.board-of-directors-listing > a > *:nth-child(2) {
  font-weight: bold;
  text-align: center;
  padding: 3mm 0 1mm 0;
  font-size: 1.2em;
}

.board-of-directors-listing > a > *:nth-child(3) {
  text-align: center;
  border-top: 1px solid rgb(179, 179, 179);
  margin: 1mm 5mm 3mm 5mm;
  padding-top: 2mm;
}

.contact-the-board {
  display: flex;
  justify-content: center;
  padding: 15mm;;
}

.about,
.about .title-container h2 {
  background-color: var(--color-background-about-pane);
}

.about p {
  text-align: center;
  margin-bottom: 10mm;
  font-size: 1.5em;
  font-weight: 300;
}

.contact,
.contact .title-container h2 {
  background-color: var(--color-background-footer);
  color: white;
}

.contact a:link,
.contact a:visited,
.contact a:active,
.contact a:hover {
  color: white;
  text-decoration: none;
}

.contact > div > div:nth-child(2) {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 5mm;
  font-size: 1.2em;
}

.contact > div > div:nth-child(2) > div > div {
  display: grid;
  grid-template-columns: 7mm 1fr;
  align-items: baseline;
}

.contact > div > div:nth-child(2) > div > div > *:nth-child(2n-1) {
  color: var(--color-foreground-contact-icon);
}

footer {
  background-color: white;
  font-weight: 100;
}

footer > div {
  display: grid;
  grid-template-columns: 40mm 1fr 40mm;
  width: var(--width);
  margin: auto;
  padding: 5mm 0;
  align-items: center;
}

footer .logo {
  /*width: 40mm;*/
}

footer .fa-border {
  --fa-border-color: black;
  --fa-border-radius: 100mm;
  --fa-border-weight: 1mm;
  --fa-border-style: solid;
  --fa-background-color: red;
}

footer .social-icons {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 10mm;
}

footer .social-icons a:link,
footer .social-icons a:visited,
footer .social-icons a:active,
footer .social-icons a:hover {
  color: var(--color-background-button);
  font-size: 3mm;
}

footer .social-icons a:hover {
  color: var(--color-background-nav-bar);
}

footer > div > * {
  flex: 0 1 auto;
  min-width: 35mm;
}

footer > div > p {
  text-align: right;
}

.fa-stack > .fa-facebook-f {
  position: relative;
  top: -4%;
}

.fa-stack > .fa-instagram {
  position: relative;
  top: -4%;
}

.fa-stack > .fa-youtube {
  position: relative;
  top: -3%;
}

.fa-stack > .fa-twitter {
  position: relative;
  top: -2%;
}

@media (max-width: 1499px) {
  :root {
    --width: 80vw;
    --half-width: calc(var(--width) / 2);
  }

  .board-of-directors-listing {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1000px) {
  /*:root {
    --width: 100mm;
    --half-width: calc(var(--width) / 2);
  }*/

  .board-of-directors-listing {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-pane {
    grid-template-columns: 1fr;
  }

  .cta-pane .copy {
    width:  auto;
    justify-self: initial;
  }

  .cta-pane .cta-image {
    display: none;
  }

  .follow-us .social-icons > div {
    gap: 0;
  }

  .follow-us a {
    font-size: 4vw;
  }
}

@media (max-width: 767px) {
  .board-of-directors-listing {
    grid-template-columns: repeat(1, 1fr);
  }

  footer > div {
    grid-template-columns: 1fr;
    grid-gap: 10mm;
  }

  footer > div > p {
    text-align: center;
  }

  footer .social-icons {
    gap: 3mm;
  }

  a.mobile-menu-selector {
    display: block;
  }

  nav {
    display: none;
  }

  nav.active {
    display: block;
  }

  nav ul {
    display: block;
    margin:  0;
  }

  nav a {
    padding: 1mm 2mm;
  }
}

@media (max-width: 399px) {
  :root {
    --width: auto;
    --half-width: auto;
  }
}