body{
    background:  #F1F1F1;
}


/*************************************************************/
/***** Start: setting based on smallest screen size 280px ****/

/*Switches: not displayed in horizontal menu items - based on Screen width */
/*** css  Min >280px  width in portrait  *****/
@media only screen and (min-width: 280px) {
#Horses_show, #Facilities_show, #SocialMedia_show, #Stablecam_show, #Podcast_show, #News_show, #Contact_show, #OurTeam_show {
    display: none;
}

img#HeaderLOGO { /* resized the img of the Logo at top */
    
    width: 178px;
    height: auto;
}

.logo1 {/** css for the Logo area at top - excluding the logo img **/
    display: flex;
    justify-content: center;
    width: 100%; 
    height:auto;
    background: rgb(8, 5, 95);      
}

/******* css for the Horizontal  menu ******/
.nav-main {
    position: absolute;
    top: 108px; /* positions sidebar at top - change to allow icon */
    width: 100%;
    height: 32px;/* size to fit indicators */
    background: rgb(8, 5, 95);
    display: flex;
    flex-wrap: wrap;
    z-index: 999;/* positions in font of  other content */
}


.btn-toggle-nav { /* the icon for the  sidebar menu **/
   
    width: 20px;
    height: 20px;/* positions menu icon in lne with  horizontal menu items */
    background-size: 95%;/* sizes of menu icn */
    margin-top: 4px;


    background-color:rgb(8, 5, 95);
    background-image:  url("../images/menu_Icon-Gold.PNG");
    background-repeat: no-repeat;
    
    background-position: center;
    cursor: pointer;
}



.nav-main ul {
 
    display:flex;
    width: 90%;
    flex-wrap: wrap;
    padding-left: 5px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.nav-main ul li {
   
list-style: none;
line-height: 30px; /* line height to centers vertically in navigation */
text-align: center;

}

.nav-main ul li a {
 display: block;
 height: 100%;
 padding: 0 6px;
 text-transform: capitalize;
 text-decoration: none;
 color: rgb(204, 156, 12); 
 font-family: Arial;
 font-size: 13px;
 
 
}

.nav-main ul li a:hover{
    background-color: rgb(22, 233, 54); 
}

/* CSS  for Login and access level indicators in header menu when logged in */

.LoginIndicator p { /* will only show if login in */
    display: flex;
    float: right;
    margin-top: 0px;
    padding-top: 2px;
    margin-left: 10%;
    color: white;
    font-size: 8px;
    font-style: italic;
    z-index: 1000;
}

.LevelIndicator p{ /* will only show if login in */
    display: flex;
    float: right;
  margin-left: 6px;
    margin-top: 10px;
    color: white;
    font-size: 8px;
    font-style: italic;
    z-index: 1000;
}

/** css for he side bar menu */
.nav-sidebar{
   
    position: absolute;
    top: 134px ;/* positions the top of the side bar */
    left: 0;
    bottom: 0;
    width: 110px;/* controls width of sidebar */
  
    height: calc(100vh - 38%); /* height of browser less the  menu bar height */
    padding: 0 5px; /* adds left and right to  width so max width is 60px */
    background-color:rgb(8, 5, 95);
    z-index: 999;
    transition: all 0.3s ease-in-out;
    visibility: hidden; /* hides the  sidebar until clicked*/
}

.nav-sidebar ul {
    padding-top: 3px;
    overflow: hidden;
   visibility: hidden;
  
}

.nav-sidebar ul li  {
    line-height: 30px;
    list-style: none;
}

.nav-sidebar ul li span, .nav-sidebar ul li a {

display: block;
height: 30px;  /* if need to change height - also change line height  in .nav-sidebar Ul Li ***/
padding: 0 10px;
text-decoration: none;
text-transform: capitalize;
color: rgb(204, 156, 12); 

font-family: Arial;
font-size: 12px;/* size of list  font */
white-space: nowrap; /* makes text not wrap  and extends outside of  container */
opacity: 0;
transition: all 0.3s ease-in-out; 
}

.nav-sidebar ul li a:hover {

  background-color: rgb(22, 233, 54); 
  }

#SidebarTitle {

    font-weight: bold;
    font-size: 16px;
    font-style: italic;
}
  }  /******** End of Start  setup format  - using 280px screen  ******/






/********* for 320 px screen * **************/
@media only screen and (min-width: 320px) {
    
    .nav-sidebar{
   
        top: 141px ;/* positions the top of the side bar */
        
    }

}

/*** css  variation of Min >360px  width in portrait  *****/
@media only screen and (min-width: 360px) and (orientation: portrait) {
   
    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        width: 30px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
        background-size: 85%;/* sizes of menu icn */
        margin-top: 6px;
    }
    .nav-main ul {
        width: 90%;/* change  width of  list area for menu */  
        justify-content:center;
    }
   
   
    .nav-sidebar{
   
        top: 141px ;/* positions the top of the side bar */
        
    }

    .LoginIndicator p { /* will only show if login in */
        padding-top: 2px;
        margin-left: 10px;
        font-size: 11px;
       
    }
    
    .LevelIndicator p{ /* will only show if login in */
        margin-top: 1px;
        font-size: 11px;
        
    }


}

/*** css  variation of Min 375 px width  *****/
@media only screen and (min-width: 375px) and (orientation: portrait) {

    /*Switches: to display horizontal menu items not originally shown  - based on Screen width */

    #Podcast_show  {
        display: flex;
    }
 
    /******* css for the Horizontal  menu ******/

    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        width: 30px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
        background-size: 85%;/* sizes of menu icn */
        margin-top: 6px;
    }
    .nav-main ul {
        width: 85%;/* change  width of  list area for menu */  
        justify-content: center;
        margin-left: -6px;
        padding-left: 0;
    }

    .nav-main ul li a {
        font-size: 12px; 
        padding-left: 2px;
        
        
    }

    /** css for he side bar menu */
    .nav-sidebar{
        top: 141px; /* positions sidebar below horizontal menu  */ 
        height: 400px; /* height of browser less the  menu bar height */
        width: 120px;/* controls width of sidebar */
    }
    .nav-sidebar ul li a {

        font-size: 13px;/* size of list  font */
    
        }

} /* End of >375 px screen adjustments */ 


