/***** General settings *****/

* {
    -webkit-font-smoothing: antialiased !important;
    font-family: "Inter", sans-serif;
    color: #01072C;
}

br.mobile {
    display: none;
}


p, ul, li {
    font-weight: 400;
    font-size: 16px;
}

b {
    font-weight: 600;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

html {
    background-color: #FAFAFF;
    max-width: 100%;
    scroll-behavior: smooth !important;
    overflow-x: hidden !important;
}

body::-webkit-scrollbar {
    display: none !important;
}

/***** CSS in HTML *****/

.fixed {
    position: fixed;
}

.flex {
    display: flex !important;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}


.flex-direction-column {
    flex-direction: column;
}

.c-blue {
    color: #5F83E5;
}

.spell-out {
    speak-as: spell-out;
}

.anchor {
    margin-top: -80px;
    margin-bottom: 80px;
}


/**** Global CSS  *****/

.u31-section {
    padding: 0 8.515625vw;
    width: 82.96875vw;
}

.u31-section > h2.title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.875em;
    letter-spacing: 0.009375em;
    line-height: 1.333em;
}

.u31-section > h3.title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.25em;
    letter-spacing: 0em;
    line-height: 2em;
    color: #4070F4;
}

.u31-btn {
    margin: 0;
    padding: 1em 1.5em;
    background: #5F83E5;
    color: #FCFCFD;
    border-radius: 0.375em;
    border: 1px solid transparent;
}

.u31-btn.light {
    background: transparent;
    color:#5F83E5;
    border: 2px solid #5F83E5;
    font-weight: 500;
    cursor: pointer;
}

.u31-btn.light:hover {
    background: #5F83E5;
    color: #FFF;
}

.big-cta {
    font-size: 1.25em;
    letter-spacing: 0.00625em;
    font-weight: 500;
}

/**** HEADER  *****/

body {
    padding-top: 100px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    height: 100px;
    width: 100vw;
    justify-content: space-between;

    font-family: 'Ubuntu';
    background: rgb(250,255,255);
    background: linear-gradient(180deg, rgba(250,255,255,1) 0%, rgba(250,255,255,1) 65%,rgba(250,255,255,0.1) 100%);
    backdrop-filter: blur(1px);
}

header a {
    text-decoration: none;
}

#header-1,
#header-2 {
    width: 100%;
}

#header-1 {
    padding-left: 2.6vw;
}

#header-1 > a {
    width: 100%;
    padding: 1.25em 0;
}

#header-1 > a > h2 {
    font-size: 1.125em;
    letter-spacing: 0.01125em;
    margin-left: 1em;
}

#header-2 {
    justify-content: flex-end;
    padding-right: 2.6vw;

    font-size: 1em;
    letter-spacing: 0.03em;
}

#header-2 > .u31-btn {
    font-family: 'Ubuntu', sans-serif;
}

#header-2 > a.sign-in {
    color: #4F78E8;
    margin-right: 1.5625em;
}

/**** FOOTER *****/

footer {
    padding-left: 8.515625vw;
    padding-right: 8.515625vw;
    padding-top: 5.75vh;
    padding-bottom: 2.5vh;
    width: 82.96875vw;
    background: #F0F2FE;
}

footer * {
    font-family: 'Ubuntu', sans-serif;
}

#footer-content > .footer-segment {
    width: 100%;
}

#footer-content > .footer-segment > h3.footer-title {
    margin: 0;
    font-size: 1.5625em;
    letter-spacing: 0em;
    color: #1B2026;
    font-weight: 600;
}

#footer-content > .footer-segment > .footer-links {
    margin-top: 2em;
}

.footer-links > .link {
    font-size: 1em;
    margin-bottom: 0.9375em;;
    font-weight: 400;
}

.footer-links > .link > a {
    color: #485769;
    font-weight: 600;
}

.footer-links > .link > i {
    font-size: 1.75em;
    margin-right: 1em;
    width: 1em;
    color: #485769;
}


#footer-bottom {
    margin-top: 9.5vh;
}

#footer-bottom > .footer-bottom-item {
    color: #485769;
    margin-right: 2.4375em;
    font-size: 0.875em;
}

/**** FOLDABLES *****/

.foldable > .content {
    height: 0;
    overflow: hidden;
}

.foldable.visible > .content {
    height: auto;
}

.foldable.visible > .head > img {
    transform: rotate(180deg);
}

.foldable > .head {
    cursor: pointer;
}

/*----------------------------------------------------------------*/

/* Move to mobile version when < 900px */

@media screen and (max-width:900px) {
    b {
        font-weight: 700;
    }

    br.mobile {
        display: block;
    }

    br.desktop {
        display: none;
    }

    .u31-section > h2.title {
        font-size: 1.25em;
        line-height: 2em;
    }

    .u31-section > h2.title:after {
        content: ' ';
        display: block;
        margin-top: 0.5em;
        background: black;
        border-radius: 2px;
        height: 3px;
        width: 44vw;
        max-width: 300px;
    }

    .u31-section > h3.title {
        font-size: 1em;
    }

    #header-1 {
        width: 30%;
        padding-left: 5vw;
    }

    #header-1 > a {
        height: 3em;
    }

    #header-2 {
        width: 70%;
        padding-right: 5vw;
    }

    #header-2 > .u31-btn {
        font-size: 0.875em;
    }

    footer a {
        text-decoration: none;
    }

    #footer-content {
        flex-direction: column;
    }

    #footer-content > .footer-segment {
        margin-bottom: 2.5em;
    }

    #footer-content > .footer-segment > h3.footer-title {
        font-size: 1.25em;
    }

    .footer-links > .link > i {
        margin-right: 0.625em;
    }

    .footer-links > .link > a {
        display: flex;
        align-items: center;
        font-size: 0.875em;
    }

    #footer-bottom {
        margin-top: 4.5vh;
    }

    #footer-bottom > .footer-bottom-item {
        margin-right: calc(0.65em + 1vw);
    }

    #footer-bottom > span.footer-bottom-item {
        font-weight: 600;
    }

    #footer-bottom > a {
        text-decoration: underline;
    }

}
