:root {
    --s-font-family: 'Roboto', sans-serif;
    --s-weight: 300;
    --s-font-size: 14px;
    --s-color: #05193E;

    --font-family: 'Raleway', sans-serif;
    --weight: 300;
    --font-size: 24px;
    --color: #05193E;
    --color-2: #fff;

    --link-color: #fff;
    --link-color-2:#1AB9EF;

    --link-bg-color: #05193E;
    --link-bg-color-hover: #fff;
    --link-bg-color-2: #0B3A68;
    --link-bg-color-2-hover: #fff;
    --link-bg-color-3: #fff;
    --link-bg-color-3-hover: #1AB9EF;
}

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}
html, body {
    min-height: 100vh;
}
.frame {
    height: 100%;
    min-height: 100vh;
    background: transparent linear-gradient(90deg, #05193E 0%, #0B3A68 100%) 0% 0% no-repeat padding-box;
    position: relative;
}
body {
    font-family: var(--font-family);
    font-weight: var(--weight);
    font-size: var(--font-size);
    color: var(--color);
}
h1, h2, h3, h4, h5 {
    font-family: var(--s-font-family);
    font-weight: var(--s-weight);
    font-size: var(--s-font-size);
    color: var(--s-color);
}

.uk-container {
    max-width: 870px;
}

.lines {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 0;
	/*background-image: repeating-linear-gradient(to right,transparent,transparent calc(30vw - 1px),#0D4377 1px,#0D4377 30vw);
	background-size: 30vw 100%;
    background-position: 5vw 100%;*/
    background-image: repeating-linear-gradient(to right,transparent,transparent calc(25% - 1px),#0D4377 1px,#0D4377 25%);
    background-size: 100% 100%;
    background-position: 25% 100%;
}
.nofp .lines {
    opacity: .4;
}

.main-wrapper {
    position: relative;
    z-index: 2;
    padding-bottom: 100px;
}

#scrolldown-trigger {
    position: absolute;
    top:10px;
    width: 1px;
    height: 1px;
}
.scrolldown {
    position: fixed;
    bottom: 20px;
    width: 100%;
    z-index: 198;
    transition: all .6s;
}
.scrolldown:not(.active)
{
    transform: translateY(80px);
    opacity: 0;
}
.scrolldown a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--link-bg-color);
    text-align: center;
    margin: 0 auto;
    position: relative;
    display: block;
}
.scrolldown a i {
    color: var(--link-bg-color-hover);
    transform: translateY(6px);
}
.scrolldown > i {
	position: absolute;
	left: calc(50% - 5px);
	font-size: 10px;
	color: var(--link-color-2);
	bottom: -13px;
}

.button-link {
    display: inline-block;
    text-transform: uppercase;
    color: var(--link-color);
    background-color: var(--link-bg-color);
    padding: 10px 25px 8px 25px;
    font-size: 14px;
    font-weight: 800;
    border-radius: 20px;
    transition: all .6s;
    text-decoration: none !important;
}
.button-link i {
    margin-left: 10px;
    font-size: 10px;
    color: var(--link-color-2);
    transform: translateY(-2px);
}
.button-link:hover {
    background-color:var(--link-bg-color-hover);
    color: var(--link-color-2) !important;
}

.button-link.lighter {
    color: var(--link-color);
    background-color: var(--link-bg-color-2);
}
.button-link.lighter:hover {
    background-color:var(--link-bg-color-2-hover);
    color: var(--link-color-2);
}

.uk-offcanvas-bar {
	background: #0B3A68;
}
.uk-offcanvas-overlay::before {
	background-color: transparent;
}

.menu-bar {
    position: fixed;
    width: 100%;
    z-index: 99;
    background-color: rgba(0,0,0,.2);
    transition: background-color .6s;
}
.menu-bar:not(.not-moved) {
    background-color: #041533;
}

.fa-hamburger, .fa-bars, .fa-bars + span {
    color: var(--link-color);
}

#mobile-menu .menu a  {
    font-size: 24px;
    font-weight: 800;
    font-family: var(--font-family);
    color: var(--link-color);
}
#mobile-menu .menu .uk-nav-sub {
    margin-bottom: 20px;
}
#mobile-menu .menu li li a {
    font-size: 18px;
    font-weight: 400;
    color: var(--link-color-2);
    position: relative;
}
#mobile-menu .menu li li.uk-active a::after, #mobile-menu .menu li li:hover a::after {
    content: "";
    display: block;
    width: 5px;
    height: 1px;
    background-color: var(--link-color);
    position: absolute;
    top: 15px;
    left: -14px;
}

