﻿body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.banner {
    background-color: #b4b4b4;
    color: #da2b2b;
    text-shadow: 2px 2px #d6d5d8;
}

.home-banner {
    background: url(images/office.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 500px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #f8f9fa;
    /*text-shadow: 2px 2px 2px #212529;*/
    position: relative;
    background-color: #1a263c;
}

    .home-banner > * {
        z-index: 100;
    }

    .home-banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(0, 0, 0, 0.1);
        z-index: 1;
    }

.icon-wrapper {
    text-decoration: none;
    margin-left: .25rem;
    margin-right: .25rem;
}

.icon {
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    font-size: 1.05rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #212529;
    background-color: #66d081;
}

    .icon:hover {
        background-color: #7ad691;
    }

.btn {
    border-radius: 1.5rem;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
    font-size: 1.1rem;
}

.btn-custom {
    background-color: #66d081;
}

    .btn-custom:hover {
        background-color: #7ad691;
        border-color: #7ad691;
        color: #212529;
    }

    .btn-custom:not(:disabled):not(:disabled):active {
        background-color: #66d081 !important;
        border-color: #66d081 !important;
        color: #212529;
    }

.card, .rounded-custom {
    border-radius: 25px 25px 25px 25px;
}

.card-body {
    padding: 30px 30px;
}

.card-shadow {
    box-shadow: 0px 6px 12px #cccccc;
}

.card-links .card {
    border: 0px;
    height: 100%;
    box-shadow: 0px 6px 12px #cccccc;
    color: #020000;
    border-top: 5px solid #da2b2b;
}

.card-links i {
    font-size: 2.5rem;
}

.card-links .card .card-body {
    display: flex;
    flex-direction: column;
}

.card-links a {
    text-decoration: none;
    color: #020000;
    flex: 1;
    max-width: 350px;
    min-width: 350px;
}

    .card-links a:hover {
        text-decoration: none;
    }

        .card-links a:hover .card {
            box-shadow: 0px 8px 16px #cccccc;
        }

.map {
    width: 100%;
    border: none;
    border: 0;
    min-height: 450px;
    max-width: 450px;
}

.list-unstyled li, .list-padding li {
    padding-top: .35rem;
    padding-bottom: .35rem;
}

#login {
    width: 100%;
    max-width: 330px;
    padding: 15px;
    margin: auto;
}

.username {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.password {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.list-group-item-action {
    color: #212529;
}

    .list-group-item-action:hover {
        color: #212529;
    }

@media (min-width: 1200px) {
    .w-85{
        max-width: 85%;
    }

    .container-lg, .container-md {
        max-width: 1140px;
    }
}