.elementor-296345 .elementor-element.elementor-element-f2927fb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-296345 .elementor-element.elementor-element-1d5a4ea{--spacer-size:30px;}.elementor-296345 .elementor-element.elementor-element-e7f80a7{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:center;}.elementor-296345 .elementor-element.elementor-element-e12f938{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--border-radius:8px 8px 8px 8px;}.elementor-296345 .elementor-element.elementor-element-3d9734f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-296345 .elementor-element.elementor-element-5b1da23{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-296345 .elementor-element.elementor-element-ffaf086{--spacer-size:50px;}body.elementor-page-296345:not(.elementor-motion-effects-element-type-background), body.elementor-page-296345 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F2F4F7;}/* Start custom CSS for html, class: .elementor-element-27ab4ba */.pn-header-wrapper {
    background: white;
    position: relative;
    display: flex;
    justify-content: center;
    border-radius: 8px;
}

.pn-header-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 5px;
    background: linear-gradient(90deg, #3A5EA6, #EE7A3B, #54A8DC, #FDDA16);
}
        
       .pn-header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 25px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }
        
        .pn-header-logo-section {
            position: relative;
            max-width: 500px;
        }
        
        .pn-header-logo {
            height: 25px;
            transition: all 0.3s ease;
        }
        
        .pn-header-logo:hover {
            filter: brightness(1.1);
        }
        
        .pn-header-nav-buttons {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        
        .pn-header-nav-btn {
            padding: 14px 32px;
            border: 2px solid;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-block;
            font-size: 15px;
            position: relative;
            overflow: hidden;
        }
        
        .pn-header-nav-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            transition: left 0.4s ease;
            z-index: -1;
        }
        
        .pn-header-nav-btn:hover::before {
            left: 0;
        }
        
        .pn-header-nav-btn.pn-header-subscribe {
            color: #3A5EA6;
            border-color: #3A5EA6;
        }
        
        .pn-header-nav-btn.pn-header-subscribe::before {
            background: #3A5EA6;
        }
        
        .pn-header-nav-btn.pn-header-subscribe:hover {
            color: white;
        }
        
        .pn-header-nav-btn.pn-header-host {
            color: #EE7A3B;
            border-color: #EE7A3B;
        }
        
        .pn-header-nav-btn.pn-header-host::before {
            background: #EE7A3B;
        }
        
        .pn-header-nav-btn.pn-header-host:hover {
            color: white;
        }
        
        .pn-header-nav-btn.pn-header-submit {
            color: #54A8DC;
            border-color: #54A8DC;
        }
        
        .pn-header-nav-btn.pn-header-submit::before {
            background: #54A8DC;
        }
        
        .pn-header-nav-btn.pn-header-submit:hover {
            color: white;
        }
        
        .pn-header-nav-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .pn-header-color-dots {
            position: absolute;
            right: -15px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 3px;
        }
        
        .pn-header-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }
        
        .pn-header-dot:nth-child(1) { background: #3A5EA6; }
        .pn-header-dot:nth-child(2) { background: #EE7A3B; }
        .pn-header-dot:nth-child(3) { background: #54A8DC; }
        .pn-header-dot:nth-child(4) { background: #FDDA16; }
        
        @media (max-width: 768px) {
            .pn-header-container {
                flex-direction: column;
                gap: 30px;
                padding: 20px;
            }
            
            .pn-header-logo-section {
                text-align: center;
            }
            
            .pn-header-color-dots {
                position: static;
                flex-direction: row;
                transform: none;
                margin-top: 15px;
                justify-content: center;
            }
            
            .pn-header-nav-buttons {
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .pn-header-nav-btn {
                flex: 1;
                min-width: 160px;
                text-align: center;
                padding: 12px 24px;
                font-size: 14px;
            }
        }/* End custom CSS */