/*fonts*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');
@import url('https://fonts.googleapis.com/css?family=Noticia+Text&display=swap');
/*global styles*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #eae5e5;
}
.container{
    width: 70%;
    max-width: 1200px;
    overflow: hidden;
    margin: auto;
}

/*header*/
.site-header{
    padding: 30px 0 10px 0;
    font-family: 'Noticia Text', serif;
}
.site-header h1{
    font-size: 43px;
}
.site-header h1 a{
    color: #4d4d4d;
    text-decoration: none;
}
.site-header p{
    font-size: 18px;
    font-weight: 600;
}
.site-header p a{
    color: #4d4d4d;
    text-decoration: none;
}

/*main section*/
.main-image{
    width: 70%;
    max-width: 600px;
    margin: auto;
    border: 2px solid black;
    padding: 3px;
    margin-bottom: 10px;
    background-color: #fff;
}
.main-image img{
    width: 100%;
    display: block;
    /* height: 320px; */
    padding: 6px;
    border: 1px solid black;
}
.condos{
    width: 100%;
    margin-bottom: 50px;
}
.condos::after{
    content: "";
  clear: both;
  display: table;
}
.condo{
    width: 32%;
    float: left;
    margin-right: 2%;
    text-align: center;
}
.condo:last-child{
    margin-right: 0;
}
.condo .condo-image{
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
}
.condo-image img{
    width: 100%;
    display: block;
}
.condo-title{
    font-size: 19px;
    color: #4d4d4d;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 10px;
    font-weight: 700;
}
.condo-review{
    width: 100%;
}
.condo-review img{
    width: 100%;
}

/*footer*/
.footer{
    padding: 40px 0;
    background-color: #3e99e4;
    color: #fff;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.6);
    margin-bottom: 50px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}
.footer .container{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.mail-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    background-color: #61d0d4;
    border-radius: 50%;
    margin-right: 10px;
}
.mail-icon i {
    color: #3e99e4;
}
.contact a{
    color: #fff;
}

/*responsiveness*/
@media(max-width: 768px){
   .condo{
        float: none;
        width: 100%;
        margin-bottom: 20px;
    }
    .condo-image {
        width: 70%;
    }
}
@media(max-width: 576px){
    .container{
        width: 90%;
    }
    .main-image{
        width: 100%;
    }
    .condo{
        float: none;
        width: 100%;
        margin-bottom: 20px;
    }
}