/*** css  variation of Min 480 px  - Nokia N9 width  *****/
@media only screen and (min-width: 480px) {

    /*Switches: to display horizontal menu items not originally shown  - based on Screen width */

    #SocialMedia_show, #Podcast_show  {
        display: flex;
    }
 
    /******* css for the Horizontal  menu ******/

    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        width: 30px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
        background-size: 95%;/* sizes of menu icn */
        margin-top: 6px;
    }

    .nav-main ul {
        width: 90%;/* change  width of  list area for menu */  
        justify-content: center;
        margin-left: 6px;
        
        padding-left: 0%;
     
        
    }

    .nav-main ul li a {
        font-size: 13px; 
        padding-left: 2px;
        
    }

    /** css for he side bar menu */
    .nav-sidebar{
        top: 141px; /* positions sidebar below horizontal menu  */ 
        height: 400px; /* height of browser less the  menu bar height */
        width: 120px;/* controls width of sidebar */
    }
    .nav-sidebar ul li a {

        font-size: 13px;/* size of list  font */
    
        }

} /* End of >480 px screen adjustments */ 








/*** css  variation of Min 512  Portrait screen *****/
@media only screen and (min-width: 512px) and (orientation: portrait) {

    /*Switches: to display horizontal menu items not originally shown  - based on Screen width */

    #SocialMedia_show, #Podcast_show {
        display: flex;
    }
    .nav-main ul {
        width: 90%;

    }
    .nav-main ul li a {
        
        padding: 0 5px;
        
        
        
       }


}

/*** css  variation of Min 540 to  820 px  Portrait screen *****/
@media only screen and (min-width: 540px) and (height: 720px)  {

    /*Switches: to display horizontal menu items not originally shown  - based on Screen width */

   
    
    #SocialMedia_show {
        display: flex;
    }
 

    img#HeaderLOGO { /* resized the img of the Logo at top */
    
        width: 250px;
        height: auto;
    }

    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        width: 30px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
        background-size: 90%;/* sizes of menu icn */
        margin-top: 5px;
    }
    .nav-main ul {
        width: 94%;/* change  width of  list area for menu */  
        justify-content: center;
         padding-left: 0;
         margin-left: 0;
    }
   
    
    .nav-main ul li {
       
    list-style: none;
    line-height: 30px; /* line height to centers vertically in navigation */
    text-align: center;
    
    }
    
    .nav-main ul li a {
     display: block;
     height: 100%;
     padding: 0 6px;
     text-transform: capitalize;
     text-decoration: none;
     color: rgb(204, 156, 12); 
     font-family: Arial;
     font-size: 13px;
     
     
    }
    /******* css for the Horizontal  menu ******/
    .nav-main {
        top: 153px; /* positions sidebar at top - change to allow icon */  
        height: 42px;/* size to fit indicators */
        margin-left: 0px;
        padding-left: 0px;
      
    }

    .nav-main ul {
        width: 80%;/* change  width of  list area for menu */    
    }

    .nav-main ul li {
        line-height: 40px; /* line height to centers vertically in navigation */
        }

        .nav-main ul li a {
            padding: 0 3px;
            font-size: 13px;
           }


           .btn-toggle-nav { /* the icon for the  sidebar menu **/
            width: 30px;
            height: 20px;/* positions menu icon in lne with  horizontal menu items */
            background-size: 85%;/* sizes of menu icn */
            margin-top: 8px;
        }
        .nav-main ul {
            width: 90%;/* change  width of  list area for menu */  
            justify-content: space-evenly;
        }
   

    .nav-main ul li {
        line-height: 40px; /* line height to centers vertically in navigation */
        }

    .nav-main ul li a {
        font-size: 16px;
    }

   /* CSS  for Login and access level indicators in header menu when logged in */

.LoginIndicator p { /* will only show if login in */
    padding-top: 2px;
    margin-left: 10px;
    font-size: 11px;
   
}

.LevelIndicator p{ /* will only show if login in */
    margin-top: 4px;
    font-size: 11px;
    
}




/** css for he side bar menu */
.nav-sidebar {
   
    position: absolute;
    top: 196px ;/* positions the top of the side bar */
   
    width: 130px;/* controls width of sidebar */
  
    height: calc(100vh - 38%); /* height of browser less the  menu bar height */

}

.nav-sidebar ul {
    padding-top: 3px;
    overflow: hidden;
   visibility: hidden;
  
}

.nav-sidebar ul li  {
    line-height: 30px;
    list-style: none;
}

.nav-sidebar ul li span, .nav-sidebar ul li a {

display: block;
height: 30px;  /* if need to change height - also change line height  in .nav-sidebar Ul Li ***/
padding: 0 10px;
;
font-size: 16px;/* size of list  font */

}

.nav-sidebar ul li a:hover {

  background-color: rgb(22, 233, 54); 
  }

#SidebarTitle {

    font-weight: bold;
    font-size: 16px;
    font-style: italic;
}
 
} /* End of 540 to 849 portrait  screen adjustments */ 

/*** css  variation of Min 653px  Landscape screen *****/
@media only screen and (min-width: 653px) and (orientation: landscape) {

    #SocialMedia_show, #Podcast_show, #OurTeam_show{

        display: flex;
    }
    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        width: 30px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
        background-size: 90%;/* sizes of menu icn */
        margin-top: 5px;
    }
    .nav-main ul {
        width: 94%;/* change  width of  list area for menu */  
        justify-content: space-evenly;
    }
    .nav-main ul li a {
        font-size: 18px;
    }

   /* CSS  for Login and access level indicators in header menu when logged in */

.LoginIndicator p { /* will only show if login in */
    padding-top: 2px;
   
   
}

.LevelIndicator p{ /* will only show if login in */
    margin-top: 2px;
   
    
}

}

