@import url("https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,600,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Cookie&display=swap");
body {
  padding: 0;
  margin: 0; }

.content {
  display: block;
  margin: 0 6%;
  margin-top: 100px;
  width: 88%; }

body {
  font-family: 'Josefin Sans', sans-serif; }

h1, h2, h3, h4, h5 {
  font-weight: 500; }

a {
  text-decoration: none;
  color: inherit;
  opacity: 0.9; }
  a:hover {
    opacity: 1; }

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 88%;
  padding: 0% 6%;
  background-color: #A0E6DE;
  color: #FFFFFF;
  display: flex;
  justify-content: space-between; }
  .header .nav-header {
    font-family: "Cookie"; }

.nav ul {
  display: flex;
  list-style: none; }
  .nav ul li {
    margin-right: 2rem;
    margin-top: 15px; }

.footer {
  background: #A0E6DE;
  color: #FFFFFF;
  text-align: center;
  width: 100%;
  padding: 1px 0; }

.btn {
  background: #A0E6DE;
  color: #FFFFFF;
  padding: 15px 30px;
  text-transform: uppercase;
  font-weight: 600;
  display: block; }
  .btn:hover {
    box-shadow: 0px 2px #707070;
    transition: 2s; }

.hero {
  height: 75vh;
  background: url("https://images.unsplash.com/photo-1518655048521-f130df041f66?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2850&q=80");
  background-position: center;
  background-size: cover; }
  .hero .hero-content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -25%);
    color: #707070;
    text-align: center; }
    .hero .hero-content h2 {
      font-weight: 300; }

.split-column {
  display: flex;
  flex-wrap: wrap; }
  .split-column .box {
    flex: 1 2;
    min-width: 300px;
    padding: 0 6%;
    text-align: center; }
    .split-column .box h3 {
      text-transform: uppercase;
      font-weight: 400; }
    .split-column .box p {
      font-weight: 200; }
    .split-column .box:nth-child(odd) {
      background: rgba(160, 230, 222, 0.8);
      color: #FFFFFF; }
    .split-column .box:nth-child(even) {
      background: #F7F7F7;
      color: #707070; }

input[type] {
  background-color: #F7F7F7;
  border: 0;
  padding: 15px 30px;
  border-bottom: 3px #A0E6DE solid;
  margin: 5px; }
  input[type]:focus {
    outline: #A0E6DE 2px solid; }

textarea {
  padding: 15px 30px;
  background-color: #F7F7F7;
  border: 0;
  resize: none;
  display: block;
  border-bottom: 3px #A0E6DE solid;
  margin: 5px; }
  textarea:focus {
    outline: #A0E6DE 2px solid; }
