html {
    position: relative;
    min-height: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
p,
a {
    font-family: 'Barlow Semi Condensed', sans-serif;
}

h1 {
    font-weight: 700;
    font-size: 30px;
    color: #ffffff;
    letter-spacing: 0;
    text-transform: uppercase;
}

@media screen and (min-width: 500px) {
    h1 {
        font-size: 42px;
    }
}

h2 {
    font-weight: 700;
    font-size: 30px;
    color: #0c2d40;
    letter-spacing: 0;
}

h3 {
    font-weight: 600;
    font-size: 24px;
    color: #113d55;
    letter-spacing: 0;
}

h4 {
    font-weight: 500;
    font-size: 24px;
    color: #113d55;
    letter-spacing: 0;
}

h5 {
    font-weight: 500;
    font-size: 20px;
    color: #113d55;
    letter-spacing: 0;
}

p {
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    letter-spacing: 0;
}

    p strong {
        color: #113d55;
    }

    p img {
        margin: 2rem auto 2rem auto;
    }

.ingress {
    font-weight: 600;
    font-size: 20px;
    color: #113D55;
}

.bold-link {
    font-weight: 600;
    font-size: 18px;
}

.copywrite {
    color: #0C2D40;
    font-size: 24px;
    font-weight: 500;
}

a {
    font-weight: 500;
    text-decoration: none;
}

p a,
h4 a,
.contact a {
    color: #F7A940;
    transition: color .3s ease-in-out;
}

    p a:hover,
    h4 a:hover,
    .contact a:hover {
        color: #0C2D40;
    }

a h3,
a p,
p a,
.icon-link {
    transition: color .3s ease-in-out;
}

a:hover h3,
a:hover p {
    color: #F7A940 !important;
}

.white-link {
    color: #ffffff !important;
    transition: color .3s ease-in-out;
}

.blue-link {
    color: #0C2D40 !important;
    transition: color .3s ease-in-out;
}

    .white-link.active,
    .blue-link.active,
    .submenu-title.active {
        color: #F7A940 !important;
    }

    .white-link:hover,
    .blue-link:hover {
        color: #F7A940 !important;
    }

.link-button {
    display: block;
    color: #ffffff !important;
    background-color: #F7A940;
    padding-top: 12px;
    padding-bottom: 12px;
    width: 112px;
    text-align: center;
    transition: background-color .3s;
}

@media screen and (min-width: 500px) {
    .link-button {
        width: 156px;
    }
}
    .link-button:hover {
        background-color: #fac785;
    }

.link-icon {
    aspect-ratio: 1/1;
    max-width: 50px;
    margin: .5rem 0 1rem 0;
}

.icon-link {
    margin: .5rem 0 1rem 1rem;
    padding-bottom: 3px;
    color: #000000;
    font-weight: 400;
}

a.icon-link:hover {
    color: #F7A940;
}

.uppercase {
    text-transform: uppercase;
}

.orange {
    color: #F7A940;
}

.box-shadow {
    box-shadow: 1px 1px 6px #00000029;
}

.yellow-bg {
    background-color: #FFF6EB;
}

.blue-bg {
    background-color: #113d55;
}

.border-top-orange {
    border-top: 2px solid #F7A940;
}

.border-bottom-orange {
    border-bottom: 2px solid #F7A940;
}

.border-top-blue {
    border-top: 2px solid #0C2D40;
}

.border-bottom-blue {
    border-bottom: 2px solid #0C2D40;
}

section {
    max-width: 100vw;
}

/*
-----------------------------------------
NAVBAR
-----------------------------------------
*/

nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}


#navbar {
    width: 100%;
    transition: background-color .3s ease-in-out;
    z-index: 9999;
}

#language-nav {
    display: none;
    width: 100%;
    transition: background-color .3s ease-in-out;
    z-index: 9999;
}

.transparent-nav {
    background-color: transparent;
}

.white-nav {
    background-color: #ffffff;
}

.blue-nav {
    background-color: #0C2D40;
}


.navbar-nav .nav-link {
    padding-top: 0;
    padding-bottom: 0;
    height: 50px;
    line-height: 50px;
}

.nav-item {

}

.nav-link {
    font-size: 20px;
    color: #ffffff;
}

.dropdown {
}

