.header-navigation{
    flex: 1;
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    opacity: 0;
    z-index: 10;
	color: var(--accent-color);
    overflow: hidden;
}

.header-navigation.show {
    display: block;
    backdrop-filter: blur(3px);
    animation: appear 300ms ease-in;
    opacity: 1;
}

@keyframes appear {
    from { opacity: 0; }
    to { opacity: 1; }
}

.header-navigation__option-list {
    color: white;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    list-style: none;
    cursor: pointer;
    font-size: .75rem;
    height: 100%;
    margin: 0px;
    padding-left: 0;
    padding-top: 10px;
    z-index: 10;
}

.header-navigation__option {
    min-width: 100px;
    flex: 0;
    padding: 25px 0 0;
    margin-bottom: .5rem;
    font-size: 1.25rem;
    font-weight: 600;
    padding-left: 2rem;
}

.header-navigation__sub-menu .header-navigation__option {
    color: white;
}

.header-navigation__sub-menu .header-navigation__option {
    color: white;
}

.header--transparent .header-navigation__option {
    color: white;
}

.header-navigation__option:hover {
    color: var(--primary-color);
}

.header-navigation__sub-menu {
    visibility: hidden;
    box-sizing: border-box;
    width: 100%;
    height: 0px;
    top: 40px;
    left: -180px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    text-align: left;
    align-content: flex-start;
    list-style: none;
    cursor: pointer;
    padding-left: 1rem;
}

.header-navigation__sub-option {
    width: 100%;
    display: flex;
    font-size: .75rem;
    padding: 10px;
    align-items: center;
    color: white;
}

.header-navigation__sub-option:first-of-type {
    margin-top: 25px;
}

.header-navigation__sub-option > .header-navigation__sub-option-link {
    padding: 5px 10px;
    line-height: 1rem;
}

.header-navigation__sub-option-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.header-navigation__sub-option-icon {
    font-size: 1.5rem;
    margin-right: 10px;
    color: var(--primary-color);
}

.header-navigation__option a {
    text-decoration: none;
    color: inherit;
    line-height: 1.8rem;
}

.header-navigation__option.active .header-navigation__sub-menu {
    opacity: 1;
    height: -moz-fit-content;
    height: fit-content;
    visibility: visible;
}

.header-navigation__search {
    cursor: pointer;
    min-width: 100px;
    max-width: 300px;
    display: none;
    align-items: center;
    justify-content: flex-end;
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    top: 30px
}

.header-navigation__search-input {
    position: relative;
    right: 0;
    outline: none;
    border: none;
    background-color: transparent;
    height: 1.5rem;
    width: 10%;
    padding: 15px;
    border-radius: 10px;
    transition: all 300ms ease-in-out;
    border: 1px solid transparent;
}

.header-navigation__search-input:not(:-moz-placeholder) {
    width: 100%;
    background-color: #fff;
	border: 1px solid var(--acent-color);
}

.header-navigation__search-input:focus,
.header-navigation__search-input:not(:placeholder-shown) {
    width: 100%;
    background-color: #fff;
	border: 1px solid var(--acent-color);
}

.header-navigation__search-icon {
    position: absolute;
	color: var(--accent-color);
    font-size: 1.25rem;
    right: 22px;
    z-index: 99;
    cursor: pointer;
}

.header--transparent .header-navigation__search-icon {
    color: #fff;
}

.header-navigation__search-input:not(:-moz-placeholder) + .header-navigation__search-icon > svg {
    color: #999;
}

.header-navigation__search-input:focus + .header-navigation__search-icon > svg,
.header-navigation__search-input:not(:placeholder-shown) + .header-navigation__search-icon > svg {
    color: #999;
}

.maintenance-alert {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffc4;
    padding: 15px 50px 15px;
    margin: 0;
    font-family: Ariel, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 16px;
    color: #6d6d0d;
    text-align: center;
}

.maintenance-alert.header--fixed {
    position: fixed;
    top: 60px;
    background-color: #ffffc4 !important;
}

.maintenance-alert__text{

}

.maintenance-alert__close {
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    right: 0;
    margin-right: 1rem;
}

