﻿
.location_container {
    display: flex;
    flex-wrap: wrap;
    /*align-items: center;*/
    justify-content: center;
    margin: 10px;
    padding: 5px;
}

    .location_container .location_card {
        width: 23em;
        max-width: 25em;
        font-weight: 500;
        padding: 10px 15px;
        /*border: 1px solid;*/
        margin: 15px 10px;
        border-radius: 5px;
        /*background: rgba(192, 248, 98, 0.05);*/
        /*border: 1px solid #c0f862;*/
        /*border: 1px solid #1166a3;*/
        /*box-shadow: 0 0 0 1px #c0f862;*/
        background: #1166a3;
        box-shadow: 1px 2px 3px grey !important;
    }

        .location_container .location_card .up_float {
            margin-top: -30px;
            margin-bottom: 20px;
            margin-left: 10px;
            width: 150px;
            text-align: center;
            border-radius: 5px;
            position: relative;
            padding: 7px;
            /*padding: 7px 20px;*/
            z-index: 1;
            /*display: flex;*/
            text-transform: uppercase;
            font-weight: 800;
            font-size: large;
            background-color: white;
            /*border: .5px solid #10a690;*/
            /*background-color: #10a690;*/
            /*box-shadow: 0 0 0 2px #c0f862;*/
        }

        .location_container .location_card svg {
            /*fill: #1166a3;*/
            fill: white;
            width: 40px;
            height: 40px;
            /*filter: drop-shadow(0 0 1px #c0f862);*/
        }

        .location_container .location_card .df_b {
            display: flex;
            justify-content: space-between;
            text-align: right;
        }
        .location_container .location_card .df_b a{
            color: white !important;
        }

.contact_form_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

    .contact_form_container .contact_form {
        display: grid;
        grid-template-areas: "div div";
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 5px;
        /*display: block;*/
        width: 100%;
        margin: 10px 5%;
        padding: .5em;
        /*padding: 2% 3%;*/
        box-sizing: border-box;
        border-radius: 5px;
        font-size: 1.1em;
        border: 1px solid #1166a3;
        box-shadow: 0 0 0 1px #c0f862;
    }

        .contact_form_container .contact_form div {
            display: flex;
            flex-flow: wrap;
            margin: .25em auto;
            box-sizing: border-box;
        }


.map_s {
    border-radius: 5px;
    margin: 10px 0;
    padding: 5px;
    border: 1px solid #c0f862;
    box-shadow: 0 0 0 1px #10a690;
}


@media (max-width: 767.98px){
    .contact_form_container .contact_form {
        display: grid;
        grid-template-areas: "div";
        grid-template-columns: 1fr;
    }

    .location_container .location_card {
        max-width: 100% !important;
        width: 100% !important;
    }

}