html,
body {
  min-height: 100%;
  background-image: linear-gradient(to bottom, #f0f8fe, #b2bdc7 85vh);
  background-color: #b2bdc7;
  font-family: Rubik, sans-serif;
}

html {
  box-sizing: border-box;
  font-size: 16px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
}

h1 {
  color: #364759;
  font-size: 38px;
  line-height: 46px;
  font-weight: bold;
}

h2 {
  color:#8fa7bf;
  text-transform: uppercase;
  letter-spacing: 1.56px;
  font-size: 20px;
  line-height: 24px;
  margin: 0 0 12px;
}

h3 {
  color: #364759;
  text-transform: uppercase;
  letter-spacing: 0.89px;
  font-size: 14px;
  line-height: 16px;
}

p {
  font-weight: 100;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: #364759;
}

p:first-of-type {
  margin: 8px 0 12px 0;
}

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  display: block;
  padding: 16px;
}

.content {
  max-width: 1330px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 24px;
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.8);
}

.content h1 {
  margin-left: 0;
  text-transform: capitalize;
  line-height: 1.17;
  letter-spacing: -1.5px;
  padding-top: 8px;
}

section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 24px 0;
  border-bottom: 2px solid rgba(143, 167, 191, 0.2);
}

section:first-of-type {
  padding: 24px 0;
}

section:last-of-type {
  border-bottom: none;
  padding-bottom: 8px;
}

.section__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* align-items: center; */
}

.link--free {
  display: inline-block;
  margin: 20px 0;
  font-size: 14px;
  color: #364759;
}

.link--button {
  font-family: Rubik, 'Helvetica Neue', sans-serif;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  font-size: .8em;
  letter-spacing: 0.89px;
  width: 100%;
  min-width: 259px;
  max-width: 350px;
  padding: 0 16px;
  line-height: 48px;
  display: inline-block;
  cursor: pointer;
  border-radius: 24px;
  outline: 0;
  border: none;
  position: relative;
  text-decoration: none;
  margin-top: 12px;
}

.link--button svg {
  position: absolute;
  top: 14px;
  right: 24px;
  stroke: currentColor;
}

.link--button:not(:disabled) {
  color: #ffffff;
  background-color: #364759;
}

.link--button:not(:disabled):hover,
.link--button:not(:disabled):focus {
  background-color: #496179;
}

.link--button:not(:disabled) {
  background-color: #222e39;
}

/* Generic Tablet Mixin */
@media (min-width: 680px) {
  h1 {
    font-size: 42px;
    line-height: 50px;
    font-weight: bold;
  }
  
  h2 {
    letter-spacing: 1.56px;
    font-size: 20px;
    line-height: 24px;
    margin: 0 0 12px;
  }
  
  h3 {
    letter-spacing: 0.89px;
    font-size: 14px;
    line-height: 17px;
  }
  
  p {
    font-weight: 100;
    font-size: 14px;
    letter-spacing: 0.3px;
  }
  
  p:first-of-type {
    margin: 14px 0 20px 0;
  }
  
  .container {
    padding: 34px;
  }
  
  .content {
    max-width: 1330px;
    padding: 30px;
    border-radius: 27px;
  }
  
  .content h1 {
    line-height: 1.17;
    letter-spacing: -1.5px;
    padding: 8px 0 0;
  }
  
  section {
    padding: 35px 0;
  }
  
  section:first-of-type {
    padding: 34px 0;
  }
  
  .section__inner {
    flex-direction: row;
    align-items: center;
  }
  
  .section__inner p {
    padding-right: 32px;
  }
  
  .link--free {
    margin-bottom: 0;
  }
  
  .link--button {
    width: 259px;
    margin-top: 0;
    max-width: none;
  }
}

/* Generic Laptop Mixin */
@media (min-width: 1100px) {
  h1 {
    font-size: 48px;
    line-height: 56px;
    font-weight: bold;
  }
  
  h2 {
    letter-spacing: 1.56px;
    font-size: 24px;
    line-height: 28px;
    margin: 0 0 16px;
  }
  
  h3 {
    letter-spacing: 0.89px;
    font-size: 16px;
    line-height: 19px;
  }
  
  p {
    font-weight: 100;
    font-size: 16px;
    letter-spacing: 0.3px;
  }
  
  p:first-of-type {
    margin: 14px 0 20px 0;
  }
  
  .container {
    padding: 70px;  
  }
  
  .content {
    padding: 50px;
    border-radius: 27px;
  }
  
  .content > * {
    margin: 0 80px;
  }
  
  .content h1 {
    padding: 8px 0 0 80px;
  }
  
  section {
    padding: 55px 0;
  }
  
  section:first-of-type {
    padding: 43px 0;
  }
  
  .section__inner p {
    padding-right: 32px;
  }
  
  .link--free {
    margin-top: 20px;
    font-size: 16px;
  }
}
/* Generic Laptop Mixin */
@media (min-width: 1400px) {
  .content {
    padding: 70px;
  }

  .content > * {
    margin: 0 110px;
  }
  
  .content h1 {
    padding: 8px 0 0 110px;
  }
}