@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap');

/* APRA
** Designed by
** Incaseofgrace (Grace Gittel Lewis)
http://incaseofgrace.com */


/* Variables */
* {
    /* Fonts */
    --HeaderFont: Lexend Deca;
    --BodyFont: Lexend Deca;

    /* Colors */
    --ColorPrime: #5c3e25;
    --ColorSec: #405F37;
    --ColorTert-1: #7A5331;
        --ColorTert-1-D: #45301c;
    --ColorTert-2: #f7dabb;
    --BodyColor: #F7E2DF;
    --MuteColor: #ccc6c5;
    --Shadow: none;

    /* Misc */
    --Border-N: none;
    --Border-1: 6px solid var(--BodyColor) /* Primary border */;
    --Border-2: 4px solid var(--BodyColor) /* Secondary border, blockquotes */;
    --Border-3: 6px solid var(--ColorTert-2) /* Interactives like buttons and such, usually */;
    --Border-4: 4px solid var(--ColorTert-1) /* For header underlines, and HR */;
    --BorderRad: 40px;
    --BorderRad-2: 26px;
    --BoxShad-1: none;
    --Transit: all .3s; 
    overflow-wrap: break-word;
    scroll-padding-top: 75px;
}

/* __STATICWIKI DEFAULTS__ */
.columnowner {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    padding-left: 15px;
    width: 1000px;
    max-width: 100%;
}
.flexhandler {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 100%;
    max-width: 100%;
}
.flexwrapper {
    display: flex;
    flex-wrap: wrap;
}
.overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 70px;
    bottom: 0;
    z-index: 1050;
    overflow: hidden;
    outline: 0;
    visibility: hidden;
}
#searchResults {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--ColorSec);
}
::-webkit-scrollbar-thumb {
    background: var(--ColorTert-2);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--ColorTert-1);
}

/* __BODY__ */
body {
    font-family: var(--BodyFont);
    background: url(../APRA_BKG.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-size: 20px;
}
/* Panel */
.item {
    display: flex;
    flex-direction: column;
    background: var(--ColorPrime);
    border-radius: var(--BorderRad);
    border: 10px solid var(--BodyColor);
    padding: 12px;
    margin-top: 75px;
    margin-bottom: 25px;
}

/* __TEXT__ */
p,
.copyright,
li {
    color: var(--BodyColor);
}

/* Headers */
.page-title {
    font-family: var(--HeaderFont);
    font-weight: 900;
    font-size: 3em;
    text-align: center;
    text-transform: uppercase;
    color: var(--ColorPrime);
    background: var(--BodyColor);
    padding: 5px 100px 5px 100px!important;
    margin: -22px -27px 15px -27px;
    border-bottom: none;
    border-radius: 30px 30px 0px 0px!important;
}
h1 {
    font-family: var(--HeaderFont);
    font-weight: 900;
    font-size: 2.2em;
    text-align: center;
    color: var(--BodyColor);
    background: var(--ColorTert-1);
    border-radius: var(--BorderRad);
    padding: 6px 20px 6px 20px;
    margin-top: 25px;
}
h2 {
    font-family: var(--HeaderFont);
    font-weight: 900;
    font-size: 2em;
    color: var(--BodyColor);
}
h3 {
    font-family: var(--HeaderFont);
    font-weight: 600;
    font-size: 1.5em;
    color: var(--BodyColor);
}
/* Links */
a {
    color: var(--ColorTert-2);
    background:
    linear-gradient(
      to bottom, var(--ColorTert-2) 0%,
      var(--ColorTert-2) 100%
    );
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: 1px 2px;
    transition: var(--Transit) ease-out;
    transition: all .3s ease-in-out, color .2s;
    text-decoration: none;
}
a:hover {
    color: var(--ColorPrime);
    background-size: 4px 50px;
}
.item a:hover {
    color: var(--ColorPrime);
    text-decoration: none;
    box-shadow: inset 1000px 0 0 0 var(--ColorTert-2);
    transition: all .3s ease-in-out, color .2s;
}
.navbar-light .navbar-nav .nav-link a {
    text-decoration: none!important;
}

/* __HR__ */
hr {
    border-top: var(--Border-4);
}

/* __QUOTES__ */
blockquote {
    background: var(--ColorTert-1-D);
    border-left: var(--Border-2);
    font-size: 20px;
    padding: 10px 15px;
    border-radius: 0px 0px 40px 0px;
    margin: 15px 0px;
}
blockquote footer {
    font-size: 20px;
    font-style: italic;
    color: var(--MuteColor);
    text-align: left;
}

/* __NAVBAR__ */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    background: var(--ColorTert-1);
    box-shadow: var(--BoxShad-1);
    border: none;
    border-radius: 0px;
}
.navbar-default .navbar-collapse,
.navbar .container-fluid {
    padding: 0px 3px;
}
.navbar-default .navbar-nav>li>a {
    color: var(--ColorTert-2);
    font-weight: bold;
    text-shadow: none;
    background: none;
    margin-left: -10px;
    transition: all .2s ease-in-out;
}
.navbar-default .navbar-nav>li>a:hover {
    color: var(--BodyColor);
    padding-top: 7px;
}
/* Mobile */
.navbar-default .navbar-toggle,
.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
    background: none;
    border: none!important;
    border-color: transparent;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: var(--BodyColor);
    width: 25px;
    height: 4px;
    border-radius: 0px;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border: none;
    box-shadow: none;
}

