/* ------------------------------
 UNIVERSAL
--------------------------------*/
@font-face {
    font-family: 'Montserrat';
    font-weight: 400;
    font-style: normal;
    src:url('../fonts/Montserrat-Regular.woff2') format('woff2'),
    url('../fonts/Montserrat-Regular.woff')format('woff'),
    url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-display: swap;
}
:root {
    --clr-black: #000;
    --clr-white: #fff;
}
html { 
    box-sizing: border-box; 
}
*, *::before, *::after { 
    box-sizing: inherit; 
}
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #545454;
    background: var(--clr-white);
}
h1 {
    font-size: clamp(2rem, 5vw + .5rem, 2.75rem);
    letter-spacing: 2px; 
    color: var(--clr-black);
    margin-bottom: 0.75rem;
    text-align: left;
}
h2 {
    font-size: clamp(1.5rem, 4vw + .25rem, 2rem);
    letter-spacing: 1.25px; 
    color: var(--clr-black);
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}
h3 {
    color: var(--clr-black);
    letter-spacing: 1.25px; 
    margin-top: 0;
    margin-bottom: 0.75rem;
}
h4 {
    color: var(--clr-black);
    letter-spacing: 1.25px; 
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: inherit !important;
    text-decoration: none !important;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
    text-decoration: none !important;
}
hr {
    width: 100%;
    margin: 50px auto 25px;
    border: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.9) 50%, 
        rgba(0, 0, 0, 0) 100%
    );
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3); 
    display: block;
}
/* ------------------------------
GLOBAL LAYOUT WRAPPER
--------------------------------*/
.index-body {
    max-width: 70%;
    margin: 0 auto;
    padding: 2rem 1rem;
    text-align: justify;
}
@media (max-width: 1000px) {
    .index-body { 
        max-width: 95%; 
        font-size: 14px; 
    }
}
/* ------------------------------
NAVIGATION BAR
--------------------------------*/
.top-navigation-bar {
    background: rgba(0, 0, 0, 0.9);
    font-size: 16px;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.top-navigation-bar a {
    float: left;
    display: block;
    color: var(--clr-white);
    padding: 15px 30px;
    text-decoration: none;
}
.top-navigation-bar a:hover {
    background: #202020;
    border-bottom: 3px solid var(--clr-white);
}
.top-navigation-bar .portal-icon {
    float: right;
    display: flex;
    align-items: center;
}
.top-navigation-bar .portal-icon img {
    width: 20px;
    height: 20px;
}
.top-navigation-bar .portal-icon img:hover {
    background: rgba(0, 0, 0, 0.9);
    border-bottom: none;
}
@media (max-width: 1000px) {
    .top-navigation-bar { 
        font-size: 10px; 
    }
    .top-navigation-bar a {
        padding: 7.5px 12.5px;
    }
    .top-navigation-bar .portal-icon img {
        width: 10px;
        height: 10px;
    }
}
/* ------------------------------
LANDING PAGE
--------------------------------*/
.landing-page {
    position: relative;
    height: 100vh;
    background: url('../images/mfo.jpg') no-repeat fixed center 50% / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--clr-white);
}
.landing-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}
.landing-page-elevator-pitch {
    position: relative;
    z-index: 1;
    max-width: 50%;
    padding: 0 1rem;
    margin-top: 8.5rem;
}
.landing-page p { 
    color: var(--clr-white);
    font-size: 1.5rem;
}
.logo-home {
    position: absolute;
    top: 30%;
    left: 75%;
    transform: translate(-50%, -50%);
    width: 400px;
    max-width: 30%;
    z-index: 1;
}
@media (max-width: 1000px) {
    .landing-page {
        background-attachment: scroll;
    }
    .landing-page-elevator-pitch {
        max-width: 75%;
        margin-top: 5rem;
    }
    .landing-page p { 
        font-size: 1rem;
    }
    .logo-home { 
        top: 22.5%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 75vw;
        width: 75vw;
    }
}
/* ------------------------------
PURPOSE
--------------------------------*/
.family-office-benefits {
    list-style: none; 
    padding: 1.25rem 1.5rem;
    margin: 1.5rem auto; 
    max-width: 80%; 
    border: 1.25px solid #bdbdbd;
    border-radius: 6px;
    background: #fbfbfb;
    text-align: center;
}
.family-office-benefits li {
    margin: 0.75rem 0;
}
@media (max-width: 1000px) {
    .family-office-benefits { 
        max-width: 100%; 
    }
}
/* ------------------------------
SERVICES GRID
--------------------------------*/
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.service-card {
    border: 1.25px solid #bdbdbd;
    background: #fbfbfb;
    border-radius: 4px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}
