:root{
  --cyan: #48dbfb;
  --cyan-dark: #2fb8de;
  --navy: #2d3436;
  --navy-light: #353b48;
  --warm: #f4a94a;
  --warm-dark: #e2933a;
}

*{
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}

.navbar{
  position: fixed;
  background-color: rgba(250, 245, 238, 0.05);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
  padding: 22px 0;
  top: 0;
  z-index: 999;
  transition: .3s linear;
}

.inner-width{
  max-width: 1300px;
  margin: auto;
  padding: 0 40px;
}

.navbar .inner-width{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo{
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  transition: .2s linear;
}

.menu-toggler{
  background: none;
  width: 30px;
  border: none;
  cursor: pointer;
  position: relative;
  outline: none;
  z-index: 999;
  display: none;
}

.menu-toggler span{
  display: block;
  height: 3px;
  background-color: var(--navy);
  margin: 6px 0;
  position: relative;
  transition: .3s linear;
}

.navbar-menu a{
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-left: 30px;
  transition: .2s linear;
}

.navbar-menu a:hover{
  color: #48dbfb !important;
}

.sticky{
  background-color: #fff;
  padding: 18px 0;
  box-shadow: 0 4px 20px rgba(17, 17, 17, .06);
}

.sticky .logo{
  color: #111;
}

.sticky .navbar-menu a{
  color: #111;
}

.sticky .menu-toggler span{
  background-color: #111;
}

#home{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background-image: url(images/hero-bg2.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#home::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(250, 245, 238, 0.92) 0%,
    rgba(250, 245, 238, 0.82) 30%,
    rgba(250, 245, 238, 0.35) 55%,
    rgba(250, 245, 238, 0) 72%);
  pointer-events: none;
}

#home .inner-width{
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-text{
  max-width: 560px;
  animation: heroFadeUp .8s ease both;
}

.hero-eyebrow{
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--cyan-dark);
  margin-bottom: 22px;
  animation: heroFadeUp .8s ease both;
}

.hero-text h1{
  font-size: 46px;
  line-height: 1.3;
  margin: 0 0 22px;
  color: var(--navy);
  animation: heroFadeUp .8s ease .1s both;
}

.hero-subtext{
  font-size: 18px;
  line-height: 28px;
  max-width: 480px;
  margin: 0 0 36px;
  color: #4a5158;
  animation: heroFadeUp .8s ease .2s both;
}

.buttons{
  animation: heroFadeUp .8s ease .3s both;
}

@keyframes heroFadeUp{
  from{ opacity: 0; transform: translateY(22px); }
  to{ opacity: 1; transform: translateY(0); }
}

.sm a{
  color: #fff;
  font-size: 22px;
  margin: 0 10px;
  transition: .2s linear;
}

.sm a:hover{
  color: #48dbfb;
}

#home .buttons a{
  display: inline-block;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  width: 220px;
  text-align: center;
  border: 1px solid var(--cyan);
  padding: 16px 0;
  border-radius: 6px;
  transition: .2s linear;
}

#home .buttons a:hover,
#home .buttons a.btn-primary
{
  background-color: #48dbfb;
  color: #fff;
}

.btn-primary{
  background-color: #48dbfb;
  color: #fff !important;
}

@media screen and (max-width: 900px) {
  #home{
    padding: 120px 0 60px;
    min-height: unset;
  }

  #home::before{
    background: rgba(250, 245, 238, 0.88);
  }

  .hero-text{
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .hero-subtext{
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text h1{
    font-size: 32px;
  }

  .menu-toggler{
    display: block;
  } 
  
  .navbar-menu{
    position: fixed;
    height: 100vh;
    width: 100%;
    background-color: #353b48;
    top:0;
    right: -100%;
    max-width: 400px;
    padding: 80px 50px;
    transition: .1s linear;
  }

  .navbar-menu a{
    display: block;
    font-size: 30px;
    margin: 30px 0;
    color: #fff;
  }

  .sticky .navbar-menu{
    background-color: #f1f1f1;
  }

  .sticky .navbar-menu a{
    color: #111;
  }

  .navbar-menu.active{
    right: 0;
  }

  .menu-toggler.active span:nth-child(1){
    transform: rotate(-45deg);
    top: 4px;
  }

  .menu-toggler.active span:nth-child(2){
    opacity: 0;
  }

  .menu-toggler.active span:nth-child(3){
    transform: rotate(45deg);
    bottom: 14px;
  }
}

@media screen and (max-width: 480px){
  .inner-width{
    padding: 0 20px;
  }

  .logo{
    font-size: 16px;
  }

  .hero-text h1{
    font-size: 26px;
  }

  .hero-subtext{
    font-size: 16px;
    line-height: 24px;
  }

  #home .buttons a{
    width: 100%;
  }
}