/* __SEARCH__ */
.navbar-default .form-group .form-control {
    background: var(--ColorPrime);
    border: var(--Border-2);
    border-radius: var(--BorderRad);
    box-shadow: var(--BoxShad-1);
    font-size: 20px;
    color: var(--BodyColor);
}
.navbar-default .form-group .form-control::placeholder {
    color: var(--MuteColor);
    font-size: 20px;
}
/* Results */
#searchResultsCover .item {
    border: var(--Border-1);
    height: fit-content!important;
    padding: 0px;
    overflow: hidden!important;
}
#searchResultsCover .item h2 {
    background: var(--ColorTert-1);
    color: var(--BodyColor);
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 3px 15px 8px 15px;
}
#searchResults {
    padding: 0px;
    overflow: hidden;
}
#searchResults br {
    display: none;
}
#searchResults a {
    font-family: var(--HeaderFont);
    font-weight: bold;
    font-size: 26px;
    display: block;
    border:none;
    text-decoration: none;
    padding: 0px 20px;
    box-shadow: none;
}
#searchResults a:nth-of-type(even) {
    background: var(--ColorTert-1);
}
#searchResults a:nth-of-type(odd) {
    background: var(--ColorPrime);
}
#searchResults a:hover {
    background: var(--ColorTert-2);
    color: var(--ColorPrime);
    box-shadow: none;
    transition: all .15s ease-in-out;
}

/* __BACKTOHOME__ */
.backtohome {
    display: block;
    position: absolute;
    content: url();
    width: 45px;
    height: 45px;
    background: var(--ColorTert-1);
    top: -5px;
    left: 10px;
    box-shadow: none;
    clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 0% 50%);
    transition: all 0.3s;
}
.backtohome:hover {
    background: var(--ColorPrime);
    transform: scale(1.05) translatex(-10px);
    transition: all 0.3s;
    box-shadow: none!important;
}

/* __COVER__ */
#page-cover {
    display: block;
    content: url(../APRA_cover.png);
    background: none;
    width: calc(100% + 24px)!important;
    max-width: calc(100% + 24px);
    margin: -12px -12px 0px -12px;
}

/* __DATE__ */
.post-date {
    text-align: center;
    color: var(--ColorTert-1);
    width: max-content;
    margin: auto;
}
.post-date p {
    border-bottom: var(--Border-4);
}

/* __FOOTNOTES__ */
/* Top */
a:has(sup) {
    font-weight: bold;
    background: none;
}
a sup {
    padding: 0px 3px;
    text-decoration: underline;
    text-underline-offset: 2px;
}
/* Bottom */
.footnotes hr {
    margin-bottom: 15px;
}
.footnotes ol {
    padding: 0px 25px;
}
.footnote-back-ref {
    margin-left: 3px;
}

/* __CATEGORIES__ */
.footer-section {
    margin: 30px -27px 0px -27px;
}
.categories {
    color: #f7dabb41; 
    background: var(--ColorTert-1-D);
    padding: 10px 27px 13px 27px;
}
.categories a {
    margin: 0px 3px;
}
.categories .cat-title {
    font-weight: bold;
}
.copyright {
    padding: 15px 15px 3px 15px;
}
/* Category page title tweak */
.categoryPrefix {
    margin-right: 10px;
}
.category-page h2 {
    text-align: center;
}