/*** css  variation of Min 667px screen *****/
@media only screen and (min-width: 667px) and (orientation: landscape){

    #SocialMedia_show, #Podcast_show, #OurTeam_show{

        display: flex;
    }
    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        width: 30px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
        background-size: 85%;/* sizes of menu icn */
        margin-top: 4px;
    }
    .nav-main ul {
        width: 95%;/* change  width of  list area for menu */  
        justify-content: center;
        margin-left: -40px;
        padding-left: 0;
    }
    .nav-main ul li a {
        font-size: 14px;
        padding-left: 4px;
    }

   /* CSS  for Login and access level indicators in header menu when logged in */

.LoginIndicator p { /* will only show if login in */
    padding-top: 2px;
   
   
}

.LevelIndicator p{ /* will only show if login in */
    margin-top: 2px;
   
    
}
/** css for he side bar menu */
.nav-sidebar{
   
  
    top: 141px ;/* positions the top of the side bar */
    
    width: 150px;/* controls width of sidebar */
  
  
}


.nav-sidebar ul li span, .nav-sidebar ul li a {

font-size: 18px;/* size of list  font */

}

#SidebarTitle {

    font-size: 22px;
  
}
}

/*** css  variation of Min 717px   & height  512 (Galaxy fold) screen *****/

@media only screen and (width: 717px) and (height: 512px) {

    #SocialMedia_show, #Podcast_show, #OurTeam_show{

        display: flex;
    }
    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        width: 30px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
        background-size: 85%;/* sizes of menu icn */
        margin-top: 1px;
    }
    .nav-main ul {
        margin-left: 6px;
        width: 90%;/* change  width of  list area for menu */  
        justify-content: center;
    }
    .nav-main ul li a {
         margin-left: 6px;
         padding-left: 4px;
        font-size: 17px;
    }

   /* CSS  for Login and access level indicators in header menu when logged in */

.LoginIndicator p { /* will only show if login in */
    padding-top: 2px;
   
   
}

.LevelIndicator p{ /* will only show if login in */
    margin-top: 2px;
   
    
}

}

/*** css  variation of Min 720px   screen *****/

@media only screen and (width: 720px) {

    #SocialMedia_show, #Podcast_show, #OurTeam_show{

        display: flex;
    }
    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        width: 35px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
        background-size: 95%;/* sizes of menu icn */
        margin-top: 6px;
    }
    .nav-main ul {
        width: 90%;/* change  width of  list area for menu */  
        justify-content: space-evenly;
    }
    .nav-main ul li a {
        font-size: 17px;
    }

   /* CSS  for Login and access level indicators in header menu when logged in */

.LoginIndicator p { /* will only show if login in */
    padding-top: 2px;
   
   
}

.LevelIndicator p{ /* will only show if login in */
    margin-top: 2px;
   
    
}

}






/*** css  variation of Min 736 x 414px Ip 6/7/8 landscape   screen *****/
@media only screen and (min-width: 736px) {

    #SocialMedia_show, #Podcast_show, #OurTeam_show{

        display: flex;
    }
    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        width: 35px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
        background-size: 90%;/* sizes of menu icn */
        margin-top: 2px;
    }
    .nav-main ul {
        width: 90%;/* change  width of  list area for menu */  
        justify-content: space-evenly;
    }
    .nav-main ul li a {
        font-size: 17px;
      
    }


    .nav-sidebar{
   
        top: 195px ;/* positions the top of the side bar */
        
    }

   /* CSS  for Login and access level indicators in header menu when logged in */

.LoginIndicator p { /* will only show if login in */
    padding-top: 2px;
   
   
}

.LevelIndicator p{ /* will only show if login in */
    margin-top: 2px;
   
    
}
}

/*** css  variation of Min 740 x 360px Ip 6/7/8 landscape   screen *****/
@media only screen and (min-width: 740px) {

    #SocialMedia_show, #Podcast_show, #OurTeam_show{

        display: flex;
    }
    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        width: 35px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
        background-size: 90%;/* sizes of menu icn */
        margin-top: 4px;
    }
    .nav-main ul {
        width: 85%;/* change  width of  list area for menu */  
        justify-content: center;
        margin-left: 0;
        padding-left: 0;
    }
    .nav-main ul li a {
        font-size: 17px;
      
    }


    .nav-sidebar{
   
        top: 195px ;/* positions the top of the side bar */
        
    }

   /* CSS  for Login and access level indicators in header menu when logged in */

.LoginIndicator p { /* will only show if login in */
    padding-top: 2px;
   
   
}

.LevelIndicator p{ /* will only show if login in */
    margin-top: 2px;
   
    
}
}




/*** css  variation of Min 768px  screen *****/
@media only screen and (min-width: 768px) {

    #SocialMedia_show, #Podcast_show, #OurTeam_show{

        display: flex;
    }
    .logo1 {/** css for the Logo area at top - excluding the logo img **/
        display: flex;
        justify-content: center;
        width: 100%; 
        height:auto;
        background: rgb(8, 5, 95);      
    }
    
    /******* css for the Horizontal  menu ******/
    .nav-main {
        position: absolute;
        top: 108px; /* positions sidebar at top - change to allow icon */
        width: 100%;
        height: 32px;/* size to fit indicators */
        background: rgb(8, 5, 95);
        display: flex;
        flex-wrap: wrap;
        z-index: 999;/* positions in font of  other content */
    }
    
    
    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        width: 35px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
        background-size: 90%;/* sizes of menu icn */
        margin-top: 10px;
    }
   
    .nav-main ul {
        width: 90%;/* change  width of  list area for menu */  
        justify-content: space-evenly;
    }
    .nav-main ul li a {
        font-size: 17px;
      
    }


    .nav-sidebar{
   
        top: 195px ;/* positions the top of the side bar */
        
    }

   /* CSS  for Login and access level indicators in header menu when logged in */

.LoginIndicator p { /* will only show if login in */
    padding-top: 2px;
   
   
}

.LevelIndicator p{ /* will only show if login in */
    margin-top: 2px;

}


