/* ARTWORK NOTES
--------------------------------------------
--primary-color-rgb: 132,30,30;       Deep Brick Red (#841e1e) 
--secondary-color-rgb: 242,209,143;   Soft Gold (#f2d18f) 
--tertiary-color-rgb: 22,22,22;       Near Black (#161616) 
--background-color-rgb: 239,239,239;  Light Gray (#efefef) 
--default-white-rgb: 255,255,255;
--default-black-rgb: 0,0,0;
	
--background-color: rgba(var(--background-color-rgb),1);

--title-font-family: 'Great Vibes', script;
--body-font-family: 'Lato', sans-serif;
--------------------------------------------
*/
html body.site-home {
    --section-slideshow-bg: var(--background-color);
    --section-header-bg: var(--background-color);
    --section-above-bg: var(--background-color);
}

html body {
    --side-menu-bg: var(--primary-color);
    --side-menu-bg-hover: var(--secondary-color);
    --side-menu-font-size-desktop: min(1.25vw, 1.25rem);
    --side-menu-font-family: var(--body-font-family);
    --side-menu-font-weight: 400;

    --section-bottom-bg: var(--background-color);
}

html body #g-navigation {
    --main-menu-text-color: var(--default-white);
    --main-menu-text-color-hover: var(--default-white);
	--main-menu-bg: var(--primary-color);
    --main-menu-bg-color: var(--primary-color);

    --navigation-floating-social-padding: min(1vw, 1rem);
}

.g-array-item-text {
    margin: 0!important;
    padding: 0!important;
}

.modern-alert .g-array-item :is(h1, h2, h3, h4, h5, h6) {
    text-transform: none;
    letter-spacing: 2px;
}

.modern-alert .g-array-alert-title h1 {
    text-transform: none;
}

span.primary {color: var(--primary-color);} 
span.secondary {color: var(--secondary-color);} 
span.tertiary {color: var(--tertiary-color);} 
span.titlefont {font-family: var(--title-font-family);}
span.bodyfont {font-family: var(--body-font-family);}
span.spaced {letter-spacing: 2px;}
blockquote {font-style: normal; font-size: 1.75rem;}
h2 {font-variant-caps: normal;}

h6 {
    color: var(--tertiary-color);
}

/* NAVIGATION */
@media only screen and (min-width: 50.99rem) {
    #g-navigation > .g-container > .g-grid:has(.g-main-nav) {
        position: relative;
    }
    #g-navigation > .g-container > .g-grid:has(.g-main-nav):before {
        content: '';
        background: var(--primary-color);
        height: 100%;
        width: 3000%;
        margin-left: -500%;
        margin-right: -500%;
        position: absolute;
    }
}

@media only screen and (min-width: 50.99rem) {
    #g-navigation .g-main-nav .g-toplevel>li>.g-menu-item-container {
        --navigation-menu-item-padding: min(1.5vw, 1.5rem) min(1vw, 14.4px);
    }
    #g-navigation .g-main-nav .g-sublevel>li>.g-menu-item-container {
        color: var(--default-white);
    }
    #g-navigation .g-main-nav .g-sublevel>li>.g-menu-item-container:hover {
        background: var(--secondary-color);
        color: var(--primary-color)!important;
    }
}

@media only screen and (min-width: 50.99rem) {
    #g-navigation {
        background: url('/images/template/bg-header.jpg') 50% 50% no-repeat;
        background-size: cover;
        position: relative;
    }
    #g-navigation:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255,255,255,.9);
        z-index: 1;
    }
    #g-navigation > .g-container {
        position: relative;
        z-index: 2;
    }
}

@media only screen and (max-width: 50.99rem) {
    #g-navigation {
        background: url('/images/template/bg-header.jpg') 50% 50% no-repeat;
        background-size: cover;
        position: relative;
    }
    #g-navigation:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255,255,255,.9);
        z-index: 1;
    }
    #g-navigation > .g-container {
        position: relative;
        z-index: 2;
    }
}

@media only screen and (min-width: 50.99rem) {
    #g-navigation > .g-container > .g-grid:has(.header-social-container) {
        padding: min(3vw, 3rem) min(4vw, 4rem)!important;
        position: relative;
    }

    #g-navigation .hf-icon-buttons {
        display: flex;
        flex-direction: row;
        gap: min(1.25vw, 1.25rem);
        justify-content: flex-end;
        align-items: center;
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
    }
    #g-navigation .hf-icon-buttons .hf-icons {
        order: 2;
    }
    #g-navigation .hf-icon-buttons .hf-icons .g-social-items {
        display: flex;
        flex-direction: row;
        gap: min(1vw, 1rem);
        align-items: center;
        justify-content: center;
    }
    #g-navigation .hf-icon-buttons .hf-icons .g-social-items a {
        color: var(--primary-color);
        font-size: min(3vw, 3rem);
        transition: .3s all ease-in-out;
    }
    #g-navigation .hf-icon-buttons .hf-icons .g-social-items a:hover {
        opacity: .5;
    }
    #g-navigation .hf-icon-buttons .hf-button {
        order: 1;
    }
    #g-navigation .hf-icon-buttons .hf-button .button {
        border-radius: 0;
        background: var(--default-black);
        font-size: min(1.5vw, 1.5rem);
        font-family: var(--body-font-family);
        text-align: center;
        color: var(--default-white);
        font-weight: 500;
        line-height: 1;
        margin: 0;
        padding: min(.75vw, .75rem) min(1.5vw, 1.5rem);
        transition: .3s all ease-in-out;
    }
    #g-navigation .hf-icon-buttons .hf-button .button:hover {
        transform: none;
        opacity: .5;
    }
}

