/***********************************************  
    H A M B U R G E R   M E N U 
***********************************************/
/**
 * Style 2
 * 
 * Hamburger to "x" (htx). Takes on a hamburger shape, bars slide
 * down to center and transform into an "x".
 */
.cmn-toggle-switch__htx {
  background-color: transparent;
}

.cmn-toggle-switch__htx span {
  -webkit-transition: background 0s 0.3s;
          transition: background 0s 0.3s;
}

.cmn-toggle-switch__htx span::before,
.cmn-toggle-switch__htx span::after {
  -webkit-transition-duration: 0.3s, 0.3s;
          transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0.3s, 0s;
          transition-delay: 0.3s, 0s;
}

.cmn-toggle-switch__htx span::before {
  -webkit-transition-property: top, -webkit-transform;
          transition-property: top, transform;
}

.cmn-toggle-switch__htx span::after {
  -webkit-transition-property: bottom, -webkit-transform;
          transition-property: bottom, transform;
}

/* active state, i.e. menu open */
.cmn-toggle-switch__htx.active {
  background-color: transparent;
}

.cmn-toggle-switch__htx.active span {
  background: none;
}

.cmn-toggle-switch__htx.active span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.cmn-toggle-switch__htx.active span::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.cmn-toggle-switch__htx.active span::before,
.cmn-toggle-switch__htx.active span::after {
  -webkit-transition-delay: 0s, 0.3s;
          transition-delay: 0s, 0.3s;
}










/*  H A M B U R G E R   B T N  */
.hamburgerMenu_Wrapper {
    display: none;
}
.hamburgerMenu_Container {
    overflow: hidden;
    padding: 0;
}
.hamburgerMenu_Col {
    padding: 0;
}
.menuTrigger {
    width: 50px;
    height: 50px;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;    
    display: block;
    float: left;   
    font-size: 0;    
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-indent: -9999px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    -webkit-transition: background 0.3s;
            transition: background 0.3s;
}

.menuTrigger:focus {
    outline: none;
}

.menuTrigger span {
    width: 27px;
    height: 2px;
    background: #fff;
    display: block;
    margin: 0 auto;
    position: absolute;
    top: 25px;
    left: 10px;
    right: 10px;
}

.menuTrigger span::before,
.menuTrigger span::after {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    content: "";
}

.menuTrigger span::before {
    top: -8px;
}

.menuTrigger span::after {
    bottom: -8px;
}









/*  F O N T A W E S O M E  */
.menuTrigger,
.locationIcon,
.phoneIcon,
.envelopeIcon {
    width: 25%;
    color: #fff;
    float: left;
    text-align: center;
    padding: 12px 0 0;
}
.locationIcon {
    font-size: 18pt !important;
}
.phoneIcon {
    font-size: 18pt !important;
    padding-top: 14px;
}
.envelopeIcon {
    font-size: 17pt !important;
    padding-top: 14px;
}










/*  S H O W  :  M A I N   M E N U  */
#show_Mainmenu_Btns {
    width: 100%;
    height: 0;
    border: 0px solid white;
    overflow: hidden;
    -webkit-transition: 0.3s;
       -moz-transition: 0.3s;
        -ms-transition: 0.3s;
         -o-transition: 0.3s;
            transition: 0.3s;
}
#show_Mainmenu_Btns.stretch {
    width: 100%;
    height: 500px;
    background: #000;
    border-top: 1px solid silver;
}

#show_Mainmenu_Btns > ul {
    padding: 0;
}
#show_Mainmenu_Btns > ul > li:first-of-type {
    padding-top: 50px;
}
#show_Mainmenu_Btns > ul > li {
    margin: 0;
    /* background: #111; */
    border-bottom: 1px solid #333;
    padding: 15px 45px;
    -webkit-transition: 0.3s;
       -moz-transition: 0.3s;
        -ms-transition: 0.3s;
         -o-transition: 0.3s;
            transition: 0.3s;
}
#show_Mainmenu_Btns > ul li:nth-of-type(3) {
    margin: 0;
}
#show_Submenu_Btns li:nth-of-type(3) {
    margin: 10px 0;
}
#show_Mainmenu_Btns > ul li a {
    color: #fff;
    font-family: "Lato", sans-serif;
    text-decoration: none;
    font-size: 16px;
    /*-webkit-font-smoothing: antialiased;*/
}
#show_Mainmenu_Btns li a:hover {
    color: #a3734c;
}

    /*  Practice Areas Btn  */
    #click_StretchSubMenu {
        color: #fff;
        font-family: "Lato", sans-serif;
        font-size: 16px;
        -webkit-font-smoothing: antialiased;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }
    #click_StretchSubMenu:hover {
        color: #a3734c;
        cursor: pointer;
    }


/*  S H O W  :  S U B  M E N U  */
#show_Submenu_Btns {
    width: 50%;
    height: 100vh;
    overflow: hidden;
    padding: 5px 10px;
    position: absolute;
    top: 50px;
    right: -100%;

    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;

}
#show_Submenu_Btns.stretch {
    width: 50%;
    height: 100vh;
    background: #111;
    border: 0px solid blue;
    margin: 0;
    overflow-y: scroll;
    padding: 25px;
    position: absolute;
    top: 51px;
    right: 0;
}

#show_Mainmenu_Btns.stretchMore {
    /*height: 455px;*/
}
#show_Submenu_Btns li {
    
}
#show_Submenu_Btns li a {
    width: 100%;
    float: left;
    padding-bottom: 10px;
}









/*********************************************************** 
    M E D I A   Q U E R I E S   
***********************************************************/
/*  iPad  */
@media only screen and (max-width: 768px) {
    .menu-wrap,
    .ultimatum-responsive-menu {
        display: none !important;
    }
    .hamburgerMenu_Wrapper {
      width: 100%;
      height: 50px;
      background: #333;
      display: block;
      float: left;
      position: relative;
      z-index: 99999 !important;

    }

}
@media only screen and (max-width: 450px) {

    #show_Mainmenu_Btns.stretchMore > ul > li {
        padding: 15px 25px;
    }
    #show_Mainmenu_Btns.stretchMore > ul > li:first-of-type {
        padding-top: 50px;
    }

#show_Submenu_Btns {
    width: 55%;
    height: 100vh;
    padding: 25px;
}
#show_Submenu_Btns.stretch {
    width: 55%;
    height: 100vh;
    padding: 25px;
}

}









@media only screen and (max-width: 414px) {
    .hamburgerBtn {
      width: 100%;
    }
}
