.nav-sidebar{
    top: 141px ;/* positions the top of the side bar */
    width: 150px;/* controls width of sidebar */
}

}










/*** css  variation of Min 768px  Landscape screen *****/

@media only screen and (width: 768px) {

    #SocialMedia_show, #Podcast_show, #OurTeam_show{

        display: flex;
    }
    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        width: 40px;
        height: 25px;/* positions menu icon in lne with  horizontal menu items */
        background-size: 90%;/* sizes of menu icn */
        margin-top: 6px;
    }
    .nav-main ul {
        width: 80%;/* change  width of  list area for menu */  
        justify-content: center;
        margin-left: 0;
    }
    .nav-main ul li a {
        font-size: 16px;
    }

   /* CSS  for Login and access level indicators in header menu when logged in */

.LoginIndicator p { /* will only show if login in */
    padding-top: 2px;
   
   
}

.LevelIndicator p{ /* will only show if login in */
    margin-top: 2px;
   
    
}

}

/*** css  variation of Min 786px  portrait screen *****/
@media only screen and (min-width: 786px) and (orientation: Landscape){

    #SocialMedia_show, #Podcast_show, #OurTeam_show{

        display: flex;
    }
    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        width: 30px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
        background-size: 85%;/* sizes of menu icn */
        margin-top: 6px;
    }
    .nav-main ul {
        margin-left: 15px;
        width: 90%;/* change  width of  list area for menu */  
        justify-content: center;
    }
    .nav-main ul li a {
        font-size: 17px;
      
    }

   /* CSS  for Login and access level indicators in header menu when logged in */

.LoginIndicator p { /* will only show if login in */
    padding-top: 2px;
   
   
}

.LevelIndicator p{ /* will only show if login in */
    margin-top: 2px;
   
    
}
}

/*** css  variation of Min 812px screen *****/
@media only screen and (width: 812px) {

    #SocialMedia_show, #Podcast_show, #OurTeam_show{

        display: flex;
    }
    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        width: 30px; /*portrait */
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
        background-size: 85%;/* sizes of menu icn */
        margin-top: 2px;
    }
    .nav-main ul {
        width: 90%;/* change  width of  list area for menu */  
        justify-content: center;
    }
    .nav-main ul li a {
        font-size: 17px;
        padding-left: 6px;
    }

   /* CSS  for Login and access level indicators in header menu when logged in */

.LoginIndicator p { /* will only show if login in */
    padding-top: 2px;
   font-size: 11px;
   
}

.LevelIndicator p{ /* will only show if login in */
    margin-top: 2px;
   
    
}

}






/*** css  variation of Min 820px  portrait screen *****/


@media only screen and (width: 820px) and (orientation:portrait){

    #SocialMedia_show, #Podcast_show, #OurTeam_show{

        display: flex;
    }
    .btn-toggle-nav { /* the icon for the  sidebar menu **/
            width: 30px;
            height: 20px;/* positions menu icon in lne with  horizontal menu items */
            background-size: 85%;/* sizes of menu icn */
            margin-top: 4px;
        }
        .nav-main ul {
            width: 90%;/* change  width of  list area for menu */  
            justify-content: space-evenly;
        }
    .nav-main ul li a {
        font-size: 18px;
        padding-left: 6px;
    }


}






@media only screen and (width: 820px) {

    #SocialMedia_show, #Podcast_show, #OurTeam_show{

        display: flex;
    }
    .btn-toggle-nav { /* the icon for the  sidebar menu **/
            width: 30px;
            height: 20px;/* positions menu icon in lne with  horizontal menu items */
            background-size: 95%;/* sizes of menu icn */
            margin-top: 9px;
        }
        .nav-main ul {
            width: 90%;/* change  width of  list area for menu */  
            justify-content: center;
        }
    .nav-main ul li a {
        font-size: 18px;
        padding-left: 6px;
    }


}



/*** css  variation of Min 823px  x 411  pixel 2xl screen *****/
@media only screen and (width: 823px) {

    #SocialMedia_show, #Podcast_show, #OurTeam_show{

        display: flex;
    }
    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        width: 30px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
        background-size: 90%;/* sizes of menu icn */
        margin-top: 1px;
    }
    .nav-main ul {
        width: 90%;/* change  width of  list area for menu */  
        justify-content: center;
    }
    .nav-main ul li a {
        font-size: 17px;
        padding-left: 6px;
    }

   /* CSS  for Login and access level indicators in header menu when logged in */

.LoginIndicator p { /* will only show if login in */
    padding-top: 2px;
   font-size: 11px;
   
}

.LevelIndicator p{ /* will only show if login in */
    margin-top: 2px;
   
    
}

}

/*** css  variation of Min 844px  Landscape screen *****/
@media only screen and (width: 844px) and (orientation: Landscape){

    #SocialMedia_show, #Podcast_show, #OurTeam_show{

        display: flex;
    }
    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        width: 35px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
        background-size: 95%;/* sizes of menu icn */
        margin-top: 6px;
    }
    .nav-main ul {
        width: 90%;/* change  width of  list area for menu */  
        justify-content: center;
        margin-left: 0;
    }
    .nav-main ul li a {
        font-size: 17px;
        padding-left: 6px;
    }

   /* CSS  for Login and access level indicators in header menu when logged in */

.LoginIndicator p { /* will only show if login in */
    padding-top: 2px;
   font-size: 11px;
   
}

.LevelIndicator p{ /* will only show if login in */
    margin-top: 2px;
   
    
}

}

/*** css  variation of Min 844px  portrait screen *****/

/*** css  variation of Min 854 X 480 px - Nokia N9 landscape screen *****/
@media only screen and (width: 854px)  and (orientation: landscape){

    .nav-sidebar{

        top: 141px ;/* positions the top of the side bar */
        
        width: 150px;/* controls width of sidebar */
    
    }
    



}




