@font-face {
    font-family: "bahij";
    src: url("/fonts/BAHIJ.TTF") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "bahij";
    src: url("/fonts/BAHIJ-BOLD.TTF") format("truetype");
    font-weight: bold;
    font-style: normal;
}

/* font-family: 'RobotoDraft', 'Roboto', sans-serif; */

/* header */
body {
    background-color: rgb(233, 237, 243);
    /* font-family: 'RobotoDraft', 'Roboto', sans-serif; */
    -webkit-font-smoothing: antialiased;

}

.header-container {
    width: 100%;
    max-width: 100%;
    height: 400px;
    padding: 0px;
    margin: 0px;
    margin-bottom: 0px;
    position: relative;
}

.header-image {
    position: absolute;
    width: 100%;
    height: 400px;
    object-fit: cover;
    z-index: -1;
}

.header-title {
    font-size: 38px;
    text-align: center;
    position: absolute;
    width: 100%;
    /* top: 80%; */
    left: 50%;
    bottom: 0px;
    transform: translate(-50%, 0);
    color: white;
    font-weight: 700;
    background-color: rgba(30, 53, 84, 0.4);
    padding-bottom: 15px;
    padding-top: 5px;
    margin-bottom: 0px;
    padding-top: 15px;
}

.header-title img {
    width: 60px;
    margin-right: 20px;
}

/*end of header */


.all-content {
    /* padding: 10%; */
    padding-top: 2%;
    padding-bottom: 0px;
    padding-right: 4%;
    padding-left: 4%;
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
}







* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

h5 {
    margin: 0px;
    font-size: 1.4em;
    font-weight: 700;
}

p {
    font-size: 19px;
    font-weight: 300;
    padding-top: 4px;
}

.center {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* End Non-Essential  */

.property-card {
    /* height: 18em; */
    height: 350px;
    width: 300px;
    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;
    /* -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1); */

    border-radius: 16px;
    overflow: hidden;
    -webkit-box-shadow: 15px 15px 27px #e1e1e3;
    box-shadow: 15px 15px 27px #b3b3b3, -15px -15px 27px #d3d3d4;
    margin-bottom: 90px;
}



/* ^-- The margin bottom is necessary for the drop shadow otherwise it gets clipped in certain cases. */

/* Top Half of card, image. */

.property-image {
    height: 350px;
    width: 100%;
    padding: 16px 32px;
    position: Absolute;
    top: -40px;
    /* -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1); */
    /* background-image: url('https://cdn.photographylife.com/wp-content/uploads/2017/01/What-is-landscape-photography.jpg'); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: white;
}

/* Bottom Card Section */

.property-description {
    background-color: rgba(30, 53, 84, 0.824);
    color: white;
    height: 44px;
    width: 100%;
    position: absolute;
    bottom: 0px;
    /* -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1); */
    -webkit-transition: height .35s ease-in-out;
    transition: height .35s ease-in-out;

    padding: 8px 16px;
    text-align: center;
}

.property-card:hover .property-description {
    height: 190px;
}

.property-card:hover .property-description.sm {
    height: 156px !important;
}

.property-card:hover .property-description.sm2 {
    height: 102px !important;
}

img.montanari-logo{
    width: 120px;
    position: absolute;
    right: 10px;
    top: 50px;
}

/* Social Icons */

.property-social-icons {
    width: 16px;
    height: 16px;
    background-color: black;
    position: absolute;
    bottom: 16px;
    left: 16px;
    -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

