*,*:before,*:after{
margin:0px;
padding:0px;
outline:0px;
}

:root{
--base:rgb(0, 36, 27);
--gold:rgb(227, 166, 73);
}

@font-face{
src:url(../fonts/poppins-SemiBold.ttf);
font-family:poppins_semibold;
}

@font-face{
src:url(../fonts/notosans.ttf);
font-family:notosans;
}

@font-face{
src:url(../fonts/Rubik-VariableFont_wght.ttf);
font-family:rubik;
}

@font-face{
font-family:PlayfairDisplay;
src:url('../fonts/PlayfairDisplay-Bold.ttf');
}

div#body_wrapper{
position:relative;
min-height:1000px;
}

div#body_wrapper header{
position:relative;
min-height:100px;
}

div#body_wrapper header > div#header_sub{
position:relative;
display:flex;
padding:7px 20px 5px 20px;
background:var(--base);
}

div#body_wrapper header > div#header_sub > div{
position:relative;
width:50%;
display:flex;
flex-wrap:nowrap;
gap:10px;
box-sizing:border-box;
/*border:1px solid red;*/
}

div#body_wrapper header > div#header_sub > div:nth-child(2){
padding:0px 0px 0px 25%;
}

div#body_wrapper header > div#header_sub > div p{
position:relative;
color:white;
font:12px notosans;
}

div#body_wrapper header > div#header_sub > div ul{
position:relative;
display:flex;
flex-wrap:nowrap;
gap:10px;
/*border:1px solid red;*/
list-style:none;
height:100%;
}

div#body_wrapper header > div#header_sub > div ul li{
position:relative;
display:block;
height:inherit;
}

div#body_wrapper header > div#header_sub > div ul li a{
display:block;
text-decoration:none;
color:white;
font:12px notosans;
}

div#client_sign{
display:flex;
}

div#client_sign a{
display:flex;
gap:5px;
text-decoration:none;
height:100%;
box-sizing:border-box;
color:white;
padding:0px 0px 0px 0px;
font:12px notosans;
color:var(--gold);
}

div#client_sign svg{
display:block;
height:20px;
width:20px;
margin:-3px 0px 0px 0px;
color:var(--gold);
}

div#logo_menu_div{
position:relative;
/*border:1px solid red;*/
display:flex;
gap:20px;
min-height:50px;
box-sizing:border-box;
padding:10px 0px 0px 20px;
}

div#logo_menu_div nav{
position:relative;
box-sizing:border-box;
padding:20px 0px 0px 100px;
margin:0px 0px 0px 150px;
}

div#logo_menu_div nav ul{
display:flex;
background:white;
gap:40px;
list-style:none;
}

div#logo_menu_div nav ul li a{
font:14px notosans;
text-decoration:none;
color:rgb(20,20,20);
}

div#intouch_div{
position:absolute;
top:20px;
right:120px;
height:40px;
width:120px;
border:1px solid var(--gold);
border-radius:5px;
}

div#intouch_div a{
display:block;
height:100%;
text-align:center;
text-decoration:none;
padding:8px 0px 0px 0px;
font:14px notosans;
color:var(--gold);
}

/********************
HERO SECTION*********/
div#hero_section{
position:relative;
height:750px;
background:transparent url('../images/hero.jpg') no-repeat center;
background-size:cover;
}

div#hero_section div{
position:absolute;
right:20%;
top:15%;
width:450px;
height:300px;
background:rgba(0, 36, 27,.6);
backdrop-filter:blur(5px);
box-sizing:border-box;
padding:50px;
border-radius:10px;
}

div#hero_section div:after{
content:'';
position:absolute;
z-index:1;
top:10px;
right:10px;
bottom:10px;
left:10px;
border:1px solid var(--gold);
border-radius:10px;
}

div#hero_section div h5{
font:32px PlayfairDisplay;
color:white;
}

div#hero_section div span{
display:block;
height:2px;
width:200px;
background:var(--gold);
margin:2px 0px 5px 0px;
}

div#hero_section div p{
font:16px notosans;
line-height:1.7em;
color:white;
}

/* =========================
   SERVICES SECTION
========================= */