/*** css  variation of Min 892px - Pixel 6  Landscape screen *****/
@media only screen and (width: 892px) {

    #SocialMedia_show, #Podcast_show, #OurTeam_show{

        display: flex;
    }
    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        width: 35px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
        background-size: 95%;/* sizes of menu icn */
        margin-top: 6px;
    }
    .nav-main ul {
        width: 90%;/* change  width of  list area for menu */  
        justify-content: center;
    }
    .nav-main ul li a {
        font-size: 17px;
        padding-left: 6px;
    }

   /* CSS  for Login and access level indicators in header menu when logged in */

.LoginIndicator p { /* will only show if login in */
    padding-top: 2px;
   font-size: 11px;
   
}

.LevelIndicator p{ /* will only show if login in */
    margin-top: 2px;
   
    
}

}

/**** Iphone XR landscape ****/
@media only screen and (width: 896px) and (height: 414px){

    .nav-sidebar{
        top: 141px ;/* positions the top of the side bar */
        width: 150px;/* controls width of sidebar */
    }

}/* end pf  896 x 414 ***/



/*** css  variation of Min 912px  portrait screen *****/
@media only screen and (width: 912px) and (orientation: portrait){

    #Facilities_show, #SocialMedia_show, #Podcast_show, #OurTeam_show{

        display: flex;
    }
    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        width: 30px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
        background-size: 85%;/* sizes of menu icn */
        margin-top: 6px;
    }
    .nav-main ul {
        width: 90%;/* change  width of  list area for menu */  
        justify-content: center;
    }
    .nav-main ul li a {
        font-size: 17px;
        padding-left: 6px;
    }

   /* CSS  for Login and access level indicators in header menu when logged in */

.LoginIndicator p { /* will only show if login in */
    padding-top: 2px;
   font-size: 11px;
   
}

.LevelIndicator p{ /* will only show if login in */
    margin-top: 2px;
   
    
}

}

/*** css  variation of Min 914px  Landscape screen *****/
@media only screen and (width: 914px) and (orientation: Landscape){

    #Facilities_show, #SocialMedia_show, #Podcast_show, #OurTeam_show{

        display: flex;
    }
    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        width: 35px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
        background-size: 90%;/* sizes of menu icn */
        margin-top: 1px;
    }
    .nav-main ul {
        width: 90%;/* change  width of  list area for menu */  
        justify-content: space-evenly;
    }
    .nav-main ul li a {
        font-size: 17px;
        padding-left: 6px;
    }

   /* CSS  for Login and access level indicators in header menu when logged in */

.LoginIndicator p { /* will only show if login in */
    padding-top: 2px;
   font-size: 11px;
   
}

.LevelIndicator p{ /* will only show if login in */
    margin-top: 2px;
   
    
}

}
/*** css  variation of Min 915px   screen *****/
@media only screen and (width: 915px) and (orientation: Landscape){

    #Facilities_show, #SocialMedia_show, #Podcast_show, #OurTeam_show{

        display: flex;
    }
    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        width: 35px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
        background-size: 90%;/* sizes of menu icn */
        margin-top: 5px;
    }
    .nav-main ul {
        width: 90%;/* change  width of  list area for menu */  
        justify-content: center;
    }
    .nav-main ul li a {
        font-size: 17px;
        padding-left: 6px;
    }

   /* CSS  for Login and access level indicators in header menu when logged in */

.LoginIndicator p { /* will only show if login in */
    padding-top: 2px;
   font-size: 11px;
   
}

.LevelIndicator p{ /* will only show if login in */
    margin-top: 2px;
   
    
}

}



/*** css  variation of Min 1024px   x 768 screen *****/
@media only screen and (width: 1024px){

    #Horses_show, #Facilities_show, #SocialMedia_show,  #Podcast_show, #News_show, #Contact_show, #OurTeam_show {

        display: flex;
    }

    img#HeaderLOGO { /* resized the img of the Logo at top */
    
        width: 410px;
        height: auto;
    }

    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        width: 40px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
        background-size: 85%;/* sizes of menu icn */
        margin-top: 5px;
    }
     .nav-main{
        margin-top: 140px;
     }

    .nav-main ul {
        
        width: 90%;/* change  width of  list area for menu */  
        justify-content: center;
    }
    .nav-main ul li a {
        font-size: 18px;
        padding-left: 6px;
    }

   /* CSS  for Login and access level indicators in header menu when logged in */

.LoginIndicator p { /* will only show if login in */
    padding-top: 2px;
   font-size: 11px;
   
}

.LevelIndicator p{ /* will only show if login in */
    margin-top: 2px;
   
    
}

.nav-sidebar{
   
  
    top: 281px ;/* positions the top of the side bar */
    
    width: 150px;/* controls width of sidebar */
  
  
}


.nav-sidebar ul li span, .nav-sidebar ul li a {

font-size: 18px;/* size of list  font */

}

#SidebarTitle {

    font-size: 22px;
  
}

}
/*** css  variation of Min 1080px  x 2412PX ( OPPO A96) screen *****/
@media only screen and (width: 1080px) AND (ORIENTATION: PORTRAIT){


    #Horses_show, #Facilities_show, #SocialMedia_show,  #Podcast_show, #News_show, #Contact_show, #OurTeam_show {

        display: flex;
    }

    img#HeaderLOGO { /* resized the img of the Logo at top */
    
        width: 410px;
        height: auto;
    }

    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        width: 40px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
        background-size: 85%;/* sizes of menu icn */
        margin-top: 5px;
    }
     .nav-main{
        margin-top: 140px;
     }

    .nav-main ul {
        
        width: 90%;/* change  width of  list area for menu */  
        justify-content: space-evenly;
         
    }
    .nav-main ul li a {
        font-size: 18px;
        padding-left: 6px;
    }

   /* CSS  for Login and access level indicators in header menu when logged in */

.LoginIndicator p { /* will only show if login in */
    padding-top: 2px;
   font-size: 11px;
   
}

.LevelIndicator p{ /* will only show if login in */
    margin-top: 2px;
   
    
}

.nav-sidebar{
   
  
    top: 281px ;/* positions the top of the side bar */
    
    width: 150px;/* controls width of sidebar */
  
  
}


