:root {
    --bs-primary: #155781;
    --bs-dark: #155781;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #155781;
}

.container-xl {
    padding-top: 40px;
    margin-left: auto;
    margin-right: auto;
}

#logo {

    img {
        height: 120px;
    }
}


header {

    display: flex;
    justify-content: space-between;
    align-items: top;

    div#menu span {
        padding: 0 0 0 20px;
        font-size: 30px;
        font-weight: bold;
    }
}

footer {
    text-align: center;
}

hr {
    border-color: #1C75AD;
}

a {
    text-decoration: none;
    color: #155781;
}

a:hover {
    color: #1C75AD;
}

a.btn-primary {
    background-color: #155781;
    color: white;
}

a.btn-primary:hover {
    background-color: #1C75AD;
}

h1 {
    text-align: center;
    font-weight: bold;
}

h2 {
    text-align: center;
    font-size: 32px;
}

h3 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.blurbs {
    width: 100%;
    text-align: center;

    img {
        width: 50%;
    }
}

.what-you-get {
    width: 100%;
    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;

    #img1 {
        width: 18%;
        margin-right: 50px;
    }

    #img2 {
        width: 48%;
    }
}

section.hilite {

    display: flex;
    justify-content: space-evenly;
    align-items: center;

    &.one-to-two {
        .hilite-text {
            width: 32%;
        }

        .hilite-image {
            width: 60%;
        }
    }

    &.one-to-one {
        .hilite-text {
            width: 50%;
        }

        .hilite-image {
            width: 50%;
        }
    }



    .hilite-text {

        width: 32%;
        text-align: center;

        p.title {
            font-size: 24px;
            font-weight: bold;
            line-height: 1.1;
        }

        p.line {
            font-size: 32px;
        }
    }

    .subtext {
        font-size: 20px;
    }

    .hilite-image {
        width: 68%;
        align-items: center;

        img {
            max-height: 420px;
            width: auto;
            display: block;
            margin: 0 auto;
        }
    }
}

.blueprint-card-img {
    height: 140px;
}

hr {
    margin: 48px;
}


.card {
    width: 20rem;
}

span.radial-bg {
    background: radial-gradient(ellipse 70% 40% at 50% 50%, #ffd7be 0%, white 100%);
    border-radius: 0px;
    display: inline-block;
}

.align-center {
    text-align: center;
}

/* Responsive styles for mobile devices */
@media (max-width: 600px) {
    body {
        padding: 20px 10px 10px 10px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    h2 {
        font-size: 16px;
    }

    div#menu {
        span {
            padding: 0px;
        }
    }

    #logo {
        img {
            width: 148px;
        }
    }

    header {

        #menu {
            display: flex;
            flex-direction: column;
            align-items: flex-end;

            a.button {
                font-size: 16px;
                margin: 0px;
            }
        }
    }

    section.hilite {
        flex-direction: column;
    }

    section.hilite .hilite-text,
    section.hilite .hilite-image {
        width: 100%;

        p.title {
            font-size: 16px;
        }
    }

}