nav {    
    display: block; 
    z-index: 15;
  }
  nav ul {
    margin: 0;
    padding:0;
    list-style: none;
  }
  .logo_ltoct {
    position: relative;
    
  }
  .contain{
    text-align: center;
    background: #fff;
    z-index: 2;
  }
  .nav a {
    display:block;  
    color:#922b21;
    text-decoration: none;
    padding: .8em 1.8em;
    text-transform: uppercase;
    font-size: 100%;
    letter-spacing: 2px;
    text-shadow: 0 -1px 0 #000;
    position: relative;
  }
  .nav{  
    vertical-align: top; 
    display: inline-block;
    box-shadow: 1px -1px -1px 1px #000, -1px 1px -1px 1px #fff, 0 0 6px 3px #fff;
    border-radius:6px;
  }
  .nav li{position: relative; z-index: 99;}
  .nav > li { 
    float:left; 
    margin-right: 1px; 
  } 
  .nav li > a { 
    margin-bottom:1px;
  }

  .nav ul > li > a { 
    background: #fff;
    opacity: 0.9;
  }
  .nav > li:hover , .nav > li:hover >a{  border-bottom-color:#922b21;}
  .nav li:hover > a { color: orange; }

    .nav li a:first-child:nth-last-child(2):before { 
     content:""; 
     position: absolute; 
     height:0; 
     width: 0; 
     border: 5px solid transparent; 
     top: 50% ;
     right:5px;  
   }

.logo {
  position: absolute;
  font-family: 'Lato', Calibri, Arial, sans-serif;
  font-size: 30px;
  padding-left: 20px;

}
   
   
/* submenu positioning*/
.nav ul {
  position: absolute;
  white-space: nowrap;
  border-bottom: 5px solid  orange;
  z-index: 1;
  left: -99999em;
}
.nav > li:hover > ul {
  left: auto;
  padding-top: 5px  ;
  min-width: 100%;
}
.nav > li li ul {  border-left:1px solid #fff;}


.nav > li li:hover > ul { 
 /* margin-left: 1px */
  left: 100%;
  top: -1px;
}
/* arrow hover styling */
.nav > li > a:first-child:nth-last-child(2):before { 
  border-top-color: #aaa; 
}
.nav > li:hover > a:first-child:nth-last-child(2):before {
  border: 5px solid transparent; 
  border-bottom-color: orange; 
  margin-top:-5px
}
.nav li li > a:first-child:nth-last-child(2):before {  
  border-left-color: #aaa; 
  margin-top: -5px
}
.nav li li:hover > a:first-child:nth-last-child(2):before {
  border: 5px solid transparent; 
  border-right-color: orange;
  right: 10px; 
}
@media screen and (max-width:1440px) { 
  .nav a {
    font-size: 100%;
  }
}

@media screen and (max-width:1024px) { 
  .nav a {
    font-size: 70%;
  }
}

@media screen and (max-width:825px) { 
  .nav a {
    font-size: 45%;
  }
}


@media screen and (max-width:561px) { 
  .nav a {
    font-size: 40%;
  }

}

@media screen and (max-width:560px) { 
  .nav a {
    font-size: 100%;
  }

  .nav {
    width: 100%;
  }
  .nav li {
  float: none;
  }

  .nav li:hover ul {
    display: block;
    z-index: 1;
    left: 0;
    position: relative;
  }
  ul.nav li:hover ul li ul{
    display: none;
  }
  ul.nav li ul:hover li ul{
    display: none;
  }
  ul.nav li ul li:hover ul {
    display: block;
    position: relative;
    left: 0;
  }
}
