/*! HTML5 Boilerplate v5.0 | MIT License | http://h5bp.com/ */

html {
  color: white;
  font-size: 1em;
  line-height: 1.4;
}

body {
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

.container {
  box-sizing: border-box;
  max-width: 1200px;
  padding: 0 20px;
  margin: auto;
}

.hero {
  background-image: linear-gradient(to bottom right, #003ba3, #33c3f0);
}

.logo {
  box-sizing: border-box;
  float: left;
  width: 212px;
  height: 50px;
  padding: 10px 0;
  margin: 20px 0;
}

nav {
  float: right;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: transparent;
}

nav li {
  float: left;
}

nav li a {
  display: block;
  color: white;
  text-align: center;
  padding: 17px 14px;
  margin: 20px 0;
  text-decoration: none;
  text-transform: uppercase;
}

.hamburger-menu {
  display: none;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.hero-content {
  margin: 90px 0;
  max-width: 55%;
}

.hero-content h1 {
  font-size: 3em;
}

.hero-content p {
  font-size: 1.5em;
}

.hero-picture {
  margin: 90px 0;
  max-width: 40%;
  padding-left: 5%;
}

.hero-picture img {  
  width: 100%;
}

.cta-container {
  text-align: center;
}

.cta-container a {
  background-color: transparent;
  color: white;
  padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
  border: 3px solid #f27c36;
  border-radius: 25px;
  margin: 20px;
}

.features {
  padding: 90px 0;
  background-color: #f4f4f9;
  color: #6d7581;
  text-align: center;
}

.features h1 {
  color: #433948;
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  align-items: top;
}

.feature {
  width: 33%;
}

.feature h1 {
  text-transform: uppercase;
  font-weight: normal;
}

.feature p {
  margin: 20px;
  text-align: left;
  min-height: 90px;
}

.feature ul {
  list-style: none;
  text-align: left;
  margin: 20px;
  min-height: 200px;
  padding-inline-start: 0;
  -webkit-padding-start: 0;
}

.features a {
  background-color: transparent;
  color: #433948;
  padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  border: 2px solid #433948;
  border-radius: 25px;
  margin: 20px;
}

.pricing {
  padding: 90px 0;
  background-image: radial-gradient(circle, #3d4147, #262f36);
  text-align: center;
}

.pricing h1,
.pricing span {
  color: #f27c36;
}

.pricing h1 {
  margin-bottom: 0;
}

.pricing .price {
  color: #f27c36;
  margin-bottom: 20px;
  font-style: italic;
}

.pricing ul {
  text-align: center;
}

.stats {
  padding: 90px 0;
  background-color: #e3e5e8;
  color: #165095;
  text-align: center;
}

.stats img {
  width: 100%;
}

.stats span {
  color: #ff0017;
}

.foot {
  padding: 90px 0;
  background-color: #262f36;
}

.foot a {
  background-color: transparent;
  color: #1eaedb;
}

.bottom-cta {
  background-image: radial-gradient(circle, #3d4147, #262f36);
  padding: 120px 0;
  text-align: center;
}

#purchase {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  color: #434e5a;
  overflow-x: auto;
  overflow-y: auto;
  -webkit-transition: opacity 0.7s; /* Safari */
  transition: opacity 0.7s;
}

.exit {
  float: right;
  padding: 10px 16px;
  margin: 10px 0;
  font-size: 1.5em;
}

.offer {
  max-width: 480px;
  margin: 100px auto;
}

.offer h1 {
  text-transform: uppercase;
  text-align: center;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #d8e0e6;
  margin: 24px 0 30px;
}

input[type="text"],
input[type="email"],
select,
textarea {
  background-color: white;
  width: 100%;
  padding: 12px;
  border: 1px solid #d8e0e6;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
  -webkit-appearance: none;
}

/* Style the submit button with a specific background color etc */
input[type="submit"] {
  background-color: #33c3f0;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type="submit"]:hover {
  background-color: #40d3ff;
}

.center {
  text-align: center;
}

#purchase a {
  background-color: transparent;
  color: #1eaedb;
  text-decoration: none;
}
/* ==========================================================================
   Media Queries
   ========================================================================== */

@media only screen and (max-width: 679px) {
  .hamburger-menu {
    box-sizing: border-box;
    display: block;
    float: right;
    cursor: pointer;
    padding: 15px 0;
    font-size: 1.5em;
  }

  nav {
    display: none;
  }
  nav li {
    float: none;
  }
  nav li a {
    text-align: right;
  }

  .hero-content {
    max-width: 100%;
    margin-top: 20px;
  }

  .hero-picture {    
    max-width: 100%;
    padding: 0;
    margin-top: 0;
    text-align: center;
  }

  .feature {
    width: 100%;
  }

  .feature p {
    margin: 0;
    min-height: 0;
  }

  .feature ul {
    margin: 0;
    min-height: 0;
  }
}

@media print, (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.hidden {
  display: none !important;
  visibility: hidden;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

/* ==========================================================================
   Print styles
   ========================================================================== */

@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
