/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
.menupopup{
    z-index: 998;
    padding: clamp(150px, 11.458333vw, 220px) 0 0;
}
#hamb {
    margin: 0;
    display: block;
    position: relative;
    width: 4vw;
    height: 14px;
    padding: 0;
    z-index: 200;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    cursor: pointer;
    pointer-events: all;
}
 #hamb span {
    display: block;
    position: absolute;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #D9D9D9;
    transition: top .5s .5s, bottom .5s .5s, transform .5s, background .3s;
    -webkit-transition: top .5s .5s, bottom .5s .5s, transform .5s, background .3s;
}
 #hamb span:first-child {
    top: 0;
}
 #hamb span:last-child {
    bottom: 0;
}
 #hamb.active span:first-child {
    top: 6px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}
 #hamb.active span:last-child {
    bottom: 6px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
#hamb.active span {
    background-color: #fff;
    transition: opacity .5s, top .5s, bottom .5s, transform .5s .5s, background .3s;
    -webkit-transition: opacity .5s, top .5s, bottom .5s, transform .5s .5s, background .3s;
}