/* __AUTHOR NOTES__ */
.author-note {
    background: var(--ColorTert-1-D);
    border: var(--Border-4);
    padding: 10px;
    margin: 28px 0px;
}
.author-note h3 {
    margin-top: 0px;
}
.author-note p:last-of-type {
    margin-bottom: 0px;
}

/* __LINK LISTS__ */
.link-list {
    text-align: center;
    border: var(--Border-2);
    border-color: transparent;
    outline: var(--Border-2);
    outline-offset: -7px;
    border-radius: var(--BorderRad-2);
    overflow: hidden;
}
.link-list br {
    display: none;
}
.link-list p {
    margin: 0px;
}
.link-list a {
    font-family: var(--HeaderFont);
    font-weight: bold;
    font-size: 26px;
    display: block;
    text-decoration: none;
    padding: 0px 10px;
    box-shadow: none;
}
.link-list a:nth-of-type(even) {
    background: var(--ColorTert-1);
}
.link-list a:nth-of-type(odd) {
    background: var(--ColorPrime);
}
.link-list a:hover {
    background: var(--ColorTert-2);
    color: var(--ColorPrime);
    box-shadow: none;
    transition: all .15s ease-in-out;
}
.link-list a:last-of-type {
    border-bottom: none;
}


/* __FOOTER LINKS__ */
.footer-links {
    text-align: center;
    font-size: 18px;
    margin-top: 3px;
}
.footer-links a {
    margin: 0px 2px;
}

/* __DETAIL SPOILERS__ */
details {
    font-family: var(--HeaderFont);
    max-height: min-content;
    outline: var(--Border-3);
    outline-offset: -6px;
    border-radius: var(--BorderRad-2);
    overflow: hidden;
    transition: max-height .3s ease-in;
    padding: 0px 15px;
    margin: 15px 0px;
    color: var(--BodyColor);
}
details summary {
    font-weight: bold;
    background: var(--ColorTert-2);
    color: var(--ColorPrime);
    padding: 4px 14px 8px 14px;
    font-size: 26px;
    margin: 0px -15px;
    display: flex;
    flex-direction: column-reverse;
    align-content: center;
    justify-content: center;
    align-items: center;
    line-height: 30px;
}
details summary:hover {
    cursor: pointer;
}
/* Arrow */
details summary::before {
    display: inline-block;
    content: url();
    width: 30px;
    height: 10px;
    background: var(--ColorPrime);
    top: 10px;
    left: 0px;
    box-shadow: none;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    margin-right: 10px;
    transition: var(--Transit);
    flex-shrink: 0;
}
/* Text */
details p {
    color: var(--BodyColor);
}
details p:last-of-type {
    margin-bottom: 0px;
}
/* Open */
details[open] {
    max-height: max-content;
    padding-bottom: 16px;
}
details[open] summary {
    border-bottom-width: 5px;
    margin-bottom: 10px;
}
details[open] summary::before {
    clip-path: polygon(50% 0%, 0 100%, 100% 100%);
}
/* Removing last-child bottom margins */
details *:last-child {
    margin-bottom: 0px;
}
details *:last-child blockquote:last-of-type {
    margin-bottom: 0px!important;
}

