@media only screen and (max-width: 950px) {
  header {
    grid-template-columns: 1fr;
  }
  .menu_toggle {
    position: absolute;
    top: 50px;
    right: 50px;
    display: block;
    z-index: 2000;
  }
  .mob_menu {
    display: inline-block;
    font-size: 30px;
    position: relative;
    z-index: 101;
    width: 45px;
    height: 23px;
  }
  .mob_menu span {
    position: absolute;
    top: 9px;
    background: #000;
    display: block;
    height: 1px;
    width: 100%;
  }
  .hero_page .mob_menu span {
    background: #fff;
  }
  .active-menu .hero_page .mob_menu span {
    background: #000;
  }
  .mob_menu span:first-child {
    top: 0;
  }
  .mob_menu span:last-child {
    position: absolute;
    top: 18px;
  }
  .main_menu {
    position: fixed;
    top: 0;
    left: -110vw;
    width: 100vw;
    bottom: 0;
    padding: 20px;
    display: flex !important;
    justify-content: center;
    align-items: anchor-center;
    background: #fff;
    box-sizing: border-box;
    transition: 0.3s;
    padding-top: 16vh;
    z-index: 7;
  }
  .active-menu .main_menu {
    left: 0;
  }
  .main_menu ul, .main_menu li {
    flex-direction: column;
    justify-content: center;
    align-items: anchor-center;
  }
  .main_menu li ul {
    position: relative;
    height: auto;
    opacity: 1;
    visibility: visible;
    text-align: center;
    background: #fff;
    margin-bottom: 15px;
    top: auto;
    left: auto;
  }
  .main_menu a {
    font-size: 25px;
    color: #000 !important;
  }
  .main_menu ul li ul li a {
    font-size: 18px;
    line-height: 43px;
  }
  .main_menu ul li ul li a:hover {
    background: none;
  }
  .header_hero_float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .page_base .header {
    padding: 110px 0 20px;
    margin-bottom: 0;
  }
  .page_base .header h1 {
    font-size: clamp(25px, 4vw, 43px);
    line-height: 30px;
    padding-top: 22px;
    padding-bottom: 0;
  }
  #MainContent {
    padding-top: 40px;
  }
  .page_base #MainContent {
    padding-top: 0;
  }
}
@media only screen and (max-width: 690px) {
  .cart_table,
  .cart_table tbody,
  .cart_table tr,
  .cart_table td {
    display: block;
  }
  .cart_table tr {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 0;
  }
  .cart_table td,
  .layout-cart-wrapper p {
    padding: 0;
  }
  .cart_table_item {
    grid-column: span 3;
  }
  .cart_table_price {
    grid-column: span 2;
    display: flex !important;
    align-items: center;
    gap: 3px;
  }
  .cart_table_qty {
    justify-self: end;
  }
  .cart_table_total {
    grid-column: span 3;
    justify-self: end;
    line-height: 40px;
    margin-bottom: 10px;
  }
}