/*
0 - 600px: Phone
600 - 900px: Tablet-portrait
900 - 1200px: Tablet-landscape
1200 + : Desktop

$breakpoint arguments:
- phone
- tab-port
- tab-land
- desktop
*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  font-size: 62.5%;
  width: 100%;
  height: 100%; }

body {
  box-sizing: border-box;
  width: 100%;
  height: 100%; }

.wrapper {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background-image: linear-gradient(to top, rgba(0, 19, 124, 0.4), rgba(255, 255, 255, 0.4)), url("../img/bg-1.jpg");
  background-size: cover;
  background-repeat: no-repeat; }

.bg {
  flex: 1 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%; }

.section--quote {
  flex: 1 0 auto;
  margin-bottom: 5rem; }
  @media only screen and (max-width: 37.5em) {
    .section--quote {
      margin-bottom: 2rem; } }

body {
  text-align: center;
  color: #000d36; }

.heading-primary {
  padding-bottom: 2rem;
  padding-top: 7rem; }
  @media only screen and (max-width: 37.5em) {
    .heading-primary {
      padding-bottom: 1rem;
      padding-top: 3rem; } }
  .heading-primary--main {
    font-size: 4rem;
    font-weight: 400;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
    margin-bottom: 2rem; }
    @media only screen and (max-width: 37.5em) {
      .heading-primary--main {
        font-size: 3rem;
        margin-bottom: 1rem; } }
  .heading-primary--sub {
    font-size: 2.5rem;
    font-weight: 400;
    color: #303030; }
    @media only screen and (max-width: 37.5em) {
      .heading-primary--sub {
        font-size: 1.75rem; } }

.section--quote {
  font-size: 1.8rem; }
  @media only screen and (max-width: 37.5em) {
    .section--quote {
      font-size: 1.6rem; } }

.card {
  position: relative;
  width: 70%;
  background-color: rgba(226, 226, 226, 0.8);
  margin: 4rem auto;
  padding: 2rem 3rem;
  border: 1px solid #e2e2e2; }
  @media only screen and (max-width: 37.5em) {
    .card {
      width: 95%;
      padding: 0.5rem;
      margin: 1rem auto; } }

.quote {
  padding: 1.5rem; }
  @media only screen and (max-width: 37.5em) {
    .quote {
      padding: 0.75rem; } }
  .quote--text {
    font-size: 2rem; }
    @media only screen and (max-width: 37.5em) {
      .quote--text {
        font-size: 1.6rem; } }
  .quote--author {
    font-style: italic; }

.btn, .btn:link, .btn:visited {
  border-top: 2rem;
  display: inline-block;
  text-decoration: none;
  background-color: #00095c;
  color: white;
  font-size: 1.5rem;
  padding: 0.7rem 1.5rem;
  margin: 1rem;
  border: none;
  border-radius: 3px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
  cursor: pointer;
  transform: translateY(0);
  transition: all 0.1s; }
  @media only screen and (max-width: 37.5em) {
    .btn, .btn:link, .btn:visited {
      font-size: 1.25rem;
      margin: 0.5rem; } }

.btn:hover {
  transform: translateY(-1px);
  /* background-color: $color-primary-light-2;  */
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8); }

.btn:active {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  transform: translateY(2px); }

.footer {
  flex-shrink: 0;
  width: 100%;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.7);
  color: #303030;
  font-size: 1.6rem;
  font-style: italic;
  padding-top: 0.5rem;
  border-top: 1px solid #d8d8d8; }
  @media only screen and (max-width: 37.5em) {
    .footer {
      font-size: 1.3rem;
      padding: 0.75rem; } }
  .footer__link {
    text-decoration: none;
    color: #0026ff; }
    .footer__link:hover {
      text-decoration: underline;
      color: #00137c;
      text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); }