.dropdown-menu {
    border: none;
    padding: 0;
}

    .dropdown-menu.show .nav-link {
        background-color: #ffffff !important;
    }

    .dropdown-menu[data-bs-popper] {
        margin-top: 0;
    }

    .dropdown-menu.show .nav-link {
        border-radius: 10px;
    }


.dropdown-toggle.show,
.active-toggle {
    color: #F7A940 !important;
}

.dropdown-toggle::after {
    float: right;
    position: relative;
    margin-top: 13px;
    transition: margin .3s ease-in-out;
}


/* ---------- Logo ---------- */

.logo {
    width: auto;
    height: 60px;
}

@media screen and (min-width: 425px) {
    .logo {
        height: 75px;
    }
}

.logo-white {
    transition: filter 0.3s ease-in-out;
    filter: brightness(10);
}

.logo-color {
    transition: filter 0.3s ease-in-out;
    filter: none;
}

.navbar-brand {
    padding: 0;
}

/* ---------- Mobile menu button ---------- */

.navbar-toggler {
    padding-top: 5px;
}

@media screen and (min-width: 768px) {
    .navbar-toggler {
        padding-top: 11px;
    }
}

@media screen and (min-width: 1100px) {
    .navbar-toggler {
        display: none;
    }

    #language-nav {
        display: flex;
    }
}

.navbar .navbar-toggler {
    border: none;
}

.navbar-toggler:focus,
navbar-toggler:active {
    outline: none;
    box-shadow: none;
}

#nav-toggle-btn {
    font-size: 28px;
    color: #F7A940;
}

#mob-nav {
    padding: 0;
    background-color: white;
    width: 425px;
}

#mobileMenu .nav-item {
    border-bottom: 1px solid #fac785;
}

#mobileMenu .nav-link {
    color: #0c2d40;
    font-weight: 500;
    font-size: 1.125rem;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
}

/* Mobile menu close button */

.close-button {
    cursor: pointer;
    font-size: 36px;
    padding: 0 0.25rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    color: #001C54;
    height: 30px;
    width: 30px;
    margin-right: 0.75rem;
}

.main-menu-mobile .top-nav-item {
    height: 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

    .main-menu-mobile .top-nav-item span {
        display: block;
        position: absolute;
        height: 2px;
        width: 30px;
        background: #0c2d40;
        opacity: 1;
        right: 0;
    }

        .main-menu-mobile .top-nav-item span:nth-child(1) {
            top: 15px;
            transform: rotate(45deg);
        }

        .main-menu-mobile .top-nav-item span:nth-child(2) {
            top: 15px;
            transform: rotate(-45deg);
        }

#mobileMenu #language-menu .nav-link {
    font-weight: 400;
    opacity: 0.8;
}

/* Mobile submenu */


@media(max-width: 992px) {
    .left-last {
        order: 1;
    }

    .right-first {
        order: 0;
    }
}

.main-menu-mobile .offcanvas-submenu-collapse {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 425px;
    height: 100%;
    overflow-y: auto;
    transition: all .3s ease-in-out;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    z-index: 10;
    padding: 0;
    opacity: 0;
    background-color: white;
}

    .main-menu-mobile .offcanvas-submenu-collapse.open {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }

    .main-menu-mobile .offcanvas-submenu-collapse .top-nav-item {
        justify-content: space-between;
    }

.main-menu-mobile .back-button {
    justify-content: flex-start;
    font-size: 30px;
    margin-left: 1rem;
    color: #001C54;
}

.main-menu-mobile .submenu {
    list-style: none;
    padding-left: 0;
}

.main-menu-mobile .offcanvas-submenu-collapse .submenu:first-child .nav-item:first-child .nav-link {
    border-top: none;
}

.main-menu-mobile .submenu-submenu {
    list-style: none;
    padding-left: 0;
}

#mobileMenu .main-menu-mobile .submenu-submenu .nav-item .nav-link {
    white-space: normal;
    font-weight: 400;
}

.main-menu-mobile .submenu-submenu .nav-item:first-child .nav-link {
    border-top: none;
}

.main-menu-mobile .submenu-submenu .nav-item:first-child .nav-link {
    border-top: none;
}

.main-menu-mobile .submenu-submenu > .nav-item:last-child {
    border-bottom: 1px solid #A1B7B6;
}

.main-menu-mobile .submenu .submenu .nav-item:last-child .nav-link {
    border-bottom: none;
}

