:root {
  --gnpiblue: #57ceea;
}
* {
  font-family: "Open Sans", sans-serif;
  box-sizing: border-box;
  margin: 0;
  font-weight:600!important;
}

h1 {
  font-size: 150%;
  font-family: "Open Sans", sans-serif;
  text-align:center;
  position:relative;
}
h2,
h3,
h4,
h5,
h6 {
  color: var(--gnpiblue);
}
h2{
  font-size:3rem;
  font-family:'caveat', sans-serif;
}
a {
  color:white;
}
.logo {
  font-size: 5rem;
  margin: 0;
  position: fixed;
  left: 0;
  mix-blend-mode: difference;
  color: white;
  height: 75vh;
  top: 50%;
  transform:translate(0,-50%);
}
svg {
  height: 100%;
}
body {
  min-height: 100vh;
  width: 100vw;
  margin: 0;
  overflow-x: hidden;
  background: white;
}
.section {
  width: 100%;
}
.container {
  width: 65vw;
  max-width: 500px;
  min-width: 300px;
  padding: 1rem 0.5rem;
  display: block;
  margin: auto;
}
.bg-white {
  background: white;
  color: black;
}
.bg-black {
  background: black;
  color: white;
}
.header {
  display: grid;
  place-items: center;
  height: 100vh;
}
nav.desktop {
  position: fixed;
  right: 16px;
  display: grid;
  height: 75%;
  top:50%;
  transform:translate(0,-50%);
  width: 50px;
  flex-direction: column;
  mix-blend-mode: difference;
  color: white;
  align-items: center;
  border: white solid 4px;
  border-radius:50px;
  text-align:center;
}
nav a{
  color:white;
}
.m-nav-backer{
  position:sticky;
  width:100%;
  background:inherit;
  height:60px;
  top:0;
  z-index:99;
}
nav.m-show{
  display:flex;
  justify-content:space-between;
  width:100%;
  position:fixed;
  top:0;
  padding:.5rem;
  background:transparent;
  color:white;
  mix-blend-mode:difference;
  z-index:100;
}


.cta-btn{
    border: black 2px solid;
    border-radius: 50px;
    min-width: 30ch;
    color: white;
    font-weight: 800!important;
    padding: 0.5rem 1rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0px 1px 5px #000000aa;
    margin:2rem auto;
    left: 50%;
    position: relative;
    transform: translate(-50%,0);
    background:black;
    transition:all .3s
}
.cta-btn:hover{
  background:white;
  color:black;
}
.cta-btn:active{
  background:white;
  color:black;
  box-shadow:none;
}

.btn-white{
  border:2px solid white;
  background:white;
  color:black;
}
.btn-white:active{
  background:black;
  color:white;
}

.btn-white:hover{
  background:black;
    color:white;
}

.links{
  width:50%;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.mobileLogo{
  width:190px;
}
nav.m-show svg{
  max-height:50px;
}
/* nav.desktop i {
  margin: 0.5rem;
} */
.blue{
  color:var(--gnpiblue);
  font-family:inherit;
  font-weight:800!important
}
.bold{
  font-weight:800!important;
}

@media only screen and (max-width: 767px) {
  .m-hidden {
    display: none!important;
  }
  /*h1{*/
  /*    top:-60px;*/
  /*}*/
  .header{
    padding-top:60px;
  }
}
@media only screen and (min-width: 767.01px) {
  .m-show{
    display:none!important;
  }
    h1,h2,h3,h4,h5,h6{
      margin:1rem auto;
  }
}
/* .m-hidden a{
  writing-mode:vertical-rl;
  text-decoration:none;
  font-size:120%;
  font-weight:800!important;
} */
iframe img{
  position:cover;
}