body {
    margin: auto;
    width: auto;
    height: auto;
    padding: 0;
}

* {
    box-sizing: border-box;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

:root {
    --white: #FFFFFF;
    --lightblue: #85C1E9;
    --header: #1C352D;
    --header-a: #454444;
    --red: #B92323;
}

/* container */
.container {
    margin: auto;
    width: 70%;
}

header {
    background-color: var(--header);
    text-align: right;
}

header a {
    color: var(--white);
    font-size: 12px;
    text-decoration: none;
    display: inline-block;
    padding: 10px;
}

header a:first-child,
header a:last-child {
    background-color: var(--header);
}

header a:nth-child(2) {
    padding: 10px;
    background-image: linear-gradient(to bottom, #b22222, #c52926, #d8302b, #eb372f, #ff3f33);
}

/* section logo description */
.logo {
    padding: 15px;
    -webkit-box-shadow: 0px 5px 15px -5px rgba(115, 111, 115, 1);
    -moz-box-shadow: 0px 5px 15px -5px rgba(115, 111, 115, 1);
    box-shadow: 0px 5px 15px -5px rgba(115, 111, 115, 1);
}

.logo img {
    width: 60px;
    float: left;
    vertical-align: middle;
}

.description a {
    font-size: 18px;
    display: inline-block;
    border-right: 1px solid #EBEAEA;
    padding: 10px;
    text-decoration: none;
    color: inherit;
    font-weight: 400;
}

.description a span {
    font-size: 11px;
    color: var(--header-a);
    font-weight: normal;
}

.connect {
    background-image: url(assets/international-banking-shutterstock-1032881518.jpg);
    background-size: cover;
    width: 100%;
    height: 350px;
    padding: 15px;
}

.connect div {
    width: 50%;
    background-color: #FFFFFF;
    padding: 15px;
}

.expat {
    display: flex;
    justify-content: space-between;
}

.expat div {
    flex-basis: 30%;
}

.expat div img {
    width: 100%;
}

section p {
    font-size: 14px;
    color: #464545;
    line-height: 25px;
}

h1,
h3 {
    font-weight: 400;
}


/* footer */
footer {
    background-color: var(--header);
    padding: 15px 0;
    color: var(--white);
    font-size: 12px;
}

footer p {
    line-height: 20px;
}


/* mobile */

@media only screen and (max-width: 600px) {
    .container {
        width: 95%;
    }

    div {
        display: block;
        width: 100%;
    }

    .connect div {
        width: 90%;
        margin: auto;
    }

    .logo nav {
        display: flex;
        overflow-x: scroll;
    }

    .description a span {
        font-size: 15px;
    }

    .logo img {
        display: block;
        margin: auto;
        float: none;
    }

    .expat {
        display: block;
    }
}