.services-section {
    background: #F8F1DF;
    padding: 110px 7%;
}

.services-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 70px;
    flex-wrap: wrap;
}

/* SHARED TAG */

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #D7AA42;
    margin-bottom: 22px;
}

/* LEFT INTRO */

.services-intro {
    flex: 1 1 520px;
    max-width: 560px;
}

.services-intro h2 {
    font-family: PlayfairDisplay, serif;
    font-size: 56px;
    line-height: 1.1;
    color: #02271B;
    margin-bottom: 28px;
    font-weight: 600;
}

.services-intro p {
    font-family: notosans;
    font-size: 20px;
    line-height: 1.9;
    color: #4E4E4E;
    max-width: 520px;
}

/* RIGHT CARDS */

.services-cards {
    flex: 1 1 620px;
    display: flex;
    gap: 28px;
    flex-wrap: nowrap;
}

.service-card {
    background: #fff;
    border: 1px solid rgba(2,39,27,.08);
    border-radius: 12px;
    padding: 42px;
    flex: 1 1 280px;
    transition: .35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,.06);
}

/* ICON */

.icon-circle {
    width: 72px;
    height: 72px;
    border: 1.5px solid #D7AA42;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
}

.icon-circle svg {
    width: 30px;
    height: 30px;
    color: #D7AA42;
}

/* CARD TEXT */

.service-card h3 {
    font-family: poppins_semibold, serif;
    font-size: 22px;
    color: #02271B;
    margin-bottom: 18px;
    font-weight: 600;
}

.service-card p {
    font-family: notosans;
    font-size: 18px;
    line-height: 1.9;
    color: #5A5A5A;
    margin-bottom: 30px;
}

/* LINK */

.learn-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #D7AA42;
    font-weight: 600;
    font-size: 17px;
    transition: .3s ease;
}

.learn-link svg {
    width: 18px;
    height: 18px;
}

.learn-link:hover {
    gap: 16px;
}


/* =========================
   SOLUTIONS SECTION
========================= */

.solutions-section {
    padding: 120px 7%;
    background: #F1F6F2;
}

/* HEADER */

.solutions-header {
    margin-bottom: 70px;
}

.solutions-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 80px;
    flex-wrap: wrap;
}

.solutions-title-row h2 {
    flex: 1 1 500px;
    font-family: PlayfairDisplay, serif;
    font-size: 58px;
    line-height: 1.1;
    color: #02271B;
    font-weight: 600;
}

.solutions-title-row p {
    flex: 1 1 420px;
    max-width: 500px;
    font-size: 18px;
    line-height: 1.9;
    color: #5C5C5C;
    font-family: notosans;
}

/* FLEX CARDS */

.solutions-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 28px;
}

/* CARD */

.solution-card {
    background: #F8F1DF;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(2,39,27,.05);
    transition: .35s ease;
    flex: 1 1 280px;
    min-width: 260px;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
}

/* ICON */

.solution-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1.5px solid #D7AA42;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
}

.solution-icon svg {
    width: 28px;
    height: 28px;
    color: #D7AA42;
}

/* TEXT */

.solution-card h3 {
    font-family: poppins_semibold, serif;
    font-size: 24px;
    color: #02271B;
    margin-bottom: 16px;
    font-weight: 600;
}

.solution-card p {
    font-family: notosans;
    font-size: 17px;
    line-height: 1.9;
    color: #5E5E5E;
    margin-bottom: 28px;
	height:150px;
	/*border:1px solid red;*/
}

/* LINK */

.solution-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #D7AA42;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
	font-family:notosans;
}

.solution-card a svg {
    width: 18px;
    height: 18px;
}

.solution-card a:hover {
    gap: 16px;
}



/* RELATIONSHIP FEATURES */
div#relationships{
display:flex;
position:relative;
min-height:600px;
padding:7% 100px 0px 100px;
}

div#relationships > div{
/*border:1px solid black;*/
position:relative;
width:50%;
min-height:400px;
box-sizing:border-box;
}

div#relationships > div:nth-child(1) p{
font:42px notosans;
color:rgba(220,220,220,.3);
line-height:.6em;
margin:-30px 0px 0px -20px;
}

