.pr-header {
    width: 90%;
    padding: 8px 0;
    display: grid;
    grid-template-columns: 1fr 135px 1fr;
    grid-template-rows: 137px;
    position: fixed;
    background: var(--pr-secondary-color);
    height: 86px;
    z-index: 10000;
}

.pr-header-mobile-nav {
    display: flex;
    align-items: center;
    height: calc(100% - 52px);
}

.pr-header-mobile-nav-icon {
    color: white;
    font-size: 1.8em;
    padding: 0px 12px;
    display: block;
}

.pr-header-mobile-nav-icon.pr-active {
   color: var(--pr-primary-color);
}

.pr-header-mobile-nav-icon:hover {
    cursor: pointer;
    transition-duration: 0.3s;
    transition-property: transform;
    transform-origin: 0 100%;
    transform: skew(-10deg);
    color: var(--pr-primary-color);
}

.pr-header-main-nav {
    grid-row-end: 3;
    grid-column: 1 / span 3;
    display: none;
    background-color: var(--pr-secondary-color);
    padding-bottom: 12px;
    margin-top: -43px;
    padding-top: 43px;
}

.pr-mobile-menu.pr-visible {
    display: block;
}

.pr-header-main-nav-menu {
    margin: 0;
}

.pr-header-main-nav-menu li {
    margin: 0;
    display: flex;
    justify-content: center;
}

.pr-header-main-nav-menu li a {
    color: white;
    text-decoration: none;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 16px;
}

.pr-header-main-nav-menu li.current-menu-item a {
    background: var(--pr-primary-color);
}

.pr-header-logo {
    z-index: 1;
    display: flex;
    justify-content: center;
}

.pr-header-action-nav {
    width: 100%;
    height: calc(100% - 52px);
    justify-content: center;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.pr-menu-icons {
    display: flex
}

.pr-menu-icon {
    display: block;
    color:white;
    font-size: 1.6em;
    padding: 0 6px;
    position: relative;
    text-decoration: none;
}

.pr-menu-icon-bubble {
    padding: 2px 6px;
    background-color: var(--pr-primary-color);
    color: white;
    width: fit-content;
    font-weight: bold;
    position: absolute;
    top: 0;
    font-size: 1.2rem;
    right: 2px;
    height: 1.2rem;
    line-height: 1.2rem;
    border-radius: 1.2rem;
}

.pr-menu-icon:hover {
    color:white;
    transition-duration: 0.3s;
    transition-property: transform;
    transform-origin: 0 100%;
    transform: skew(-10deg);
}

.pr-logo-image {
    width: 130px;
    height: 130px;
}

.pr-header-logo-link {
    z-index: 1;
}

.pr-content-wrapper {
    margin-top: 102px;
    border-radius: 10px 10px 10px 10px;
    background-color: white;
    width: 90%;
    overflow-x: hidden;
    min-height: 300px;
}

.pr-article-full {
    padding: 32px 16px;
}

.pr-post-image {
    background: #050611;
    height: fit-content;
}
.pr-post-image img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    object-position: top;
}

.pr-social {
    width: 4.5rem;
    height: 3.5rem;
    color: white;
}

.pr-footer {
    color: white;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.pr-footer-socials {
    padding: 32px 0;
}

.pr-mobile-menu {
    display:none;
}

.pr-left-menu {
    display: none;
}

.pr-right-menu {
    display: none;
}

/* Larger than mobile */
@media (min-width: 400px) {
    .pr-menu-icon {
        padding: 0 8px;
    }
}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {
    .pr-menu-icon {
        font-size: 1.7em;
        padding: 0 10px;
    }
    .pr-menu-icon-bubble {
        font-size: 1.4rem;
        right: 6px;
        height: 1.4rem;
        line-height: 1.4rem;
    }
}

/* Larger than tablet */
@media (min-width: 750px) {
    .pr-menu-icon {
        font-size: 2.5rem;;
        padding: 0 12px;
    }
}

/* Larger than desktop */
@media (min-width: 1000px) {
    .pr-header {
        height: 100px;
        padding-top: 32px;
        grid-template-columns: 1fr 150px 1fr;
        grid-template-rows: 168px;
        width: 90%;
    }

    .pr-header-mobile-nav {
        height: calc(100% - 48px);
    }

    .pr-header-action-nav {
        height: calc(100% - 48px);
    }

    .pr-header-main-nav {
        padding-bottom: 12px;
        margin-top: -60px;
        padding-top: 60px;
    }

    .pr-logo-image {
        width: 150px;
        height: 150px;
    }

    .pr-content-wrapper {
        margin-top: 140px;
    }

    .pr-article-full {
        padding: 32px 48px;
    }
}

/** Non mobile */
@media (min-width: 1200px) {
    .pr-header-mobile-nav {
        display: none;
    }

    .pr-mobile-menu {
        display: none !important;
    }

    .pr-left-menu {
        display: block;
        width: 100%;
        justify-content: flex-end;
    }
    
    .pr-right-menu {
        display: block;
        width: 100%;
    }

    .pr-logo-image {
        width: 180px;
        height: 180px;
    }

    .pr-header {
        min-height: unset;
        height: 120px;
        width: 95%;
        grid-template-columns: calc(50% - 90px) 180px calc(50% - 90px);
    }

    .pr-header-action-nav {  
        justify-content: flex-end;
        height: 128px;
    }
    .pr-header-main-nav {
        height: 128px;
        display: flex;
        align-items: flex-end;
        padding-bottom: unset;
        grid-row-end: unset;
        grid-column: unset;
        background-color: unset;
        margin-top: unset;
        padding-top: unset;
    }

    .pr-header-main-nav-menu {
        display: flex;
        width: fit-content;
        margin-bottom: 0;
        list-style: none;
    }

    .pr-header-main-nav-menu li {
        margin-bottom: 0;
    }

    .pr-header-main-nav-menu li a {
        color: white;
        text-decoration: none;
        display: block;
        border-bottom: 7px solid transparent;
        font-weight: 300;
        padding: 1rem 2rem;
        font-size: 1.7rem;
    }

    .pr-header-main-nav-menu li a:hover {
        border-bottom: 7px solid white;
    }

    .pr-header-main-nav-menu li.current-menu-item a {
        border-bottom: 7px solid var(--pr-primary-color);
        background: unset;
    }

    .pr-content-wrapper {
        margin-top: 160px;
        width: 95%;
    }

    .pr-article-full {
        padding: 64px 64px;
    }
}

/* Larger than Desktop HD */
@media (min-width: 1550px) {
    .pr-header {
        grid-template-columns: calc(50% - 100px) 200px calc(50% - 100px);
        height: 133px;
    }

    .pr-logo-image {
        width: 200px;
        height: 200px;
    }

    .pr-header-main-nav {
        height: 141px;
    }

    .pr-header-main-nav-menu li a {
        padding: 1rem 2rem;
        font-size: 1.7rem;
    }

    .pr-header-action-nav {
        height: 141px;
    }

    .pr-content-wrapper {
        margin-top: 173px;
    }
}