@media (min-width: 576px) {
    .header-navigation__option {
        padding-top: 25px;
    }
    .header-navigation__option a {
        line-height: 1.5rem;
    }
    .header-navigation__sub-menu {
        text-align: right;
    }
    .header-navigation__search {
        right: 30px;
        margin: 0;
        left: auto;
    }
}

@media (min-width: 1200px) {
    .header-navigation{
        display: block;
        opacity: 1;
        width: -moz-fit-content;
        width: fit-content;
        position: relative;
        min-height: -moz-fit-content !important;
        min-height: fit-content !important;
        padding-top: 0;
        top: 0;
        border-left: none;
        background: transparent;
        overflow: visible;
    }
    .header-navigation__option-list {
        flex-direction: row;
        justify-content: space-around;
        position: relative;
        padding-top: 0;
        color: var(--accent-color);
    }
    .header-navigation__option {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0;
        font-size: .65rem;
        background: transparent;
        border-right: none;
        padding: 0;
        text-align: center;
        flex: 1;
        min-width: 100px;
        max-width: -moz-fit-content;
        max-width: fit-content;
    }
    .header-navigation__option a {
        line-height: unset;
        padding: 21px 16px;
    }

    .header-navigation__sub-menu {
        visibility: hidden;
        box-sizing: border-box;
        width: 100vw;
        height: 0px;
        background:rgba( 0, 0, 0, 0.8 );
        top: 40px;
        left: -530px;
        right: 0;
        z-index: 1000;
        position: absolute;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 40px 120px;
        padding-right: 0px;
        align-content: flex-start;
        list-style: none;
        cursor: pointer;
        border-top: 1px solid var(--primary-color);
        text-align: center;
    }

    .header-navigation__sub-option:first-of-type {
        margin-top: 0;
    }

    .header-navigation__sub-option {
        width: calc( 25% - 10px); 
        justify-content: flex-start;       
    }
    
    .header-navigation__sub-option,
    .header-navigation__sub-option-link,
    .header-navigation__sub-option-link:visited {
        text-align: left;
        margin-right: 10px;
        padding: 10px;
        display: flex;
        align-items: center;
        color: white;
    }
    .header-navigation__option.active .header-navigation__sub-menu{
        opacity: 1;
        top: 100%;
        height: -moz-fit-content;
        height: fit-content;
        visibility: visible;
    }
    .header-navigation__search {
        display: flex;
        top: 70px;
        right: 10px;
        z-index: 1001;
    }
}

@media (min-width: 1400px) {
    .header-navigation__option {
        font-size: .75rem;
    }

    .header-navigation__search {
        display: flex;
    }
}

.header {
    font: normal normal 600 14px/15px Montserrat, sans-serif;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0px;
    left: 0px;
    width: 100vw;
    max-width: 100%;
    z-index: 100;
	background-color: white;
	color: var(--accent-color);
    padding-left: 14px;
    padding-right: 10px;
    border-bottom: 1px solid #D1B471;
}

.header--transparent {
    color: white;
    background: transparent;
    position: absolute;
    border-bottom: none;
}

.header--fixed {
    position: fixed;
    background-color: white !important;
}

.header-anchor {
    height: 60px;
}

.header__logo {
    font-size: 32px;
    margin-right: 5px;
	color: var(--accent-color);
    align-items: center;
    display: flex;
    min-width: 200px;
    flex: 1;
}

.header__logo img {
    height: 100%;
    width: 170px;
}

.header__hamburger {
    width: 25px;
    height: 35px;
    display: block;
    padding: 5px;
    right: 15px;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
    margin-right: 5px;
}

.header__hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
	background: var(--accent-color);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.header--transparent .header__hamburger span {
    background: white;
}

.header__hamburger .line-1 {
    top: 6px;
}

.header__hamburger .line-2 {
    top: 14px;
}

.header__hamburger .line-3 {
    top: 22px;
}

.header--transparent .header__logo {
    color: white;
}

.header--transparent .header__order_guides__container a {
    background-color: var(--primary-color);
}

.header__hamburger.open .line-1 {
    top: 16px;
    transform: rotate(135deg);
}

.header__hamburger.open .line-2 {
    opacity: 0;
    left: 60px;
}

.header__hamburger.open .line-3 {
    top: 16px;
    transform: rotate(-135deg);
}