@media only screen and (max-width: 50.99rem) {
    #g-navigation .hf-icon-buttons {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        justify-content: center;
        align-items: center;
        padding: 1rem 0 0 0;
    }
    #g-navigation .hf-icon-buttons .hf-icons {
        order: 2;
    }
    #g-navigation .hf-icon-buttons .hf-icons .g-social-items {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }
    #g-navigation .hf-icon-buttons .hf-icons .g-social-items a {
        color: var(--primary-color);
        font-size: 12vw;
        transition: .3s all ease-in-out;
    }
    #g-navigation .hf-icon-buttons .hf-icons .g-social-items a:hover {
        opacity: .5;
    }
    #g-navigation .hf-icon-buttons .hf-button {
        order: 1;
    }
    #g-navigation .hf-icon-buttons .hf-button .button {
        border-radius: 0;
        background: var(--default-black);
        font-size: 4vw;
        font-family: var(--body-font-family);
        text-align: center;
        color: var(--default-white);
        font-weight: 500;
        line-height: 1;
        margin: 0;
        padding: 1rem;
        transition: .3s all ease-in-out;
    }
    #g-navigation .hf-icon-buttons .hf-button .button:hover {
        transform: none;
        opacity: .5;
    }
}

/*HEADER*/
@media only screen and (min-width: 50.99rem) {
    .site-home #g-header {
        position: relative;
        z-index: 15;
    }
    .site-home #g-header > .g-container {
        padding: 0 min(4vw, 4rem) 0 min(4vw, 4rem)!important;
        margin-bottom: -2rem!important;
    }

    .site-home #g-header .ql-square-2 {
        transform: translateY(-50%);
    }
}

@media only screen and (max-width: 50.99rem) {
    .site-home #g-header {
        position: relative;
        z-index: 15;
    }
    .site-home #g-header > .g-container {
        padding: 1rem!important;
    }
}

.site-home #g-above {
    position: relative;
    z-index: 16;
}

@media only screen and (min-width: 50.99rem) {
    .ql-square-2 {
        margin: 0;
        padding: 0;
    }
    .ql-square-2 > .g-content {
        margin: 0;
        padding: 0;
    }
    .ql-square-2 > .g-content > div {
        margin: 0;
        padding: 0;
    }
    .ql-square-2 .g-blockcontent {
        margin: 0;
        padding: 0;
    }
    .ql-square-2 .g-blockcontent-subcontent {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: row;
        gap: min(1.5vw, 1.5rem);
    }
    .ql-square-2 .g-blockcontent-subcontent-block {
        margin: 0;
        padding: 0;
        position: relative;
        flex: 1;
        border: 2px solid var(--default-white);
        overflow: hidden;
        box-shadow: var(--default-box-shadow);
        transition: .3s all ease-in-out;
    }
    .ql-square-2 .g-blockcontent-subcontent-block:hover {
        transform: scale(1.05);
    }
    .ql-square-2 .g-blockcontent-subcontent-block-content {
        margin: 0;
        padding: 0;
        transition: .3s all ease-in-out;
    }
    .ql-square-2 .g-blockcontent-subcontent-img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        object-position: center;
        object-fit: cover;
        transition: .3s all ease-in-out;
    }
    .ql-square-2 .g-blockcontent-subcontent-title {
        margin: 0;
        padding: min(1.5vw, 1.5rem);
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        background: rgba(var(--primary-color-rgb),.8);
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--default-white);
        text-align: center;
        transition: .3s all ease-in-out;
    }
    .ql-square-2 .g-blockcontent-subcontent-title-text {
        margin: 0;
        padding: 0;
        color: var(--default-white);
        text-align: center;
        transition: .3s all ease-in-out;
    }
    .ql-square-2 .g-blockcontent-buttons {
        margin: 0;
        padding: 0;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        z-index: 5;
    }
    .ql-square-2 .g-blockcontent-buttons a {
        margin: 0;
        padding: 0;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        z-index: 5;
    }
}

@media only screen and (max-width: 50.99rem) {
    .ql-square-2 {
        margin: 0;
        padding: 0;
    }
    .ql-square-2 > .g-content {
        margin: 0;
        padding: 0;
    }
    .ql-square-2 > .g-content > div {
        margin: 0;
        padding: 0;
    }
    .ql-square-2 .g-blockcontent {
        margin: 0;
        padding: 0;
    }
    .ql-square-2 .g-blockcontent-subcontent {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    .ql-square-2 .g-blockcontent-subcontent-block {
        margin: 0;
        padding: 0;
        position: relative;
        flex: 1;
        border: 2px solid var(--default-white);
        overflow: hidden;
        box-shadow: var(--default-box-shadow);
        transition: .3s all ease-in-out;
        min-width: calc(50% - .5rem);
        max-width: calc(50% - .5rem);
    }
    .ql-square-2 .g-blockcontent-subcontent-block:hover {
        transform: scale(1.05);
    }
    .ql-square-2 .g-blockcontent-subcontent-block-content {
        margin: 0;
        padding: 0;
        transition: .3s all ease-in-out;
    }
    .ql-square-2 .g-blockcontent-subcontent-img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        object-position: center;
        object-fit: cover;
        transition: .3s all ease-in-out;
    }
    .ql-square-2 .g-blockcontent-subcontent-title {
        margin: 0;
        padding: 1rem;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        background: rgba(var(--primary-color-rgb),.8);
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--default-white);
        text-align: center;
        transition: .3s all ease-in-out;
    }
    .ql-square-2 .g-blockcontent-subcontent-title-text {
        margin: 0;
        padding: 0;
        color: var(--default-white);
        text-align: center;
        transition: .3s all ease-in-out;
    }
    .ql-square-2 .g-blockcontent-buttons {
        margin: 0;
        padding: 0;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        z-index: 5;
    }
    .ql-square-2 .g-blockcontent-buttons a {
        margin: 0;
        padding: 0;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        z-index: 5;
    }
}

