* {
    margin: 0;
    padding: 0;
}

li {
    list-style: none
}

img {
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

a:link {
    text-decoration: none;
    color: inherit;
}

a:visited {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

a:active {
    text-decoration: none;
    color: inherit;
}

.Header {
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    height: 75px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transition: transform 0.3s ease;
    z-index: 1000;
    background: #f6f4ee;
    border-bottom: 1px solid #d6d3cc;
    box-shadow: 0 10px 35px rgba(210, 197, 158, 0.6);
}

.Header--hidden {
    transform: translateY(-100%);
}

.HeaderContent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
    max-width: 1700px;
    margin: 0 auto;
}

.HeaderBurger {
    height: 32px;
    margin-top: 4px;
    padding-left: 3%;
}

.HeaderBurger {
    filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 25px rgba(255, 255, 255, 0.6));
}

.HeaderBurger:hover {
    transform: scale(1.1)
}

.HeaderLogo {
    margin: 0 auto;
}

.HeaderLogo img {
    filter:
        drop-shadow(0 0 7px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 25px rgba(255, 255, 255, 0.6));
}

.HeaderTagline {
    display: flex;
    z-index: 100;
    font-family: omnes-pro, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #000000;
    text-shadow: 5px 5px 15px rgb(255, 255, 255);
    text-transform: uppercase;
    font-size: 17px;
    line-height: 1.2;
    width: 150px;
    text-align: center;
    padding-right: 3%;
}

@media screen and (max-width: 600px) {
    .HeaderTagline {
        font-size: 15px;
        width: 90px;
    }
}

@media screen and (max-width: 425px) {
    .HeaderTagline {
        display: none;
    }
}

.DropdownMenu {
    background: #F7F7F7;
    top: 0;
    transition: transform 1s ease;
    width: fit-content;
    height: 100vh;
    padding: 0 15px;
    position: fixed;
    z-index: 1000;
    overflow-y: scroll;
}

.DropdownMenu--hidden {
    transform: translateX(-100%);
}

@media screen and (max-width: 600px) {
    .DropdownMenu {
        width: 100vw;
        padding: 0;
    }
}


.DropdownMenu__Logo {
    display: block;
    width: fit-content;
    margin: 25px auto;
}

@media screen and (max-width: 600px) {
    .DropdownMenu__Logo {
        margin: 25px 15px;
    }
}

@media screen and (max-width: 340px) {
    .DropdownMenu__Logo img {
        width: 75vw;
        height: auto;
    }
}

.DropdownMenu__Exit {
    position: absolute;
    height: 35px;
    width: 35px;
    top: 35px;
    right: 35px;
}

.DropdownMenu__Exit:hover {
    transform: scale(1.2);
}

@media screen and (max-width: 425px) {
    .DropdownMenu__Exit {
        right: 20px;
    }
}

.DropdownMenu__Content {
    display: flex;
    flex-direction: row;
}

@media screen and (max-width: 600px) {
    .DropdownMenu__Content {
        flex-direction: column;
    }
}

.DropdownMenu__Section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 15px;
}


.MenuTitle {
    font-family: haboro-contrast-condensed, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #262626;
    text-transform: uppercase;
    display: block;
}

.DropdownMenu__Title {
    text-align: center;
    font-size: 27px;
    padding-bottom: 20px;
}

.FooterTitle {
    font-size: 20px;
    padding: 10px 0;
    margin-left: -5px;
}

.MenuSubtitle {
    font-family: haboro-contrast-condensed, sans-serif;
    font-weight: 800;
    font-style: normal;
    color: #262626;
    text-transform: uppercase;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px 0;
}

.DropdownSubtitle {
    font-size: 22px;

}

.FooterSubtitle {
    font-size: 16px;
    padding: 10px 0;
}