/* __DETAIL LISTS__ */
.detail-list,
.detail-list[open] {
    padding: 0px;
}
.detail-list summary {
    margin: 0px;
}
.detail-list[open] {
    padding-bottom: 6px;
}
.detail-list[open] summary {
    margin: 0px;
}
.detail-list a {
    display: block;
    font-weight: bold;
    text-decoration: none;
    padding: 0px 20px;
    box-shadow: none;
    font-size: 26px;
}
.detail-list[open] a:nth-of-type(even) {
    background: var(--ColorTert-1);
}
.detail-list[open] a:nth-of-type(odd) {
    background: var(--ColorPrime);
}
.item .detail-list a:hover {
    background: var(--ColorTert-2);
    color: var(--ColorPrime);
    box-shadow: none;
    transition: all .15s ease-in-out;
}
/* Nesting */
.detail-list[open] .detail-list {
    margin: 8px 12px;
}
/* Arrow rotations in up to 3 nests */
.detail-list[open] details summary::before {
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.detail-list[open] details[open] summary::before {
    clip-path: polygon(50% 0%, 0 100%, 100% 100%);
}
.detail-list[open] details[open] details summary::before {
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.detail-list[open] details[open] details[open] summary::before {
    clip-path: polygon(50% 0%, 0 100%, 100% 100%);
}

/* DETAIL CONTENT WARNINGS */
.contentwarning {
    width: fit-content;
    margin: 15px auto;
    text-align: center;
}
.contentwarning summary {
    font-size: 20px;
}
.contentwarning[open] {
    width: 100%;
}
.contentwarning summary::before {
    width: 15px;
    height: 15px;
    top: 8px;
    left: 0px;
}

/* __IMAGES__ */
.item img {
    max-width: 100%;
}
.img-small {
    text-align: center;
}
.img-small img {
    max-width: 500px;
}

/* __VIDEOS__ */
video {
    display: flex;
    margin: 25px auto;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.video-vertical {
    width: 50%;
}
/* __AUDIO__ */
audio {
    display: flex;
    margin: 25px auto;
    max-width: 100%;
    min-width: 90%;
}

/* -------------------------------- */

/* __ACF QUOTES__ */
.acf-quote blockquote {
    position: relative;
    color: var(--ColorPrime);
    background: var(--BodyColor);
    border: 6px solid var(--ColorTert-2);
    border-radius: 0px 10px 10px 10px;
    outline: 2px solid var(--MuteColor);
    outline-offset: -8px;
    padding: 10px 15px;
    margin-top: 50px;
    margin-bottom: 15px;
}
.acf-quote blockquote p {
    color: var(--ColorPrime);
}
.acf-quote blockquote footer {
    color: var(--ColorTert-1);
}
.acf-quote blockquote::before {
    display: block;
    position: absolute;
    content: url();
    width: 170px;
    left: -6px;
    top: -29px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--ColorTert-2);
}
/* Links */
.acf-quote blockquote a {
    color: var(--ColorTert-1);
    background:
    linear-gradient(
      to bottom, var(--ColorTert-1) 0%,
      var(--ColorTert-1) 100%
    );
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: 1px 2px;
}
.acf-quote blockquote a:hover {
    color: var(--ColorPrime);
    background-size: 4px 50px;
}
.item .acf-quote a:hover {
    color: var(--BodyColor);
    text-decoration: none;
    box-shadow: inset 1000px 0 0 0 var(--ColorTert-1);
    transition: all .3s ease-in-out, color .2s;
}
/* Headers */
.acf-quote h1 {
    background: var(--ColorPrime);
    border-radius: 0px;
    margin-top: 5px;
}
.acf-quote h2,
.acf-quote h3 {
    color: var(--ColorPrime);
}
/* Nested */
.acf-quote blockquote:not(:first-child),
body:has(.theme-acf) .acf-quote blockquote:not(:first-child) {
    border-radius: 0px;
    margin-top: 0px;
    margin-bottom: -6px;
}
.acf-quote blockquote:not(:first-child)::before,
body:has(.theme-acf) .acf-quote blockquote:not(:first-child)::before {
    display: none;
}
.acf-quote:has(blockquote:nth-child(2)) blockquote:first-of-type,
body:has(.theme-acf) .acf-quote:has(blockquote:nth-child(2)) blockquote:first-of-type {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    margin-bottom: -6px;
}

.acf-quote:has(blockquote:nth-child(2)) blockquote:last-of-type,
body:has(.theme-acf) .acf-quote:has(blockquote:nth-child(2)) blockquote:last-of-type {
    border-radius: 0px 0px 10px 10px;
    margin-bottom: 15px;
}

/* Spoilers */
.acf-spoiler {
    padding: 0px;
    outline: none;
    overflow: visible;
}
.acf-spoiler summary {
    margin: 0px;
    padding: 2px 12px;
    border-top: var(--Border-3);
    border-bottom: var(--Border-3);
    border-radius: var(--BorderRad-2);
}
.acf-spoiler[open] summary {
    border-radius: 25px 25px 0px 0px;
    margin-bottom: 0px;
    border-bottom: none;
}
.acf-spoiler blockquote {
    margin-top: 0px;
    border-top-right-radius: 0px;
}
.acf-spoiler blockquote::before {
    display: none;
}

/* __BUTTONS__ */
.btn-flex {
    display: flex;
    flex-direction: row;
}
.btn-flex .link-btn {
    display: inline-flex;
    width: 50%;
    margin: 5px 10px;
}
.btn-flex .link-btn p,
.btn-flex .link-btn a {
    width: 100%;
    margin: 0px;
}
.link-btn a {
    display: block;
    width: 100%;
    font-weight: bold;
    text-align: center;
    background: var(--ColorSec);
    box-shadow: none;
    border: 4px solid transparent;
    outline: var(--Border-3);
    outline-width: 4px;
    outline-offset: -5px;
    border-radius: var(--BorderRad);
    padding: 5px 15px;
    margin: 10px 0px;
}
.link-btn a:hover {
    background: var(--ColorTert-2);
    box-shadow: none;
}
P:has(.link-btn) {
    margin: 10px;
}
.link-btn .btn-ico {
    mask-repeat: no-repeat;
    display: block;
    height: 50px;
    width: 50px;
    position: relative;
    margin: 10px auto 5px auto;
    transition: var(--Transit);
    background: var(--ColorTert-2);
}
.link-btn a:hover .btn-ico {
    background: var(--ColorPrime);
}


/* -------------------------------- */

/* __THEMES__ */
/* __ACF THEME__ */
body:has(.theme-acf) * {
    /* Colors */
    --ColorPrime: #E0D6CF;
    --ColorSec: #405F37;
    --ColorTert-1: #884e2c;
        --ColorTert-1-D: #e3a07b;
    --ColorTert-2: #884e2c;
    --BodyColor: #363432;
    --MuteColor: #585552;
}

/* Scrollbar */
body:has(.theme-acf)::-webkit-scrollbar-track {
    background: #884e2c;
}
body:has(.theme-acf)::-webkit-scrollbar-thumb {
    background: #e3a07b;
}
body:has(.theme-acf)::-webkit-scrollbar-thumb:hover {
    background: #E0D6CF;
}

body:has(.theme-acf) {
    background: url(../ACF_BKG.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

/* Text */
body:has(.theme-acf) .page-title {
    border-radius: 10px 10px 0px 0px;
}
body:has(.theme-acf) h1 {
    color: var(--ColorPrime);
    border-radius: 0px;
    position: relative;
    padding: 6px 30px;
}
body:has(.theme-acf) h1::before {
    display: block;
    position: absolute;
    content: url();
    width: 50px;
    height: 50px;
    left: 0px;
    top: -1px;
    background: var(--ColorPrime);
    clip-path: polygon(40% 0, 0 40%, 0 60%, 60% 0, 80% 0, 0 80%, 0 100%, 100% 0);
}
body:has(.theme-acf) h1::after {
    display: block;
    position: absolute;
    content: url();
    width: 50px;
    height: 50px;
    right: 0px;
    bottom: 0%;
    background: var(--ColorPrime);
    clip-path: polygon(40% 0, 0 40%, 0 60%, 60% 0, 80% 0, 0 80%, 0 100%, 100% 0);
    transform: rotate(180deg);
}
body:has(.theme-acf) .page-title::before,
body:has(.theme-acf) .page-title::after {
    display: none;
}
@media only screen and (max-width: 425px) {
    body:has(.theme-acf) h1 {
        padding-left: 15px;
        padding-right: 15px;
    }
    body:has(.theme-acf) h1::before,
    body:has(.theme-acf) h1::after {
        display: none;
    }
}

/* Backtohome */
body:has(.theme-acf) .backtohome {
    background: var(--ColorPrime);
}
body:has(.theme-acf) .backtohome:hover {
    background: var(--ColorTert-1-D);
}
@media only screen and (max-width: 425px) {
    body:has(.theme-acf) .backtohome {
        background: var(--ColorTert-1);
    }
    body:has(.theme-acf) .backtohome:hover {
            background: var(--ColorTert-1-D);
    }
}


/* Quotes */
body:has(.theme-acf) blockquote {
    position: relative;
    border-radius: 0px;
    border-left: var(--Border-2);
}
body:has(.theme-acf) .acf-quote h2,
body:has(.theme-acf) .acf-quote h3 {
    color: var(--ColorTert-2);
}

/* Navbar */
body:has(.theme-acf) .navbar {
    background: var(--ColorPrime);
}

/* ACF quotes */
body:has(.theme-acf) .acf-quote blockquote {
    background: var(--ColorPrime);
    border: 6px solid var(--ColorTert-2);
    border-radius: 0px 10px 10px 10px;
    outline: none;
}
body:has(.theme-acf) .acf-quote blockquote p {
    color: var(--BodyColor);
}
body:has(.theme-acf) .acf-quote blockquote footer {
    color: var(--ColorTert-1);
}
body:has(.theme-acf) .acf-quote blockquote::before {
    display: block;
    position: absolute;
    content: url();
    width: 170px;
    left: -6px;
    top: -29px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--ColorTert-2);
}

/* Search */
body:has(.theme-acf) #searchResultsCover .item h2 {
    color: var(--ColorPrime);
}
body:has(.theme-acf) #searchResults a:nth-of-type(even) {
    background: var(--ColorTert-1-D);
}
body:has(.theme-acf) #searchResults a:nth-of-type(even):hover {
    background: var(--ColorTert-1);
}