/*ABOVE*/
@media only screen and (min-width: 50.99rem) {
    .site-home #g-above > .g-container {
        padding: 0 min(4vw, 4rem) min(4vw, 4rem) min(4vw, 4rem)!important;
    }

    .site-home #g-above > .g-container > .g-grid {
        display: flex;
        flex-direction: row;
        gap: min(8vw, 8rem);
        align-items: stretch;
    }
    .site-home #g-above > .g-container > .g-grid:before {
        content: '';
        border-left: 2px solid var(--primary-color);
        order: 2;
    }
    .site-home #g-above > .g-container > .g-grid > .g-block.welcome-container {
        order: 1;
        flex: 1;
        width: unset;
        max-width: unset;
    }
    .site-home #g-above > .g-container > .g-grid > .g-block.mt-container {
        order: 3;
        flex: 1;
        width: unset;
        max-width: unset;
        display: flex;
    }
}

@media only screen and (max-width: 50.99rem) {
    .site-home #g-above > .g-container {
        padding: 2rem 1rem!important;
    }

    .site-home #g-above > .g-container > .g-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: stretch;
    }
    .site-home #g-above > .g-container > .g-grid:before {
        content: '';
        border-bottom: 2px solid var(--primary-color);
        order: 2;
    }
    .site-home #g-above > .g-container > .g-grid > .g-block.welcome-container {
        order: 1;
        flex: 1;
        width: 100%;
        max-width: 100%;
    }
    .site-home #g-above > .g-container > .g-grid > .g-block.mt-container {
        order: 3;
        flex: 1;
        width: 100%;
        max-width: 100%;
        display: flex;
    }
}

@media only screen and (min-width: 50.99rem) {
    .welcome-container > .g-content {
        height: 100%;
    }
    .welcome-container .g-content-array {
        height: 100%;
    }
    .welcome-container .g-content-array > .g-grid {
        height: 100%;
    }
    .welcome-container .g-content-array > .g-grid > .g-block {
        height: 100%;
    }
    .welcome-container .g-content-array > .g-grid > .g-block > .g-content {
        height: 100%;
    }
    .welcome-container .g-array-item {
        height: 100%;
    }
    .welcome-container .g-array-item-text {
        height: 100%;
    }
    .welcome-container .welcome-wrapper {
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: min(1vw, 1rem);
    }
    .welcome-container .welcome-wrapper .welcome-content {
        flex: 1;
    }
    .welcome-container .welcome-wrapper .welcome-button .button {
        margin: 0;
        padding: min(1vw, 1rem) min(2vw, 2rem);
        line-height: 1;
        font-size: min(1.5vw, 1.5rem);
        color: var(--default-white);
        text-align: center;
        font-weight: 500;
        border-radius: 0;
        background: var(--primary-color);
        letter-spacing: 2px;
    }
    .welcome-container .g-array-item-text :is(h1,h2,h3,h4,h5,h6) {
        margin: 0;
        padding: 0;
        line-height: 1.2;
        font-size: min(3.5vw, 3.5rem);
    }
    .welcome-container .g-array-item-text p {
        font-size: min(1.5vw, 1.5rem);
        font-weight: 500;
    }

    .mt-container .g-array-item-text :is(h1,h2,h3,h4,h5,h6) {
        margin: 0;
        padding: 0;
        line-height: 1.2;
        font-size: min(3.5vw, 3.5rem);
    }
    .mt-container .g-array-item-text p {
        font-size: min(1.5vw, 1.5rem);
        font-weight: 500;
    }
}

