<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body{
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #171717;
    background: #144e5c;
    margin: 0;
    padding: 0;
    position: relative;
    height: 100%;
    min-height: 100%;
    cursor:none;
}
*, *::after, *::before {
    box-sizing: border-box;
}
html, body {
    height: 100%;
    scroll-behavior: smooth;
}
.noScroll {
    overflow: hidden;
    cursor: default;
}

/*----- LAYOUTS -----*/
main{
    display: flex;
    flex-direction: row;
    height: 100%;
}
.rightSide{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    background-color: #144e5c;
    transition: all 2s;
}

/*----- LOGOS -----*/
.logoMain{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logoMain img{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 20vh;
}
.logoCircle{
    display: flex;
    width: 160px;
    height: 160px;
    z-index: 2;
    border-radius: 100%;
}

/*----- ELEMENTS -----*/
.iamgeDeco{
    display: block;
    width: 360px;
    height: 80%;
    border-top-left-radius: 100vw;
    border-top-right-radius: 100vw;
    position: absolute;
    bottom:0;
    right: -120px;
    top:auto;
    left:auto;
    background-image: url(/assets/images/background.png);
    background-size: 150%;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: all 2s;
    transition: all 2s;
}
.ls-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 4vw;
    line-height: 5vw;
    transition: all 2s;
}
.J8SJ {
    position: absolute;
    bottom: -6vh;
    left: 1vw;
    display: flex;
    overflow: hidden;
    transition: all 2s;
    z-index: 2;
}

@media (max-width: 1080px) {
    .iamgeDeco{
        display: block;
        width: 100%;
        height: 100vh;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        position: absolute;
        bottom:0;
        right: 0;
        top:auto;
        left:auto;
        background-size: cover;
    }
    .ls-text{
        position: relative;
        top: 0;
        left: 0;
        width: auto;
        padding: 73px;
        color: #fff;
        transform: none;
        font-family: "Playfair Display", serif;
        font-optical-sizing: auto;
        font-weight: 500;
        font-style: normal;
        font-size: 53px;
        line-height: 66px;
        transition: all 2s;
        opacity: 1;
    }
    .J8SJ {
        right: -40px;
        transition: all 2s;
    }
}
.D8JJ{
    position: absolute;
    display: block;
    font-size: 20px;
    color: #f0d0ba;
    height: 160px;
    text-align: right;
    right: 100px;
    bottom: 0;
    border-right: 1px solid #f0d0ba;
    padding-right: 40px;
}
.socialLinks{
    display: block;
    position:absolute;
    right: 100px;
    bottom: 190px;
}
.socialLinks a{
    color: #f0d0ba;
    text-decoration: none;
}
.socialLinks i:edc098{
    color:#f0d0ba;
}
.socialLinks i{
    display: block;
    color:#f0d0ba;
    font-size: 24px;
    margin-bottom: 10px;
    transition: all 300ms;
}


/*----- MOBILE VERSION -----*/
@media (max-width:992px) {
    .leftSide{
        transform: translateX(-750px);
        width: 0;
        transition-property: transform, width;
    }
    .rightSide{
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100vw;
        height: 100vh;
        z-index: 99;
    }
    .rightSide::before{
        opacity: 0.2;
    }
    .logoSymbol{
        width: 14vw;
        fill: #FFF;
        display: block;
        margin-bottom: 2vh;
    }
    .logoBaseline{
        width: 46vw;
        height: auto;
    }
    .D8JJ{
        font-size: 16px;
        height: 130px;
        right: 40px;
        bottom: 0;
        padding-right: 20px;
    }
    .socialLinks{
        display: block;
        position:absolute;
        right: 40px;
        bottom: 150px;
    }
    .rightSide{
        justify-content: center;
        transition: all 2s;
        align-items: center;
    }
    .logoMain{
        margin-bottom: 120px;
    }
    .logoSymbol{
        width: 80px;
    }
    .logoBaseline{
        width: 240px;
    }
}

</pre></body></html>