:root {
    --navbar-bg-color: hsl(0, 0%, 100%);
    --navbar-text-color: rgb(102, 6, 54);
    --navbar-text-color-focus: white;
    --navbar-bg-contrast: hsl(0, 0%, 25%);
  }
  
  * {
    /* outline: 1px #000 solid; */
    box-sizing: border-box;
  }
  
  body {
    
    margin: 0;
    padding: 0;
  /* overflow: hidden; */
    height: 100vh;
  }
  
  /*GRID-PAGE-WRAPPER*****GRID-PAGE-WRAPPER*****GRID-PAGE-WRAPPER*****GRID-PAGE-WRAPPER*****GRID-PAGE-WRAPPER****/
  
  /*MOBILE FIRST*/
  .wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 220px auto;
    gap: 5px;
    grid-template-areas:
      "nav"
      "test";
      border-style: solid;
 border-color: rgb(102, 6, 54);
  }
  
  /*NAV**********NAV********NAV*************NAV*************/
  #navbar {
    display: flex;
  height: 110px;
    grid-area: nav;
  }
  
  .navbar-container {
    display: flex;
    background-color: #ffffff;
    justify-content: space-between;
    flex-basis: 100%;
    /* align-items: center; */
  }
  
  .navbar-item {
    margin: 0.4em;
    width: 100%;
    text-transform: uppercase;
    /* align-items: center; */
  }
  
  .navbar-link {
    color: var(--navbar-text-color);
    transition: color 0.2s ease-in-out;
    text-decoration: none;
    display: flex;
    font-weight: 400;
    align-items: center;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    font-weight: 600;
    
    /* justify-content: center; */
  }
  
  .home-link:focus,
  .home-link:hover {
    color: var(--navbar-text-color-focus);
  }
  
  .navbar-link {
    justify-content: center;
    width: 100%;
    padding: 0.4em 0.8em;
    border-radius: 5px;
  }
  
  .navbar-link:focus,
  .navbar-link:hover {
    color: var(--navbar-text-color-focus);
    background-color: var(--navbar-bg-contrast);
  }
  
  /* .navbar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 76px;
    width: 200px;
  } */
  
  #logo {
    height: auto;
  }
  
  
.navbar-toggle {
  margin-top: 35px;
  margin-right: 10px;
  cursor: pointer;
  border: none;
  background-color: transparent;
  /* width: 90px;
  height: 90px; */
  display: flex;
  /* align-items: center; */
  /* justify-content: center; */
  flex-direction: column;
}

.icon-bar {
  display: block;
  width: 45px;
  height:6px;
  margin: 4px;
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out,
    opacity 0.2s ease-in-out;
  background-color: var(--navbar-text-color);
}
  
  .navbar-toggle:focus .icon-bar,
  .navbar-toggle:hover .icon-bar {
    background-color: var(--navbar-text-color-focus);
  }
  
  #navbar.opened .navbar-toggle .icon-bar:first-child,
  #navbar.opened .navbar-toggle .icon-bar:last-child {
    position: absolute;
    margin: 0;
    width: 30px;
  }
  
  #navbar.opened .navbar-logo {
    display: none;
  }
  
  #mob-logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
  }
  
  #mob-logo {
    height: auto;
    width: 90px;
  }
  #navbar.opened .navbar-toggle .icon-bar:first-child {
    transform: rotate(45deg);
  }
  
  #navbar.opened .navbar-toggle .icon-bar:nth-child(2) {
    opacity: 0;
  }
  
  #navbar.opened .navbar-toggle .icon-bar:last-child {
    transform: rotate(-45deg);
  }
  
  .navbar-menu {
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    height: 100%;
    left: 0;
    right: 0;
    /* background-color: pink; */
  }
  
  #navbar.opened .navbar-menu {
    background-color: rgb(79, 25, 104);
    opacity: 1;
    visibility: visible;
  }
  
  .navbar-links {
    width: 100%;
  
    list-style-type: none;
  
    overflow: hidden;
    position: absolute;
    background-color: var(--navbar-bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
  
    border-radius: 5px;
    /* height: 200px; */
  }
  
  #navbar.opened .navbar-links {
    padding: 1em;
    max-height: none;
  }

  /********New Media Quries****************************NEW MEDIA QUERIES*******/

@media screen and (min-width: 500px) {
    .wrapper {
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: 150px auto auto auto; 
      grid-template-areas:
        "nav"
        "test"
       
    }
  
    #navbar {
      display: grid;
      grid-area: nav;
      padding: 0;
      margin: 0;
  width: 100%;
     height: 100%;
      background: turquoise;
    }
  
    
  
    .navbar-container {
     height: 100%;
      width: 100%;
      
    }
  
    .navbar-menu {
      transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
      opacity: 0;
      visibility: hidden;
    position: absolute;
    
      left: 0;
      right: 0;
    }
  
    .navbar-toggle {
      display: none;
    }
  
    #navbar .navbar-menu,
    #navbar.opened .navbar-menu {
      visibility: visible;
      opacity: 1;
      
      width: 100%;
      
    }
  
    #navbar .navbar-links,
    #navbar.opened .navbar-links {
      margin:0;
      flex-direction: row;
      padding: 0;
      box-shadow: none;
  
      list-style-type: none;
      height: 150px;
      
  
      
    }
  
    #navbar .navbar-link:last-child {
      margin-right: 0;
    }
    .navbar-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      height: auto;
      width: 150px;
      margin: 10px;
      padding: 0;
    }
    #logo {
      border-radius: 10%;
      max-width: 250px;
      height: auto;
    }
  
    #mob-logo {
      display: none;
    }
  
  }
  
  

  
/********************TESTIMONIAL STYLES**********************/


  
.testimonial-page  {
    grid-area: test;
    width: 100%;
    border-style: solid;
 border-color: rgb(102, 6, 54);
   
    
  }
  
  .customer-testimonial-wrapper .quote {
    width: 100%;
    color: #333333;
    border-top-width: 5px;
    border-style:groove;
    border-color: rgb(104, 14, 77);
  }


  /* FOOTER */

footer {
    width: 100%;
    height: 100%;
    grid-area: footer;
    
  }
  
  .socmed {
  width: 100%;
  
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  
  
  
  }
  
  small {
    opacity: 0.8;
    font-weight: 900;
  }
  small a {
    color: inherit;
    
  }
  
  
  /* Style all font awesome icons */
  .fa {
    
   
    padding: 20px;
    font-size: 30px;
    width: 70px;
    text-align: center;
    text-decoration: none;
   margin: 5px
  }
  
  
  /* Add a hover effect if you want */
  .fa:hover {
    opacity: 0.7;
  }
  
  
  /* Facebook */
  .fa-facebook {
    background: #3B5998;
    color: white;
  }
  
  /* youtube */
  .fa-youtube {
    background: #db1111;
    color: rgb(255, 255, 255);
  }
  