body {
  margin: 0;
  overflow-x: hidden !important;
  font-family: 'Bellota', "Trebuchet MS", Helvetica, sans-serif !important;
}

.logo-box {
  position: relative;
  overflow-x: hidden !important;
}

.hero {
  position: relative;
  background: #c3eeff;
  height: 87vh;
  width: 100vw;
  -webkit-box-shadow: 0 4px 8px 0 #c3eeff, 0 50px 50px 0 #c3eeff;
          box-shadow: 0 4px 8px 0 #c3eeff, 0 50px 50px 0 #c3eeff;
}

#cloud {
  position: absolute;
  top: -55px;
  left: -150px;
  width: 50%;
}

.shape {
  -webkit-animation: ani 10s infinite;
          animation: ani 10s infinite;
}

.arrow a {
  color: #464646 !important;
  text-decoration: none !important;
}

.arrow:hover {
  cursor: default;
}

.arrow {
  position: absolute;
  width: 35px;
  height: 35px;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.bounce {
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

@-webkit-keyframes ani {
  0% {
    left: -25px;
  }
  50% {
    left: 30px;
  }
  100% {
    left: -25px;
  }
}

@keyframes ani {
  0% {
    left: -25px;
  }
  50% {
    left: 30px;
  }
  100% {
    left: -25px;
  }
}

#logo {
  position: absolute;
  top: -150px;
  right: -200px;
  width: 50%;
}

#intro {
  position: absolute;
  top: 70vh;
  left: 15vw;
  width: 50%;
}

.logo-box {
  height: 100vh;
}

img {
  width: 100%;
}

h1 {
  margin: 2em 0;
}

.container {
  width: 95%;
  margin: 0 auto;
}

.grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.grid-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 .1em;
}

.grid-col--2,
.grid-col--3 {
  display: none;
}

.content {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  margin-top: 1em;
  z-index: 7;
}

.content h2 {
  margin: .2em .5em;
  font-size: 1em;
}

.content span {
  color: white;
  z-index: 8;
  padding: 10px;
}

.design {
  -webkit-transition: margin 0.3s, -webkit-filter 0.3s;
  transition: margin 0.3s, -webkit-filter 0.3s;
  transition: margin 0.3s, filter 0.3s;
  transition: margin 0.3s, filter 0.3s, -webkit-filter 0.3s;
  -webkit-box-shadow: 1px 1px 5px #cccccc;
          box-shadow: 1px 1px 5px #cccccc;
}

@media (min-width: 768px) {
  .container {
    width: 90%;
  }
  h1 {
    margin: 3em 0;
  }
  .grid-col--2 {
    display: block;
  }
  .grid-col {
    padding: 0 .5em;
  }
  img {
    margin-bottom: .8em;
  }
  .content {
    opacity: 0;
    -webkit-transform: translateX(-0.5em);
            transform: translateX(-0.5em);
    -webkit-transition: all 2s;
    transition: all 2s;
    will-change: opacity, transform;
  }
  .grid-item:hover .content {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@media (min-width: 1080px) {
  .grid-col--3 {
    display: block;
  }
  .container {
    width: 80%;
  }
  h1 {
    margin: 5em 0;
  }
}

@media (max-width: 780px) {
  .icon-bar {
    display: none;
  }
  .arrow {
    margin-top: 20px;
  }
  #intro {
    position: absolute;
    top: 60vh;
    left: 15vw;
    width: 50%;
  }
  .hero {
    position: relative;
  }
  #logo {
    position: absolute;
    top: -180px;
    right: -260px;
    width: 50%;
  }
  #cloud {
    display: none;
  }
  .grid-item {
    margin-top: 30px;
  }
  .design {
    margin-top: 15px;
  }
}

footer {
  margin-top: 30px;
  overflow: hidden;
}

.foot {
  background-color: #8EC5FC;
  background-image: linear-gradient(62deg, rgba(189, 94, 252, 0.596) 0%, #E0C3FC 100%);
  color: white;
  padding-top: 30px;
  width: 100%;
  padding-bottom: 10px;
}

.social {
  background-color: white;
  color: #5c1e5c;
  padding: 10px;
  margin: 20px;
  border-radius: 10px;
  text-align: center;
  max-width: 250px !important;
}

.social > a {
  color: #5f335f;
}

.social > a:hover {
  text-decoration: none !important;
  color: #b39bb3;
}

/* Fixed/sticky icon bar (vertically aligned 50% from the top of the screen) */
.icon-bar {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9;
}

/* Style the icon bar links */
.icon-bar a {
  display: block;
  text-align: center;
  padding: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
}

/* Style the social media icons with color, if you want */
.icon-bar a:hover {
  background-color: #000;
  color: white;
}

.facebook {
  background: #3B5998;
  color: white;
}

.insta {
  background: #f09433;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
  color: white;
}

.be {
  background: #1d277c;
  color: white;
}

.linkedin {
  background: #053eff;
  color: white;
}

.dribbble {
  background: #ea4c89;
  color: white;
}
/*# sourceMappingURL=nov.css.map */