@media only screen and (max-width: 50.99rem) {
    .welcome-container > .g-content {
        height: 100%;
    }
    .welcome-container .g-content-array {
        height: 100%;
    }
    .welcome-container .g-content-array > .g-grid {
        height: 100%;
    }
    .welcome-container .g-content-array > .g-grid > .g-block {
        height: 100%;
    }
    .welcome-container .g-content-array > .g-grid > .g-block > .g-content {
        height: 100%;
    }
    .welcome-container .g-array-item {
        height: 100%;
    }
    .welcome-container .g-array-item-text {
        height: 100%;
    }
    .welcome-container .welcome-wrapper {
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .welcome-container .welcome-wrapper .welcome-content {
        flex: 1;
    }
    .welcome-container .welcome-wrapper .welcome-button .button {
        margin: 0;
        padding: 1rem;
        line-height: 1;
        font-size: 4vw;
        color: var(--default-white);
        text-align: center;
        font-weight: 500;
        border-radius: 0;
        background: var(--primary-color);
        letter-spacing: 2px;
    }
    .welcome-container .g-array-item-text :is(h1,h2,h3,h4,h5,h6) {
        margin: 0;
        padding: 0;
        line-height: 1.2;
        font-size: 8vw;
    }
    .welcome-container .g-array-item-text p {
        font-size: 4vw;
        font-weight: 500;
    }

    .mt-container .g-array-item-text :is(h1,h2,h3,h4,h5,h6) {
        margin: 0;
        padding: 0;
        line-height: 1.2;
        font-size: 8vw;
    }
    .mt-container .g-array-item-text p {
        font-size: 4vw;
        font-weight: 500;
    }
}


/*MAIN*/
@media only screen and (min-width: 50.99rem) {
    .site-home #g-container-main > .g-container {
        padding: min(4vw, 4rem)!important;
    }
    .site-home #g-container-main > .g-container > .g-grid {
        display: flex;
        flex-direction: row;
        gap: min(4vw, 4rem);
        align-items: center;
    }
    .site-home #g-container-main > .g-container > .g-grid > .g-block:has(#g-mainbar) {
        flex: 1;
        width: unset;
        max-width: unset;
    }
    .site-home #g-container-main > .g-container > .g-grid > .g-block:has(#g-aside) {
        flex: unset;
        max-width: 165px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .site-home #g-mainbar {
        display: flex;
        flex-direction: column;
        gap: min(2vw, 2rem);
    }
    .news-header {
        display: flex;
        flex-direction: row;
        gap: min(2vw, 2rem);
        align-items: center;
        justify-content: space-between;
        border-bottom: 2px solid var(--tertiary-color);
        padding-bottom: 1rem;
    }
    .news-header .news-title {
        margin: 0;
        padding: 0;
        line-height: 1.2;
        font-size: min(4vw, 4rem);
        color: var(--primary-color);
        font-family: var(--title-font-family);
        text-align: left;
    }
    .news-header .button {
        margin: 0;
        padding: min(1vw, 1rem) min(4vw, 4rem);
        text-align: center;
        font-size: min(1.25vw, 1.25rem);
        color: var(--default-white);
        letter-spacing: 2px;
        font-family: var(--body-font-family);
        border-radius: 0;
    }
}

@media only screen and (max-width: 50.99rem) {
    .site-home.withmaxwidth #g-container-main > .g-container {
        padding: 2rem 0!important;
    }
    .site-home #g-container-main > .g-container > .g-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    .site-home #g-container-main > .g-container > .g-grid > .g-block:has(#g-mainbar) {
        flex: 1;
        width: 100%;
        max-width: 100%;
    }
    .site-home #g-container-main > .g-container > .g-grid > .g-block:has(#g-aside) {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }

    .site-home #g-mainbar {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .g-content:has(>.news-header) {
        padding: 0 1rem;
    }
    .news-header {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: space-between;
        border-bottom: 2px solid var(--tertiary-color);
        padding-bottom: 1rem;
    }
    .news-header .news-title {
        margin: 0;
        padding: 0;
        line-height: 1.2;
        font-size: 8vw;
        color: var(--primary-color);
        font-family: var(--title-font-family);
        text-align: left;
    }
    .news-header .button {
        margin: 0;
        padding: 1rem;
        text-align: center;
        font-size: 4vw;
        color: var(--default-white);
        letter-spacing: 2px;
        font-family: var(--body-font-family);
        border-radius: 0;
    }
}

@media only screen and (min-width: 50.99rem) {
    .ph-hover-boxes {
        margin: 0;
        padding: 0;
    }
    .ph-hover-boxes > .g-content {
        margin: 0;
        padding: 0;
    }
    .ph-hover-boxes .g-content-array {
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: min(2vw, 2rem);
    }
    .ph-hover-boxes .g-content-array > .g-grid {
        margin: 0;
        padding: 0;
        position: relative;
        transition: .3s all ease-in-out;
    }
    .ph-hover-boxes .g-content-array > .g-grid:hover .g-array-item-image:before {
        opacity: 1;
    }
    .ph-hover-boxes .g-content-array > .g-grid > .g-block {
        margin: 0;
        padding: 0;
        transition: .3s all ease-in-out;
    }
    .ph-hover-boxes .g-content-array > .g-grid > .g-block > .g-content {
        margin: 0;
        padding: 0;
        transition: .3s all ease-in-out;
    }
    .ph-hover-boxes .g-array-item {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: min(1vw, 1rem);
        transition: .3s all ease-in-out;
    }
    .ph-hover-boxes .g-array-item-image {
        margin: 0;
        padding: 0;
        order: 1;
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: var(--default-box-shadow);
        position: relative;
        transition: .3s all ease-in-out;
    }
    .ph-hover-boxes .g-array-item-image:before {
        content: 'Read More';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(var(--primary-color-rgb),.85);
        padding: min(1vw, 1rem);
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: min(1.75vw, 1.75rem);
        color: var(--default-white);
        font-weight: 600;
        font-family: var(--body-font-family);
        opacity: 0;
        transition: .3s all ease-in-out;
    }
    .ph-hover-boxes .g-array-item-image a {
        margin: 0;
        padding: 0;
        pointer-events: none!important;
        transition: .3s all ease-in-out;
    }
    .ph-hover-boxes .g-array-item-image img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        object-position: center;
        object-fit: cover;
        transition: .3s all ease-in-out;
    }
    .ph-hover-boxes .g-array-item-title {
        margin: 0;
        padding: 0;
        order: 2;
        transition: .3s all ease-in-out;
    }
    .ph-hover-boxes .g-item-title {
        margin: 0;
        padding: 0;
        transition: .3s all ease-in-out;
        font-family: var(--body-font-family);
        font-size: min(1.5vw, 1.5rem);
        font-weight: 600;
        color: var(--primary-color);
        text-align: left;
        line-height: 1.3;
        text-transform: none;
        font-variant-caps: normal;
        border: none;
        background: none;
    }
    .ph-hover-boxes .g-item-title a {
        margin: 0;
        padding: 0;
        transition: .3s all ease-in-out;
        font-family: var(--body-font-family);
        font-size: min(1.5vw, 1.5rem);
        font-weight: 600;
        color: var(--primary-color);
        text-align: left;
        line-height: 1.3;
        text-transform: none;
        font-variant-caps: normal;
        border: none;
        background: none;
    }
    .ph-hover-boxes .g-array-item-text {
        margin: 0;
        padding: 0;
        order: 3;
        transition: .3s all ease-in-out;
        color: var(--default-black);
        font-size: min(1.25vw, 1.25rem);
        text-align: left;
        opacity: .8;
    }
    .ph-hover-boxes .g-array-item-read-more {
        margin: 0;
        padding: 0;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        z-index: 10;
    }
    .ph-hover-boxes .g-array-item-read-more a {
        margin: 0;
        padding: 0;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        z-index: 10;
    }
}

