#header {
  width: 100%;
  box-sizing: border-box;
  padding: 30px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  transition: background .8s ease-in-out;
}

@media only screen and (min-width : 768px) {
  .show-mobile {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }
  #header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  #header.front {
    background: #000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 50%);
  }
  #header #header-menu ul li a.cta {
    border: 1px solid #ddd;
    padding: 8px 14px;
    border-radius: 25px;
    background-color: transparent;
    transition: background-color .6s ease-in-out, color .6s ease-in-out, border-color .6s ease-in-out;
  }
  #front .section-inner {
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 50%);
  }
  #header #header-menu ul li {
    list-style: none;
    display: inline-block;
    vertical-align: middle;
    margin-left: 30px;
  }
  #header #header-menu ul li a {
    font-size: 1.2rem;
  }
  #header.front #header-menu .icon.instagram {
    background-image: url('img/icon-instagram-w.svg');
  }
  #header #header-menu .icon.instagram {
    width: 16px;
    height: 16px;
  }
}

#header #header-title a {
  font-size: 2rem;
}

#header #header-menu ul {
  margin: 0;
  padding: 0;
}

#header #header-menu ul li a {
  font-family: "Freight Sans";
  position: relative;
}

#header #header-menu ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0px;
  height: 1px;
  background-color: transparent;
  transition: background-color .6s ease-in-out, width .6s ease-in-out;
}

#header #header-menu ul li a:not(.cta):hover::after {
  background-color: #fff;
  width: 100%;
}

#header.front #header-menu ul li a,
#header.front #header-title a {
  color: #fff;
}

#header #header-menu ul li a,
#header #header-title a {
  color: #000;
}

#header.front #header-menu ul li a.cta {
  border-color: #fff;
}

#header #header-menu ul li a.cta:hover {
  color: #000;
  background-color: #fff;
}

#header #header-menu .icon.instagram {
  margin-right: 0;
}

#front {
  align-items: self-end;
  justify-content: flex-start;
  box-sizing: border-box;
}

#front h1,
#front h2 {
  text-align: left !important;
}

#front .section-inner {
  padding: 30px;
  width: 100%;
  box-sizing: border-box;
}

@media only screen and (max-width : 768px) {
  #header #header-title {
  	display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #header #header-title #open-menu {
    font-family: "freight sans";
    font-size: 1.2rem;
    line-height: 0.4;
  }
  #header #header-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    background-color: #fff;
    padding-top: 0;
    transition: .8s ease-in-out;
  }
  #header.open #header-menu {
  	max-height: 1000px;
  	opacity: 1;
  	padding-top: 30px;
  }
  #header #header-menu ul li a {
    font-size: 2rem;
  }
  #front .show-mobile img {
	width: 100%; 
	height: auto; 
	display: block;
    margin-top: 100px;
  }
  #front .section-inner * {
    color: #000000;
  }
  #front h1,
  #front h2 {
    font-size: 20pt;
    line-height: 28pt;
    font-weight: lighter;
  }
}