.header__order_guides__container  {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12rem; 
}

.header__order_guides__container a {
    text-decoration: none;   
    color:white;
    width: 80%;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: var(--dark-blue);
}

@media (min-width: 1200px) {
    .header__hamburger {
        display: none;
    }
    .header__logo {
        flex: 0;
    }
    .header__logo {
        min-width: 150px;
    }
}

@media (max-width: 600px) {
    .header__order_guides__container a {
        width: 120px;
    }
    .header__order_guides__container  {
        width: 165px; 
        justify-content: flex-start;
    
    }
    .header__logo img {
        width: 150px !important;
    }
    .header__hamburger {
        padding: 5px 10px;
        margin-right: 8px;
    }
    .header__logo {
        min-width: 100px;
        margin-left: 12px;
    }
    .header__logo__container  {
        justify-content: flex-start;     
    }
}

@media (min-width: 600px) {
    .header__logo__container img {
        margin-left: 150px;
        font-size: 20px;
    }
    .header__order_guides__container  {
        width: 165px;
        margin-right: 20px;
    }
}

.header__search__container {
    flex: 1;
    display: flex;
    justify-content: end;
    height: 100%;
}

.header__logo__container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header__logo__container a {
    display: flex;
    align-items: center;
}

.header__search__container > form {
    position: relative;
    display: flex;
    justify-content: end;
    position: absolute;
    top: 27px;
    width: 250px;
}

.header__search {
    display: flex;
    align-items: center;
    justify-content: end;
    position: relative;
	flex: 1;
}

.header__search-input {
    position: absolute;
    outline: none;
    border: 1px solid transparent;
    background-color: transparent;
    height: 1.9rem;
    width: 30px;
    padding: 5px 33px 5px 15px;
    border-radius: 36px;
    font-size: 16px;
    text-overflow: ellipsis;
    float: right;
    transition: width 250ms ease;
}

.header--transparent .header__search-input {
    border-color: transparent;
}

.header__search-input:focus {
	flex: 1;
    width: 100%;
    padding: 5px 33px 5px 15px;
    background-color: #fff;
    border-color: var(--accent-color);
}

.header__search-icon {
    position: absolute;
    color: var(--accent-color);
    right: 10px;
    font-size: 1.25rem;
    cursor: pointer;
}

.header--transparent .header__search-icon {
    color: white;
}

.header__search:focus-within .header__search-icon {
    color: var(--accent-color);
}

@media (max-width: 576px) {
	.header__search__container.search-visible > form:focus-within {
		flex: 1;
        
	}

    .header__search__container > form {
        width: calc( 100% - 60px );
    }
    
}

@media (max-width: 1200px) {
	.header__search__container.search-visible .header__logo__container {
		display: none;
	}
    .header__search__container.search-visible .header__order_guides__container {
		display: none;
	}
}

@media (min-width: 576px ) {
    .header__search__container > form {
        flex-shrink: 1;
        flex-basis: 225px;
    }
}

@media (min-width: 1200px) {
    .header__search__container > form {
        position: relative;
        top: unset;
        width: unset;
    }

    .header__search-icon {
        font-size: 1rem;
    }
    .header__logo__container {
        flex: 0;
    }
}

.footer {
    color: #999;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.footer a {
    color: #bbb;
    text-decoration: none;
}

.footer__img {
    display: none;
}

.footer__img img {
    height: 100%;
    width: 100%;
    display: block;
}

.footer h3 {
    margin-top: 0px;
    margin-bottom: .5rem;
    font-size: 1rem;
    color: white;
}

.footer__content {
    height: 600px;
    background: black;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding-top: 20px;
}

.footer__menu {
    padding: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-around;
    gap: .5rem;
    line-height: 1.2rem;
    font-size: .95rem;
}

.footer__menu-item {
    border-radius: 5px;
    flex: 0 1 auto;
    padding: .5rem;
    text-align: center;
}

.footer__menu-item ul {
    list-style: none;
    padding-left: 10px;
    margin-top: 0px;
}

.footer__menu-item li {
    color: #999;
}

.footer__content-side {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: .95rem;
}

.footer__contact {
    border-bottom: 1px solid #999;
    color: #bbb;
    padding: 40px;
}

