/** Top Navigation links */

/* Positioning */
.front-nav {
    z-index: 2;

    position: sticky;
    top: 0;
    padding: 20px 30px;
    height: 76px;
    box-sizing: border-box;
    width: 50vw;
    margin-left: 50%;
}
.front-nav + .main-banner {
    margin-top: -76px;
}
@media screen and (max-width: 800px) {
    .front-nav {
        padding: 15px 15px;
        height: 62px;
    }
    .front-nav + .main-banner {
        margin-top: -62px;
    }
}

@media screen and (max-width: 600px) {
    .front-nav {
        position: relative;
    }
}

.front-nav .list, .front-nav .list li {
    /* Reset */
    display: block;
    margin: 0;
    padding: 0;
}
.front-nav .list {
    display: flex;
    justify-content: flex-end;
}


/* Styling */
.front-nav .list a {
    color: #1c3150;
    text-transform: uppercase;
    border-bottom: 0;
    display: inline-block;
    border-width: 1px;
    border-style: solid;
    border-radius: .346154512em; /*6px*/
    padding-top: .288462093em; /*5px*/
    padding-bottom: .288462093em; /*5px*/
    padding-left: .86538628em; /*15px*/
    padding-right: .86538628em; /*15px*/
}
.front-nav .list li {
    margin-right: 20px;
}
.front-nav .list li:last-child {
    margin-right: 0;
}
@media screen and (max-width: 800px) {
    .front-nav .list li {
        margin-right: 15px;
    }
    .front-nav .list li:last-child {
        margin-right: 0;
    }
}

/** Main banner */
.main-banner {
    display: flex;
    align-items: end;
    padding: 105px;
    padding-bottom: 65px;
}
@media screen and (max-width: 1280px){
    .main-banner {
        padding-left: 0;
        padding-right: 0;
    }
}
.main-banner .background, .main-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.main-banner img {
    position: relative;
    width: 100%;
}
.main-banner .background {
    background: rgba(220, 220, 220, 1);
}
.main-banner img {
    object-fit: cover;
}
.main-banner .title {
    position: relative;
    z-index: 1;
}
.main-banner .title h1 {
    text-transform: uppercase;
    font-size: 72px;
    line-height: 1.259; /* 90px / 72px */
    margin: 0;
}
@media screen and (max-width: 800px){
    .main-banner .title h1 {
        font-size: 58px;
    }
}
@media screen and (max-width: 550px){
    .main-banner .title h1 {
        font-size: 36px;
    }
}
@media screen and (max-width: 360px){
    .main-banner .title h1 {
        font-size: 27px;
    }
}


.main-banner .title h1, .main-banner .title .date {
    color: #1c3150;
}
.main-banner .title h1 span, .main-banner .title .date span {
    display: inline-block;
    padding: 0 0.23em; /* 16px */
    background: rgba(255, 255, 255, .8);
}
.main-banner .title h1 span:first-child {
    padding-top: .11em; /* 8px */
}
.main-banner .title h1 span:last-child {
    padding-bottom: .139em; /* 10px; */
}

.main-banner .title .date span {
    padding: 0 0.93em; /* 16px */
}
.main-banner .title .date span {
    padding-top: .23em; /* 4px */
    padding-bottom: .46em; /* 8px; */
}

/** Sticky title */
.main-banner, .main-banner .background {
    height: calc( 2000 / 2560 * 100vw ); /* the two values are image height and width */
}
@media (orientation: portrait) and (max-width: 1170px) {
    .main-banner, .main-banner .background {
        height: calc( 1560 / 1170 * 100vw ); /* the two values are image height and width */
    }
}
.main-banner .title {
    position: sticky;
    bottom: 65px;
}

/** Main body text styling */
.front-page-content {
    max-width: 840px;
    font-size:13pt
}
@media screen and (max-width: 1680px){
    .front-page-content {
        font-size:13pt
    }
}
@media screen and (max-width: 1280px){ 
    .front-page-content {
        font-size:11pt
    }
}
@media screen and (max-width: 360px){
    .front-page-content {
        font-size:10pt
    }
}