.languages img + span {
    margin-left: 5px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--link-color);
}
.languages span + i {
    color: var(--link-color-2);
    font-size: 12px;
    margin-left: 3px;
}
.languages > div + div {
    left: 0 !important;
}
.languages [class*="uk-drop-bottom"] {
    margin-top: 10px;
}

.left-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 70px;
    height: 100vh;
    background-color: #0B3A68;
    z-index: 200;
}
.intro .message {
    position: relative;
}
.intro p {
    font-size: 30px;
    font-family: var(--font-family);
    font-weight: 400;
    color: var(--color-2);
    width: 100%;
    text-transform: uppercase;
}
.intro p span {
    display: block;
}
.intro p strong {
    font-weight: 800;
}

/* MAIN */
main {
    padding: 150px 0 0 0;
}

main h2.maintitle {
	display: block;
	text-align: left;
	font-family: var(--font-family);
	font-size: 23px;
	color: var(--link-color-2);
    letter-spacing: 14px;
    text-transform: uppercase;
}
main h2.maintitle span {
	font-weight: 900;
}

main p {
    font-size:16px;
    color: var(--color-2);
    line-height: 2rem;
}

/* FOOTER */
#footer {
    border-top:14px solid var(--link-color-2);
    padding: 70px 0 40px;
    background-color: var(--link-bg-color);
    position: relative;
    z-index: 4;
}

/* COMPONENTS */
.timeline-block {
    display: block;
    position: relative;
    margin: 100px 0 150px;
    padding: 0;
    list-style: none;
}
.timeline-block::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: #1AB9EF;
}
.timeline-entry {
    padding: 0 0 0 60px;
}
.timeline-entry article {
    position: relative;
    padding-bottom: 50px;
    font: normal normal 800 14px/40px var(--font-family);
}
.timeline-entry article::before {
	content: "";
	display: block;
	width: 40px;
	height: 2px;
	position: absolute;
	top: 20px;
	left: -50px;
	background-color: #1AB9EF;
	opacity: 0.5;
}
.timeline-entry article::after {
	content: "";
	display: block;
	position: absolute;
	top: 16px;
	left: -64px;
	width: 10px;
	height: 10px;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0px 0px 0px 0px #1AB9EF;
	transition: all 0.2s linear;
	z-index: 1;
}
.timeline-entry:hover article::after, .timeline-entry:first-child article::after {
    box-shadow: 0px 0px 0px 4px #1AB9EF;
}
.timeline-entry article time {
    position: relative;
    display: block;
    font: normal normal 800 14px/40px var(--font-family);
    color: #1AB9EF;
    opacity: 0.5;
    transition: all .6s;
}
.timeline-entry article h4 {
    margin: 0;
}
.timeline-entry article h4 a {
    font: normal normal 800 14px/40px var(--font-family);
    color: #1AB9EF;
    opacity: 0.5;
    text-decoration: none;
}
.timeline-entry article p {
    font: normal normal normal 14px/22px var(--s-font-family);
    color: #FFFFFF;
    opacity: 0.5;
    margin: 0;
}
.timeline-entry article * {
    transition: all .6s;
}
.timeline-entry:hover article *, .timeline-entry:first-child article *  {
    opacity: 1;
}

.timeline-entry:hover article time, .timeline-entry:first-child article time {
    font: normal normal 800 34px/40px var(--font-family);
    opacity: 1;
}

/* DEFAULT ARTICLE */

.category-list > h3 {
    font-family: var(--font-family);
    font-size: 28px;
    font-weight: 900;
    color: #fff;
}

.item-page .article-text > h3 {
    font-family: var(--font-family);
    font-size: 28px;
    font-weight: 900;
    color: #1AB9EF;
}
.item-page .article-text > h4 {
    font-family: var(--font-family);
    font-size: 22px;
    font-weight: 900;
    color: #fff;
}
.item-page .article-text a {
    color: var(--link-color-2);
}
.item-page .article-text > p {
    font-weight: 400;
    font-size: 18px;
}
.item-page .article-text > p:first-child, .item-page .article-text > p.emfasis {
    font-weight: 900;
    font-size: 22px;
    margin-bottom: 40px;
}
.item-page .article-text p + p.emfasis {
    margin-top: 40px;
}
.item-page .article-text > p.no-emfasis
{
    font-size: 18px;
    font-weight: 400;
    margin-bottom: inherit;
}