div#relationships > div:nth-child(1) figure{
position:absolute;
z-index:5;
top:3%;
left:15%;
width:450px;
height:500px;
}

div#relationships > div:nth-child(1) figure:after{
position:absolute;
content:'';
top:20px;
right:20px;
left:20px;
bottom:20px;
border:2px solid var(--gold);
z-index:2;
}

div#relationships > div:nth-child(1) figure:before{
position:absolute;
content:'';
top:80px;
right:-70px;
background:var(--base);
z-index:-1;
width:400px;
height:450px;
}

div#relationships > div:nth-child(1) figure img{
display:block;
height:100%;
width:100%;
}

div#relationships > div:nth-child(2){
padding:50px 0px 0px 50px;
}

div#relationships > div:nth-child(2) > h4{
font:42px poppins_semibold;
line-height:1.2em;
}

div#relationships > div:nth-child(2) > p{
font:18px notosans;
line-height:1.7em;
color:rgb(100,100,100);
margin:30px 0px 0px 0px;
}

.relationship-features {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 60px;
    border-top: 1px solid rgba(2,39,27,.08);
    padding-top: 35px;
}

/* ITEM */

.feature-item {
    flex: 1;
    text-align: center;
    padding: 0 28px;
    position: relative;
}

/* Divider */

.feature-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10px;
    height: 75px;
    width: 1px;
    background: rgba(2,39,27,.08);
}

/* ICON */

.feature-icon {
    margin-bottom: 18px;
}

.feature-icon svg {
    width: 34px;
    height: 34px;
    stroke-width: 1.5;
    color: #D7AA42;
}

/* TEXT */

.feature-item h4 {
    font-family: notosans;
    font-size: 16px;
    line-height: 1.6;
    color: #02271B;
    font-weight: 500;
}

/* =========================
   STATS BANNER SECTION
========================= */

.stats-banner {
    position: relative;
    padding-bottom: 120px;
    background: #F4F8F5;
}

/* HERO IMAGE */

.stats-bg {
    position: relative;
    height: 520px;

    background:
        url("images/private-banking.jpg")
        center center / cover
        no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* OVERLAY */

.stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2,39,27,.55) url('../images/metro_global.jpg') no-repeat;
	background-size:cover;
}

/* CONTENT */

.stats-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 30px;
}