.main-menu-mobile .submenu-item .nav-link {
    text-transform: none;
}

/* ---------- Desktop menu ---------- */

#desktopMenu {
    display: none;
    margin-left: auto;
    margin-right: auto;
    margin-top: 6px;
}

@media screen and (min-width: 1100px) {

    #desktopMenu {
        display: flex;
    }
}

@media screen and (min-width: 1200px) {

    #desktopMenu {
        margin-right: 0;
    }
}

/* 
-----------------------------------------
Header
-----------------------------------------
*/

header {
    width: 100%;
    height: 30vw;
    aspect-ratio: 1/1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 75px;
    box-shadow: 0 0 0 4000px inset rgba(12, 45, 64, .4)
}

    header h1 {
        margin: 0;
        width: 100%;
    }

@media screen and (min-width: 425px) {
    header {
        height: 25vw;
        margin-top: 91px;
    }
}

@media screen and (min-width: 1100px) {
    header {
        margin-top: 131px;
    }
}

@media screen and (min-width: 1200px) {
    header {
        height: 20vw;
        margin-top: 131px;
    }
}

/* 
-----------------------------------------
Footer
-----------------------------------------
*/

footer {
    background-color: #0c2d40;
    position: absolute;
    width: 100vw;
}

.footer-contact {
    flex-basis: 23%;
}

.footer-about {
    flex-basis: 74%;
}

.about {
    flex-basis: 47.5%;
}

.disclaimer {
    flex-basis: 47.5%;
}

footer h4,
footer p,
footer a {
    color: white;
}

footer p {
    font-weight: 300;
}

.social-media img {
    width: auto;
    height: 45px;
}

/* 
-----------------------------------------
Start page
-----------------------------------------
*/

/* ---------- Hero section ---------- */