.item-page .article-text ul {
    margin: 20px 0 20px 20px;
    padding: 0;
    list-style: none;
}
.item-page .article-text ul li {
    padding: 0 0 0 20px;
    margin: 0 0 10px 0;
    position: relative;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}
.item-page .article-text ul li::before {
    content: "-";
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
}

.item-page .article-text blockquote, .category-list blockquote {
    position: relative;
    font-weight: bold;
    padding-left: 15px;
    
}
.item-page .article-text blockquote::before, .category-list blockquote::before {
    content: "";
    width: 5px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--link-color-2);
}
.item-page .article-text blockquote p, .category-list blockquote p {
    color: var(--link-color-2);
}


.item-page .onright figure {
    height: auto;
    overflow-x: hidden;
}
.item-page .onright figure img {
    height: 100%;
    max-width: inherit;
    transition: all 1.2s;
}
.item-page .onright figure:not(.static):hover img {
    transform: translateX(-40%);
}

.item-page .more-info {
    background-color: #0B3A68;
    padding: 20px;
}
.item-page .more-info h3, .item-page .more-info p {
    font-size: 16px;
    color: #1AB9EF;
    margin: 0 0 28px 0;
    text-transform: uppercase;
}
.item-page .more-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.item-page .more-info ul li {
    font-size: 14px;
    color: #fff;
    margin-bottom: 14px;
}
.item-page .more-info ul li a, .item-page .more-info ul li span {
    font-size: 16px;
    font-weight: 900;
    color: #1AB9EF;
    text-decoration: none;
    transition: all .6s;
}
.item-page .more-info ul li a:hover {
    color: #fff;
}

/* CONTACT */
.item-page form input[type=text], .item-page form textarea {
    background-color: #05193E;
    padding: 27px 17px;
    border: 1px solid #05193E;
    color:#fff;
    font-family: var(--s-font-family);
    font-weight: 300;
    font-size: 22px;
    margin: 0 0 10px 0;
}
.item-page form textarea {
    resize: none;
}
.item-page form input[type=text]:focus, .item-page form textarea:focus {
    background-color: #05193E;
    border: 1px solid #05193E;
    border-bottom: 1px solid #1AB9EF;
    color:#1AB9EF;
}

.item-page form button, .item-page form input[type=submit] {
    padding: 10px 25px;
    color: #fff;
    background-color: #1AB9EF;
    cursor: pointer;
    font-family: var(--s-font-family);
    border: 0;
    font-size: 24px;
    transition: all .6s;
}
.item-page form button:hover, .item-page form input[type=submit]:hover {
    background-color: #fff;
    color: #05193E;
}

/* CLOCK */
.clockbox,
#clock {
    width: 100%;
}
/* Clock styles */
.circle {
    fill: none;
    stroke: #1AB9EF;
    stroke-width: 9;
    stroke-miterlimit: 10;
}
.mid-circle {
    fill: #1AB9EF;
}
.hour-marks {
    fill: none;
    stroke: #1AB9EF;
    stroke-width: 9;
    stroke-miterlimit: 10;
}
.hour-arm {
    fill: none;
    stroke: #1AB9EF;
    stroke-width: 17;
    stroke-miterlimit: 10;
}
.minute-arm {
    fill: none;
    stroke: #1AB9EF;
    stroke-width: 11;
    stroke-miterlimit: 10;
}
.second-arm {
    fill: none;
    stroke: transparent;
    stroke-width: 4;
    stroke-miterlimit: 10;
}
/* Transparent box ensuring arms center properly. */
.sizing-box {
    fill: none;
}
/* Make all arms rotate around the same center point. */
/* Optional: Use transition for animation. */
#hour,
#minute,
#second {
    transform-origin: 300px 300px;
    /* transition: transform .5s ease-in-out; */
}

#digitime {
    color: var(--link-color-2);
    font-size: 18px;
    font-family: var(--font-family);
    margin-bottom: 5px;
}
#digitime ~ div {
    color: var(--color-2);
    font-size: 18px;
    font-family: var(--font-family);
    font-weight: 900;
    text-transform: uppercase;
}
/* CLOCK END */