.stats-tag {
    display: inline-block;
    color: #D7AA42;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

.stats-content h2 {
    font-family: PlayfairDisplay, serif;
    font-size: 68px;
    line-height: 1.1;
    font-weight: 600;
}

/* FLOATING CARDS */

.stats-cards {
    width: 86%;
    margin: -90px auto 0;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    position: relative;
    z-index: 10;
}

/* CARD */

.stat-card {
    flex: 1 1 320px;
    min-height: 210px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 55px 35px;
    text-align: center;
}

/* COLOURS */

.stat-card.light {
    background: #F8F1DF;
}

.stat-card.dark {
    background: #02271B;
}

.stat-card.gold {
    background: #D7AA42;
}

/* NUMBERS */

.stat-card h3 {
    font-family: PlayfairDisplay, serif;
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* TEXT */

.stat-card p {
    font-family: notosans;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* LIGHT CARD */

.light h3 {
    color: #02271B;
}

.light p {
    color: #5A5A5A;
}

/* DARK CARD */

.dark h3,
.dark p {
    color: #fff;
}

/* GOLD CARD */

.gold h3,
.gold p {
    color: #02271B;
}

/* =========================
   CTA SECTION
========================= */

.cta-section {

    position: relative;
    overflow: hidden;

    padding: 140px 7%;

    background:
    radial-gradient(
        circle at 80% 50%,
        rgba(10,90,55,.35),
        transparent 45%
    ),
    linear-gradient(
        135deg,
        #011D14 0%,
        #02271B 55%,
        #033122 100%
    );
}

/* subtle glow */

.cta-section::before {

    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -120px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
    rgba(215,170,66,.05);

    filter: blur(80px);
}

/* CONTENT */

.cta-container {

    position: relative;
    z-index: 2;

    max-width: 900px;
    margin: auto;

    text-align: center;
}

/* TAG */

.cta-tag-wrap {

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;

    margin-bottom: 40px;
}

.cta-line {

    width: 70px;
    height: 1px;
    background: rgba(215,170,66,.6);
}

.cta-tag {

    color: #D7AA42;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;

    font-family: notosans;
}

/* HEADING */

.cta-section h2 {

    font-family: PlayfairDisplay, serif;
    font-size: 78px;
    line-height: 1.08;
    font-weight: 500;

    color: #F8F1DF;

    margin-bottom: 30px;
}

.cta-section h2 em {

    color: #D7AA42;
    font-style: italic;
    font-weight: 500;
}

/* TEXT */

.cta-section p {

    max-width: 720px;
    margin: auto;

    color: rgba(248,241,223,.82);

    font-size: 20px;
    line-height: 1.9;

    font-family: notosans;

    margin-bottom: 50px;
}

/* ACTIONS */

.cta-actions {

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    gap: 28px;
}

/* BUTTON */

.cta-btn {

    background: #D7AA42;
    color: #02271B;

    padding: 18px 38px;

    text-decoration: none;

    font-family: notosans;
    font-weight: 600;

    border-radius: 4px;

    transition: .35s;
}

.cta-btn:hover {

    transform: translateY(-3px);

    background: #E1B650;

    box-shadow:
    0 15px 35px rgba(215,170,66,.22);
}

/* PHONE */

.cta-phone {

    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #F8F1DF;
    text-decoration: none;

    font-family: notosans;
    font-size: 18px;

    transition: .3s;
}

.cta-phone svg {

    width: 18px;
    height: 18px;

    color: #D7AA42;
}

.cta-phone:hover {

    color: #D7AA42;
}

/* =========================
   FOOTER
========================= */

.footer {

    background: #02271B;
    color: #F8F1DF;
    padding: 100px 7% 35px;
}

/* CONTAINER */

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    padding-bottom: 60px;
    border-bottom:
    1px solid rgba(248,241,223,.08);
}

/* COLUMN */

.footer-col {
    flex: 1 1 180px;
    min-width: 180px;
}

.footer-brand {
    flex: 1.5;
    max-width: 420px;
}

/* LOGO */

.footer-logo {
    width: 180px;
    margin-bottom: 28px;
}

/* TEXT */

.footer-brand p {
    font-family: notosans;
    line-height: 1.9;
    color: rgba(248,241,223,.72);

    margin-bottom: 28px;
}

/* HEADINGS */

.footer-col h4 {

    font-family: poppins_semibold, serif;
    font-size: 18px;
    font-weight: 500;

    color: #F8F1DF;

    margin-bottom: 24px;
}

/* LIST */

.footer-col ul {

    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {

    margin-bottom: 16px;
}

/* LINKS */

.footer-col a {

    text-decoration: none;
    color: rgba(248,241,223,.72);

    font-family: notosans;

    transition: .3s;
}

.footer-col a:hover {

    color: #D7AA42;
}

/* CONTACT */

.footer-contact li {

    display: flex;
    align-items: center;
    gap: 12px;

    color: rgba(248,241,223,.72);

    font-family: notosans;
}

.footer-contact svg {

    width: 16px;
    height: 16px;

    color: #D7AA42;
}

/* SOCIAL */

.footer-social {

    display: flex;
    gap: 14px;
}

.footer-social a {

    width: 42px;
    height: 42px;

    border:
    1px solid rgba(215,170,66,.25);

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: .3s;
}

.footer-social a:hover {

    background: #D7AA42;
}

.footer-social svg {

    width: 18px;
    height: 18px;

    color: #D7AA42;
}

.footer-social a:hover svg {

    color: #02271B;
}

/* BOTTOM */

.footer-bottom {

    display: flex;
    justify-content: space-between;
    align-items: center;

    flex-wrap: wrap;
    gap: 20px;

    padding-top: 35px;
}

.footer-bottom p {

    font-family: notosans;
    color: rgba(248,241,223,.55);
}

.footer-links {

    display: flex;
    gap: 24px;
}

.footer-links a {

    color: rgba(248,241,223,.55);
    text-decoration: none;

    font-family: notosans;
    transition: .3s;
}

.footer-links a:hover {

    color: #D7AA42;
}
