/* PC */
@media screen and (min-width: 992px) {
  .mobile-header {
    display: none;
  }

  .navbar .show-on-mobile,
  .featured .show-on-mobile {
    display: none;
  }
}

/* Tablet & Mobile */
@media screen and (max-width: 991px) {
  .navbar ul {
    display: none;
  }

  .navbar {
    position: relative;
  }

  .navbar .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .navbar .toggle-menu svg {
    width: 24px;
    height: 24px;
    color: #666;
  }

  .menu-overplay {
    z-index: 2;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease;
  }

  .menu-drawer {
    position: fixed;
    inset: 0 40% 0 0;
    padding: 60px;
    background: #fff;
    z-index: 3;
    transform: translateX(-100%);
    transition: 0.5s ease;
  }

  .menu-drawer ul {
    margin-top: 32px;
  }

  .menu-drawer ul a {
    color: #333;
    display: block;
    padding: 14px 0;
    font-weight: 500;
  }

  .menu-checkbox:checked ~ .menu-overplay {
    opacity: 1;
    visibility: visible;
  }

  .menu-checkbox:checked ~ .menu-drawer {
    transform: translateX(0);
  }

  .separate {
    border-top: 1px solid #333;
  }

  .hero-wrap {
    height: 658px;
  }

  .hero-img {
    display: none;
  }

  .hero-wrap .info {
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }

  .hero-wrap .desc {
    width: 80%;
    margin: 30px auto auto auto;
  }

  .hero {
    margin-top: 100px;
  }

  .clients .images {
    flex-wrap: wrap;
    justify-content: center;
  }

  .guide-item {
    margin: 0;
    flex: 1;
  }

  .featured .list {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats .row {
    flex-direction: column;
  }

  .stats .img-block,
  .stats .info {
    width: 100%;
  }

  .stats .info {
    order: 1;
    padding: 0;
  }

  .stats .img-block {
    order: 2;
    margin-top: 80px;
  }

  .stats .info .sub-title {
    width: 70%;
  }

  .stats .info .desc {
    width: 100%;
  }

  .stats .row-qty {
    flex-direction: row;
  }

  .stats .row-qty .qty {
    font-size: 5rem;
  }

  .stats .row-qty .qty-desc {
    font-size: 1.5rem;
  }

  .subscription .image {
    display: none;
  }

  .footer .row-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    row-gap: 80px;
  }
}

/* Tablet */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .menu-drawer .show-on-mobile,
  .featured .show-on-mobile {
    display: none;
  }
}

/* Mobile */

@media screen and (max-width: 767px) {
  .menu-drawer {
    inset: 0 25% 0 0;
    padding: 40px;
  }

  .navbar .actions {
    display: none;
  }

  .hero .title {
    font-size: 4.2rem;
  }

  .clients .row-desc .desc:last-child {
    text-align: right;
  }

  .hero-wrap .title {
    margin-top: 20px;
    font-size: 4.9rem;
  }

  .hero-wrap .desc {
    width: 100%;
  }
  .clients .images {
    row-gap: 20px;
  }

  .guides .list-guide {
    flex-direction: column;
    row-gap: 60px;
  }

  .guide-cta {
    margin-top: 60px;
  }
  .featured .link {
    display: none;
  }

  .featured .list {
    grid-template-columns: 1fr;
  }

  .featured .view-all {
    display: flex;
    justify-content: center;
    margin-top: 60px;
  }

  .stats .info .sub-title {
    width: 100%;
  }

  .stats .img-block .image {
    width: 100%;
  }

  .stats-trend {
    top: 20px;
    left: 20px;
  }

  .stats .row-qty {
    flex-direction: column;
    align-items: center;
    row-gap: 60px;
  }

  .subscription .info {
    padding: 32px;
  }

  .subscription .body {
    height: auto;
  }

  .footer .row-top {
    column-gap: 100px;
  }

  .footer .copyright {
    text-align: right;
    width: 145px;
    line-height: 1.75;
  }
}