/* MODULES */
.modwrap > * {
    margin-bottom: 10vw;
}

.mod-articles {
    position: relative;
}
.mod-articles .title {
    display: block;
    text-align: center;
    font-family: var(--font-family);
    font-size: 14px;
    color: var(--link-color-2);
    letter-spacing: 14px;
}
.mod-articles .title span {
    font-weight: 800;
}

.mod-articles article {
    position: relative;
}
.mod-articles article figure + div {
    background-color: var(--link-bg-color-3);
    padding: 10%;
}
.mod-articles article h3 a {
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 2rem;
    color: var(--color);
    
}
.mod-articles article h4 {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 1.3rem;
    color: var(--color);
}
.mod-articles article p {
    font-family: var(--s-font-family);
    font-size: 1rem;
    font-weight: 300;
    font-family: var(--s-font-family);
    color: var(--color);
}
.mod-articles article footer a {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 1rem;
}

/* TIMELINE MODULE */
.timeline-wrapper {
    padding-top: 0;
}
.timeline-wrapper .time {
    padding-top: 30px;
    position: relative;
    display: block;
    font: normal normal 800 14px/40px var(--font-family);
    color: #1AB9EF;
    opacity: 0.5;
    transform: translateY(-11px);
    transition: all .6s;
}
.timeline-wrapper li:hover .time {
    transform: translateY(-25px);
    font: normal normal 800 34px/40px var(--font-family);
    opacity: 1;
}
.timeline-wrapper .line {
    position: relative;
    display: block;
}
.timeline-wrapper .line::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 4px;
    width: 100%;
    height: 1px;
    background-color: #1AB9EF;
}
.timeline-wrapper .line::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -4px;
    left: 4px;
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0px 0px 0px 0px #1AB9EF;
    transition: all 0.2s linear;
}
.timeline-wrapper li:hover .line::after {
    box-shadow: 0px 0px 0px 4px #1AB9EF;
}
.timeline-wrapper article {
    position: relative;
    padding-top: 60px;
    font: normal normal 800 14px/40px var(--font-family);
}
.timeline-wrapper article::before {
	content: "";
	display: block;
	width: 2px;
	height: 32px;
	position: absolute;
	top: 17px;
	left: 8px;
	background-color: #1AB9EF;
	opacity: 0.5;
}
.timeline-wrapper article h4 {
    margin: 0;
}
.timeline-wrapper article h4 a {
    font: normal normal 800 14px/40px var(--font-family);
    color: #1AB9EF;
    opacity: 0.5;
    text-decoration: none;
}
.timeline-wrapper article p {
    font: normal normal normal 14px/22px var(--s-font-family);
    color: #FFFFFF;
    opacity: 0.5;
    margin: 0;
}
.timeline-wrapper li article * {
    transition: all .6s;
}
.timeline-wrapper li:hover article * {
    opacity: 1;
}

.timeline-wrapper .uk-slidenav {
	color: rgba(26, 185, 239, .5);
}

/* MAP */
.map-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
    /*height: 500px;*/
}
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}


/* FOOTER MODULES */
#footer .modwrap ul {
    list-style: none;
    margin: 0 0 10px 0;
    padding: 0;
}

#footer .modwrap a {
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: all .6s;
}
#footer .modwrap a::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: translateY(5px);
    opacity: 0;
    transition: all .6s;
}
#footer .modwrap a:hover::after {
    transform: translateY(0);
    opacity: 1;
}

#footer .modwrap .contact-details * {
    color: var(--link-color);
    font-size: 18px;
    font-family: var(--font-family);
}
#footer .modwrap .contact-details a {
    color: var(--link-color-2);
}

#footer .modwrap .footer-menu a {
    color: var(--link-color);
    font-size: 18px;
    font-family: var(--font-family);
}
#footer .modwrap .footer-menu a:hover {
    color: var(--link-color-2);
}

#footer .modwrap .copyrights a, #footer .modwrap .copyrights p a {
    color: var(--link-color);
    font-size: 18px;
    font-family: var(--font-family);
}
#footer .modwrap .copyrights a:hover, #footer .modwrap .copyrights p a:hover {
    color: var(--link-color-2);
}

#footer .modwrap .copyrights p {
    color: #8d8a8a;
    font-size: 18px;
    font-family: var(--font-family);
}
#footer .modwrap .copyrights p a.redpanda:hover {
    color: #db2527;
}