@media only screen and (max-width: 50.99rem) {
    .ph-hover-boxes {
        margin: 0;
        padding: 0;
    }
    .ph-hover-boxes > .g-content {
        margin: 0;
        padding: 0;
    }
    .ph-hover-boxes .g-content-array {
        margin: 0;
        padding: 1rem 12.5vw;
        display: flex;
        flex-direction: row;
        gap: 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 12.5vw;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .ph-hover-boxes .g-content-array::-webkit-scrollbar {
        display: none;
    }
    .ph-hover-boxes .g-content-array > .g-grid {
        margin: 0;
        padding: 0;
        position: relative;
        transition: .3s all ease-in-out;
        flex: 0 0 75vw;
        scroll-snap-align: center;
    }
    .ph-hover-boxes .g-content-array > .g-grid:last-child {
        margin-right: 12.5vw;
    }
    .ph-hover-boxes .g-content-array > .g-grid:hover .g-array-item-image:before {
        opacity: 1;
    }
    .ph-hover-boxes .g-content-array > .g-grid > .g-block {
        margin: 0;
        padding: 0;
        transition: .3s all ease-in-out;
    }
    .ph-hover-boxes .g-content-array > .g-grid > .g-block > .g-content {
        margin: 0;
        padding: 0;
        transition: .3s all ease-in-out;
    }
    .ph-hover-boxes .g-array-item {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        transition: .3s all ease-in-out;
    }
    .ph-hover-boxes .g-array-item-image {
        margin: 0;
        padding: 0;
        order: 1;
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: var(--default-box-shadow);
        position: relative;
        transition: .3s all ease-in-out;
    }
    .ph-hover-boxes .g-array-item-image:before {
        content: 'Read More';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(var(--primary-color-rgb),.85);
        padding: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 5vw;
        color: var(--default-white);
        font-weight: 600;
        font-family: var(--body-font-family);
        opacity: 0;
        transition: .3s all ease-in-out;
    }
    .ph-hover-boxes .g-array-item-image a {
        margin: 0;
        padding: 0;
        pointer-events: none!important;
        transition: .3s all ease-in-out;
    }
    .ph-hover-boxes .g-array-item-image img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        object-position: center;
        object-fit: cover;
        transition: .3s all ease-in-out;
    }
    .ph-hover-boxes .g-array-item-title {
        margin: 0;
        padding: 0;
        order: 2;
        transition: .3s all ease-in-out;
    }
    .ph-hover-boxes .g-item-title {
        margin: 0;
        padding: 0;
        transition: .3s all ease-in-out;
        font-family: var(--body-font-family);
        font-size: 5vw;
        font-weight: 600;
        color: var(--primary-color);
        text-align: left;
        line-height: 1.3;
        text-transform: none;
        font-variant-caps: normal;
        border: none;
        background: none;
    }
    .ph-hover-boxes .g-item-title a {
        margin: 0;
        padding: 0;
        transition: .3s all ease-in-out;
        font-family: var(--body-font-family);
        font-size: 5vw;
        font-weight: 600;
        color: var(--primary-color);
        text-align: left;
        line-height: 1.3;
        text-transform: none;
        font-variant-caps: normal;
        border: none;
        background: none;
    }
    .ph-hover-boxes .g-array-item-text {
        margin: 0;
        padding: 0;
        order: 3;
        transition: .3s all ease-in-out;
        color: var(--default-black);
        font-size: 4vw;
        text-align: left;
        opacity: .8;
    }
    .ph-hover-boxes .g-array-item-read-more {
        margin: 0;
        padding: 0;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        z-index: 10;
    }
    .ph-hover-boxes .g-array-item-read-more a {
        margin: 0;
        padding: 0;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        z-index: 10;
    }
}

/*EXPANDED*/
@media only screen and (min-width: 50.99rem) {
    .site-home #g-expanded {
        background: url('/images/template/bg-widgets.jpg') 50% 50% no-repeat;
        background-size: cover;
        position: relative;
    }
    .site-home #g-expanded:before {
        content: '';
        background: rgba(var(--primary-color-rgb),.85);
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1;
        backdrop-filter: blur(7px);
        --webkit-backdrop-filter: blur(7px);
    }
    .site-home #g-expanded > .g-container {
        position: relative;
        z-index: 2;
        padding: min(4vw, 4rem)!important;
    }
}

