
/* css for desktop */
@media only screen and (min-width: 925px) {

    .mobile-header {
        display: none;
    }

    .header {
        display:flex;
        position: relative;
        left:0px;
        top:0px;
    }
    
    .subheader-div {
        display: block;
        padding-top: 5.75rem;
        width: 100%;
        :where(.navbar) {
            float: right;
            padding-right: 2rem;
        }
        :where(.text-div-inline) {
            float: left;
        }
    }
    
    .logo-img {
        width: 185px;
        height: 198.39px;
        cursor: pointer;
    }
    
    .logo-div {
        padding: .1rem;
    } 
    
    /* header logo font div - Picture Remedy */
    .text-div-inline {
        display: inline;
        font-size: 2.25rem;
        font-weight: 600;
        letter-spacing: 4.14px;
        color:#fff;
        cursor: pointer;
    }

    .navbar {
      display: flex;
      padding-top: .5rem;
      padding-left: 1rem;
    }
  
    .menu-item {
      font-weight: 600;
      font-size: 1.25rem;
      letter-spacing: 2.3px;
      line-height: 197.02273607254028%;
      text-align: center;
      color: rgb(255,255,255);
      padding: 0 .5em;
      position: relative;
      cursor: pointer;
    }
    
    .menu-item:hover {
      color: #6af8f9;
      background-color: rgba(0, 0, 0, .3);
    }
    
    .hide-submenu {
      display: none;
    }
  
    .show-submenu {
      position: absolute;
      top:2.5rem;
      left:0;
      width: 250%;
      z-index: 5;
      text-align: left;
      padding-left: 10px;
      background-color: rgba(0, 0, 0, .3);
    }
    
    .submenu-item {
      color: #fff;
    }
    .submenu-item:hover {
      color: #6af8f9;
     }
  
    /* hide mobile menu while in desktop mode */
    .hamburger {
      display: none;
    }
  
    .mobile-header {
      display: none;
    }
  
    .mobile-menu-hide {
      display: none;
    }
  
    .mobile-menu-show {
      display: none;
    }
  
  } /* end desktop menu styles */
    
    /* css for mobile device slide out menu */
    @media only screen and (min-width: 1px) and (max-width: 924px) {
      
      .navbar {
        display: none;
      }
          
      .mobile-header {
        display: flex;
        /* align-items: center; */
        width: 100%;
        left:0px;
        top:0px;
      }
  
      .mobile-logo-div {
        position:relative;
        left: 39%;
        transform: translate(-61%);
        padding-bottom: 2rem;
      }

      /* text after company logo */
      .mobile-header-title {
        font-size: 1.25rem;
        color: #ffffff;
      }

      /* hamburger container */
      .menu-icon-div {
        float: left;
        padding-left: 1rem;
        padding-top: 1rem;
        z-index: 5;
      }

      /* hamburger icon */
      .menu-icon {
        cursor: pointer;
      }

      .mobile-logo-div {
        text-align: center;
        padding-top: .75rem;
      }

      .mobile-logo-img {
        width: 75.3px;
        height: 80.85px;
      }
  
      .mobile-menu {
        font-style: normal;
        font-family: Cabin;
        font-weight: 600;
        font-size: 1.25rem;
        letter-spacing: .2rem;
      }
      
      /* slide/hide mobile menu */
      .mobile-menu-hide {
        position: absolute;
        overflow: hidden;
        top: 4rem;
        left: -100%;
        z-index: 10;
        width: 300px;
        min-width: 250px;
        transition: left 200ms ease-out 50ms;
        height: 200%;
      }
    
    /* show/slide mobile menu */
    .mobile-menu-show {
        position: absolute;
        overflow: hidden;
        top: 4rem;
        left: 0;
        z-index: 10;
        padding-top: 1rem;
        width: 300px;
        min-width: 250px;
        height: 200%;
        transition: left 200ms ease-in 50ms;
        border-radius: 0% 10px 10px 0%;
        background-color: rgba(255, 255, 240, .9);
        /* cursor: pointer; */
    }
  
      .menu-item {
        display: flex;
        flex-direction: column;
        padding-left: 1rem;
        align-items: left;
        line-height: 2;
        width: 100%;
        color: rgb(153,82,0);
        position: relative;
        cursor: pointer;
      }
    
      .menu-item:hover {
        color: rgb(0,153,51);
      }
      
      .submenu-item {
        color: rgb(153,82,0);
      }
      .submenu-item:hover {
        color: rgb(0,153,51);
       }
          
      .hide-submenu {
        display: none;
      }
  
      .show-submenu{
        position: relative;
        width: 100%;
        padding-left: .2rem;
        color: rgb(41, 41, 41);
        line-height: 2rem;
        z-index: 10;
        text-align: left;
        /* background-color: rgba(255, 255, 235, 1); */
        border-left: 1px solid rgb(153,82,0);
        border-bottom: 1px solid rgb(153,82,0);
      }
             
    } /* end mobile css declarations */