/* .detail-list */
body:has(.theme-acf) .detail-list[open] a:nth-of-type(even) {
    background: var(--ColorTert-1-D);
}
body:has(.theme-acf) .detail-list[open] a:nth-of-type(even):hover {
    color: var(--ColorPrime);
    background: var(--ColorTert-1);
}

/* __HALLOWEEN THEME__ */
body:has(.theme-halloween) * {
    /* Colors */
    --ColorPrime: #352946;
    --ColorSec: #47365e;
    --ColorTert-1: #4e3c67;
        --ColorTert-1-D: #251a2d;
    --ColorTert-2: #bbf7be;
    --BodyColor: #def7e0;
    --MuteColor: #c6ccc5;
}

/* Scrollbar */
body:has(.theme-halloween)::-webkit-scrollbar-track {
    background: #352946;
}
body:has(.theme-halloween)::-webkit-scrollbar-thumb {
    background: #def7e0;
}
body:has(.theme-halloween)::-webkit-scrollbar-thumb:hover {
    background: #bbf7be;
}

body:has(.theme-halloween) {
    background: url(../Halloween_BKG.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

/* -------------------------------- */

/* __PAGE SPECIFICS__ */
/* __HOMEPAGE__ */
body:has(.homepage) .backtohome {
    display: none;
}
body:has(.homepage) .page-title {
    display: none;
}
.homepage-cover {
    width: calc(100% + 54px)!important;
    max-width: calc(100% + 54px);
    margin: -12px -27px 0px -27px;
    margin-bottom: 20px;
}
.homepage-cover img {
    border-bottom: 10px solid var(--BodyColor);
    border-radius: 30px 30px 0px 0px;
}
/* EVENT BANNERS */
.event-bnr {
    margin: -15px -27px 15px -27px;
    border-bottom: 10px solid var(--BodyColor);
}
.event-bnr p {
    margin: 0px;
}


/* -------------------------------- */

/* __SCREEN SCALING__ */
@media only screen and (max-width: 1440px) {

}
@media only screen and (max-width: 1199px) {

}
@media only screen and (max-width: 991px) {

}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 425px) {
    .columnowner {
        padding: 0px;
    }
    .col-sm-12 {
        padding: 0px 10px;
    }
    .navbar-default .navbar-nav>li>a {
        margin-left: 0px;
    }
    .navbar-default .navbar-collapse {
        padding: 0px 25px;
    }
    h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1.8em;
    }
    .footer-section {
        margin: 30px -22px 0px -22px;
    }
    .categories {
        padding: 10px 15px;
    }
    .backtohome {
        position: fixed;
        width: 35px;
        height: 35px;
        top: 10px;
        left: 10px;
        z-index: 1060;
        background: var(--BodyColor);
    }
    .page-title {
        padding: 20px 20px 10px 20px!important;
        border-radius: 0px!important;
        font-size: 2em;
        margin: -17px -22px 15px -22px;
    }
    .item {
        border-radius: 0px;
        border: none;
        margin-top: 54px;
        margin-bottom: 0px;
    }
    .homepage-cover img {
        border-radius: 0px;

    }
    .video-vertical {
        width: 100%;
    }
    .img-small img {
        max-width: 100%;
    }
    .homepage-cover,
    .event-bnr {
        width: calc(100% + 44px) !important;
        margin: -12px -22px 0px -22px;
    }

}