    /* 
    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 */


    :root {
        --s-gap: 6rem;
        --s-r-gap: 6rem;
        --s-three-gap: 3rem;
    }


    body a {
        color: var(--e-global-color-secondary);
    }

    .elementor-field-option a {
        color: #fff;
        text-decoration: underline;

    }


    .bg-secondary {
        background-color: var(--e-global-color-secondary);
    }


    .text-light {
        color: #fff;
    }



    #overlay {
        position: fixed;
        z-index: 98;
        left: 0;
        top: 0;
    }



    #overlay:before,
    #overlay:after {
        content: "";
        position: fixed;
        width: 100vw;
        height: 100vh;
        background: var(--e-global-color-secondary);
        border-bottom-left-radius: 200%;
        z-index: -1;
        opacity: .7;

        -webkit-transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
        transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
        transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
        transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
        -webkit-transform: translateX(100%) translateY(-100%);
        transform: translateX(100%) translateY(-100%);
    }


    #overlay::after {
        background: var(--e-global-color-secondary);
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
        opacity: 1;
    }

    #overlay:before {
        -webkit-transition-delay: .2s;
        transition-delay: .2s;
    }


    .nav__content {
        position: fixed;
        visibility: hidden;
        top: 50%;
        margin-top: 20px;
        -webkit-transform: translate(0%, -50%);
        transform: translate(0%, -50%);
        width: 100vw;
        text-align: center;
        transition-delay: 0s;
        margin: 0;
        padding: 0 0.5rem;

        list-style-type: none;
    }


    body .nav__content {
        visibility: hidden;
    }

    body.nav-active .nav__content {
        visibility: visible;
        transition-delay: .75s;

    }





    body.nav-active #overlay {
        visibility: visible;
    }


    body.nav-active #overlay:before,
    body.nav-active #overlay:after {
        -webkit-transform: translateX(0%) translateY(0%);
        transform: translateX(0%) translateY(0%);
        border-radius: 0;
    }

    body.nav-active #overlay:after {
        -webkit-transition-delay: .1s;
        transition-delay: .1s;
    }

    body.nav-active #overlay:before {
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
    }



    body.nav-active #overlay .menu-item {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
        transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
        transition: opacity .3s ease, transform .3s ease, color .3s ease;
        transition: opacity .3s ease, transform .3s ease, color .3s ease, -webkit-transform .3s ease;
    }


    body.nav-active #overlay .menu-item:nth-child(0) {
        -webkit-transition-delay: 0.7s;
        transition-delay: 0.7s;
    }

    body.nav-active #overlay .menu-item:nth-child(1) {
        -webkit-transition-delay: 0.8s;
        transition-delay: 0.8s;
    }

    body.nav-active #overlay .menu-item:nth-child(2) {
        -webkit-transition-delay: 0.9s;
        transition-delay: 0.9s;
    }

    body.nav-active #overlay .menu-item:nth-child(3) {
        -webkit-transition-delay: 1s;
        transition-delay: 1s;
    }

    body.nav-active #overlay .menu-item:nth-child(4) {
        -webkit-transition-delay: 1.1s;
        transition-delay: 1.1s;
    }

    body.nav-active #overlay .menu-item:nth-child(5) {
        -webkit-transition-delay: 1.2s;
        transition-delay: 1.2s;
    }

    body.nav-active #overlay .menu-item:nth-child(6) {
        -webkit-transition-delay: 1.3s;
        transition-delay: 1.3s;
    }

    body.nav-active #overlay .menu-item:nth-child(7) {
        -webkit-transition-delay: 1.4s;
        transition-delay: 1.4s;
    }

    body.nav-active #overlay .menu-item:nth-child(8) {
        -webkit-transition-delay: 1.5s;
        transition-delay: 1.5s;
    }

    body.nav-active #overlay .menu-item:nth-child(9) {
        -webkit-transition-delay: 1.6s;
        transition-delay: 1.6s;
    }

    body.nav-active #overlay .menu-item:nth-child(10) {
        -webkit-transition-delay: 1.7s;
        transition-delay: 1.7s;
    }

    #overlay .menu-item {
        position: relative;
        display: block;
        -webkit-transition-delay: 0.8s;
        transition-delay: 0.8s;
        opacity: 0;
        text-align: center;
        color: #fff;
        overflow: hidden;
        font-family: 'Montserrat', sans-serif;
        font-size: max(min(5vw, 3rem), 1rem);
        font-weight: 700;
        line-height: 1.15;
        letter-spacing: 3px;
        -webkit-transform: translate(100px, 0%);
        transform: translate(100px, 0%);
        -webkit-transition: opacity .2s ease, -webkit-transform .3s ease;
        transition: opacity .2s ease, -webkit-transform .3s ease;
        transition: opacity .2s ease, transform .3s ease;
        transition: opacity .2s ease, transform .3s ease, -webkit-transform .3s ease;
        margin-top: 0;
        margin-bottom: .5rem;
    }

    #overlay .menu-item a {
        color: #fff;
        position: relative;
        text-decoration: none;
        overflow: hidden;
        cursor: pointer;

        font-weight: 700;
        z-index: 2;
        display: inline-block;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear;
    }



    .home #overlay .menu-item.current_page_item a:after,
    #overlay .menu-item a:after {
        position: absolute;
        content: '';
        bottom: 0;
        margin-bottom: -2px;
        left: 50%;
        width: 0;
        height: 0;
        opacity: 0;
        background-color: #fff;
        z-index: 1;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear;
    }

    #overlay .current_page_item a:after,
    #overlay .menu-item a:hover:after {
        height: 4px;
        opacity: 1;
        left: 0;
        width: 100%;
    }







    #overlay .menu-item.active-nav a:after {
        height: 4px;
        opacity: 1;
        left: 0;
        width: 100%;
    }

    body #overlay,
    body #overlay * {
        visibility: hidden;
    }

    body.nav-active #overlay,
    body.nav-active #overlay * {
        visibility: visible;

    }





/* helper*/


.ps-normal {
	padding-left:var(--container-default-padding-left) !important;
	padding-right:var(--container-default-padding-right)  !important;
}

.mt-0 {
	margin-top:0 !important;
}

.mb-0 {
	margin-bottom:0 !important;
}

.pt-0 {
	padding-top:0 !important;
}

.pb-0 {
	padding-bottom:0 !important;
}