
/*
  New hex palette
  #FF68A8 | #64CFF7 | #F7E752 | #CA7CD8 | #3968CB.
 */

 @font-face {
   font-family: sans-serif;
   src: url(font/MomcakeBold-WyonA.otf);
 }

* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.header {
  min-height: 50vh;
  width: 100%;
  background-image: url(biz_assets/header_vw.gif);
  background-position: center;
  background-size: cover;
  position: relative;
}
nav {
  display: flex;
  padding: 0% 3%;
  justify-content: space-between;
  align-items: center;
}

nav img {
  width: 200px;
}

.nav-links {
  flex:1;
  text-align: right;
}
.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}

.nav-links ul li a {
  color: white;
  text-decoration: none;
  font-size: 20px;
}

.nav-links ul li a:hover{
  color: #64CFF7;
}


/* ---- text in header ---- */
.text-box{
  width: 90%;
  color: white;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%)
}

.text-box h1{
  font-size: 75px;
}
.text-box p{
  margin: 10px 0 40px;
  font-size: 15px;
  color: white;
}

/* ---- attributes for button ----- */
.hero-btn{
  display: inline-block;
  text-decoration: none;
  color: white;
  border: 1px solid white;
  padding: 12px 34px;
  font-size: 15px;
  background: transparent;
  position: relative;
  cursor: pointer;
}
.hero-btn:hover{
  border: 1px solid #64CFF7;
  background: #CA7CD8;
}

/* ----- subscriptions ----- */
.subscription{
  width: 80%%;
  margin: auto;
  text-align: center;
  padding-top: 50px;
}

.sub-col1{
  flex-basis: 33%;
  background: #AD8CFF;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing: border-box;
}

.sub-col2{
  flex-basis: 33%;
  background: #3968CB;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing: border-box;
}

.sub-col3{
  flex-basis: 33%;
  background: #FF68A8;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing: border-box;
}

h1{
  font-size: 62px;
}

p{
  color: white;
  font-size: 20px;
  line-height: 22px;
  padding: 10px;
}

.row{
  display: flex;
  justify-content: space-between;
}

h3{
  text-align: center;
  margin: 10px 0;
  font-size: 35px;
}


/* ----- video ----- */

  .video {
    width: 90%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
  }

  .video h1 {
    padding-bottom: 30px;
  }

/* ------ waves ----- */
  .waves {
    width: 95%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
  }

  .waves-col {
    flex-basis: 33%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
  }

  .waves-col img {
    width: 100%;
    display: block;
  }

  .waves h1 {
    font-size: 35px;
  }

/* ---- title over image ---- */
  .layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position:absolute;
    top: 0;
  }

  .layer h3{
    width: 100%;
    color: white;
    background: black;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;

  }

/* ----- footer ------- */
  .footer{
    height: 100px;
    width: 100%;
    margin: auto;
    text-align: center;
    background: black;
  }

.footer-text{
  width: 100%;
  color: white;
  position: absolute;
  text-align: center;
  transform: translateY(75%);
}

/* ---- responsive layout ---- */
@media(max-width:700px){


  .nav-links ul li {
    display: block;
  }

  .nav-links {
    position: absolute;
    height: 100vh;
    width: -200px;
    top: 0;
    right: 0;
    text-align: left;
  }

  .nav-links ul{
    padding: 30px;

  }
  .row{
    flex-direction: column;
  }
