/* FONT FACES */
@font-face {
  font-family: Inter-18pt-Light;
  src: url("../fonts/Inter/Inter_18pt-Light.woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: Inter-Light;
  src: url("../fonts/Inter/Inter_24pt-Light.woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: Inter-Regular;
  src: url("../fonts/Inter/Inter_24pt-Regular.woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: Inter-Italic;
  src: url("../fonts/Inter/Inter_24pt-Italic.woff2");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: Inter-Med;
  src: url("../fonts/Inter/Inter_24pt-Medium.woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Inter-SemiBold;
  src: url("../fonts/Inter/Inter_24pt-SemiBold.woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: Inter-Bold;
  src: url("../fonts/Inter/Inter_24pt-Bold.woff2");
  font-weight: bold;
  font-style: normal;
}

:root {
  --page-border-margin: 30px;
  --inner-section-body-width: calc(100% - 60px);
  --z-front-stage: 10;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #000000;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #888888;
}

a {
  text-decoration: none;

  :hover {
    text-decoration: underline;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

body {
  background: #ffffff;
  margin: 0;
  width: 100vw;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: 100svh auto auto auto;
  grid-template-areas: "landing-section" "foot";
}

/* Desktop */
@media (min-width: 800px) {
  .flexbox {
      display: flex !important;
      flex-direction: row !important;
      justify-content: space-between !important;
  }

  .inner-section-body-flexbox-element {
    width: 50% !important;
    float: left !important;
  }

  body {
    grid-template-columns: auto;
    grid-template-rows: auto auto auto auto;
    grid-template-areas: "landing-section"  "misc"  "foot";
  }
}

/* header */
header {
  display: flex;
  position: fixed;
  width: 100vw;
  height: auto;
  padding-top: 5px;
  z-index: var(--z-front-stage);
  transition: linear 0.3s;
  background-color: #fff;
  padding: 20px 0px;

  & > nav ul li a {
    color: #000000 !important;
  }
}

#logo-wrapper {
  width: auto;
  height: auto;
  margin-left: var(--page-border-margin);
}

#logo-wrapper img {
  min-width: 80px;
  width: 4vw;
  height: auto;
  padding: 0px;
}

#nav-logo-colored {
  display: none;
}

#main-header-nav {
  width: auto;
  margin-right: var(--page-border-margin);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

#main-header-nav-list {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

#main-header-nav-list li {
  font-family: Inter-Light;
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing:  0.2ch;
  font-weight: 500;
  color: #ffffff;
  margin: 0px 20px;
  height: auto;

  & > a {
    color: #ffffff;
  }

  :hover {
    text-decoration: underline;
  }
}

#contact-us-label {
  position: fixed;
  top: 0;
  right: 50px;
  padding: 5px 10px;
  background-color: #cca17a;
  color: #FFFFFF;
  font-size: .7rem;

  & > span {
    font-family: Inter-Light;
  }

  & > span strong {
    font-family: Inter-Regular;
  }
}

#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
}

.show {
  display: block !important;
  visibility: visible;
}

.hide {
  display: none;
  visibility: hidden;
}

.flexbox {
  display: inline-block;
  text-align: center;
}

.inner-section-body {
  width: var(--inner-section-body-width);
  margin: 10px auto;
  padding: 25px 0px;
}

.inner-section-body-flexbox-element {
  width: 100%;
  float: left;

  & > h3 {
    font-family: Inter;
    font-size: 1.8rem;
    font-weight: 600;
  }

  & > ol li {
    margin: 40px 0px;
  }

  & > ol li a {
    font-family: Inter;
    font-size: 1.5rem;
    font-weight: 500;
    color: #003b6d;
    border: 1px solid #003b6d;
    padding: 15px 15px;

    &:hover {
      cursor: pointer;
      background-color: #003b6d;
      color: #ffffff;
    }
  }

  & > img {
    width: 80%;
    position: relative;
    left: 10%;
    margin: 0px auto;
  }

  & > aside {
    width: 80%;
    position: relative;
    background-color: #f6d7b0;
    top: -40px;
    right: 10px;
    padding: 10px 20px;
  }

  & > table {
    width: 100%;
    margin: 20px 0px;
    font-family: Inter;
    font-size: 1.2rem;
  }

  & > table tr td:first-child {
    font-weight: 600;
    padding: 5px 0px;
    padding-right: 10px;
  }
}

.content-heading {
  font-family: Inter;
  font-size: 7vh;
  font-weight: 600;
}

#landing-section {
  width: 100vw;
  height: auto;
  grid-area: landing-section;
  overflow: hidden;
}

#landing-textbox {
  width: 80vw;
  height: auto;
  text-align: left;
  padding-top: 200px;

  & > span {
    font-family: Inter-18pt-Light;
    font-size: 7vh;
    color: #cca17a;
    margin: 10px var(--page-border-margin);
  }

  & > p {
    font-family: Inter-18pt-Light;
    font-size: 2vh;
    color: #000000;
    margin: 0px var(--page-border-margin);
  }

  & > aside {
    padding: 10px 0px;
    margin-top: 30px;
    margin-left: 30px;
    & > span {
      font-family: Inter-18pt-Light;
      font-size: 2rem;
      color: #cca17a;
    }

    & > a {
      font-family: Inter-18pt-Light;
      font-size: 1rem;
      color: #000000;

      &:hover {
        text-decoration: underline;
      }
    }
  }
}

#image-flexbox-container {
  display: flex;
  width: 80vw;
  height: auto;
  margin: 100px auto;
  justify-content:space-between;
}

.img-flxbx {
  flex: 1;
  padding: 0px 10px;

  & > span {
    font-family: Inter-18pt-Light;
    font-size: 3rem;
    color: #cca17a;
    text-align: center;
  }

  & > img {
    width: 100%;
  }

  & > p, a {
    font-family: Inter-18pt-Light;
    font-size: 2rem;
    color: #cca17a;
  }

  & > p a:hover {
    text-decoration: underline;
  }
}

footer {
  grid-area: foot;
  width: 100vw;
  height: auto;
  padding-bottom: 20px;
  background: #ffffff;
  margin-top: 100px;
}

.inner-footer-flexbox {
  width: calc(80% - 60px);
  height: auto;
  margin: 15px auto;
  padding: 10px;
  border-top: #cca17a .5px solid;
}

.inner-footer-flexbox-element {
  width: 100%;
  height: auto;
  text-align: center;

  & > img {
    height: 70px;
    width: auto;
    margin: 10px auto;
    display: block;
  }

  & > span,
  a {
    font-family: Inter-18pt-Light;
    font-size: 0.6rem;
    letter-spacing: .1ch;
    font-weight: 500;
    margin-left: 10px;
  }
}


