

/*  overlay menu  */  


#toggle2 {
        position: fixed;
        top: 30px;
        right: 30px;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1002;
    }

    #toggle2 div.bar,
    #toggle2 div.bar:before,
    #toggle2 div.bar:after {
        width: 100%;
        height: 3px;
        background: #333;
    }

    #toggle2 div.bar {
        position: relative;
        transform: translateY(9px);
        transition: all 0.3s 0.3s ease;
    }

    #toggle2 div.bar:before {
        content: " ";
        position: absolute;
        bottom: 9px;
        transition: bottom 0.3s 0.3s ease, transform 0.3s ease;
    }

     #toggle2 div.bar:after {
        content: " ";
        position: absolute;
        top: 9px;
        transition: top 0.3s 0.3s ease, transform 0.3s ease;
    }

    /* Animation */
    #toggle2 div.bar.animate {
        background: rgba(255, 255, 255, 0);
    }

    #toggle2 div.bar.animate:after {
        top: 0;
        transform: rotate(45deg);
        transition: top 0.3s ease, transform 0.3s 0.3s ease;
    }

    #toggle2 div.bar.animate:before {
        bottom: 0;
        transform: rotate(-45deg);
        transition: bottom 0.3s ease, transform 0.3s 0.3s ease;
    }


    #overlay2 {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 1.5s ease, max-height 1s 1.5s ease;
        z-index: 1001;
        opacity: 1;
        background-color: #070714;
  		background-image: url(/images/logo/noise14.png);
        display: flex;
		justify-content: center;
		align-items: center;
    }

    #overlay2 nav {/*
      position: absolute;
      bottom: 30px;
      left: 30px;*/
    }

    #overlay2 nav ul,
    #overlay2 nav ul li {
        margin: 0;
        padding: 0;
        display: block;
        position: static;
    }

     #overlay2 nav ul {/*
        padding: 30px;*/
     }

     #overlay2 nav ul li {
        margin-bottom: 10px;
        opacity: 0;
        transition: all 0.9s 0s ease;
        margin-left: 60px;
     }
     #overlay2 .callback_menu_popup .callback_menu_row{
	 	opacity: 0;
	 	margin-left: 60px;
        transition: all 0.9s 0s ease;
	 }

     #overlay2 nav ul li a {
       position: relative;
       height: 50px;
       display: inline-block;
       color: #ffffff;
       transition: all 0.6s 0s ease;
     }

     #overlay2 nav ul li a:after {
       content: " ";
       position: absolute;
       left: 0;
       bottom: 0;
       width: 0;
       opacity: 0;
       height: 1px;
       background: white;
       transition: all 0.6s 0s ease;
     }

     #overlay2 nav ul li a:hover:after {
       width: 100%;
       opacity: 1;
     }

     #overlay2 nav ul li a:hover {
       color: #888888;
     }

     #page2.overlay2 #overlay2 nav ul li:nth-child(1),
     #overlay2 .callback_menu_popup .callback_menu_row:nth-child(1) {
       transition: all 0.9s 0.6s ease;
     }
     #page2.overlay2 #overlay2 nav ul li:nth-child(2),
     #overlay2 .callback_menu_popup .callback_menu_row:nth-child(2) {
       transition: all 0.9s 0.8s ease;
     }
     #page2.overlay2 #overlay2 nav ul li:nth-child(3),
     #overlay2 .callback_menu_popup .callback_menu_row:nth-child(3) {
       transition: all 0.9s 1.0s ease;
     }
     #page2.overlay2 #overlay2 nav ul li:nth-child(4),
     #overlay2 .callback_menu_popup .callback_menu_row:nth-child(4) {
       transition: all 0.9s 1.2s ease;
     }
     #page2.overlay2 #overlay2 nav ul li:nth-child(5),
     #overlay2 .callback_menu_popup .callback_menu_row:nth-child(5) {
       transition: all 0.9s 1.4s ease;
     }


     #overlay2 nav ul li a {
        text-transform: normal;
        font-size: 35px;
        font-weight: 300;
        color: white;
        text-decoration: none;
     }

    #page2.overlay2 #overlay2 {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        max-height: 1200px;
        opacity: 1;
        z-index: 1001;
        transition: all 1.5s ease;
        display: flex;
		justify-content: center;
		align-items: center;
    }

    #page2.overlay2 #overlay2 nav ul li,
    #page2.overlay2 #overlay2 .callback_menu_popup .callback_menu_row {
      margin-left: 0;
      opacity: 1;
    }