@media only screen and (max-width: 50.99rem) {
    .site-home #g-expanded {
        background: url('/images/template/bg-widgets.jpg') 50% 50% no-repeat;
        background-size: cover;
        position: relative;
    }
    .site-home #g-expanded:before {
        content: '';
        background: rgba(var(--primary-color-rgb),.85);
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1;
        backdrop-filter: blur(7px);
        --webkit-backdrop-filter: blur(7px);
    }
    .site-home.withmaxwidth #g-expanded > .g-container {
        position: relative;
        z-index: 2;
        padding: 2rem 1rem!important;
    }

    .widget-parthenon-alt > .g-container > .g-grid {
        --widget-section-gap-mobile: 2rem;
    }
    .widget-container .widget-wrapper {
        --widget-wrapper-item-gap-mobile: 0;
    }
}

@media only screen and (min-width: 50.99rem) {
    .widget-container .widget-wrapper .widget-title .g-title {
        color: var(--secondary-color);
        font-size: min(4vw, 4rem);
        text-align: center;
        font-weight: 400;
        font-family: var(--title-font-family);
        line-height: 1.2;
    }

    .widget-container .widget-wrapper .widget-button .button {
        width: 85%;
        background: var(--default-white);
        color: var(--default-black);
        text-transform: none;
        font-variant-caps: normal;
    }

    .widget-container .widget-wrapper .widget-feed {
        overflow: visible;
    }
    .widget-container .widget-wrapper .widget-feed .widget-feed-inner-box {
        overflow: visible;
    }
    .widget-container .widget-wrapper .widget-feed .widget-feed-inner-box iframe {
        overflow: hidden;
        border-radius: 1rem;
        box-shadow: var(--default-box-shadow);
    }
    .widget-container.formed-widget-container .widget-feed-inner-box img {
        overflow: hidden;
        border-radius: 1rem;
        box-shadow: var(--default-box-shadow);
    }
    .widget-container.facebook-widget-container .widget-feed-inner-box > div {
        overflow: hidden;
        border-radius: 1rem;
        box-shadow: var(--default-box-shadow);
    }
}

@media only screen and (max-width: 50.99rem) {
    .widget-container .widget-wrapper .widget-title .g-title {
        color: var(--secondary-color);
        font-size: 8vw;
        text-align: center;
        font-weight: 400;
        font-family: var(--title-font-family);
        line-height: 1.2;
    }

    .widget-container .widget-wrapper .widget-button {
        padding: 0 1rem;
    }
    .widget-container .widget-wrapper .widget-button .button {
        background: var(--default-white);
        color: var(--default-black);
        text-transform: none;
        font-variant-caps: normal;
    }

    .widget-container .widget-wrapper .widget-feed {
        overflow: visible;
    }
    .widget-container .widget-wrapper .widget-feed .widget-feed-inner-box {
        overflow: visible;
    }
    .widget-container .widget-wrapper .widget-feed .widget-feed-inner-box iframe {
        overflow: hidden;
        border-radius: 1rem;
        box-shadow: var(--default-box-shadow);
        height: 120vw;
    }
    .widget-container.formed-widget-container .widget-feed-inner-box img {
        overflow: hidden;
        border-radius: 1rem;
        box-shadow: var(--default-box-shadow);
    }
    .widget-container.facebook-widget-container .widget-feed-inner-box > div {
        overflow: hidden;
        border-radius: 1rem;
        box-shadow: var(--default-box-shadow);
    }
}

@media only screen and (min-width: 50.99rem) {
    .helplinks {
        margin: 0;
        padding: 0;
    }
    .helplinks > .g-content {
        margin: 0;
        padding: 0;
        height: 100%;
    }
    .helplinks > .g-content > div {
        margin: 0;
        padding: 0;
        height: 100%;
    }
    .helplinks .g-blockcontent {
        margin: 0;
        padding: 0;
        height: 100%;
    }
    .helplinks .g-blockcontent-subcontent {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: min(2vw, 2rem);
        height: 100%;
    }
    .helplinks .g-blockcontent-subcontent-block {
        margin: 0;
        padding: min(1.25vw, 1.25rem);
        position: relative;
        background: var(--default-white);
        box-shadow: var(--default-box-shadow);
        border-radius: .5rem;
        overflow: hidden;
        flex: 1;
        display: flex;
        align-items: center;
        transition: .3s all ease-in-out;
    }
    .helplinks .g-blockcontent-subcontent-block:hover {
        transform: scale(1.05);
    }
    .helplinks .g-blockcontent-subcontent-block-content {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: row;
        gap: min(2vw, 2rem);
        align-items: center;
        justify-content: flex-start;
        transition: .3s all ease-in-out;
    }
    .helplinks .g-blockcontent-subcontent-img {
        margin: 0;
        padding: 0;
        width: min(8vw, 8rem);
        height: auto;
        transition: .3s all ease-in-out;
    }
    .helplinks .g-blockcontent-subcontent-title {
        margin: 0;
        padding: 0;
        line-height: 1.2;
        font-size: min(1.75vw, 1.75rem);
        text-align: left;
        font-weight: 700;
        text-transform: none;
        font-variant-caps: normal;
        border: none;
        color: var(--default-black);
        transition: .3s all ease-in-out;
    }
    .helplinks .g-blockcontent-subcontent-title-text {
        margin: 0;
        padding: 0;
        line-height: 1.2;
        font-size: min(1.75vw, 1.75rem);
        text-align: left;
        font-weight: 700;
        text-transform: none;
        font-variant-caps: normal;
        border: none;
        color: var(--default-black);
        transition: .3s all ease-in-out;
    }
    .helplinks .g-blockcontent-buttons {
        margin: 0;
        padding: 0;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
    }
    .helplinks .g-blockcontent-buttons a {
        margin: 0;
        padding: 0;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
    }
}

