/*!
Theme Name: py
*/
.menu-item-has-children {
    position: relative;
}
.submenu-link-init {
    display: flex;
    align-items: center;
    gap: 5px;
}
.submenu-link-init::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid #fffc;
    transition: transform .3s linear;
}
.submenu-link-init.active::after {
    transform: rotate(180deg);
}
.sub-menu {
    position: absolute;
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
    padding: 10px;
    border-radius: 10px;
    background: #fffc;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s linear;
}
.sub-menu.active {
    opacity: 1;
    pointer-events: auto;
}
.sub-menu a.menu__link {
    color: #111111;
}
.error-404 {
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.page-title-404 {
    font-size: 40px;
    line-height: 50px;
}
.title-404-error {
    font-size: 120px;
    line-height: 140px;
    font-weight: 600;
}
.link-404 {
    color: inherit;
    font-size: 22px;
    line-height: 26px;
    padding: 15px 30px;
    border-radius: 20px;
    border: 1px solid #fff;
}
@media (max-width: 575px) {
    .page-title-404 {
        font-size: 20px;
        line-height: 30px;
    }
}
.entry-content {
    margin-top: 50px;
}
.entry-content a {
    font: inherit;
    color: inherit;
    text-decoration: underline;
}
.entry-content p,.entry-content ul, .entry-content ol {
    margin-top: 20px;
}
.entry-content p:first-child {
    margin-top: 0;
}
.page-title {
    font-size: 40px;
    line-height: 50px;
    text-align: center;
}