.nav-sidebar ul li span, .nav-sidebar ul li a {

font-size: 18px;/* size of list  font */

}

#SidebarTitle {

    font-size: 22px;
  
}



}/*** END OPPO A96 SCREEN SIZE ***/



/*** css  variation of Min 1180px  Landscape screen *****/
@media only screen and (width: 1180px) and (orientation: Landscape){

    #Horses_show, #Facilities_show, #SocialMedia_show, #Stablecam_show, #Podcast_show, #News_show, #Contact_show, #OurTeam_show {

        display: flex;
    }
    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        width: 30px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
        background-size: 85%;/* sizes of menu icn */
        margin-top: 6px;
    }
    .nav-main ul {
        width: 90%;/* change  width of  list area for menu */  
        justify-content: center;
    }
    .nav-main ul li a {
        font-size: 18px;
        padding-left: 6px;
    }

   /* CSS  for Login and access level indicators in header menu when logged in */

.LoginIndicator p { /* will only show if login in */
    padding-top: 2px;
   font-size: 11px;
   
}

.LevelIndicator p{ /* will only show if login in */
    margin-top: 2px;
   
    
}

}

/*** css  variation of Min 1200px  x 1920 screen *****/
@media only screen and (width: 1200px) {

    #Horses_show, #Facilities_show, #SocialMedia_show, #Stablecam_show, #Podcast_show, #News_show, #Contact_show, #OurTeam_show {

        display: flex;
    }
    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        width: 30px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
        background-size: 85%;/* sizes of menu icn */
        margin-top: 4px;
    }
    .nav-main ul {
        width: 90%;/* change  width of  list area for menu */  
        justify-content: center;
    }
    .nav-main ul li a {
        font-size: 18px;
        padding-left: 6px;
    }

   /* CSS  for Login and access level indicators in header menu when logged in */

.LoginIndicator p { /* will only show if login in */
    padding-top: 2px;
   font-size: 11px;
   
}

.LevelIndicator p{ /* will only show if login in */
    margin-top: 2px;
   
    
}

}



/*** css  variation of Min 1280px  (13" macs) screen *****/
@media only screen and (width: 1280px) {

    #Horses_show, #Facilities_show, #SocialMedia_show, #Stablecam_show, #Podcast_show, #News_show, #Contact_show, #OurTeam_show {

        display: flex;
    }
    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        width: 40px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
        background-size: 85%;/* sizes of menu icn */
        margin-top: 6px;
    }
    .nav-main ul {
        width: 90%;/* change  width of  list area for menu */  
        justify-content: space-evenly;
    }
    .nav-main ul li a {
        font-size: 18px;
        padding-left: 6px;
    }

   /* CSS  for Login and access level indicators in header menu when logged in */

.LoginIndicator p { /* will only show if login in */
    padding-top: 1px;
   font-size: 12px;
   
}

.LevelIndicator p{ /* will only show if login in */
    margin-top: 1px;
    font-size: 12px;
   
    
}

}

/*** css  variation of Min 1366px  Landscape screen *****/
@media only screen and (width: 1366px) and (orientation: Landscape){

    #Horses_show, #Facilities_show, #SocialMedia_show, #Stablecam_show, #Podcast_show, #News_show, #Contact_show, #OurTeam_show {

        display: flex;
    }
    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        width: 40px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
        background-size: 95%;/* sizes of menu icn */
        margin-top: 6px;
    }
    .nav-main ul {
        width: 90%;/* change  width of  list area for menu */  
        justify-content: center;
    }
    .nav-main ul li a {
        font-size: 20px;
        padding-left: 6px;
    }

   /* CSS  for Login and access level indicators in header menu when logged in */

.LoginIndicator p { /* will only show if login in */
    padding-top: 1px;
   font-size: 12px;
   
}

.LevelIndicator p{ /* will only show if login in */
    margin-top: 1px;
    font-size: 12px;
   
    
}

}

/*** css  variation of Min 1368 px  x 912px screen *****/
@media only screen and (min-width: 1368px) {

    /*Switches: to display horizontal menu items not originally shown  - based on Screen width */

    #Horses_show, #Facilities_show, #Podcast_show, #SocialMedia_show, #News_show, #OurTeam_show {
        display: flex;
    }
 
    /******* css for the Horizontal  menu ******/

    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        width: 40px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
        background-size: 95%;/* sizes of menu icn */
        margin-top: 4px;
    }
    .nav-main ul {
        width: 90%;/* change  width of  list area for menu */  
        justify-content: center;
    }

    .nav-main ul {
        width: 900px;/* change  width of  list area for menu */    
    }

    .nav-main ul li a {
        font-size: 18px;
    }

    /** css for he side bar menu */
    .nav-sidebar{
        height: 400px; /* height of browser less the  menu bar height */
    }
 
    .nav-sidebar ul li a {

        font-size: 18px;/* size of list  font */
       
        }



    .LoginIndicator p { /* will only show if login in */
      
        margin-left: 540px;
        
    }
    

} /* End of 1368px x 912   screen adjustments */ 

/*** css  variation of Min 1400px (15" macs)  Landscape screen *****/
@media only screen and (min-width: 1400px) and (orientation: landscape) {


    #Horses_show, #Facilities_show, #SocialMedia_show, #Stablecam_show, #Podcast_show, #News_show,  #OurTeam_show {

        display: flex;
    }

    img#HeaderLOGO { /* resized the img of the Logo at top */
    
        width: 310px;
        height: auto;
    }

    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        padding-top: 25px;
        width: 50px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
    } 

    .nav-main {
        position: absolute;
        top: 188px;
        height: 50px;
    }

    .nav-main ul {
    
        width: 1320px;/* THe area which the Menu ist items is */
        padding-left: 0px;
        margin-top: 0px;
        margin-left: 0px;
        margin-right: 0px;
        
    } 

    .nav-main ul li {
       
        list-style: none;
        line-height: 50px; /* line height to centers vertically in navigation */
    
    }
    
    .nav-main ul li a {
        font-size: 20px;
         margin-left: 10px;
        
    }

   /* CSS  for Login and access level indicators in header menu when logged in */

    .LoginIndicator p { /* will only show if login in */
        padding-top: 4px;
        font-size: 15px;
        z-index:  9999;
        margin-left: 15px;
        
    }

    .LevelIndicator p{ /* will only show if login in */
        margin-top: 0px;
        font-size: 15px;
   
    
    }

