/* Start custom CSS for html, class: .elementor-element-f7ed64e *//* Sticky Header */
.custom-header{
    position: sticky;
    top: 0;
    z-index: 99999;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 40px;
    transition: all .3s ease;
}

.header-wrap{
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.left-side{
    display: flex;
    flex-direction: column;
}

.logo-main{
    max-width: 420px;
    width: 100%;
    height: auto;
}

.tagline{
    margin-top: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.center-nav{
    flex: 1;
    display: flex;
    justify-content: center;
}

.center-nav a{
    text-decoration: none;
    color: #111;
    font-size: 18px;
    font-weight: 600;
}

.right-side{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.powered{
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.logo-powered{
    max-width: 220px;
    width: 100%;
    height: auto;
}

/* Tablet */
@media(max-width:1024px){

    .custom-header{
        padding: 15px 20px;
    }

    .logo-main{
        max-width: 320px;
    }

    .logo-powered{
        max-width: 170px;
    }
}

/* Mobile */
@media(max-width:768px){

    .header-wrap{
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .left-side{
        align-items: center;
    }

    .logo-main{
        max-width: 260px;
    }

    .logo-powered{
        max-width: 140px;
    }

    .tagline{
        font-size: 15px;
    }

    .center-nav{
        order: 3;
    }

    .right-side{
        order: 2;
    }

    .center-nav a{
        font-size: 16px;
    }
}/* End custom CSS */