.footer__signup {
    color: #bbb;
    padding: 40px;
    height: 220px;
}

.footer__signup input {
    padding: 8px;
    border: none;
    border-radius: 0;
    align-self: stretch;
    outline: none;
    vertical-align: middle;
}

.newsletter-signup__container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__signup button {
    background-color: var(--primary-color);
    color: white;
    padding: 4px 15px 3px;
    font-size: 1.3rem;
    margin-left: -5px;
    border: none;
    outline: none;
    cursor: pointer;
    vertical-align: middle;
}

.footer__bottom {
    width: 100%;
    background: black;
    text-align: center;
    padding: 20px;
    line-height: 2rem;
    border-top: 1px solid #999;
}

@media (min-width: 992px) {
    .footer__img {
        display: block;
    }
    .footer__menu {
        display: block;
        width: 800px;
        -moz-columns: 250px 3;
             columns: 250px 3;
        -moz-column-gap: 0;
             column-gap: 0;
        border-right: 1px solid #999;
    }
    .footer__menu-item {
        text-align: left;
        display: inline-block;
    }
    .footer__content {
        flex-direction: row;
    }
    .footer__content-side {
        width: 375px;
        text-align: left;
    }
    .newsletter-signup__container {
        justify-content: left;
    }
}

.content-area__cards {
    display: flex;
    flex-direction: column;
    grid-template-columns: repeat( 1, 1fr );
    gap: 20px 20px;
    padding: 20px 0;
}

.content-area__card {
    height: 100%;
    min-height: 300px;
    max-width: 90vw;
    overflow: hidden;
    box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.15);
    background-color: white;
}

.content-area__card-image-wrapper {
    aspect-ratio: 5/3;
}

.card-image {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
}

.content-area__card-link {
    flex: 1;
    text-decoration: none;
}

.content-area__card-text {
    padding: 20px 20px;
}

.content-area__card-title {
    color: var(--accent-color);
    font-weight: 200;
    margin-top: 0;
}

.content-area__card-excerpt {
    font-size: .75rem;
    color: #6e6e6e;
    margin-bottom: 1rem;
}

@media (min-width: 576px) {
    .content-area__cards {
        display: grid;
        grid-template-columns: repeat(2, 300px );
        padding: 20px;
        flex-direction: row;
    }
}

@media (min-width: 992px) {
    .content-area__card {
        min-height: 300px;
    }
}

@media (min-width: 1200px) {
    .content-area__cards {
        display: grid;
        grid-template-columns: repeat( 3, 300px );
    }
}

.slideshow {
    position: relative;
    height: 800px;
    max-height: 100vh;
}

.slideshow__slideshow {
    position: relative;
    height: 800px;
    max-height: 100vh;
    background: #555;
    overflow: hidden;
}

