@import url(https://fonts.googleapis.com/css?family=Raleway:100);
body {
  margin: 0;
}

h1 {
  font-family: "Raleway", sans-serif;
  font-weight: 100;
  letter-spacing: 5px;
  font-size: 30px;
}

p {
  font-family: "Raleway", sans-serif;
  letter-spacing: 1px;
  font-size: 13px;
  color: #333333;
}

.header {
  position: relative;
  text-align: center;
  background: linear-gradient(60deg, #543ab7 0%, #00acc1 100%);
  color: white;
}

.logo {
  padding-top: 2vh;
  width: 110px;
  fill: rgba(255, 255, 255, 0.3);
  backgroud: rgba(255, 255, 255, 0.3);
  padding-right: 15px;
  display: inline-block;
  vertical-align: middle;
}

.inner-header {
  height: 65vh;
  width: 100%;
  margin: 0;
  padding: 0;
}

.flex {
  /*Flexbox for containers*/
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.waves {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px;
  /*Fix for safari gap*/
  min-height: 100px;
  max-height: 150px;
}

.content {
  position: relative;
  height: 20vh;
  text-align: center;
  background-color: white;
}

/* Animation */
.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height: 30px;
    min-height: 20px;
  }

  .content {
    height: 30vh;
  }

  h1 {
    font-size: 24px;
  }
}
/*  SEARCH  */
:root {
  --primary-light: #8abdff;
  --primary: #6d5dfc;
  --primary-dark: #5b0eeb;
  --white: #FFFFFF;
  --greyLight-1: #E4EBF5;
  --greyLight-2: #c8d0e7;
  --greyLight-3: #bec8e4;
  --greyDark: #9baacf;
}

.search_input {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20.4rem;
  background: var(--greyLight-1);
  border: none;
  border-radius: 1rem;
  font-size: 1.4rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}

.search {
  margin-top: 12%;
  display: absolute;
}
.search__input {
  width: 20.4rem;
  height: 4rem;
  border: none;
  border-radius: 1rem;
  font-size: 1.4rem;
  padding-left: 3.8rem;
  box-shadow: inset 0.2rem 0.2rem 0.5rem rgba(0, 0, 0, 0.2), inset -0.2rem -0.2rem 0.5rem rgba(255, 255, 255, 0.2);
  background: none;
  font-family: inherit;
  color: var(--greyDark);
  font-family: "Raleway", sans-serif;
}
.search__input::placeholder {
  color: var(--greyLight-3);
}
.search__input:focus {
  outline: none;
  box-shadow: 0.3rem 0.3rem 0.6rem rgba(0, 0, 0, 0.2), -0.2rem -0.2rem 0.5rem rgba(255, 255, 255, 0.2);
}
.search__input:focus + .search__icon,  .search__icon:hover {
  color: var(--primary);

}
.search__icon {
    font-size: 2rem;
    color: var(--greyDark);
    transition: .3s ease;
    margin-left:-17%;
    height: 2rem;
  padding: 0 0.77rem;
    position:relative;
}

footer {
  margin-bottom: 0px;
  font-size: 1rem;
  font-family: "Raleway", sans-serif;
   color: #666;
  text-decoration: none;
      clear: both;
    position: relative;

}

a {
  text-decoration: none;
  color: #666;
}

#footy{
   margin-top: 17%;
  font-family: "Raleway", sans-serif;
   color: #666;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
}

/*  ICONS  */
.icon {
  justify-content: space-between;
}