    /* Box */
    
    #box {
        /* margin: 0 auto; */
        margin-top: 30px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
        width: 40%;
        padding: 5px;
        background-color: rgba(240, 240, 240, 0.4);
        box-shadow: 15px 15px 30px #9d9d9d, -15px -15px 30px #ffffff;
        border-radius: 10px;
        text-align: center;
        justify-content: center;
    }
    
    #box p {
        color: rgb(24, 24, 53);
    }
    /* Boxes */
    
    .headline_about {
        font-size: 2rem;
        color: orangered;
    }
    
    .our-img h1 {
        text-shadow: none;
    }
    
    .our-img ul li {
        list-style: none;
    }
    /* Card Design  */
    
    .about {
        height: 90vh;
        display: inline-flex;
        margin-bottom: 20px;
    }
    
    .property-card {
        height: 26em;
        width: 18em;
        background-color: white;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        -webkit-box-shadow: 15px 15px 27px #6b6b6b, -15px -15px 27px #bfbfbf82;
        box-shadow: 15px 15px 27px #6b6b6b, -15px -15px 27px #bfbfbf82;
    }
    
    h5 {
        margin: 0px;
        font-size: 1.4em;
        font-weight: 700;
        color: darkslategray;
    }
    
    .center {
        height: 60vh;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .center p {
        font-size: 12px;
    }
    
    .center ul li {
        list-style: none;
        display: inline-block;
        padding: 15px;
        /* margin: 20px; */
    }
    /* Top Half of card, image. */
    
    .property-image img {
        height: 12em;
        width: 18em;
        /* padding: 1em 2em; */
        position: Absolute;
        top: 0px;
        /* background-image: url("../img/master_02.JPG"); */
        /* background-size: cover; */
        background-repeat: no-repeat;
        object-fit: cover;
    }
    /* Bottom Card Section */
    
    .property-description {
        height: 12em;
        width: 18em;
        position: absolute;
        bottom: 0em;
        /* padding: 0.5em 1em; */
        text-align: center;
    }
    /* Social Icons */
    
    .property-social-icons {
        color: darkslategray;
        width: 1em;
        height: 1em;
        position: absolute;
        bottom: 1em;
        left: 1em;
    }
    /* Property Cards Hover States */
    
    .property-card:hover .property-description {
        height: 0em;
        padding: 0px 1em;
    }
    
    .property-card:hover .property-image img {
        height: 26em;
        background-position: center;
        background-size: cover;
    }
    
    .property-card:hover .property-social-icons {
        background-color: rgba(255, 255, 255, 0);
    }
    
    .property-card:hover .property-social-icons:hover {
        background-color: rgba(255, 255, 255, 0);
        cursor: pointer;
    }
    /* Card Slider */
    
    .card_slider {
        background-color: white;
        width: 40%;
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    
    .card_element {
        transition: 0.3s;
    }
    
    .card_element p {
        font-size: medium;
        margin: 0;
    }
    
    .card_container {
        padding: 2px 16px;
    }
    
    .card_img img {
        max-width: 100%;
        height: auto;
        cursor: pointer;
    }
    
    .card_nav {
        display: flex;
        justify-content: space-between;
        padding: 10px;
    }
    
    .btn {
        background-color: #4a4a4a;
        border-radius: 5px;
        border: none;
        color: white;
        padding: 10px 15px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        margin: 4px 2px;
        cursor: pointer;
        -webkit-transition-duration: 0.4s;
        transition-duration: 0.4s;
    }
    
    .btnNav {
        box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    /* The Modal (background) */
    
    .modal {
        display: none;
        /* Hidden by default */
        position: fixed;
        /* Stay in place */
        z-index: 1000;
        /* Sit on top */
        padding-top: 100px;
        /* Location of the box */
        left: 0;
        top: 0;
        width: 100%;
        /* Full width */
        height: 100%;
        /* Full height */
        overflow: auto;
        /* Enable scroll if needed */
        background-color: #000000;
        /* Fallback color */
        background-color: #000000e6;
        /* Black w/ opacity */
    }
    /* Modal Content (image) */
    
    .modal-content {
        margin: auto;
        display: block;
        width: 80%;
        max-width: 700px;
    }
    
    .close .fas {
        color: #a98d56;
    }
    /* Caption of Modal Image */
    
    #caption {
        margin: auto;
        display: block;
        width: 80%;
        max-width: 700px;
        text-align: center;
        color: #a98d56;
        padding: 10px 0;
        height: 150px;
    }
    /* Add Animation */
    
    .modal-content,
    #caption {
        -webkit-animation-name: zoom;
        -webkit-animation-duration: 0.6s;
        animation-name: zoom;
        animation-duration: 0.6s;
    }
    
    @-webkit-keyframes zoom {
        from {
            -webkit-transform: scale(0)
        }
        to {
            -webkit-transform: scale(1)
        }
    }
    
    @keyframes zoom {
        from {
            transform: scale(0)
        }
        to {
            transform: scale(1)
        }
    }
    /* The Close Button */
    
    .close {
        position: absolute;
        top: 15px;
        right: 35px;
        color: #f1f1f1;
        font-size: 40px;
        font-weight: bold;
        transition: 0.3s;
        padding: 20px;
    }
    
    .close:hover,
    .close:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }
    /* 100% Image Width on Smaller Screens */
    
    @media only screen and (max-width: 700px) {
        .modal-content {
            width: 100%;
        }
    }
    
    @media(max-width:720px) {
        .card_slider {
            width: 85%;
        }
        #box {
            width: 80%;
        }
    }