.MenuHeading {
    font-family: omnes-pro, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #203F59;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}

.DropdownMenu__Heading {
    font-size: 20px;
    padding: 20px 0 10px 0;
}

.FooterHeading {
    padding: 15px 0;
    font-size: 16px;
}

.MenuItem {
    font-family: omnes-pro, sans-serif;
    font-weight: 300;
    font-style: normal;
    text-transform: uppercase;
    color: #3B668C;
    padding: 8px 8px 8px 2px;
    line-height: 1;
    list-style-type: circle;
}

.DropdownItem {
    font-size: 18px;
    margin-left: 35px;
}


.FooterItem {
    font-size: 16px;
    margin-left: 20px;
}

.DropdownMenu--hover:hover a {
    background-color: beige;
}

.Footer {
    background: #F7F7F7;
    margin-top: 50px;
    display: flex;
}

.FooterContent {
    padding: 25px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    width: 90%;
    overflow-x: hidden;
}

.FooterLogo {
    margin: 25px 0;
}

.FooterWrap {
    display: flex;
    flex-direction: row;
}

@media screen and (max-width: 600px) {
    .FooterWrap {
        flex-direction: column;
    }
}

.FooterSection {
    padding: 5px 25px;
}

.FooterText {
    font-family: omnes-pro, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
    color: #4B5563;
    padding: 25px 0 50px 0;
    max-width: 90%;
    text-wrap: wrap;
}

.FooterLegalLinks a {
    padding: 1px 0 15px 0;
}

.FooterLegalLinks {
    padding-bottom: 20px;
    width: 100%;
}

.FooterLegalBreak {
    padding: 0 10px;
}


.ExploreHeroTitle {
    color: #1e1e1e;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    line-height: 1.0;
    padding: 15px 0;
    font-family: "haboro-contrast-normal", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 52px;
    margin-left: -3px;
}

@media screen and (max-width: 999px) {
    .ExploreHeroTitle {
        font-size: 42px;
        padding: 10px 0;
    }
}

@media screen and (max-width: 450px) {
    .ExploreHeroTitle {
        line-height: 1.2;
        font-size: 40px;
    }
}

.ExploreHeroTitleSpanish {
    color: #112230;
    text-transform: uppercase;
    font-family: "haboro-contrast-condensed", sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: 24px;
    padding: 15px 0 0 0;
}

@media screen and (max-width: 999px) {
    .ExploreHeroTitleSpanish {
        padding: 9px 0 14px 0;
        font-size: 22px;
    }
}

.HeroImage {
    margin: 25px;
}

@media screen and (max-width: 999px) {
    .HeroImage {
        margin: 2.5vw auto;
    }
}


.HeroImage img {
    height: 525px;
    width: 1050px;
    border: 2px solid black;
    margin: 0 auto;
}

@media screen and (min-width: 999px) and (max-width: 1500px) {
    .HeroImage img {
        width: calc(100vw - 500px);
        object-fit: cover;
    }
}

@media screen and (max-width: 999px) {
    .HeroImage img {
        width: 95vw;
        object-fit: cover;
    }
}

@media screen and (max-width: 551px) {
    .HeroImage img {
        width: 95vw;
        height: 95vw;
    }
}

.HeroBackground {
    padding-top: 75px;
    background: #fffce8;
}

.ExploreBullets {
    display: flex;
    flex-direction: column;
    font-family: omnes-pro, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 21px;
    color: #1e1e1e;
    margin: 0 15px;
    padding: 25px 0;
    max-width: 85vw;
    line-height: 1.35;
}

.ExploreBullets li {
    list-style-type: disc;
    padding: 6px 0;
}

@media screen and (max-width: 999px) {
    .ExploreBullets {
        padding: 0 0 2px 0;
        font-size: 20px;
    }

    .ExploreBullets li {
        padding: 3px 0;
    }
}

.HeroMargins {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

@media screen and (max-width: 999px) {
    .HeroMargins {
        flex-direction: column;
        align-items: flex-start;
    }
}

.ArticleHeroText {
    margin: 25px;
    max-width: 500px;
}

.ExploreHeroText {
    margin: 25px 0 25px 25px;
}

@media screen and (max-width: 999px) {
    .ExploreHeroText {
        margin: 10px 25px 0 25px;
    }

    .ArticleHeroText {
        max-width: 95vw;
        width: calc(100vw-50px);
        margin: 0 25px;
    }
}

@media screen and (max-width: 450px) {
    .ExploreHeroText {
        margin: 15px 10px 0 15px;
    }
}

.PageSectionWrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px 0;
}

.PageSection {
    font-family: haboro-contrast-condensed, sans-serif;
    font-weight: 100;
    font-style: normal;
    color: #203F59;
    font-size: 20px;
    text-transform: uppercase;
    line-height: 1;
    padding: 1px 15px 0 0;
}

.PageCategory {
    font-family: omnes-pro, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
    text-transform: uppercase;
    color: #3B668C;
    line-height: 1;
}

@media screen and (max-width: 450px) {
    .PageSection {
        padding-top: 0;
    }
}

.ArticleHeroHeadings {
    display: flex;
    flex-direction: column;
    padding: 25px 0;
}

@media screen and (max-width: 999px) {
    .ArticleHeroHeadings {
        padding: 0;
    }
}

.ArticleHeroHeadings h1 {
    font-family: omnes-pro, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 38px;
    color: #000000;
    padding-bottom: 25px;
}

@media screen and (max-width: 999px) {
    .ArticleHeroHeadings h1 {
        padding-bottom: 15px;
    }
}

.ArticleHeroHeadings h2 {
    font-family: omnes-pro, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 26px;
    line-height: 1.5;
    color: #000000;
}

@media screen and (max-width: 1100px) {
    .ArticleHeroHeadings h1 {
        font-size: 35px;
    }

    .ArticleHeroHeadings h2 {
        font-size: 23px;
    }
}

@media screen and (max-width: 600px) {
    .ArticleHeroHeadings h1 {
        font-size: 30px;
    }

    .ArticleHeroHeadings h2 {
        font-size: 22px;
    }
}

.ArticleHeroImage {
    margin: 30px 25px;
}

@media screen and (max-width: 999px) {
    .ArticleHeroImage {
        margin: 15px auto;
        display: flex;
        justify-content: center;
    }
}

.ArticleHeroImage img {
    width: 650px;
    border: 1px solid black;
}

@media screen and (min-width: 1000px) and (max-width: 1250px) {
    .ArticleHeroImage img {
        width: 50vw;
    }
}

@media screen and (max-width: 999px) {
    .ArticleHeroImage img {
        width: 95%;
        max-width: 650px;
    }
}

.QuickLinks {
    background: #F7F7F7;
    padding: 4px;
    margin-bottom: 10px;
}

@media screen and (max-width: 450px) {
    .QuickLinks {
        padding-bottom: 10px;
        margin-bottom: 0;
    }
}

.QuickLinksWrap {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    flex-wrap: wrap;
}

.QuickLinksText {
    font-family: omnes-pro, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
    text-transform: uppercase;
    color: #3B668C;
    text-align: center;
    line-height: 1;
    padding: 5px;
    margin: 0 30px;
    word-spacing: 3px;
}

.QuickLinksText:hover {
    border-bottom: 1px solid #3B668C;
}

@media screen and (max-width: 999px) {
    .QuickLinksWrap {
        justify-content: left;
    }

    .QuickLinksText {
        margin: 3px 15px;
    }
}

@media screen and (max-width: 999px) {
    .QuickLinksText {
        list-style-type: disc;
        margin-left: 35px;
        text-align: left;
    }
}

.BreadcrumbWrap {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    font-family: omnes-pro, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    text-transform: uppercase;
    color: #262626;
    padding: 10px;
}

.Breadcrumb {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    white-space: nowrap;
    line-height: 0.75;
}

.Breadcrumb li {
    padding: 6px;
}

.Breadcrumb span {
    padding: 4px 8px;
}

.Breadcrumb li:last-of-type {
    color: #909090;
}

.BreadcrumbLink a:hover {
    border-bottom: 1px solid #262626;
}

@media screen and (max-width: 400px) {
    .BreadcrumbWrap {
        padding: 5px 2px;
    }

    .Breadcrumb li:last-of-type {
        white-space: wrap;
        line-height: 0.9;
    }
}

.Date {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-family: omnes-pro, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 17px;
    color: #262626;
    text-align: right;
    padding: 35px 5vw 0 5vw;
}

.ExploreBlockBox {
    background: transparent radial-gradient(closest-side at 50% 50%, #9EC0DDAA 0%, #FFFFFF 85%) 0% 0% no-repeat padding-box;
    display: flex;
    flex-direction: column;
}

.DiscoverBlockBox {
    background: transparent radial-gradient(closest-side at 50% 50%, #3d9a3681 0%, #FFFFFF 90%) 0% 0% no-repeat padding-box;
    display: flex;
    flex-direction: column;
    max-width: 100%
}

.ExploreTextBlock {
    max-width: 800px;
    width: 94vw;
    margin: 5px auto;
    padding-top: 20px;
    padding-right: 15vw;
    font-family: omnes-pro, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 21px;
}

@media screen and (max-width: 1200px) {
    .ExploreTextBlock {
        padding-right: 0;
    }
}

.StackWrap {
    display: flex;
    flex-wrap: wrap;
    margin: 25px auto;
    justify-content: center;
    max-width: 1800px;
}

.StackCard {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
}

.StackTextBox {
    display: flex;
    width: 302px;
    box-sizing: border-box;
    min-height: 190px;
    background: #FFFFFF;
    border: 1px solid #203F59;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 0 0 15px 15px;
    padding: 5px;
}

.StackHeading {
    display: flex;
    padding: 15px 10px 5px 10px;
    font-family: haboro-contrast-condensed, sans-serif;
    font-style: normal;
    font-weight: 100;
    font-size: 23px;
    text-transform: uppercase;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #000000;
    min-height: 50px;
}

.StackText {
    padding: 10px 15px;
    font-family: omnes-pro, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 19px;
    color: #262626;
}

.StackBullet {
    font-family: omnes-pro, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    color: #262626;
    text-align: center;
    padding: 10px 15px;
    line-height: 1.35;
}

.StackImage {
    width: 300px;
    border: 1px solid #203F59;
    display: block;
    margin-bottom: 3px;
}

.StackImage img {
    display: block;
}

@media screen and (max-width: 359px) {
    .StackImage {
        width: 85vw;
    }

    .StackTextBox {
        width: 85vw;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        padding-bottom: 10px;
    }
}

.ArticleStackWrap {
    max-width: 98vw;
    display: grid;
    align-self: center;
    margin: 30px 0 20px 0;
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-template-areas: "first first third"
        "second second third"
        "fourth fifth fifth"
        "fourth sixth sixth"
        "seven seven nine"
        "eight eight nine"
        "ten eleven eleven"
        "ten twelve twelve"
}

@media screen and (max-width: 1150px) {
    .ArticleStackWrap {
        display: flex;
        flex-direction: column;
    }
}

.ArticleStackCard {
    display: flex;
    justify-self: center;
    padding: 15px;
}

.ArticleStackCard:nth-of-type(1) {
    grid-area: first;
}

.ArticleStackCard:nth-of-type(2) {
    grid-area: second;
}

.ArticleStackCard:nth-of-type(3) {
    grid-area: third;
}

.ArticleStackCard:nth-of-type(4) {
    grid-area: fourth;
}

.ArticleStackCard:nth-of-type(5) {
    grid-area: fifth;
}

.ArticleStackCard:nth-of-type(6) {
    grid-area: sixth;
}

.ArticleStackCard:nth-of-type(7) {
    grid-area: seven;
}

.ArticleStackCard:nth-of-type(8) {
    grid-area: eight;
}

.ArticleStackCard:nth-of-type(9) {
    grid-area: nine;
}

.ArticleStackCard:nth-of-type(10) {
    grid-area: ten;
}

.ArticleStackCard:nth-of-type(11) {
    grid-area: eleven;
}

.ArticleStackCard:nth-of-type(12) {
    grid-area: twelve;
}

.ArticleStackCard:nth-of-type(3n+2) {
    flex-direction: row-reverse;
}

.ArticleStackCard:nth-of-type(3n+2) .ArticleStackTextBox {
    margin: 0 3px 0 0;
    border-radius: 15px 0 0 15px;
}

.ArticleStackCard:nth-of-type(3n+3) {
    flex-direction: column;
    justify-content: center;
}

.ArticleStackCard:nth-of-type(3n+3) .ArticleStackTextBox {
    margin: 3px 0 0 0;
    border-radius: 0 0 15px 15px;
}

@media screen and (min-width: 741px) and (max-width: 1110px) {
    .ArticleStackCard:nth-of-type(odd) {
        flex-direction: row;
    }

    .ArticleStackCard:nth-of-type(even) {
        flex-direction: row-reverse;
    }

    .ArticleStackCard:nth-of-type(odd) .ArticleStackTextBox {
        margin: 0 0 0 1px;
        border-radius: 0 15px 15px 0;
    }

    .ArticleStackCard:nth-of-type(even) .ArticleStackTextBox {
        margin: 0 1px 0 0;
        border-radius: 15px 0 0 15px;
    }
}

@media screen and (max-width: 740px) {
    .ArticleStackCard {
        flex-direction: column !important;
    }

    .ArticleStackTextBox {
        margin: 1px 0 0 0 !important;
        border-radius: 0 0 15px 15px !important;
    }
}

.ArticleStackImage {
    width: 360px;
    height: 300px;
    border: 1px solid #203F59;
    display: block;
}

.ArticleStackTextBox {
    display: flex;
    flex-direction: column;
    width: 360px;
    height: 300px;
    background: #FFFFFF;
    border: 1px solid #203F59;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 0 15px 15px 0;
    margin-left: 1px;
}

@media screen and (max-width: 380px) {
    .ArticleStackImage {
        width: 90vw;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        margin: 0 auto;
    }

    .ArticleStackTextBox {
        width: 90vw;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        margin: 0 auto;
    }
}

.ArticleStackCategories {
    display: flex;
    flex-direction: row;
    padding: 10px 15px;
}

.ArticleStackFormat {
    width: 35%;
    align-self: center;
    justify-self: center;
    font-family: omnes-pro, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 21px;
    text-transform: uppercase;
    color: #262626;
}

.ArticleStackTopicWrap {
    min-width: 65%;
    display: flex;
    flex-direction: column;
    align-self: flex-end;
}

.ArticleStackTopic {
    align-self: flex-end;
    text-align: right;
    font-family: omnes-pro, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 21px;
    text-transform: uppercase;
    color: #203F59;
}

.ArticleStackSubtopic {
    align-self: flex-end;
    text-align: right;
    font-family: omnes-pro, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 17px;
    text-transform: uppercase;
    color: #203F59;
    padding-top: 3px;
}

.ArticleStackHeadline {
    display: flex;
    padding: 0 15px 5px 15px;
    font-family: haboro-contrast-normal, sans-serif;
    font-style: normal;
    font-weight: 200;
    font-size: 23px;
    line-height: 1.3;
    color: #000000;
}

.ArticleStackSubheadline {
    padding: 5px 15px;
    font-family: haboro-contrast-normal, sans-serif;
    font-style: normal;
    font-weight: 100;
    font-size: 19px;
    line-height: 1.35;
    color: #262626;
}

.MainPage {
    background: #FFFFFF;
}

.SubheadingWrap {
    margin: 30px auto;
}

.Subheading {
    font-family: omnes-pro, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 35px;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 2px;
    word-spacing: 5px;
    color: #203F59;
}

.SubheadingLine {
    width: 125px;
    margin: 12px auto;
}

.InfoBoxWrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
}

.InfoBoxWithPhoto {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

@media screen and (min-width: 1000px) {
    .InfoBoxWithPhoto:nth-of-type(even) {
        flex-direction: row-reverse;
    }
}

@media screen and (max-width: 999px) {
    .InfoBoxWithPhoto {
        flex-direction: column;
        align-items: center;
    }
}

.InfoBox {
    display: flex;
    flex-direction: column;
    margin: 15px;
    max-width: 820px;
    width: auto;
}

@media screen and (min-width: 1000px) {
    .InfoBoxWithoutPhoto:nth-of-type(odd) {
        position: relative;
        left: -50px;
    }

    .InfoBoxWithoutPhoto:nth-of-type(even) {
        position: relative;
        left: 50px;
    }
}


.PhotoBox {
    margin: 110px 25px 20px 25px;
    position: relative;
    display: flex;
}

@media screen and (min-width: 1000px) {
    .PhotoBox {
        width: 427px;
        height: fit-content;
    }
}

.PhotoBox img {
    border: 1px solid #203F59;
    width: auto;
    height: auto;
}

@media screen and (max-width: 999px) {
    .PhotoBox {
        margin: -20px auto 25px auto;
    }
}

.InfoBoxHeadingWrap {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding: 10px 0 10px 100px;
}

@media screen and (max-width: 600px) {
    .InfoBoxHeadingWrap {
        padding-left: 15px;
    }
}

.InfoBoxHeading {
    font-family: haboro-contrast-condensed, sans-serif;
    font-style: normal;
    font-weight: 100;
    font-size: 23px;
    text-transform: uppercase;
    justify-content: center;
    padding-bottom: 20px;
    line-height: 1.5;
}

.InfoBoxLine {
    width: 120%;
    max-width: 500px;
    margin-left: -10%;
}

@media screen and (max-width: 600px) {
    .InfoBoxLine {
        width: 100%;
        max-width: 225px;
        margin-left: 0;
    }
}

.InfoBoxText {
    font-family: omnes-pro, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    padding: 25px 0;
    display: block;
    align-items: center;
    justify-content: center;
    flex: 1;
    flex-direction: column;
}

.InfoBoxText p:nth-of-type(1) {
    margin-top: 0;
}

.InfoBoxText p:last-of-type {
    margin-bottom: 0;
}

.Markdown p {
    padding: 8px 0;
    line-height: 1.6;
}

.Markdown strong {
    font-weight: bold;
}

.Markdown em {
    font-style: italic;
}

.Markdown ul li {
    list-style-type: disc;
    margin-left: 50px;
    padding: 4px 0;
}

.Markdown ol li {
    list-style-type: decimal;
    margin-left: 50px;
    padding: 4px 0;
}

.Markdown a {
    text-decoration: underline;
    text-underline-offset: 8px;
    line-height: 1.5;
    padding: 0 2px;
}

.Markdown a:hover {
    background-color: #BFE3FF34;
}

.PageMargins {
    display: flex;
    flex-direction: column;
    width: 1400px;
    max-width: 98vw;
    margin: 0 auto;
}

.PhotoBoxCaption {
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
}

.PhotoBoxCaptionText {
    font-family: omnes-pro, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 19px;
    line-height: 1.4;
    padding: 5px 10px 5px 10px;
    color: white;
}

.KeyDetailsWrap {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 0 auto;
}

.KeyDetailsBox {
    border: 1px solid #d0d0d0;
    margin: 25px 10px;
    font-family: omnes-pro, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    padding: 25px;
    width: 35%;
    min-width: 415px;
    background: transparent linear-gradient(180deg, rgba(219, 239, 255, 0.5) 0%, #FFFFFF 110px);
}

@media screen and (max-width: 500px) {
    .KeyDetailsBox {
        width: 98vw;
        max-width: 500px;
        min-width: 0px;
        margin: 10px;
    }
}

.KeyDetailsTable {
    font-family: omnes-pro, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    text-align: left;
    margin: 0 auto;
    justify-self: center;
    padding: 10px 15px;
}

@media screen and (max-width: 450px) {
    .KeyDetailsTable {
        padding: 5px 0;
        margin: 0 -15px;
    }

    .KeyDetailsTable th {
        padding: 10px 0;
    }
}

.KeyDetailsTable th {
    padding: 10px 5px;
    font-weight: 400;
}

.KeyDetailsTableTimes {
    white-space: nowrap;
}

@media screen and (max-width: 350px) {
    .KeyDetailsTableTimes {
        white-space: wrap;
    }
}

.MapWrap {
    display: flex;
    justify-content: center;
    max-width: 95vw;
    margin: 40px auto 0 auto;
}

@media screen and (max-width: 999px) {
    .MapWrap {
        flex-direction: column;
    }
}

.Map iframe {
    width: 600px !important;
    height: 95% !important;
    min-height: 550px;
    max-height: 95vh;
    border: 2px solid #203F59;
    margin: 0 30px;
}

@media screen and (max-width: 1200px) {
    .Map iframe {
        width: 45vw !important;
        min-height: 45vw !important;
    }
}

@media screen and (max-width: 999px) {
    .Map {
        margin: 0 auto 20px auto;
    }

    .Map iframe {
        width: 75vw !important;
        height: 50vw !important;
        min-height: none;
    }
}

@media screen and (max-width: 625px) {
    .Map iframe {
        width: 90vw !important;
        height: 110vw !important;
        min-height: none;
        margin: 0;
    }
}

.ButtonMenu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.ButtonContainer {
    width: 155px;
}

.ButtonIcon {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 40px;
    min-width: 125px;
    border-radius: 27px;
    padding: 1px 0px;
    margin: 8px 10px;
    border: 1px solid #023a64;
}

.ButtonIconTransport {
    background: #BFE3FF34;
}

.ButtonIconTransport:hover {
    background-color: #fae2bc;
}

.ButtonIconTransportSelected {
    background: #FFC15C;
}

.ButtonIconTransportSelected:hover {
    background: #FFC15C;
}

.ButtonIconDetails {
    background: #BFE3FF34;
}

.ButtonIconDetails:hover {
    background-color: #fae2bc;
}

.ButtonIconDetailsSelected {
    background: #FFC15C;
}

.ButtonIconDetailsSelected:hover {
    background: #FFC15C;
}

.ButtonIconInitial:first-of-type {
    background: #FFC15C;
}

.ButtonIcon img {
    height: 20px;
    width: 20px;
    margin-left: 20px;
}

.ButtonIcon span {
    font-family: omnes-pro, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    padding: 0 10px;
    color: #262626;
}

.ButtonTextBoxWrap {
    border: 1px solid #d0d0d0;
    margin: 25px 10px;
}

.ButtonTextBox {
    font-family: omnes-pro, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    min-height: 250px;
    padding: 25px;
    background: transparent linear-gradient(180deg, rgba(219, 239, 255, 0.5) 0%, #FFFFFF 110px);
}


.ButtonTextBoxDetails {
    display: none;
    max-width: 650px;
    min-height: 100px !important;
}

.ButtonTextBoxDetails:first-of-type {
    display: block;
}

.ButtonTextBoxTransport {
    display: none;
}

.ButtonTextBoxTransport:first-of-type {
    display: block;
}

.ButtonTextBoxHeading {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700;
    color: #203F59;
}

.ButtonTextBoxHeading span {
    padding: 0 15px;
}

.ArticleWrap {
    margin: 25px auto 60px auto;
    max-width: 1000px;
    width: 98%;
}

@media screen and (max-width: 999px) {
    .ArticleWrap {
        width: 100%;
    }
}

@media screen and (max-width: 450px) {
    .ArticleWrap {
        margin: 5px auto 30px auto;
    }
}

.ArticleMarkdown {
    margin: 0 auto;
    max-width: 725px;
    width: 91%;
}

.ArticleMarkdown h3 {
    font-family: haboro-contrast-regular, sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 27px;
    padding: 35px 0 15px 0;
    margin-left: -40px;
    line-height: 1.3;
}

@media screen and (max-width: 850px) {
    .ArticleMarkdown h3 {
        margin-left: -3%;
    }
}

.ArticleMarkdown p {
    font-family: haboro-contrast-regular, sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 20px;
    line-height: 39px;
    padding: 10px 0;
}


.ArticleImage {
    display: flex;
    padding: 20px 0;
}

@media screen and (max-width: 999px) {
    .ArticleImage {
        flex-direction: column;
    }
}

.ArticleImage:nth-of-type(even) {
    justify-content: flex-start;
}

.ArticleImage:nth-of-type(odd) {
    justify-content: flex-end;
}

.ArticleImagePicture {
    border: 1px solid black;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

.ArticleImagePicture img {
    display: block;
    max-height: 600px;
}

@media screen and (min-width: 1000px) {
    .ArticleImage:nth-of-type(even) .ArticleImagePicture {
        order: 3;
    }
}

@media screen and (max-width: 999px) {
    .ArticleImagePicture {
        margin: 0 auto;
        justify-content: center;
    }
}

@media screen and (max-width: 770px) {
    .ArticleImageLandscape {
        border: none;
    }
}

@media screen and (max-width: 550px) {
    .ArticleImagePortrait {
        border: none;
    }
}

.ArticleImageCaption {
    width: 250px;
    font-family: halcom, sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 21px;
    line-height: 30px;
    padding: 0 25px;
    order: 2;
}

@media screen and (max-width: 999px) {
    .ArticleImageCaption {
        max-width: 700px;
        width: 90%;
        padding: 15px 0 0 0;
        margin: 0 auto;
    }
}

@media screen and (max-width: 999px) {
    .ArticleCaptionPortrait {
        max-width: 500px !important;
    }
}

.Hero404 {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    font-family: omnes-pro, sans-serif;
    font-weight: 400;
    font-style: normal;
    width: 80vw;
    max-width: 1000px;
    padding-bottom: 30px;
}

.Headline404 {
    font-size: 40px;
    padding: 25px 0;
    color: #203F59;
}

.SubHeadline404 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 28px;
    padding: 15px 50px;
    color: #262626;
}

@media screen and (max-width: 999px) {
    .Hero404 {
        padding: 25px;
        max-width: 80%;
    }

    .Headline404 {
        padding: 10px 0;
        font-size: 30px;
    }

    .SubHeadline404 {
        font-size: 22px;
        padding: 20px 15px;
    }
}

.ArrowRight404 {
    display: inline-flex;
    height: 25px;
    position: relative;
    top: 5px;
    left: 10px;
}

.ArrowDown404 {
    display: inline-flex;
    height: 25px;
    position: relative;
    top: 5px;
    left: 15px;
}

.Menu404 {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.SubheadingMinor404 {
    font-size: 24px;
}