/** css for he side bar menu */
.nav-sidebar{
       
    position: absolute;
    top:244px ;/* positions the top of the side bar */
    width:200px;
  
    height: 500px; /* height of browser less the  menu bar height */
    
}

.nav-sidebar ul {
    padding-top: 3px;
    overflow: hidden;
   visibility: hidden;
  
}

.nav-sidebar ul li  {
    line-height: 30px;
    list-style: none;
}

.nav-sidebar ul li span, .nav-sidebar ul li a {


font-size: 20px;/* size of list  font */

}



#SidebarTitle {

    font-size: 30px;
   
}



}

/*** css  variation of Min 1440px X 2960Samsung 9+ screen *****/
@media only screen and (min-width: 1440px) and (orientation: portrait) {


    #Horses_show, #Facilities_show, #SocialMedia_show, #Stablecam_show, #Podcast_show, #News_show,  #OurTeam_show {

        display: flex;
    }

    img#HeaderLOGO { /* resized the img of the Logo at top */
    
        width: 510px;
        height: auto;
    }

    .btn-toggle-nav { /* the icon for the  sidebar menu **/
        padding-top: 25px;
        width: 50px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
    } 

    .nav-main {
        position: absolute;
        top: 309px;
        height: 60px;
    }

    .nav-main ul {
    
        width: 1320px;/* THe area which the Menu ist items is */
        padding-left: 0px;
        margin-top: 0px;
        margin-left: 0px;
        margin-right: 0px;
        
    } 

    .nav-main ul li {
       
        list-style: none;
        line-height: 50px; /* line height to centers vertically in navigation */
    
    }
    
    .nav-main ul li a {
        font-size: 25px;
        
    }

   /* CSS  for Login and access level indicators in header menu when logged in */

    .LoginIndicator p { /* will only show if login in */
        padding-top: 4px;
        font-size: 15px;
        z-index:  9999;
        margin-left: 15px;
        
    }

    .LevelIndicator p{ /* will only show if login in */
        margin-top: 0px;
        font-size: 15px;
   
    
    }

/** css for he side bar menu */
.nav-sidebar{
       
    position: absolute;
    top: 372px ;/* positions the top of the side bar */
    width:200px;
  
    height: 500px; /* height of browser less the  menu bar height */
    
}

.nav-sidebar ul {
    padding-top: 3px;
    overflow: hidden;
   visibility: hidden;
  
}

.nav-sidebar ul li  {
    line-height: 30px;
    list-style: none;
}

.nav-sidebar ul li span, .nav-sidebar ul li a {

margin-top: 6px;
font-size: 25px;/* size of list  font */
 

}



#SidebarTitle {

    font-size: 30px;
   
}


} /*** end of 1440 x 2960 Portrait - Samsung 9+ ***/
 



/*** css  variation of Min 1600 px  x  1366px screen *****/
@media only screen and (min-width: 1600px) {

    /*Switches: to display horizontal menu items not originally shown  - based on Screen width */

    #Horses_show, #Facilities_show, #SocialMedia_show, #Stablecam_show, #Podcast_show, #News_show, #OurTeam_show {

        display: flex;
    }

    img#HeaderLOGO { /* resized the img of the Logo at top */
    
        width: 370px;
        height: auto;
    }
    
    
    /******* css for the Horizontal  menu ******/
    .nav-main {
        
        top: 224px; /* positions sidebar at top - change to allow icon */
        height: 60px;/* size to fit indicators */
       
    }
    
    .btn-toggle-nav { /* the icon for the  sidebar menu **/
       
        width: 60px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
    }

    
    .nav-main ul {
     
        display:flex;
        width: 1450px;/* THe area which the Menu ist items is contained */
        flex-wrap: wrap;
        padding-left: 15px;
        margin-left: auto;
     margin-right: auto;
    }
    
    .nav-main ul li {
       
    list-style: none;
    line-height: 60px; /* line height to centers vertically in navigation */
    
    }
    
    .nav-main ul li a {
     font-size: 32px;
    }
    
    
    
    /* CSS  for Login and access level indicators in header menu when logged in */
    
    .LoginIndicator p { /* will only show if login in */
        
        margin-top: -50px;
       
        margin-left: 1320px;
  
        font-size: 18px;
       
    }
    
    .LevelIndicator p{ /* will only show if login in */
        
        margin-top: -30px;
       
        font-size: 18px;
       
    }
    
    /** css for he side bar menu */
    .nav-sidebar{
       
        position: absolute;
        top:284px ;/* positions the top of the side bar */
       
      
        height: 540px; /* height of browser less the  menu bar height */
        
    }
    
    .nav-sidebar ul {
        padding-top: 3px;
        overflow: hidden;
       visibility: hidden;
      
    }
    
    .nav-sidebar ul li  {
        line-height: 30px;
        list-style: none;
    }
    
    .nav-sidebar ul li span, .nav-sidebar ul li a {
    
    display: block;
    height: 30px;  /* if need to change height - also change line height  in .nav-sidebar Ul Li ***/
    padding: 0 10px;
    text-decoration: none;
    text-transform: capitalize;
    color: rgb(204, 156, 12); 
    
    font-family: Arial;
    font-size: 18px;/* size of list  font */
    white-space: nowrap; /* makes text not wrap  and extends outside of  container */
    opacity: 0;
    transition: all 0.3s ease-in-out; 
    }
    
    .nav-sidebar ul li a:hover {
    
      background-color: rgb(22, 233, 54); 
      }
    
    #SidebarTitle {
    
        font-weight: bold;
        font-size: 16px;
        font-style: italic;
    }

} /* End of 1600px x 1366  screen adjustments */ 