@media only screen and (max-width: 50.99rem) {
    .helplinks {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    .helplinks > .g-content {
        margin: 0;
        padding: 0;
        height: 100%;
    }
    .helplinks > .g-content > div {
        margin: 0;
        padding: 0;
        height: 100%;
    }
    .helplinks .g-blockcontent {
        margin: 0;
        padding: 0;
        height: 100%;
    }
    .helplinks .g-blockcontent-subcontent {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        height: 100%;
    }
    .helplinks .g-blockcontent-subcontent-block {
        margin: 0;
        padding: 1rem;
        position: relative;
        background: var(--default-white);
        box-shadow: var(--default-box-shadow);
        border-radius: .5rem;
        overflow: hidden;
        flex: 1;
        display: flex;
        align-items: center;
        transition: .3s all ease-in-out;
        width: 100%;
    }
    .helplinks .g-blockcontent-subcontent-block:hover {
        transform: scale(1.05);
    }
    .helplinks .g-blockcontent-subcontent-block-content {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
        align-items: center;
        justify-content: flex-start;
        transition: .3s all ease-in-out;
    }
    .helplinks .g-blockcontent-subcontent-img {
        margin: 0;
        padding: 0;
        width: 25vw;
        height: auto;
        transition: .3s all ease-in-out;
    }
    .helplinks .g-blockcontent-subcontent-title {
        margin: 0;
        padding: 0;
        line-height: 1.2;
        font-size: 4vw;
        text-align: left;
        font-weight: 700;
        text-transform: none;
        font-variant-caps: normal;
        border: none;
        color: var(--default-black);
        transition: .3s all ease-in-out;
    }
    .helplinks .g-blockcontent-subcontent-title-text {
        margin: 0;
        padding: 0;
        line-height: 1.2;
        font-size: 4vw;
        text-align: left;
        font-weight: 700;
        text-transform: none;
        font-variant-caps: normal;
        border: none;
        color: var(--default-black);
        transition: .3s all ease-in-out;
    }
    .helplinks .g-blockcontent-buttons {
        margin: 0;
        padding: 0;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
    }
    .helplinks .g-blockcontent-buttons a {
        margin: 0;
        padding: 0;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
    }
}

/*FOOTER*/
@media only screen and (min-width: 50.99rem) {
    #g-footer > .g-container {
        padding: min(4vw, 4rem)!important;
    }
}

@media only screen and (max-width: 50.99rem) {
    #g-footer > .g-container {
        padding: 2rem 1rem 5rem 1rem!important;
    }
}

@media only screen and (min-width: 50.99rem) {
    .footer-wrapper {
        display: flex;
        flex-direction: row;
        gap: min(4vw, 4rem);
    }
    .footer-wrapper .footer-content {
        order: 1;
        flex: 1;
    }
    .footer-wrapper .footer-content-box p {
        font-size: min(1.5vw, 1.5rem);
        line-height: 1.5;
    }
    .footer-wrapper .hf-icon-buttons {
        display: flex;
        flex-direction: row;
        gap: min(1.25vw, 1.25rem);
        justify-content: flex-start;
        align-items: center;
    }
    .footer-wrapper .hf-icon-buttons .hf-icons {
        order: 1;
    }
    .footer-wrapper .hf-icon-buttons .hf-icons .g-social-items {
        display: flex;
        flex-direction: row;
        gap: min(1vw, 1rem);
        align-items: center;
        justify-content: center;
    }
    .footer-wrapper .hf-icon-buttons .hf-icons .g-social-items a {
        color: var(--primary-color);
        font-size: min(3vw, 3rem);
        transition: .3s all ease-in-out;
    }
    .footer-wrapper .hf-icon-buttons .hf-icons .g-social-items a:hover {
        opacity: .5;
    }
    .footer-wrapper .hf-icon-buttons .hf-button {
        order: 2;
    }
    .footer-wrapper .hf-icon-buttons .hf-button .button {
        border-radius: .5rem;
        background: transparent;
        font-size: min(1.5vw, 1.5rem);
        font-family: var(--body-font-family);
        text-align: center;
        color: var(--default-white);
        border: 2px solid var(--default-white);
        font-weight: 500;
        line-height: 1;
        margin: 0;
        padding: min(.5vw, .5rem) min(1.5vw, 1.5rem);
        transition: .3s all ease-in-out;
    }
    .footer-wrapper .hf-icon-buttons .hf-button .button:hover {
        transform: none;
        opacity: .5;
    }
    .footer-wrapper:before {
        content: '';
        border-left: 2px solid var(--default-white);
        order: 2;
    }
    .footer-wrapper .footer-logo {
        order: 3;
        flex: 2.5;
    }
    .footer-wrapper:after {
        content: '';
        border-left: 2px solid var(--default-white);
        order: 4;
    }
    .footer-wrapper .footer-important-links {
        order: 5;
        flex: 1;
    }
    .footer-wrapper .footer-inner-links {
        display: flex;
        flex-direction: column;
    }
    .footer-wrapper .footer-inner-links .footer-links-title h2 {
        font-size: min(2vw, 2rem);
        font-weight: 700;
        font-family: var(--body-font-family);
        line-height: 1;
        color: var(--default-white);
        text-transform: none;
        font-variant-caps: normal;
    }
    .footer-wrapper .footer-links-box {
        display: flex;
        flex-direction: column;
    }
    .footer-wrapper .footer-links-box a {
        font-size: min(1.5vw, 1.5rem);
        font-weight: 400;
        line-height: 1.5;
    }
}

