html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

q:before,
q:after {
  content: "";
  content: none;
}

* {
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
}

a {
  text-decoration: none;
  color: #bb206c;
  transition: all 0.5s cubic-bezier(0, 0, 0.21, 0.99);
}
a:hover {
  color: #8a1657;
}

img {
  display: block;
}

body {
  margin: 0;
  font-family: "Open Sans";
  font-weight: 300;
  color: #333;
}

header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding-left: 3em;
}
@media screen and (max-width: 1024px) {
  header {
    padding-left: 1em;
  }
}
header ul {
  padding: 0;
  margin: 0;
  display: flex;
}
@media screen and (max-width: 768px) {
  header ul {
    display: none;
  }
}
header ul li {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
header ul li a {
  font-weight: 600;
  display: block;
  padding: 0 0.75em;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  header ul li a {
    font-size: 0.875em;
  }
}
header .button {
  margin-left: 1em;
  padding: 1.5em 3em;
}
@media screen and (max-width: 1024px) {
  header .button {
    padding: 1.5em;
    margin-left: 0.5em;
  }
}
@media screen and (max-width: 768px) {
  header .button {
    margin-left: 1em;
  }
}
@media screen and (max-width: 640px) {
  header .button {
    padding: 1em 0.75em;
  }
}
@media screen and (max-width: 640px) {
  header .logo svg {
    width: 7em;
  }
}

.header-nav {
  display: flex;
  align-items: center;
}

.button {
  padding: 1em 2em;
  display: inline-block;
  background: #bb206c;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}
.button:hover {
  background: #8a1657;
  color: #fff;
}
.button.invert {
  border: 2px solid #fff;
}

.banner {
  height: 32em;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.banner .banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #bb206c;
  background-image: url(images/beach-parasols.jpg);
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 640px) {
  .banner {
    height: 16em;
  }
}

.content-container {
  padding: 0 5em;
  margin-top: -10em;
  margin-bottom: 5em;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .content-container {
    padding: 0 3em;
  }
}
@media screen and (max-width: 640px) {
  .content-container {
    padding: 0;
    margin: 0;
  }
}

.content {
  padding: 5em 2em;
  background: #fff;
  position: relative;
  min-height: 50vh;
  max-width: 1400px;
  margin: 0 auto;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1024px) {
  .content {
    padding: 3em 1em;
  }
}
@media screen and (max-width: 640px) {
  .content {
    padding: 2em 0;
    box-shadow: none;
  }
}
.content:after {
  content: "";
  position: absolute;
  top: -2em;
  right: -2em;
  width: 100%;
  height: 100%;
  background: #8a1657;
  z-index: -1;
}
@media screen and (max-width: 640px) {
  .content:after {
    display: none;
  }
}

footer {
  background: #bb206c;
  color: #fff;
  padding: 3em;
}
footer a {
  color: #fff;
}
footer ul {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  footer ul {
    display: block;
    text-align: center;
  }
}
footer ul li a {
  display: block;
  padding: 0.75em;
  text-transform: uppercase;
  font-weight: bold;
}
footer .footer-logo {
  display: block;
  margin: 0 auto 1em auto;
  text-align: center;
}

.nav-toggle {
  display: none;
}
.nav-toggle span {
  width: 30px;
  height: 3px;
  margin-bottom: 5px;
  display: block;
  border-radius: 5px;
  background: #bb206c;
}
.nav-toggle span:last-child {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
}
.nav-toggle.active {
  transform: rotate(90deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: -200%;
  left: 0;
  width: 100%;
  z-index: 9;
  transition: all 0.5s cubic-bezier(0, 0, 0.21, 0.99);
  padding: 7em 2em 5em 2em;
  text-align: center;
  height: 100vh;
  background: #bb206c;
}
.mobile-nav ul {
  margin-bottom: 2em;
}
.mobile-nav ul a {
  text-transform: uppercase;
  font-weight: bold;
  display: block;
  color: #fff;
  padding: 0.75em 0.5em;
}
@media screen and (max-width: 768px) {
  .mobile-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
.mobile-nav.active {
  top: 0;
}

.screenreader-link {
  position: fixed;
  left: 2rem;
  z-index: 100;
  top: -100%;
}
.screenreader-link:focus {
  top: 0px;
}

/*# sourceMappingURL=styles.css.map */
