:root {
  --white: 255, 255, 255;
  --silver: 248, 250, 252;
  --cloud: 220, 222, 224;
  --steal: 148, 163, 184;
  --lgray: 100, 116, 139;
  --gray: 71, 85, 105;
  --dgray: 30, 41, 59;
  --base: 7, 20, 35;
  --primary: 210, 10, 50;
  --lprimary: 253, 236, 212;
  --secondary: 5, 25, 60;
}

@media only screen and (max-width: 770px) {
  /* ====================== start code for header ===========================*/
  .btn-hamburger {
    width: 2rem;
    display: flex;
    gap: 0.25rem;
    justify-content: flex-start;
    flex-direction: column;
    padding: 0.5rem 0;
    background-color: transparent;
    border: 0;
    color: rgb(var(--white));
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.55rem;
    letter-spacing: 0.025rem;
  }
  .btn-hamburger span{
    position: relative;
    height: 1rem;
    width: 70%;
    border: 0;
    border-top: 2px solid rgb(var(--white));
    border-bottom: 2px solid rgb(var(--white));
  }
  .btn-hamburger span::before{
    width: 70%;
    height: 2px;
    background-color: rgb(var(--white));
    top: 5px;
  }
  

  .site-branding {
    display: flex;
    max-width: 3rem;
  }
  .site-branding img {
    width: 100%;
    max-width: 100%;
  }
  .main-navigation {
    display: none;
  }
  .main-navigation.active{
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top:3.8rem;
    width: 100%;
    height: 95vh;
    overflow: hidden;
    overflow-y: auto;
    z-index: 99;
    background-color:rgb(var(--secondary));
  }
  .menu-primary-menu-container{
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
  }
  .primary-menu{
    display: flex;
    gap: .5rem;
    flex-direction: column;
  }
  .primary-menu .menu-item a{
    padding: 1rem 1.125rem;
    border-bottom: 1px solid rgba(var(--white), .25);
  }

  .show-search-form fieldset{
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .show-search-form input{
    width: 100%;
    outline: 0;
    border: 0;
  }
  /* ====================== end code for header ===========================*/

  .home-container {
    gap: 4rem;
    padding: 2rem 0;
  }
  .mob-hscroll::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
    opacity: 0;
    background: transparent;
  }
  .mob-hscroll {
    overflow: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
  }
  .mob-hscroll div {
    overflow: hidden;
    overflow-x: auto;
  }
  .mob-wrapper {
    width: 100%;
  }
  .mob-wrapper .section-heading-wrap {
    padding-left: 5%;
    padding-right: 5%;
  }
  .hero-wrapper {
    padding: 2.5rem 0;
  }
  .hero-home {
    width: 100%;
    gap: 0.5rem;
    padding-left: 5%;
  }
  .hero-posts {
    flex: 0 0 20em;
    gap: 0.5rem;
  }
  .featured-wrap {
    padding-top: 0;
  }
  .featured-wrap .wrapper {
    width: 100%;
  }
  .featured-content {
    --s: 0;
    padding: 0;
    border: 0;
    background-color: #001428;
  }
  .featured-content .featured-posts {
    flex-direction: column;
  }
  .featured-cnt-wrap {
    width: 80%;
    padding: 5%;
  }
  .featured-posts .img-content {
    width: 100%;
  }
  .featured-posts .img-wrapper {
    min-width: 100%;
    max-width: 100%;
  }
  .show-brand-content {
    gap: 1rem;
  }
  .content-brand {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: start;
    padding-left: 5%;
  }
  .content-brand a {
    flex: 0 0 8em;
  }
  .section-post-grid-type1 {
    grid-template-columns: 1fr;
    padding-left: 5%;
    padding-right: 5%;
  }
  .right-post-secondary {
    gap: 1rem;
  }
  .post-items.side-display {
    flex: 0 0 auto;
  }
  .post-items.side-display .img-wrapper {
    flex-basis: 25em;
  }
  .post-items.side-display .span {
    width: 100px;
  }
  .section-post-grid-col4 {
    display: flex;
    flex-direction: row;
    padding-left: 5%;
    gap: 0.5rem;
  }
  .section-post-grid-col4 a {
    flex: 0 0 16em;
  }
  .section-post-grid-col3 {
    grid-template-columns: 1fr;
    width: 90%;
    margin: 0 auto;
    gap: 1rem;
  }
  .section-post-grid-col3.v-display {
    gap: 1rem;
  }

  /* ====================== start code for footer ===========================*/
  .site-footer {
    padding: 2rem 0;
  }
  .site-footer a {
    font-size: 0.75rem;
  }
  .footer-nav-item {
    gap: 1rem;
  }
  .footer-info {
    padding: 1rem 0;
  }
  /* ====================== end code for footer ===========================*/
  /* ====================== start code for search page =======================*/
  .search-wrap {
    flex-direction: column-reverse;
    gap: 0;
  }
  .search-side-bar {
    width: 100%;
    padding-bottom: 0;
    height: auto;
  }
  .search-wrap .full-height-ads {
    display: none;
  }
  .search-left-col {
    padding-top: 0;
  }
  .search-left-col .img-col {
    width: 180px;
  }
  .search-content-wrap {
    padding: 1rem 0;
  }
  .search-wrap h3 {
    font-size: 1rem;
  }
  /* ====================== end code for search page =======================*/
  .ms-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
  .ms-content {
    padding: 1rem;
  }
  /* ====================== start code for single page =======================*/
  .post-top-info {
    gap: 0;
    flex-direction: column;
  }
  .post-top-info h1 {
    font-size: 1.5rem;
  }
  .post-info-sidebar .cat-ads-wrapper {
    display: none;
  }
  .post-content-details {
    flex-direction: column;
    gap: 3rem;
  }
  .post-info-sidebar {
    width: 100%;
  }
  .full-page-ads {
    padding: 1rem 0;
  }
  .post-single-attributes {
    padding-bottom: 1rem;
    row-gap: 0.5rem;
  }
  /* ====================== end code for single page =======================*/
  /* ====================== start code for category page =======================*/
  .cat-hero-wrapper {
    flex-direction: column;
	gap:.5rem;
  }
  .cat-hero-sidebar{
	  width:100%;
  }
  .post-tiles,
  .post-tiles.col-3 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
  .mob-lr {
    flex-direction: row;
    gap: 0.5rem;
  }
  .mob-lr .post-img-wrap {
    width: 40%;
  }
  .mob-lr .lr-rgt-content {
    width: 60%;
  }
  
  /* ====================== start code for category page =======================*/
}