@media only screen and (max-width: 50.99rem) {
    .footer-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-wrapper .footer-content {
        order: 3;
        flex: 1;
    }
    .footer-wrapper .footer-content-box p {
        font-size: 4vw;
        line-height: 1.5;
    }
    .footer-wrapper .hf-icon-buttons {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        justify-content: flex-start;
        align-items: center;
    }
    .footer-wrapper .hf-icon-buttons .hf-icons {
        order: 1;
    }
    .footer-wrapper .hf-icon-buttons .hf-icons .g-social-items {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }
    .footer-wrapper .hf-icon-buttons .hf-icons .g-social-items a {
        color: var(--primary-color);
        font-size: 12vw;
        transition: .3s all ease-in-out;
    }
    .footer-wrapper .hf-icon-buttons .hf-icons .g-social-items a:hover {
        opacity: .5;
    }
    .footer-wrapper .hf-icon-buttons .hf-button {
        order: 2;
    }
    .footer-wrapper .hf-icon-buttons .hf-button .button {
        border-radius: .5rem;
        background: transparent;
        font-size: 4vw;
        font-family: var(--body-font-family);
        text-align: center;
        color: var(--default-white);
        border: 2px solid var(--default-white);
        font-weight: 500;
        line-height: 1;
        margin: 0;
        padding: 1rem 4rem;
        transition: .3s all ease-in-out;
    }
    .footer-wrapper .hf-icon-buttons .hf-button .button:hover {
        transform: none;
        opacity: .5;
    }
    .footer-wrapper:before {
        content: '';
        border-bottom: 2px solid var(--default-white);
        order: 2;
    }
    .footer-wrapper .footer-logo {
        order: 1;
        flex: 2.5;
    }
    .footer-wrapper:after {
        content: '';
        border-bottom: 2px solid var(--default-white);
        order: 4;
    }
    .footer-wrapper .footer-important-links {
        order: 5;
        flex: 1;
    }
    .footer-wrapper .footer-inner-links {
        display: flex;
        flex-direction: column;
    }
    .footer-wrapper .footer-inner-links .footer-links-title h2 {
        font-size: 6vw;
        font-weight: 700;
        font-family: var(--body-font-family);
        line-height: 1;
        color: var(--default-white);
        text-transform: none;
        font-variant-caps: normal;
    }
    .footer-wrapper .footer-links-box {
        display: flex;
        flex-direction: column;
    }
    .footer-wrapper .footer-links-box a {
        font-size: 4vw;
        font-weight: 400;
        line-height: 1.5;
    }
}

/*BOTTOM*/
@media only screen and (min-width: 50.99rem) {
    .site-1 #g-bottom {
        padding: 0!important;
    }
    #g-bottom {
        position: relative;
        z-index: 10;
    }
    #g-bottom > .g-container {
        padding: 2rem 0!important;
    }
    #g-bottom .admod td {
        padding-top: 0!important;
    }
}

@media only screen and (max-width: 50.99rem) {
    .site-1 #g-bottom {
        padding: 0!important;
    }
    #g-bottom {
        position: relative;
        z-index: 10;
    }
    html body.withmaxwidth #g-page-surround > #g-bottom > .g-container {
        padding: 2rem 0!important;
        padding-left: 0!important;
        padding-right: 0!important;
    }
    #g-bottom .admod td {
        padding-top: 0!important;
    }
}

.search-page #searchForm .btn {
    background: var(--primary-color);
}

.grid-articles .g-array-item-text a:not(a.button) {
    color: var(--primary-color);
}
.grid-articles .g-array-item-text a {
    color: var(--primary-color);
}

@media only screen and (max-width: 50.99rem) {
    .admod.adside tbody {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: .5rem .5rem;
    }
}

@media only screen and (max-width: 50.99rem) {
    body#site-grid.newslayout #g-container-main > .g-container {
        padding: 2rem 1rem!important;
    }
    body#site-grid.newslayout #g-container-main #g-mainbar {
        margin: 0!important;
        padding: 0!important;
    }

    #site-grid.newslayout .grid-mobile-stacked .g-item-title {
        --grid-title-font-size: 3vw;
    }
}

@media only screen and (max-width: 50.99rem) {
    body .side-menu-particle .g-blockcontent-subcontent-title-text {
        --side-menu-font-size-desktop: 4vw;
    }
}

@media only screen and (min-width: 50.99rem) {
    .landing .grid-articles .g-array-item-text p {
        font-size: min(1.5vw, 1.5rem)!important;
    }

    .landing .grid-articles .g-item-title {
        --grid-title-font-size: min(3vw, 3rem);
        pointer-events: none!important;
    }

    .landing .transparentbutton {
        padding: min(1vw, 1rem) min(4vw, 4rem)!important;
        font-size: min(1.5vw, 1.5rem)!important;
        --grid-text-font-size: min(1.5vw, 1.5rem);
    }
}