:root {
    --primary: #0e325e;
    --secondary: #0d6efd;
    --body-background: #f2f8ff;
    --navbar-top-background: transparent;
    --navbar-scrolled-background: #0e325e;
    --navbar-text-color: white;
    --navbar-hover-text-color: lightgray;
    --text-color: white;
    --button-text-color: white;
    --button-border-color: white;
    --button-background-color: transparent;
    --button-text-hover-color: white;
    --button-border-hover-color: white;
}

body {
    overflow-x: hidden;
    -ms-overflow-x: hidden;
    background-color: var(--body-background);
}

/*
**********************
Navbar CSS
**********************
*/

.navbar-top {
    background-color: var(--navbar-top-background)!important;
    color: var(--navbar-text-color)!important;
}

.navbar-not-top {
    background-color: var(--navbar-scrolled-background)!important;
    color: var(--navbar-text-color)!important;
}

a.navbar-brand {
    color: var(--navbar-text-color)!important;
    font-weight: bold;
    font-size: 0.85vw;
}

a.nav-link {
    color: var(--navbar-text-color)!important;
    margin-left: 12px!important;
    margin-right: 12px!important;
    font-size: 0.80vw!important;
}

a.nav-link:hover {
    border-bottom-color: var(--navbar-hover-text-color)!important;
    color: var(--navbar-hover-text-color)!important;
    border-bottom-width: thin!important;
    border-bottom-style: solid;
}

/*
**********************
Container CSS
**********************
*/

.custom-container {
    position: relative;
    width: 100%;
    color: black!important;
}

.banner-container {
    position: absolute;
    color: var(--text-color);
    top: 25%;
    width: 100%;
}

@media screen and (max-device-width: 768px) {
    .banner-container {
        top: 5%!important;
    }

    .mt-4 {
        margin-top: 1%!important;
    }

    a.navbar-brand {
        color: var(--navbar-text-color)!important;
        font-weight: bold;
        font-size: 0.85vh;
    }

    a.nav-link {
        color: var(--navbar-text-color)!important;
        margin-left: 12px!important;
        margin-right: 12px!important;
        font-size: 0.80vh!important;
    }

    .content-line {
        font-size: 3.8vw!important;
        padding: 10px;
    }

    .title {
        font-size: 4.2vh!important;
        font-weight: bold;
    }

}

.primary-background {
    background-color: var(--primary)!important;
    color: var(--text-color)!important;
}

/*
**********************
Image CSS
**********************
*/

.banner {
    position: relative;
    top: -12%;
    left: 0;
    width: 100%;
    z-index: -1;
}

.banner-title {
    font-size: 4.2vw;
    font-weight: bold;
}

.banner-text {
    font-size: 1.5vw;
    padding: 10px;
}

.what-we-do {
    width: 100%;
}

/*
**********************
Text CSS
**********************
*/

.title {
    font-size: 4.2vw;
    font-weight: bold;
}

.content-line {
    font-size: 3.8vh;
    padding: 10px;
}

/*
**********************
Button CSS
**********************
*/

button.btn-white {
    color: var(--button-text-color)!important;
    border-color: var(--button-border-color)!important;
    background-color: var(--button-background-color)!important;
    border-radius: 0;
    border-style: solid;
    border-width: 4px;
    font-size: 1vw;
    padding: 10px 50px;
}

button.btn-white:hover {
    background-color: var(--secondary)!important;
}

/*
**********************
Box CSS
**********************
*/

.box {
    border: 4px solid white;
    border-radius: 10px;
    width: 100%;
}

.box-title {
    font-size: 2.5vw;
    font-weight: bold;
}

.box-line {
    color: white;
    border-width: 4px;
    border-style: solid;
    border-color: white;

}

@media screen and (max-device-width: 728px) {
    .box-title {
        font-size: 2.5vh;
        font-weight: bold;
    }
}
