
.pp-header {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    padding: 4px;
    background-color: #3B3B3B;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 4px 4px #000000;
}

.admin-bar .pp-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .pp-header {
        top: 46px;
    }
}

.pp-header-inner {
    width: 100%;
    max-width: 1024px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

.pp-header-toggle {
    display: none;
}

.pp-logo {
    width: 48px;
    transition: all .5s ease-in-out;
}

.pp-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pp-header-toggle button {
    color: #57B888;
    border-color: #57B888;
}

.pp-header-toggle button:hover,
.pp-header-toggle button:focus {
    color: white;
    background-color: #57B888;
}

.header-close {
    display: none;
}

.pp-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 24px;
    color: white;
    transition: all .3s ease-in-out;
    font-family: "PT Sans Narrow", Sans-serif;
    letter-spacing: 1.6px;
}

.pp-title:hover {
    color: #57B888;
}

.pp-title:hover .pp-logo {
    transform: scale(1.1) rotate(-24deg);
}

.pp-menu {
    display: flex;
    gap: 16px;
    font-size: 18px;
}

.pp-item {
    color: white;
    transition: all .3s ease-in-out;
}

.pp-item:hover, .pp-item.pp-item-active {
    color: #57B888;
}

.pp-item:hover {
    text-decoration: underline;
}

.pp-socials {
    display: flex;
    gap: 20px;
    font-size: 22px;
}

.pp-social {
    color: white;
    transition: all .3s ease-in-out;
}

.pp-social:hover {
    color: #57B888;
    transform: scale(1.33);
}

.site-footer {
    display: none;
}

.pp-footer {
    width: 100%;
    background-color: #3B3B3B;
    border-top: 2px solid #57B888;
    color: white;
}

.pp-footer-inner {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pp-footer-top {
    display: flex;
    gap: 32px;
}

.pp-footer-col {
    width: 100%;
}

.pp-footer-col1 {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pp-footer-bottom {
    text-align: center;
}

.pp-footer-col3 ul{
    padding-inline-start: 0;
    list-style-type: none;
    display: flex;
    font-size: 18px;
    flex-direction: column;
    gap: 2px;;
}

.pp-footer a{
    color: white;
}

.pp-footer a:hover {
    color: #57B888;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .pp-header.open {
        height: auto;
        bottom: 0;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .pp-header.open .pp-header-inner{
        height: 500px;
        width: 100%;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .pp-header.open .header-open {
        display: none;
    }
    
    .pp-header.open .header-close {
        display: block;
    }
    
    .pp-header.open .pp-menu {
        display: flex;
        font-size: 24px;
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    
    .pp-header.open .pp-socials-header {
        display: flex;
    }

    .page-no-scroll {
        overflow: hidden;
    }
    .pp-header-top {
        width: 100%;
    }
    .pp-header-toggle {
        display: flex;
    }
    .pp-menu {
        display: none;
    }
    .pp-socials-header {
        display: none;
    }
    .pp-footer-top {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .pp-footer-col {
        width: 500px;
    }
}

@media (max-width: 500px) {
    .pp-footer-col {
        width: 100%;
    }
}

.wpcf7-form label {
    width: 100%;
    font-size: 18px;
}

.wpcf7-form-control-wrap {
    margin-top: 4px;
    display: block;
}

.wpcf7-list-item-label {
    font-size: 14px;
}

.wpcf7-list-item a {
    color: #57B888;
}

.wpcf7-list-item a:hover {
    color: #57B888;
    text-decoration: underline;
}

.form-btn {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

.form-btn input {
    color: #57B888;
    border-color: #57B888;
    width: 100%;
}

.form-btn input:hover, 
.form-btn input:focus {
    color: white;
    background-color: #57B888;
}