div#header {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 500px;
    background: url(/img/index-bridge.png);
    background-size: cover;
    background-position: 91% 100%;
}

div#header h1 {
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    font-size: 3.5em;
}

@media screen and (max-width: 750px) {
    div#header h1 {
        font-size: 2em;
    }
}

img#discipline {
    height: 100%;
    width: 100%;
}

div#who-we-are {
    text-align: center;
}

div#what-sets-us-apart {
    padding: 100px 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #1F294F;
    color: white;
}

div#what-sets-us-apart div#text-div {
    color: white !important;
    width: 45vw;
    text-align: center;
    margin-left: 30px;
    padding: 10px;
}

@media screen and (max-width: 1000px) {
    div#what-sets-us-apart {
        display: block;
        text-align: center;
    }
    div#what-sets-us-apart div#text-div {
        width: 100%;
        margin-left: 0;
    }
}

img#circle-logo {
    margin: 3vh 0;
    width: 20rem;
}

@media screen and (max-width: 550px) {
    div#header {
        height: 250px;
    }
}

div#what-sets-us-apart p {
    margin: 10px 0;
    padding: 15px 0;
}

div#who-we-are p {
    padding: 15px 15vw;
    margin: 10px auto;
}

div#contact {
    padding: 30px 0;
    text-align: center;
}

div.card {
    width: 22rem;
    margin: 10px;
    text-align: center;
    padding: 30px;
    border: 1px solid #cacaca;
    color: #1F294F;
}

div#card-container {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

div.card div.header {
    text-transform: uppercase;
    font-weight: 900;
    color: #1F294F;
    font-size: 27px;
}

div.card div.line {
    width: 50px;
    height: 3px;
    background-color: #1F294F;
    margin: 16px auto;
}

div.card img {
    width: 290px;
    height: 290px;
    border-radius: 50%;
}

div.caption-big {
    margin-top: 30px;
    font-size: 18px;
    color: #1F294F;
    font-weight: 700;
}

div.caption {
    margin-top: 5px;
    font-size: 14px;
    color: #1F294F;
    font-weight: 700;
}

@media screen and (max-width: 780px) {
    div#card-container {
        display: block;
    }
    div.card {
        margin-left: auto;
        margin-right: auto;
    }
}

div#mail-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

div#mail-container div {
    padding: 10px 0;
    width: 30%;
}

div#mail-container a {
    display: block;
    margin-top: 12px;
    text-decoration: none;
    color: #00b9b6;
    word-wrap: break-word;
}

div#advisory, div#investor {
    border-right: 1px dashed lightgrey;
}

div#career {
    border-left: 1px dashed lightgrey;
}

@media screen and (max-width: 1024px) {
    div#mail-container {
        display: block;
    }
    div#mail-container div {
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 30px;
    }
    div#advisory, div#investor {
        border-bottom: 1px dashed lightgrey;
        border-right: none;
    }
    div#career {
        border-left: none;
    }
}