.service-card p { 
    text-align: left; 
}
.service-card:hover { 
    transform: translateY(-12.5px); 
}
@media (max-width: 1000px) {
    .services { 
        width: 100%; 
    }
    .service-card p { 
        font-size: 12px;
    }
}
/* ------------------------------
CONTACT
--------------------------------*/
.contact-details { 
    width: 100%; 
}
.contact-details colgroup col:first-child { 
    width: 25%; 
}
.contact-details colgroup col:last-child  { 
    width: 75%; 
}
.contact-details th {
    text-align: left;
    padding-right: 1rem;
    vertical-align: top;
    white-space: nowrap;
}
.contact-details td {
    padding-bottom: .5rem;
    text-align: right;
}
.contact-details td a {
    color: inherit; 
    text-decoration: none;
}
.contact-details td a:hover {
    text-decoration: underline;
}
@media (max-width: 1000px) {
    .contact-details table {
        font-size: 0.75rem;
    }
}
/* ------------------------------
FOOTER
--------------------------------*/
.site-footer {
    background: #202020;
    color: var(--clr-white);
    padding: 3rem 5% 2rem;
    font-size: 14px;
    position: relative;
}
.footer-columns { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 2.5rem;
    line-height: 1.75;
}
.footer-column { 
    flex: 1 1 200px; 
}
.site-footer h1 {
    color: var(--clr-white);
    font-size: 1.25rem;
    letter-spacing: 0.1em; 
    margin: 0 0 .75rem;
}
.site-footer a {
    color: var(--clr-white);
    text-decoration: none; 
    position: relative;
}
.site-footer a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 1px;
    background: currentColor; 
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease 0.2s;/
}
.site-footer a:hover::after, .site-footer a:focus::after {
    transform: scaleX(1);
}
.site-footer .fsca-disclaimer {
    margin-top: 1rem;
    font-size: 10px;
}
.site-footer .linkedin { 
    position: absolute !important;
    right: 35px;
    bottom: 25px;
    left: auto;
    display: block;
}
.site-footer .linkedin, .site-footer .linkedin:hover, .site-footer .linkedin:focus {
    text-decoration: none;
}
.site-footer .linkedin::after {
    content: none !important;
}
.site-footer .linkedin img {
    width: 25px;
    height: 25px;
    transition: opacity .25s ease;
}
.site-footer .linkedin:hover img { 
    opacity: .7; 
}
@media (max-width: 1000px) {
    .site-footer .fsca-disclaimer {
        font-size: 7.5px;
    }
}
/* ------------------------------
CONTACT MAP
--------------------------------*/
.contact-map {
    border: 0;
}
/* ------------------------------
CAREERS PAGE
--------------------------------*/
.careers-body {
    margin: 0;
}
.careers-header {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    background-color: black;
    overflow: hidden;
    border-radius: 5px;
}
.careers-header a {
    float: left;
    display: block;
    color: #fff;
    text-align: center;
    padding: 15px 30px;
    text-decoration: none;
}
.careers-header a:hover {
    background-color: #545454;
}
.careers-main {
    background: #fff;
    color: #545454;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 auto;
    width: 60%;
    text-align: justify;
}
.careers-main h1 {
    color: #1d44b8;
    letter-spacing: 20px;
    text-align: left;
}
.careers-main h2 {
    letter-spacing: 1.5px;
    text-align: left;
    color: black;
}
.careers-main h3 {
    color: #343434;
    font-size: 90%;
    line-height: 1;
    padding-top: 1px;
    letter-spacing: 1px;
    text-align: left;
}
.careers-main strong {
    color: black;
}
.careers-main a {
    text-decoration: none;
    color: #1d44b8;
    text-decoration-line: none;
    font-weight: 600;
}
.careers-main a:hover {
    text-decoration-line: underline;
}
.careers-main hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
    margin: 35px 0px;
    box-shadow: none;
    width: auto;
}
.careers-logo {
    display: block;
    margin: 50px 0px 35px auto;
    width: 25%;
    min-width: 200px;
    height: auto;
}
.careers-recruitment-form fieldset {
    background-color: #F8F8F8;
    padding: 1.25em 2.25em;
    margin: 1.5em 0;
    border: 0.5px solid #595959;
    border-radius: 10px;
    text-align: left;
    letter-spacing: 1px;
}
.careers-recruitment-form legend {
    font-size: 120%;
    letter-spacing: 2px;
    font-weight: 600;
    color: #1d44b8;
    background-color: white;
    padding: 10px 25px;
    border: 0.5px solid #595959;
    border-radius: 5px;
}
.careers-recruitment-form-input,
.careers-recruitment-form-select {
    font-family: "Montserrat", sans-serif;
    font-size: 85%;
    color: #595959 !important;
    width: 100%;
    padding: 12px;
    margin: 4px 0;
    display: inline-block;
    border: 0.5px solid #C0C0C0;
    border-radius: 4px;
    box-sizing: border-box;
}
.careers-recruitment-form-disclaimer {
    font-weight: 200;
    font-size: 0.8em;
}
.careers-recruitment-form-file {
    font-family: "Montserrat", sans-serif;
    margin: 4px 0;
    letter-spacing: 1px;
}
.careers-recruitment-form-file::file-selector-button {
    font-family: "Montserrat", sans-serif;
    letter-spacing: 1px;
    background-color: #C0C0C0;
    color: white;
    padding: 10px 30px;
    margin: 0 35px 0 0;
    border: 0.5px solid #404040;
    border-radius: 4px;
    transition: 0.25s;
}
.careers-recruitment-form-file::file-selector-button:hover {
    background-color: #9e9e9e;
}
.careers-recruitment-form-submit {
    font-family: "Montserrat", sans-serif;
    width: 100%;
    background-color: #1d44b8;
    color: white;
    letter-spacing: 1px;
    padding: 15px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.25s;
}
.careers-recruitment-form-submit:hover {
    background-color: rgb(11, 27, 72, 0.8);
}
.careers-vacancy {
    background: #f4f4f4;
    color: #545454;
    font-family: 'Montserrat', sans-serif;
    text-align: justify;
    font-size: 14px;
    line-height: 1.5;
    margin: 10px 0px 35px;
    padding: 2.5% 5%;
    border-radius: 5px;
    border-style: solid;
    border-width: 0.5px;
}
.careers-vacancy h1 {
    font-size: 200%;
    text-align: left;
    color: #1d44b8;
    letter-spacing: 1.75px;
    margin: 0;
    font-weight: 600;
    line-height: 2;
}
.careers-vacancy h2 {
    font-size: 125%;
    text-align: left;
    color: black;
    border-bottom: 0.25px solid #1d44b8;
    letter-spacing: 1.25px;
    margin: 0px 0px 15px;
    font-weight: 600;
    line-height: 2;
}
.careers-vacancy ul {
    padding: 0 0 0 1.15em;
    list-style-position: outside;
}
.careers-vacancy li {
    line-height: 1.65;
}
.careers-social-media-icons {
    width: 25px;
    height: 25px;
    margin: 0 0 0 100px;
}
.careers-social-media-icons:hover {
    opacity: 0.8;
}
.careers-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    text-align: center;
    letter-spacing: 1px;
    color: white;
    background-color: black;
    overflow: hidden;
    height: 40px;
}
@media only screen and (max-width: 1000px) {
    .careers-logo {
        width: 35%;
    }
    .careers-main {
        width: 90%;
        font-size: 14px;
    }
    .careers-footer {
        font-size: 9px;
        height: 30px;
    }
}
@media print {
    .careers-header {
        display: none;
    }
    .careers-main {
        width: 85%;
    }
    .careers-social-media-icons {
        width: 20px;
        height: 22px;
        margin: 0 0 0 35px;
    }
    .careers-footer {
        display: none;
    }
}
/* ------------------------------
LEGAL PAGE
--------------------------------*/
.legal-main {
    background: #fff;
    color: #545454;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 auto;
    width: 60%;
    text-align: justify;
}
.legal-main h1 {
    color: #1d44b8;
    letter-spacing: 20px;
    text-align: left;
}
.legal-main h2 {
    letter-spacing: 1.5px;
    text-align: left;
    color: black;
}
.legal-main a {
    text-decoration: none;
    color: #1d44b8;
    text-decoration-line: none;
    font-weight: 600;
}
.legal-main a:hover {
    text-decoration-line: underline;
}
.legal-main hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
    margin: 35px 0px;
    box-shadow: none;
    width: auto;
}
.legal-logo {
    display: block;
    margin: 50px 0px 35px auto;
    width: 25%;
    min-width: 200px;
    height: auto;
}
@media only screen and (max-width: 1000px) {
    .legal-logo {
        width: 35%;
    }
    .legal-main {
        width: 90%;
        font-size: 14px;
    }
}
@media print {
    .legal-main {
        width: 85%;
    }
}
/* ------------------------------
PRINT STYLES
--------------------------------*/
@media 
print {
    .top-navigation-bar, .site-footer {
        display: none;
    }
}