/*** css  variation of Min 1920 x 1200 -  17" mac screen *****/
@media only screen and (min-width: 1920px){

   #Facilities_show, #SocialMedia_show, #Stablecam_show, #Podcast_show, #News_show, #OurTeam_show {

        display: flex;
    }


    img#HeaderLOGO { /* resized the img of the Logo at top */
    
        width: 390px;
        height: auto;
    }

.nav-main{
     position: absolute;
    top: 237px;
    
}

.btn-toggle-nav { /* the icon for the  sidebar menu **/
    width: 80px;
    height: 20px;/* positions menu icon in lne with  horizontal menu items */
    background-size: 85%;/* sizes of menu icn */
    margin-top: 6px;
}
.nav-main ul {
    width: 90%;/* change  width of  list area for menu */  
    justify-content: space-evenly;
}


    .nav-main ul {
     
        display:flex;
        width: 100%;/* THe area which the Menu ist items is contained */
        margin-top: -59px;
        
        padding-left: 6px;
        margin-left: 80px;
     margin-right: 0;
      justify-content: center;

    }
   


    .nav-main ul li {
       
    list-style: none;
    line-height: 60px; /* line height to centers vertically in navigation */
        text-align: left;
    
    }
    
    .nav-main ul li a {
     font-size: 30px;
    
    }
    
    
.LoginIndicator p { /* will only show if login in */
    display: flex;
    float: right;
    margin-top: 0px;
    padding-top: 2px;
    margin-left: 70px;
    color: white;
    font-size: 20px;
    font-style: italic;
    z-index: 1000;
}

.LevelIndicator p{ /* will only show if login in */
    display: flex;
    float: right;
  margin-left: 6px;
    margin-top: 0px;
    color: white;

    font-size: 20px;
    font-style: italic;
    z-index: 1000;
}
    

}
/*** css  variation of Min 2500px  screen *****/
@media only screen and (min-width: 2500px) and (orienation: lanscape){

    #Facilities_show, #SocialMedia_show, #Stablecam_show, #Podcast_show, #News_show, #OurTeam_show {
 
         display: flex;
     }
     img#HeaderLOGO { /* resized the img of the Logo at top */
    
        width: 600px;
        height: auto;
    }

     .logo1 {/** css for the Logo area at top - excluding the logo img **/
        display: flex;
        justify-content: center;
        width: 100%; 
        height:auto;
        background: rgb(8, 5, 95);      
    }
    
    /******* css for the Horizontal  menu ******/
    .nav-main {
        position: absolute;
        top: 308px; /* positions sidebar at top - change to allow icon */
        width: 100%;
        height: 32px;/* size to fit indicators */
        background: rgb(8, 5, 95);
        display: flex;
        flex-wrap: wrap;
        z-index: 999;/* positions in font of  other content */
    }
    
    
    .btn-toggle-nav { /* the icon for the  sidebar menu **/
       
        width: 20px;
        height: 20px;/* positions menu icon in lne with  horizontal menu items */
        background-size: 95%;/* sizes of menu icn */
        margin-top: 4px;
    
    
        background-color:rgb(8, 5, 95);
        background-image:  url("../images/menu_Icon-Gold.PNG");
        background-repeat: no-repeat;
        
        background-position: center;
        cursor: pointer;
    }
    
    
    
    .nav-main ul {
     
        display:flex;
        width: 100%;
        flex-wrap: wrap;
        padding-left: 5px;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }
    
    .nav-main ul li {
       
    list-style: none;
    line-height: 30px; /* line height to centers vertically in navigation */
    text-align: center;
    
    }
    
    .nav-main ul li a {
     display: block;
     height: 100%;
     padding: 0 6px;
     text-transform: capitalize;
     text-decoration: none;
     color: rgb(204, 156, 12); 
     font-family: Arial;
     font-size: 13px;
     
     
    }
    
   
    /* CSS  for Login and access level indicators in header menu when logged in */
    
    .LoginIndicator p { /* will only show if login in */
        display: flex;
        float: right;
        margin-top: 0px;
        padding-top: 2px;
        margin-left: 10%;
        color: white;
        font-size: 8px;
        font-style: italic;
        z-index: 1000;
    }
    
    .LevelIndicator p{ /* will only show if login in */
        display: flex;
        float: right;
      margin-left: 6px;
        margin-top: 10px;
        color: white;
        font-size: 8px;
        font-style: italic;
        z-index: 1000;
    }
    
    /** css for he side bar menu */
    .nav-sidebar{
       
        position: absolute;
        top: 134px ;/* positions the top of the side bar */
        left: 0;
        bottom: 0;
        width: 110px;/* controls width of sidebar */
      
        height: calc(100vh - 38%); /* height of browser less the  menu bar height */
        padding: 0 5px; /* adds left and right to  width so max width is 60px */
        background-color:rgb(8, 5, 95);
        z-index: 999;
        transition: all 0.3s ease-in-out;
        visibility: hidden; /* hides the  sidebar until clicked*/
    }
    
    .nav-sidebar ul {
        padding-top: 3px;
        overflow: hidden;
       visibility: hidden;
      
    }
    
    .nav-sidebar ul li  {
        line-height: 30px;
        list-style: none;
    }
    
    .nav-sidebar ul li span, .nav-sidebar ul li a {
    
    display: block;
    height: 30px;  /* if need to change height - also change line height  in .nav-sidebar Ul Li ***/
    padding: 0 10px;
    text-decoration: none;
    text-transform: capitalize;
    color: rgb(204, 156, 12); 
    
    font-family: Arial;
    font-size: 12px;/* size of list  font */
    white-space: nowrap; /* makes text not wrap  and extends outside of  container */
    opacity: 0;
    transition: all 0.3s ease-in-out; 
    }
    
    .nav-sidebar ul li a:hover {
    
      background-color: rgb(22, 233, 54); 
      }
    
    #SidebarTitle {
    
        font-weight: bold;
        font-size: 16px;
        font-style: italic;
    }
      }  /********