.slideshow__slideshow-img {
    display: none;
    margin: auto;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.slideshow__slideshow-img--active {
    display: block;                
}

.slideshow__dots-container {
    position: absolute;
    bottom: 360px;
    width: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow__dot {
    height: 20px;
    width: 20px;
    border-radius: 20px;
    background: rgba( 255, 255, 255, .25);
    border: 1px solid white;
    margin-right: 20px;
}

.slideshow__dot--active {
    background: white;
}

.slideshow__dot:last-child {
    margin: 0px;
}

.slideshow__overlay {
    position: absolute;
    bottom: 0px;
    height: 350px;
    width: 100%;
    background: rgba( 193, 14, 33, 0.95 );
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slideshow__overlay p {
    max-width: 700px;
    text-align: center;
    margin-bottom: 40px;
    padding: 0 30px;
    font-size: 0.75rem;
    line-height: 1.5rem;
}

.slideshow__overlay-buttons button {
    border: 2px solid white;
    color: white;
    border-radius: 25px;
    padding: 5px 10px;
    background: unset;
    outline: none;
    cursor: pointer;
    margin-right: 20px;
}

.slideshow__overlay-button,
.slideshow__overlay-button:link,
.slideshow__overlay-button:visited,
.slideshow__overlay-button:hover
{
    border: 2px solid white;
    color: white;
    border-radius: 25px;
    padding: 5px 10px;
    background: unset;
    outline: none;
    cursor: pointer;
    margin-right: 20px;
    text-decoration: none;
}

.slideshow__overlay-buttons button:last-child {
    margin-right: 0px;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .25}
    to {opacity: 1}
}

@media (min-width: 576px) {
    .slideshow__overlay {
        height: 300px;
    }
    .slideshow__dots-container {
        bottom: 310px;
    }
    .slideshow__overlay p {
        font-size: 1rem;
    }
}

.content-area h1 {
	font: normal normal 900 40px/50px Merriweather, serif;
	color: var( --theme-primary-color, var(--secondary-color) );
}

.content-area h2 {
	font: italic normal normal 22px/28px Merriweather, serif;
}

.content-area p {
	font: normal normal normal 18px/22px Montserrat, sans-serif;
}

.content-area__spacer {
	display: none;
	max-width: 320px;
	flex: 1;
}

.section-header {
	color: #d1b471;
}

.article-area {
    display: flex;
	flex-direction: column;
	flex: 1;
    gap: 10px;
    min-height: 600px;
    align-items: stretch;
	width: 100%;
	justify-content: center;
}

.article-area img {
	-o-object-fit: contain;
	   object-fit: contain;
}

.article-text {
	max-width: 90%;
}

.article__heroimage {
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
	width: 100vw;
	height: 450px;
}

.article__heroimage__container {
	display: none;
	height: 450px;
}

.header-guide-link__container.stack {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 75px; right: 75px;
	align-items: center;
}

.header-guide-link__container .guide-link__image {
	height: 250px;
}

.guide-link__container {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	margin-top: 20px;
}

.guide-link__text {
	color: var( --theme-primary-color, --secondary-color );
    font-weight: bold;
    font-family: serif;
    font-size: 1.15rem;
	font-family: 'Merriweather';
    width: 217px;
    text-align: center;
}

.guide-link__image {
	height: 375px;
	-o-object-fit: fill;
	   object-fit: fill;
}

.guide-link__container.stack .guide-link__image {
	margin-bottom: 0;
}

.guide-link__download {
	font: normal normal bold 14px/20px Montserrat, sans-serif;
	text-decoration: none;
	color: white;
	background-color: var( --theme-primary-color, var(--secondary-color) );
	padding: 6px;
	padding-left: 20px;
	padding-right: 20px;
	border-radius: 30px;
	width: 215px;
	text-align: center;
}

.guide-dropdown__container {
	font: normal normal bold 16px/20px Montserrat, sans-serif;
	background-color: var( --theme-primary-color, var(--secondary-color) );
	border-radius: 16px;
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
}

.guide-drop__primary-container {
	display: flex;
	padding: 6px;
	padding-left: 20px;
	padding-right: 20px;
	cursor: pointer;
}

.guide-dropdown__primary-link {
	color: white;
	text-decoration: none;
	padding-right: 7px;
}

.guide-dropdown__expander {
	color: white;
	padding-left: 7px;
}

.guide-dropdown__list-anchor {
	position: relative;
	width: 100%;
}

.guide-dropdown__list {
	position: absolute;
	width: 100%;
	/* border-radius: 10px; */
	background-color: white;
	border: 1px solid black;
	/* display: flex; */
	padding: 14px;
	padding-left: 20px;
	padding-right: 20px;
}

.guide-dropdown__list-item a {
	color: black;
	text-decoration: none;
}

.guide-dropdown__list-item a:hover {
	text-decoration: underline;
}

.page-navigation {
	display: flex;
	justify-content: end;
}

.page-navigation__link,
.page-navigation__link:visited,
.page-navigation__link:active {
	background: var( --theme-primary-color, var(--secondary-color) );
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
	margin-left: 20px;
}

.article-ad_top {
	max-width: 720px;
	margin-top: 20px;
}

.blue-section {
	background-color: #e2f2fb;
    padding: .75rem;
}

figcaption {
	width: 20rem;
	font-size: 10px;
	font-family: Montserrat, sans-serif;
}

.fig-caption-bold {
	font-weight: bold;
}

.fig-caption-italic {
	font-style: italic;
}

.figure-container {
	display: inline-block;
	text-align: center;
}

@media (min-width: 992px) {

	.article-area {
		min-width: 600px;
		justify-content: space-between;
		flex-direction: row;
	}

	.article-text {
		margin-top: unset;
		width: 1000px;
		max-width: 1000px;
	}

	.content-area__spacer {
		display: unset;
	}

    .article__heroimage__container {
		display: block;
	}

	.guide-link__container.stack {
		float: right;
		display: none;
		flex-direction: column;
		align-items: center;
		position: relative;
		margin: -300px -30px 20px 20px;
	}

	.guide-link__container--with-ad {
		float: right;
		display: flex;
		flex-direction: column;
		align-items: center;
		position: relative;
		margin: 25px -30px 20px 20px;
	}

	
}

@media (min-width: 1400px) {
	.guide-link__container.stack {
		display: flex;
	}
	.guide-link__container--with-ad {
		float: right;
		display: flex;
		flex-direction: column;
		align-items: center;
		position: relative;
		margin: -470px -30px 20px 20px;
	}

	.header-guide-link__container.stack {
		display: none;
	}
}

@media (max-width:992px) {
	.article-text {
		align-self: center;
		margin-bottom: 2rem;
	}
}

.side-menu__wrapper {
	display: none;
	left: 0px;
	margin-right: 60px;
	width: 320px;
}

.side-menu__title {
	font: normal normal 600 15px/11px Montserrat, sans-serif;
	mix-blend-mode: multiply;
	opacity: 1;
	padding: 20px;
	line-height: 15px;
	flex: 1;
}

.side-menu {
	width: 320px;
	height: calc( 100% + 200px );
	background-color: #F2F2F2;
	box-shadow: 3px 3px 10px #00000040;
}

.side-menu__search {
	position: relative;
	padding: 20px;
}

.side-menu__search-input {
	width: 100%;
	padding-left: 20px;
	height: 40px;
	border: 1px solid #9C9C9C;
	border-radius: 30px;
}

.side-menu__search-icon {
	position: absolute;
	color: #4D4D4D;
	right: 40px;
	top: 32px;
}

.side-menu__search-input + .side-menu__search-icon.search-icon {
	display: none;
}

.side-menu__search-input:-moz-placeholder + .side-menu__search-icon.search-icon {
	display: inline-block
}

.side-menu__search-input:placeholder-shown + .side-menu__search-icon.search-icon {
	display: inline-block
}

.side-menu__search-input:-moz-placeholder + .side-menu__search-icon.search-icon + .clear-icon {
	display: none;
}

.side-menu__search-input:placeholder-shown + .side-menu__search-icon.search-icon + .clear-icon {
	display: none;
}

span.clear-icon {
	cursor: pointer;
}

.hidden {
	display: none;
}

.side-menu__items {
    list-style-type: none;
	margin: 0;
	padding: 0;
}

.side-menu__item {
	font: normal normal 600 15px/11px Montserrat, sans-serif;
	color : #4D4D4D;
	background-color: #e6e6e6;
	mix-blend-mode: multiply;
	opacity: 1;
	padding: 10px;
	padding-left: 20px;
	padding-right: 20px;
	border-top: 1px solid #9C9C9C;
	line-height: 15px;
}

.side-menu__item.current-page,
.side-menu__item.current-page a,
.side-menu__item.current-page a:hover,
.side-menu__item.current-page span {
	cursor: default;
    background: #b1b1b1;
	color: #303030;
	text-decoration: none;
}

.side-menu__item.expanded {
	background-color: #F2F2F2;
}

.side-menu__item a {
	text-decoration: none;
	color : #4D4D4D;
}

.side-menu__item a:visited {
	text-decoration: none;
	color : #4D4D4D;
}

.side-menu__item a:hover {
	text-decoration: underline;
}

.side-menu__item__expanded {
	color : #4D4D4D;
	background-color : #9C9C9C;
}

.side-menu__item__subitems {
	list-style-type: none;
	padding: 10px;
}

.expandable ul {
	display: none;
}

.expandable {
	padding: 0;
}

.expandable span {
	cursor: pointer;
}

.expandable.expanded ul {
	display: block;
}

.expandable.expanded svg.fa-caret-right {
	display: none;
}

.expandable svg.fa-caret-down {
	display: none;
}

.expandable.expanded svg.fa-caret-down {
	display: inline;
}

.side-menu__item__subitems {
	display: none;
	padding: 0;
}

.side-menu__item__subitem {
	padding: 10px;
    padding-left: 40px;
    padding-right: 40px;
	border-top: 1px solid #9c9c9c;
}

.side-menu__item-expander {
	width: 100%;
	display: inline-block;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 992px) {
    .side-menu__wrapper {
		display: block;
	}
}

.modal-menu__wrapper {
	display: none;
}

.article__header-menu {
	margin-top: 20px;
	background-color: #F2F2F2;
	box-shadow: 3px 3px 10px #00000040;
	display: flex;
	align-items: center;
	padding: .75rem;
}

.header-menu__title {
	font: normal normal 600 15px/11px Montserrat, sans-serif;
	mix-blend-mode: multiply;
	opacity: 1;
	line-height: 15px;
	flex: 1;
}

.category-modal__cover {
    position: absolute;
    background-color: rgba( 100, 100, 100, .5);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.category-modal__cover.hidden {
    display: none;
}

.article__category-modal {
    position: absolute;
    top: 1rem;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    background-color: white;
    z-index: 100;
}

.article__category-modal.hidden {
    display: none;
}

.category-menu__top {
    display: flex;
    justify-content: right;
	background-color: #F2F2F2;
	display: flex;
	align-items: center;
	font: normal normal 600 15px/11px Montserrat, sans-serif;
	mix-blend-mode: multiply;
	opacity: 1;
	line-height: 15px;
	padding-left: .75rem;
	padding-top: .75rem;
	padding-bottom: .75rem;
	/* flex: 1; */
}

.category-modal__closer {
    padding: .75rem;
	font-size: 1.25rem;
}

.modal-menu__items {
    list-style-type: none;
	margin: 0;
	padding: 0;
	box-shadow: 3px 3px 10px #00000040;
    overflow: scroll;
}

.modal-menu__item {
	font: normal normal 600 15px/11px Montserrat, sans-serif;
	color : #4D4D4D;
	background-color: #e6e6e6;
	mix-blend-mode: multiply;
	opacity: 1;
	padding: 10px;
	padding-left: 20px;
	padding-right: 20px;
	border-top: 1px solid #9C9C9C;
	line-height: 15px;
}

.modal-menu__item span.current-page:before {
    content:"\A";
    width:10px;
    height:10px;
    border-radius:50%;
    background: #4D4D4D;
    display:inline-block;
    margin:0 10px;
}

.modal-menu__item.expanded {
	background-color: #F2F2F2;
}

.modal-menu__item a {
	text-decoration: none;
	color : #4D4D4D;
}

.modal-menu__item a:visited {
	text-decoration: none;
	color : #4D4D4D;
}

.modal-menu__item a:hover {
	text-decoration: underline;
}

.modal-menu__item__expanded {
	color : #4D4D4D;
	background-color : #9C9C9C;
}

.modal-menu__item__subitems {
	list-style-type: none;
	padding: 10px;
}

.modal-menu__item.expandable {
	padding: 0;
}

.modal-menu__item > span {
	padding: 10px;
	padding-left: 20px;
	padding-right: 20px;
}

.expandable ul {
	display: none;
}

.expandable span {
	cursor: pointer;
}

.expandable.expanded ul {
	display: block;
}

.expandable.expanded svg.fa-caret-right {
	display: none;
}

.expandable svg.fa-caret-down {
	display: none;
}

.expandable.expanded svg.fa-caret-down {
	display: inline;
}

.modal-menu__item__subitems {
	display: none;
	padding: 0;
}

.modal-menu__item__subitem {
	padding: 10px;
    padding-left: 40px;
    padding-right: 40px;
	border-top: 1px solid #9C9C9C;
}

.modal-menu__item-expander {
	width: 100%;
	display: inline-block;
}

.modal-menu__page-selector {
	/* padding: .35rem; */
	padding-left: .75rem;
	font-size: 1.25rem;
}

@media (max-width:991px) {
	.modal-menu__wrapper {
		display: block;
	}
	.modal-menu__title {
		padding: 0;
	}
}

.hero-container {
    position: relative;
    height: 800px;
    max-height: 100vh;
    background: #555;
    overflow: hidden;
}

.hero__background-image {
    margin: auto;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.hero__guide-image {
	position: absolute;
    margin: auto;
	height: 65%;
	/* margin-top: -25%; */
	transform: translate(-50%, -50%);
	top: 58%;
	/* left: 150px; */
	left: 30%;
	max-width: 90%;
    -o-object-fit: contain;
       object-fit: contain;
}

.hero__logo-image {
	position: absolute;
    margin: auto;
	top: 25%;
	left: 50%;
	transform: translate(-50%, -50%);
    -o-object-fit: contain;
       object-fit: contain;
}

@media (max-width: 1260px) {
	.hero__guide-image {
		left: 50%;
		top: 45%;
	}
	.hero__logo-image {
		display: none;
	}
}

.hero__foreground-shadow {
    position: absolute;
    background: transparent linear-gradient(180deg, #000000 0%, #00000000 100%) 0% 0% no-repeat padding-box;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    opacity: 0.7;
}

.hero__overlay {
    position: absolute;
    bottom: 0px;
    height: 350px;
    width: 100%;
    background: rgba( 193, 14, 33, 0.95 );
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero__overlay p {
    font-family: Merriweather;
    max-width: 700px;
    text-align: center;
    margin-bottom: 40px;
    padding: 0 30px;
    font-size: 0.85rem;
}

.hero__overlay-button,
.hero__overlay-button:link,
.hero__overlay-button:visited,
.hero__overlay-button:hover
{
    border: 2px solid white;
    color: white;
    border-radius: 25px;
    padding: 5px 10px;
    background: unset;
    outline: none;
    cursor: pointer;
    margin-right: 20px;
    text-decoration: none;
    font-weight: 700;
}

.hero__overlay-button:hover {
    color: rgba( 193, 14, 33, 0.95 );
    background-color: white;
}

.hero__overlay-buttons button:last-child {
    margin-right: 0px;
}

@media (min-width: 576px) {
    .hero__overlay {
        height: 300px;
    }
    .hero__overlay p {
        font-size: 1.15rem;
    }
}

.index-ad__container {
    display: flex;
    align-content: center;
    justify-content: center;
    background: #eee;
    padding: 20px;
}

.stack {
    display: flex;
    flex-direction: column;
}

.stack > *:not( :last-child ) {
    margin-bottom: 10px;
}

:root {
    --primary-color: #D1B471;
    --secondary-color: #C10E21;
    --accent-color: #113C64;
}

html, body {
    margin: 0px;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
}

table {
	overflow-x: auto;
	width: -moz-fit-content;
	width: fit-content;
    max-width: 100%;
}

.centered-content {
    margin-top: 80px;
    margin-left: 1rem;
    margin-right: 1rem;
    max-width: 1150px;
}

.centered-text {
    text-align: center;
}

@media ( min-width: 1200px ) {
    .centered-content {
        margin: auto;
        margin-top: 80px;
    }
}

.content-area__line {
    display: none;
    position: relative;
    align-self: stretch;
    margin: 20px 40px 0px 40px;
}

.content-area__ads {
    display: none;
    flex-direction: column;
    padding-top: 20px;
    margin-right: 60px;
}

.content-area__ads > *:not( :first-of-type ){
    margin-top: 40px;
}

.content-area__ad {
    background: #999;
    margin-bottom: 40px;
    height: 600px;
    width: 160px;
}

.index-content {
    display: flex;
    justify-content: center;
    background-color: #f5f5f5;
    margin-bottom: 2rem;
}

.nested-table {
    padding-top: 0px;
    padding-bottom: 0px;
}

.nested-table-cell {
    padding-right: 63px;
    border-right: 1px solid  rgb(128, 128, 128)
}

.nested-table-cell-border{
    border-left: 1px solid  rgb(0, 0, 0);
}

@media (min-width: 992px) {
    .content-area__ads {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }
    .content-area__line {
        display: inline-block;
    }
    .content-area__line::after {
        position: absolute;
        top: 0px;
        left: 0px;
        content: '';
        border-right: 1px solid black;
        height: calc( 100% - 20px );
    }
}