/* Minification failed. Returning unminified contents.
(2,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(5,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(19,17): run-time error CSS1039: Token not allowed after unary operator: '-black'
(43,17): run-time error CSS1039: Token not allowed after unary operator: '-dkgray'
(52,17): run-time error CSS1039: Token not allowed after unary operator: '-dkgray'
(56,17): run-time error CSS1039: Token not allowed after unary operator: '-dkgray'
(62,21): run-time error CSS1039: Token not allowed after unary operator: '-dkgray'
(80,17): run-time error CSS1039: Token not allowed after unary operator: '-ltgray'
(87,28): run-time error CSS1039: Token not allowed after unary operator: '-dkgray'
(119,17): run-time error CSS1039: Token not allowed after unary operator: '-dkred'
(125,17): run-time error CSS1039: Token not allowed after unary operator: '-dkred'
(131,28): run-time error CSS1039: Token not allowed after unary operator: '-dkgray'
 */
:root {
    --dkgray: #333333;
    --ltgray: #666666;
    --dkred: #AA0000;
    --ltred: #DA0000;
    --pink: #ffdddd;
}

* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    background: #FFF;
    color: var(--black);
    margin: 0 0;
}

#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/mountains.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    opacity: 0.25;
}

.nav-bar {
    letter-spacing: 1.5px;
}

.logo-container {
    font-size: 2em;
    font-weight: bold;
    color: var(--dkgray);
    padding-left: 20px;
}
    .logo-container > a {
        text-decoration: none;
    }

.navbar-nav {
    text-transform: uppercase;
    color: var(--dkgray);
}

.navbar-nav > a {
    color: var(--dkgray) !important;
    text-decoration: none;
    background-color: transparent;
}

    .navbar-nav > a:hover {
        color: var(--dkgray) !important;
        text-decoration: none;
        font-weight: bolder;
    }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.footer > a:hover {
    text-decoration: none;
}

.slogan {
    margin-top: 20%;
    letter-spacing: 2px;
    font-size: 2.5em;
    font-style: italic;
    color: var(--ltgray);
}
.tellmemore {
    margin: 10px;
    color: #FFF;
    padding: 15px 25px;
    background-color: #236aa7;
    border: 2px solid var(--dkgray);
    opacity: .99;
    text-transform: uppercase;
}

    .tellmemore:hover {
        color: #FFF;
        background-color: #105794;
        text-decoration: none;
    }

    .tellmemore > a {
        color: #FFF !important;
        text-decoration: none;
    }

.body-content {
    margin-top: 20px;
    background-color: #FFF;
    opacity: .99;
    border: 5px solid #AAA;
    border-radius: 20px;
    padding: 20px 40px;
}

.header {
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.Category {
    color: var(--dkred);
    font-weight: 700;
    text-transform: uppercase;
}

.initial-letter {
    color: var(--dkred);
    display: inline;
}

img {
    margin: 20px 20px 20px 30px;
    border: 2px solid var(--dkgray);
    border-radius: 10px;
    box-shadow: rgba(100,100,100,.25) 10px 10px 10px;
}

.img-consultant {
    width: 33%;
    height: 33%;
}

.img-service {
    width: 40%;
    height: 40%;
}

form {
    margin: 0px auto;
    padding: 20px;
    min-width: 350px;
    max-width: 50%;
    background-color: rgba(150,150,150,0.25);
    border: 2px solid rgba(150,150,150,0.5);
    border-radius: 20px;
}

.submit {
    width: 100%;
}

