/* -------------------------------
laptop styling
------------------------------- */
@media screen and (min-width: 64em) {
  /* Reusable Classes */
  .container {
    padding-left: 40px;
    padding-right: 40px;
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .separator {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  /* Header */
  #header {
    height: 120px;
    flex-direction: column;
    padding: 20px 40px;
  }
  #header > a {
    position: relative;
    white-space: nowrap;
    padding-bottom: 4px;
  }
  #header > a::after {
    content: "";
    width: 80px;
    border-bottom: 3px solid var(--red);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .header_min_height {
    flex-direction: row;
  }
  .header_nav {
    position: static;
    height: 100%;
    opacity: initial;
    align-items: flex-end;
    /* justify-content: flex-start; */
  }
  .header_hamburger {
    display: none;
  }
  .nav {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .nav_list {
    display: flex;
    flex-direction: row;
    width: auto;
  }
  .nav_list ul {
    display: block;
  }
  .nav_list > .nav_item {
    padding: 0 24px;
    position: relative;
  }
  .nav_list li {
    margin-bottom: 0;
  }
  .nav_list li a {
    display: block;
    text-decoration: none;
    transition: all 0.3s;
  }
  #header.HeightMin {
    flex-direction: row;
    height: auto;
    animation: DownAnime 0.3s forwards;
  }
  nav.HeightMin {
    align-items: center;
    justify-content: flex-end;
  }

  @keyframes DownAnime {
    from {
      opacity: 0;
      transform: translateY(-100%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Page - home */
  /* Page - home - hero */
  .hero {
    padding-left: 40px;
    padding-right: 40px;
    margin: 80px 0;
    justify-content: space-around;
    gap: 40px;
  }
  .hero > figure {
    flex-basis: 75%;
    height: 100%;
  }
  .hero > figure > img {
    object-fit: cover;
    width: 100%;
  }
  .hero_class_info {
    flex-basis: initial;
  }
  .hero_class_info h1 {
    font-size: 48px;
  }
  .hero_class_info h1 > span {
    font-size: 15px;
  }
  /* Page - home - thought_intro */
  .home_thought_intro {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home_thought_intro > figure {
    flex-basis: 40%;
  }
  .home_thought_intro > div {
    flex-basis: 55%;
  }
  /* Page - home - ability */
  .home_ability {
    display: flex;
    align-items: center;
  }
  .home_ability > div {
    flex-basis: 50%;
  }
  /* Page - home - feature */
  .home_feature_img_group {
    justify-content: space-between;
  }
  .home_feature_items {
    flex-basis: initial;
  }

  /* page - thought */

  .benefits dl {
    row-gap: 60px;
  }
  .benefits div {
    max-width: 28%;
  }
  .benefits dd {
    margin-bottom: 24px;
  }
  .benefits dd:last-child {
    margin-bottom: 0;
  }
  .profile_content figure {
    flex-basis: 30%;
    max-width: 100%;
  }
  .profile_content {
    flex-direction: row;
    justify-content: space-around;
  }
  .profile_content div {
    flex-basis: 45%;
  }
  .ranked {
    box-sizing: border-box;
    margin-top: 24px;
  }

  /* page - class */
  .class_info_item,
  .feature_item {
    gap: 60px;
    margin-bottom: 60px;
  }
  .feature_item:nth-child(2) figure,
  .feature_item:last-child figure {
    display: flex;
    justify-content: flex-end;
  }
  .feature_item figure {
    min-width: 250px;
  }

  .feature_item figure {
    flex-basis: initial;
  }

  .feature_item div {
    flex-basis: initial;
  }
  .feature_item {
    align-items: center;
  }
  /* page - plan */
  .plans_description {
    flex-basis: 40%;
  }
  .plans_schedule,
  .plans_price {
    flex-basis: 25%;
  }
  /* page - schedule */
  /* Footer */
}
