
* {
  box-sizing: border-box;
}

html {
  color: #fff;
  font-size: 15px;
  font-family: Verdana, Helvetica, Arial, sans-serif;
  /* line-height: 150%; */
}

html, body {
  margin: 0;
  min-height: 100%;

  scroll-padding-top: 90px;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

/******************************************************************************/
/* global styles */
/******************************************************************************/
a, a:visited, a:active {
  color: #fff;
  text-decoration: none;
}
a:hover {
  color: rgb(46,95,197);
}

a.cta {
  display: inline-block;
  padding: 15px;

  background: orange;
  color: #fff;
}
a.cta:hover {
  background: orangered;
  color: #fff;
}

.light a, .light a:visited, .light a:active {
  color: rgb(13 39 96);
}
.light a:hover {
  color: rgb(46,95,197);
}

.list-style-none {
  list-style: none;
}

.logo-icon {
  height: 25px;
}

/******************************************************************************/
/* body backround */
/******************************************************************************/
.bg {
  position: fixed;
  z-index: -99999;
  height: 100vh;
  width: 100vw;
  /* background: linear-gradient(#313131, rgb(46,95,197)); */
  background: linear-gradient(225deg, rgb(154, 189, 239), rgb(7 71 184), rgb(13 39 96));
  /* background: linear-gradient(#313131, #5AF); */
  background-position: center;
  background-repeat: no-repeat;
}

  .bg-image {
    z-index: -99999;
    transform: perspective(80rem) rotate3d(1, 1,-.75, 55deg) translateX(20%) translateY(20%) scale(2);
    filter: blur(.5px);
    /* transform: perspective(70rem) rotate3d(1, 1,-.75, 55deg); */
  }

/******************************************************************************/
/* nav */
/******************************************************************************/
body > nav {
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  height: 70px;
  width: 100%;
  padding: 10px;

  font-size: 18px;

  transition: background-color 200ms, color 200ms, box-shadow 200ms;
}

  body > nav a {
    padding: 15px;
  }

  .home {
    flex: none;
  }
    .icon-img {
      height: 70px;
      width: 70px;
    }

  .nav-links {
    flex: auto;
    text-align: center;
  }

  .app {
    flex: none;
    display: block;
  }

  .menu {
    flex: none;
    display: none;
    padding: 10px;

    font-size: 30px;
    cursor: pointer;
  }

body > nav.sticking, 
body > nav.open {
  /* background: #313131; */
  background: #fff;
  color: rgb(13 39 96);
  box-shadow: 0 8px 13px -5px rgba(0,0,0,.4);
}

  body > nav.sticking a, body > nav.sticking a:visited, body > nav.sticking a:active,
  body > nav.open a, body > nav.open a:visited, body > nav.open a:active {
    color: rgb(13 39 96);
  }
  body > nav.sticking a:hover,
  body > nav.open a:hover {
    color: rgb(46,95,197);
  }

  body > nav > menu {
    /* display: none; */
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;

    list-style: none;
    
    background: #fff;
    color: rgb(13 39 96);

    transition: visibility 0s, opacity 200ms, box-shadow 200ms;
  }

    body > nav > menu a, body > nav > menu a:visited, body > nav > menu a:active {
      display: inline-block;
      width: 100%;
      padding: 10px 25px;

      color: rgb(13 39 96);
    }
    body > nav > menu a:hover {
      color: rgb(46,95,197);
      background: #ccc;
    }

  body > nav > menu.open {
    /* display: block; */
    visibility: visible;
    opacity: 1;
    box-shadow: 0 8px 13px -5px rgba(0,0,0,.4);
  }


/******************************************************************************/
/* main */
/******************************************************************************/
body > main {
  padding-top: 70px;

  opacity: 1;
  transition: opacity 200ms;
}

  .hero {
    padding: 150px;
  }

    .hero header h1 {
      font-size: 40px;
    }

    .hero header p {
      font-size: 24px;
    }

  .blade.light {
    background: #fff;
    color: rgb(13 39 96);
  }

  .blade.right {
    /* padding: 100px 100px 100px 45%; */
    padding: 100px;
    display: grid;
    grid-template: 100% / calc(45% - 25px) calc(55% - 25px);
    gap: 50px;
  }

  .blade.left {
    padding: 100px;
    display: grid;
    grid-template: 100% / calc(55% - 25px) calc(45% - 25px);
    gap: 50px;
  }

    .blade > * {
      /* margin: 0 100px 0 0; */
      margin: 0;
      align-self: center;
    }

    .blade summary {
      font-size: 18px;
      font-weight: bold;
      cursor: pointer;
    }

    .blade figure img {
      width: 100%;

      box-shadow: 0 1px 15px rgba(0,0,0,.4);
    }
  
  nav.jumplinks li {
    padding: 5px;
    font-size: 16px;
  }

  /* @keyframes emphasize {
    0% {
      left: -2px;
    }
    100% {
      left: 2px;
    }
  }

  .blade a::before {
    content: '»';
    position: relative;
    animation: .5s ease-in-out 0s infinite alternate emphasize;
  }
  .blade a::after {
    content: '«';
    position: relative;
    animation: .5s ease-in-out 0s infinite alternate-reverse emphasize;
  } */

/******************************************************************************/
/* footer */
/******************************************************************************/
body > footer {
  height: 80px;
  padding: 10px;

  /* border-top: 1px solid #fff; */
  background: #fff;
  color: rgb(13 39 96);
  text-align: center;
}

/******************************************************************************/
/* 850px or greater */
/******************************************************************************/
@media (min-width: 850px) {

  body > nav > menu.open {
    display: none;
  }

}

/******************************************************************************/
/* 850px or less */
/******************************************************************************/
@media (max-width: 850px) {

    .bg-image {
      transform: perspective(80rem) rotate3d(1, 1,-.75, 55deg) translateX(20%) translateY(40%) scale(4);
      filter: blur(.25px);
      /* transform: perspective(70rem) rotate3d(1, 1,-.75, 55deg); */
    }
  
  body > nav {

  }
  
    .nav-links {
      visibility: hidden;
    }

    .app {
      display: none;
    }

    .menu {
      display: block;
    }

  body > main {

  }
  
    .hero {
      padding: 25px;
    }

    .blade.right, .blade.left {
      padding: 20px;
      display: flex;
      flex-flow: column;
    }

  .o2 {
    order: 2;
  }

  .o1 {
    order: 1;
  }

}