@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

@keyframes headerPopUp{
    0%{
        transform: translateY(-200%);
    }
    100%{
        transform:translateY(0);
    }
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 14vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 12%;
    box-sizing: border-box;
    z-index: 100;
    transition: all 0.15s ease-in-out;
}

.header a {
    transition: all 0.25s ease-in-out;
}

.leftHeader a, .rightHeader a {
    font-size: 1.1em;
    text-decoration: none;
    margin: 0 20px;
    color: white;
    font-family: 'PlayFair Display';
    position: relative;
    font-weight: 600;
}

.centerHeader a, .centerHeader a svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.heroBackground {
    width: 100%;
    height: 100%;
    display: block;
}

.lsq-hidden {
    display: none!important;
}



.centerHeader {
    width: 260px;
}
.headerStuck .centerHeader {
    width: 230px;
}



.lastRow {
    width: 100%;
    height: 100%;
    position: relative;
}

.lastRowBG svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lastRowBG {
    position: absolute;
    top: 0;
    left: 50%;
    width: 30%;
    height: auto;
    transform: translateX(-50%);
}

a.coloredHeader {
    background-color: #1f3360;
    padding: 8px 8px;
    color:white;
    transition: all 0.25s ease-in-out;
}

.header.headerStuck a.coloredHeader {
    color: #1f3360;
    background-color: white;
}

.headerStuck {
    position: fixed;
    animation: headerPopUp 0.5s ease-in-out forwards;
    background: #1f3360;
    height: 11vh;
    filter: drop-shadow(0px 8px 10px rgba(0,0,0,0.4));
    top:0px;
    left:0px;
}

.leftHeader a::after,  .rightHeader a::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 2px) scaleX(0);
    width: 100%;
    transform-origin:center;
    height: 2px;
    background-color: white;
    transition: all 0.25s ease-in-out;
}


.leftHeader a:hover::after, .rightHeader a:hover::after {
    transform: translate(-50%, 2px) scaleX(1);
}

a.coloredHeader::after {
    content: unset;
}
a.coloredHeader:hover {
    filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.6));
}

p:empty {
    margin: unset;
}