.hero-section {
    height: 100vh;
    padding-top: 5rem;
    padding-bottom: 1rem;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-content {
    z-index: 1;
    position: relative;
    flex-basis: 100%;
    margin-bottom: 1rem;
}

    .hero-content > div {
        flex-basis: 100%;
        flex-grow: 0;
        flex-shrink: 0;
    }

        .hero-content > div:first-child {
            margin-bottom: 1.5rem;
        }

    .hero-content .link-button {
        margin-top: .5rem;
    }

@media screen and (min-width: 540px) {

    .hero-section {
        padding-left: calc(50% - 250px);
        padding-right: calc(50% - 250px);
        padding-bottom: 3rem;
    }

    .hero-content .link-button {
        margin-top: 3rem;
    }
}

@media screen and (min-width: 768px) {

    .hero-section {
        padding-left: 0;
        padding-right: 0;
        padding-top: 7rem;
        padding-bottom: 5rem;
        min-height: 0;
    }

    .hero-content {
        flex-basis: 85%;
        margin-bottom: 3rem;
    }

    .hero-content > div {
        flex-basis: calc(50% - 1.5rem);
    }

        .hero-content > div:first-child {
            margin-bottom: 0;
        }
}

@media screen and (min-width: 1200px) {

    .hero-section {
        min-height: 100vh;
        padding-top: 7rem;
        padding-bottom: 5rem;
    }
}

@media screen and (min-width: 1700px) {

    .hero-section {
        padding-top: 9rem;
        padding-bottom: 5rem;
    }

    .hero-content > div {
        flex-basis: calc(50% - 4.5rem);
    }
}


/* ---------- Padding x space ---------- */

.padding-x-space {
    padding-left: 15px;
    padding-right: 15px;
}

@media screen and (min-width: 768px) {
    .padding-x-space {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media screen and (min-width: 1200px) {
    .padding-x-space {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

@media screen and (min-width: 1400px) {
    .padding-x-space {
        padding-left: calc(50% - 600px);
        padding-right: calc(50% - 600px);
    }
}

@media screen and (min-width: 1700px) {
    .padding-x-space {
        padding-left: calc(50% - 810px);
        padding-right: calc(50% - 810px);
    }
}

/* ---------- Padding y space ---------- */

.padding-y-space {
    padding-top: 2rem;
    padding-bottom: 2rem;
    transition: .5s;
}

@media screen and (min-width: 768px) {
    .padding-y-space {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}

@media screen and (min-width: 1200px) {
    .padding-y-space {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
}

@media screen and (min-width: 1700px) {
    .padding-y-space {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

/* ---------- Padding t space ---------- */

.padding-t-space {
    padding-top: 2rem;
    transition: .5s;
}

@media screen and (min-width: 768px) {
    .padding-t-space {
        padding-top: 2.5rem;
    }
}

@media screen and (min-width: 1200px) {
    .padding-t-space {
        padding-top: 3.5rem;
    }
}

@media screen and (min-width: 1700px) {
    .padding-t-space {
        padding-top: 5rem;
    }
}

/* ---------- Padding b space ---------- */

.padding-b-space {
    padding-bottom: 2rem;
    transition: .5s;
}

@media screen and (min-width: 768px) {
    .padding-b-space {
        padding-bottom: 2.5rem;
    }
}

@media screen and (min-width: 1200px) {
    .padding-b-space {
        padding-bottom: 3.5rem;
    }
}

@media screen and (min-width: 1700px) {
    .padding-b-space {
        padding-bottom: 5rem;
    }
}

/* 
-----------------------------------------
News Page
-----------------------------------------
*/

.news-container {
    margin-top: 75px;
}

    .news-container h1 {
        color: #F7A940;
    }

#selected-news-container {
    flex-basis: 100%;
}

#news-link-container {
    margin-top: 2.5rem;
    flex-basis: 100%;
}

.selected-news-item img {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 1rem;
}

.news-page a {
    color: #F7A940;
}

    .news-page a:hover {
        color: #0C2D40;        
    }

.current-post {

}

    .current-post h5 {
        color: #F7A940;
        font-weight:600;
    }

    .current-post p {
        font-weight: 600;
        color: #0C2D40;
    }

.active > .page-link,
.page-link.active {
    background-color: #F7A940;
    border-color: #F7A940;
}

@media screen and (min-width: 425px) {
    .news-container {
        margin-top: 91px;
    }
}

@media screen and (min-width: 1100px) {
    .news-container {
        margin-top: 131px;
    }
}

@media screen and (min-width: 1200px) {
    #selected-news-item {
        padding-right: 2.5rem;
    }

    #selected-news-container {
        flex-basis: 66.66%;
    }

    #news-link-container {
        flex-basis: 33.33%;
        padding-left: 2.5rem;
        margin-top: 0;
    }
}

/* 
-----------------------------------------
Blocks & Sections
-----------------------------------------
*/

/* ---------- News block ---------- */

.news-posts {
    flex-basis: 100%;
    width: 100%;
}

.news-post {
    flex-basis: 100%;
    flex-grow: 0;
    flex-shrink: 0;
    background-color: #FFFFFF;
    margin-bottom: 1.5rem;
    box-shadow: 3px 3px 6px #00000029;
}

@media screen and (min-width: 992px) {
    .news-post {
        flex-basis: calc(50% - 1rem);
        margin: 0 0.75rem 1rem;
        margin-bottom: 1rem;
    }
}

@media screen and (min-width: 1200px) {
    .news-post {
        flex-basis: calc(33.33% - 1.5rem);
    }

    .news-posts .news-post.first-post {
        flex-basis: calc(100% - 1.5rem);
        margin-bottom: 1.5rem;
    }

    .first-post figure,
    .first-post .news-preview {
        flex-basis: 50%;
    }
}

.news-post img {
    overflow: hidden;
    object-fit: cover;
    width: 100%;
}

/* ---------- People block ---------- */

.people-container h2 {
    flex-basis: 100%;
}

.people-container .single-person h2 {
    flex-basis:unset;
}

.person-container {
    margin: 1rem;
    flex-basis: 100%;
    box-shadow: none;
    max-width: 900px;
}

.single-person {
    margin: 1rem;
    flex-basis: 100%;
    box-shadow: none;
    max-width: 1500px;
}

    .single-person .person-img-container {
        height: auto;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .single-person .person-info-container {
        margin-left: unset;
        text-align: center;
    }

@media screen and (min-width: 768px) {

    .person-container {
        box-shadow: 3px 3px 6px #00000029;
    }

    .single-person {
        box-shadow: 3px 3px 6px #00000029;
    }

        .single-person .person-img-container {
            margin-left: unset;
            margin-right: unset;
        }

        .single-person .person-info-container {
            margin-left: 5rem;
            text-align: left;
        }

    .person-img-container {
        width: 100%;
        height: 250px;
        margin-left: unset;
        margin-right: unset;
    }
}

@media screen and (min-width: 1400px) {

    .person-container {
        flex-basis: calc(50% - 2rem);
    }

    .single-person {
        flex-basis: 80%;
    }

        .single-person .person-info-container {
            margin-left: 8rem;
        }

    .person-img-container {
        flex-basis: 20%;
    }
}

@media screen and (min-width: 1600px) {
    .person-img-container {
        flex-basis: 30%;
    }
}

.person-img-container {
    flex-basis: 30%;
}

.person-img-container {
    width: 200px;
    aspect-ratio: 3/4;
    margin-left:auto;
    margin-right:auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.person-info-container {
    min-height: 250px;
    padding: 1rem;
}

    .person-info-container .collapse {
        transition: max-height .3s ease-in-out;
    }

    .person-info-container h4 {
        font-weight: 600;
    }

    .person-info-container h5 {
        color: #f69a23;
    }

a.toggle-btn {
    color: #113d55;
    font-weight: 600;
    font-size: 18px;
    transition: color .3s ease-in-out;
}

    a.toggle-btn:hover {
        color: #f69a23;
    }

.person-text a {
    color: #113d55;
    font-weight: 600;
    transition: color .3s ease-in-out;
}

    .person-text a:hover {
        color: #f69a23;
    }

.single-person-text a {
    font-weight: 600;
    transition: color .3s ease-in-out;
}

    .single-person-text a:hover {
        color: #113d55;
    }

.single-person-text h4 {
    margin-bottom: 2rem;
}

.collapse:not(.show) {
    display: block;
    max-height: 87px;
    overflow: hidden;
}

.collapsing {
    height: 87px;
    overflow: hidden;
    @exclude transition($transition-collapse);
}

.collapse.show {
    min-height: 87px;
    max-height: fit-content;
    overflow: auto;
}

/* ---------- Section block ---------- */

.section-container {
    background-color: #FFF6EB;
}

.section {
    flex-basis: 33%;
}

.section-border {
    border-left: 2px solid #F7A940;
}

/* ---------- Yellow Section ---------- */

.triple {
    flex-basis: 100%;
}

.triple-header {
    flex-basis: 100%;
}

.triple-img {
    transition: transform .5s;    
}

.yellow-single {
    max-width: 100%;
}

.carousel-inner {
    display: flex;    
}

.triple-carousel {
    flex-basis: 33.33%;   
    flex-wrap: wrap;
}

.carousel-item {
    align-content: center;
    transition: transform 2.5s ease-in-out;
    min-height: 96px;
}

.triple-container {
    width: 600px;
    overflow: hidden;
}

    .triple-container div {
        max-width: 500px;
    }

    .triple-container span {
        display: inline-block;
    }

    .triple-container p {
        max-height: 0;
        transition: max-height 1.5s ease-in-out;
        overflow: hidden;
    }

    .triple-container:hover {
        cursor: pointer;
    }

    .triple-container:hover p {
        max-height: 500px;
    }

    .triple-container:hover span {
        display: none;
    }

    .triple-container:hover .triple-img {
        transform: rotate(45deg);
    }

@media screen and (min-width: 600px) {
}

@media screen and (min-width: 992px) {
    .yellow-single {
        max-width: 80%;
    }
}

@media screen and (min-width: 1200px) {
    .yellow-single {
        max-width: 60%;
    }

    .triple-carousel {
        flex-wrap: nowrap;
    }
}

@media screen and (min-width: 1600px) {

    .triple {
        flex-basis: 33%;
    }

    .triple-container {
        width: 33.33%;
    }
}

/* ---------- Article Section ---------- */

.article {
    width: 100%;
}

.article-content,
.article-img {
    flex-basis: 100%;
    flex-grow: 0;
    flex-shrink: 0;
}

    .article-img img {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
        max-height: 350px;
    }

.contact img {
    height: 25px;
    margin-top: 1px;
    width: 25px;
}

@media screen and (min-width: 768px) {
    .article {
        width: 80%;
    }
}

@media screen and (min-width: 1200px) {
    .article {
        width: 75%;
    }

    .img-article div {
        flex-basis: 50%;
    }

    .article-img img {
        max-height: 100%
    }
}

@media screen and (min-width: 1600px) {
    .article {
        width: 65%;
    }
}