/********** common setting **********/
body {
    margin: 0;
  }
  header {
    display: flex;
    width: 100%;
  }
  header h1 {
    margin-left: 1rem;
  }
  header a {
    text-decoration: none;
  }
  /* "Hide" checkbox -- moves it off screen*/
  #menu-btn {
    position: absolute;
    top: -100%;
    left: -100%;
  }
h2 {
    font-size: 2.8rem !important;
    font-weight: 700;
}

img {
    display: block;
    max-width: 100%;
}

a,
button {
    cursor: pointer;
}

.jumbotron {
    margin-bottom: 0 !important;
}

.atlas-cta {
    border-radius: 22px !important;
    padding: 12px 30px !important;
    font-weight: 700;
    transition: .3s ease-in-out !important;
}

.atlas-cta:hover {
    text-decoration: none;
    transform: translateY(-5px);
}

.atlas-cta-wide {
    width: 100%;
}

.cta-blue {
  background: #003f5f;
  color: #ffff;
}

.cta-blue:hover {
  color: #003f5f;
  background: #ffffff;
}

.cta-white {
  background: #ffff;
  color: #003f5f;
}

.cta-white:hover {
  color: #ffff;
  background: #003f5f;
  border: 1px #ffff solid;
}

.cta-ghost {
    border: 2px solid #003f5f !important;
    color: #003f5f;
}

.cta-ghost:hover {
    color: #ffffff;
    background: #121a2e;
}

#banner {
    background-size: cover;
}

/********** banner **********/
#banner header {
    overflow: hidden;
    display: grid;
}

#banner header img {
    max-width: 280px;
}

/********** feature (skew background) **********/
.feature img {
    width: 100%;
    max-width: 480px;
}

#feature-first {
    background: linear-gradient(168deg, #ffffff 55%, #003f5f 0);
}

#feature-last {
    background: #003f5f;
}

/********** price table **********/
#price-table {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

#price-table__premium {
    background: #192440;
    color: #ffffff;
}

#price-table ul li {
    padding: 5px 0;
}

/********** contact **********/
#contact {
    background-size: cover;
}

#contact ul li {
    padding: 3px 0;
}

#contact form {
    color: #ffff;
}

#contact form input,
#contact form textarea {
    background: transparent;
    border: 1px solid #ffff;
    color: #ffffff;
}

/********** copyright **********/
#copyright {
    background: #192440;
    padding: 2rem 3rem;
}

#copyright #social-media a {
    width: 40px;
    height: 40px;
    border-radius: 99%;
    background: #ffffff;
    transition: .4s ease;
}

#copyright #social-media a i {
    color: #003f5f;
    font-size: 1.2rem;
    line-height: 40px;
}

#copyright #social-media a:hover {
    color: #003f5f;
    background: #003f5f;
}

#copyright #social-media a:hover i {
    color: #ffffff;
}

/********** RWD **********/
@media (max-width: 575px) {
    #banner h1 {
        font-size: 3.6rem;
    }
    #banner header img {
      max-width: 200px;
  }
}

.menu-icon {
    visibility: hidden;
  }
  .menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 650px;
    margin-right: 2rem;
  }

  @media screen and (max-width: 1100px) {
    header {
      display: grid;
      grid-template-areas:
        "title   title   hamburger"
        "nav     nav     nav";
    }
    h1 {
      grid-area: title;
    }
    .menu a {
      text-decoration: none;
      color: black;
    }
    .menu-btn {
      display: none;
    }
    .menu-icon {
      grid-area: hamburger;
      cursor: pointer;
      display: flex;
      justify-content: flex-end;
      align-items: baseline;
      padding: 30px 20px 30px 0;
      position: relative;
      user-select: none;
      visibility: visible;
    }
    .navicon {
      background: #fff;
      display: block;
      height: 2px;
      width: 38px;
      position: relative;
    }
    .navicon:before {
      top: 5px;
    }
    .navicon:after {
      top: -5px;
    }
    .navicon:before,
    .navicon:after {
      background: #fff;
      display: block;
      width: 100%;
      height: 100%;
      content: "";
      position: absolute;
      transition: all 0.2s ease-out;
    }
    .menu {
      grid-area: nav;
      max-width: unset;
      max-height: 0;
      transition: max-height 0.2s ease-out;
      overflow: hidden;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
    }
    .menu a {
      padding: 20px 20px;
      width: 100%;
      text-align: center;
    }
    .menu-btn:checked ~ .menu {
      max-height: 440px;
    }
    .menu-btn:checked ~ .menu-icon .navicon {
      background: transparent;
    }
    .menu-btn:checked ~ .menu-icon .navicon:before {
      transform: rotate(-45deg);
    }
    .menu-btn:checked ~ .menu-icon .navicon:after {
      transform: rotate(45deg);
    }
    .menu-btn:checked ~ .menu-icon .navicon:before,
    .menu-btn:checked ~ .menu-icon .navicon:after {
      top: 0;
    }
  }