.lang {
   text-align: right;
   display: block;
   margin-bottom: 10px;
   font-weight: 700; }
   
   .lang a {
      background: #44c9f6;
      color: #012350;
      padding: 0.2rem 0.5rem; }
   .lang a:hover {
      background: white; }

nav#main {
   position: relative;
   float: right;
   margin-right: 0;
   top: 20px;}
   
   body#simple nav#main {
      display: none; }

*,
*:after,
*:before {
    box-sizing: border-box;
}
      
.wrapper-dropdown {
    position: relative;
    width: 250px;
    margin: 0;
    padding: 12px 15px 13px 15px;
    background: rgba(255,255,255,.5);
    border-radius: 0;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,1);
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease-out;
    font-size: 20px;
    color: white;
    text-align: left; 
    float: left; }
    
.wrapper-dropdown .icons {
   font-size: 40px;
   position: absolute; 
   left: 10px;
   top: 6px; }
   
.wrapper-dropdown .title {
   position: relative;
   left: 10px;
   top: 2px; }

.wrapper-dropdown:after { /* Little arrow */
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -3px;
    border-width: 10px 10px 0 10px;
    border-style: solid;
    border-color: #fff transparent;
}

.wrapper-dropdown .dropdown {
    /* Size & position */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    /* Styles */
    background: #fff;
    border-radius: 0;
    border: 1px solid rgba(0,0,0,0.2);
    border-top: none;
    border-bottom: none;
    list-style: none;
    transition: all 0.3s ease-out;

    /* Hiding */
    max-height: 0;
    overflow: hidden;
}

.wrapper-dropdown .dropdown li {
    padding: 0;
}

.wrapper-dropdown .dropdown li a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 12px 15px;
    transition: all 0.3s ease-out;
    border-bottom: 1px solid #e6e8ea;
}

.wrapper-dropdown .dropdown li:last-of-type a {
    border: none;
}

.wrapper-dropdown .dropdown li i {
    margin-right: 5px;
    color: inherit;
    vertical-align: middle;
}

/* Hover state */

.wrapper-dropdown .dropdown li:hover a {
    color: white;
    background: #50c3ff;
}

/* Active state */

.wrapper-dropdown.active {
    border-radius: 0;
    background: #50c3ff;
    box-shadow: none;
    border-bottom: none;
    color: white;
}

.wrapper-dropdown.active:after {
    border-color: #82d1ff transparent;
}

.wrapper-dropdown.active .dropdown {
    border-bottom: 1px solid rgba(0,0,0,0.2);
    max-height: 500px;
}

.menu-icon {
   height: 25px;
   vertical-align: middle;
   display: inline-block;
}
.menu-icon path {
   fill: white;
}
   
   
/* Section Nav
------------------------------------ */

#snav { 
   text-align: left;
   background: #1b355c;
   width: 86%;
   padding: 7%;
   right: 0;
   margin: 0 0 1em 0;
   height: auto;
   position: relative;}

#snav ul { list-style: none; }   
#snav li { margin: 0 auto; }  
#snav li a { 
   position: relative;
   background: rgba(193,14,53,0);
   padding: 0.25em 5px; 
   margin: 1px 0;
   border-bottom: 1px #159bc2 solid;
   display: block;
   font: 400 22px/1 "Cubano", sans-serif;
   letter-spacing: 1px;
   text-transform: uppercase !important;
   color: white;    
   -webkit-transition: all .25s ease-in-out;
   -moz-transition:    all .25s ease-in-out;
   -o-transition:      all .25s ease-in-out;
   -ms-transition:     all .25s ease-in-out;
   transition:         all .25s ease-in-out; }  
#snav li a:hover { 
  background: rgba(255,0,54,.6);  }
#snav li a:active { 
  background: rgba(255,0,54,1); }

#snav li a:before { font-family: 'trilogyicons'; font-size: 10px; color: #159bc2; content: ">"; position: relative; top: -2px; left: 0px;}

#snav li.active a { color: #fff; }
#snav li.active a:hover { color: #fff; }

#snav li:last-child a { border-bottom: 0; }


