body {
    font-family: 'Montserrat', sans-serif;
    margin: auto;
    max-width: 1200px;
    width: 96%;
    margin: 0 auto;
    background: linear-gradient(#fffbdb 10%, #ffffff 30%);
    color: #505050;
}

h1 {
    font-size: 0;
}
    
h2 {
    font-size: 4rem;
    color: #505050;
    font-weight: 600;
    margin: 3rem;
    width: 100%;
    text-align: center;
}

.content {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 4rem;
}

.header {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin: 4rem 0;
}
    
.img-head {
    width: 40%;
}
    
.after-head {
    box-sizing: border-box;
    padding: 0 0 1.8rem 4rem;
    width: 60%;
}
    
.after-headp{
    vertical-align: top;
    color: #0669b0;
    font-size: 3.5rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
}
    
.logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 75%;
}
    
.stages {
    display: flex;
    flex-wrap: wrap;    
    justify-content: space-around;
    text-align: center;
    margin-top: 30px;
    width: 99%;
    border: 2px orange solid; 
    border-radius: 5px;
}
    
.stage {
    padding: 10px;
    width: 30%;
    min-width: 200px;
    margin-bottom: 30px;
}
    
.stage span {
    font-size: 3.5rem;
    font-weight: 600;
    color: #898989;
}
    
.number {
    display: inline-block;
    position: relative;
    text-align: center;
    line-height: 40px;
    width: 40px;
    height: 40px;
    background: orange;
    border-radius: 100%;
    top: -30px;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 800;
    font-size: 2rem;
}
    
.percent {
    font-size: 5.5rem;
    font-weight: 600;
    color: #505050;
}
    
.percent span{
    font-size: 4rem;   
}
    
.property {
    width: 100%;
}
    
.property-list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}
    
.property-item {
    width: 31%;    
}
    
.see_all {
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid #898989;
    padding: 1rem 2rem;
    box-sizing: border-box;
    margin: 2rem 0;
    display: inline-block;
    border-radius: 5px;
    color: #898989;
}
    
.see_all:hover {
    border-color: #ef7f1a;
    color: #ef7f1a;
    text-decoration: none;
}
    
.consult {
    color: #ffffff;
    padding: 1rem 2rem;
    background-color: #ef7f1a;
    border-radius: 5px;
    margin: auto;
    cursor: pointer;
}
    
@media (max-width: 1000px) and (min-width: 700px) {
    .property-list {
    flex-wrap: wrap;
    }

    .property-item {
    width: 48%;    
    }
}

@media (max-width: 699px){
    .property-list {
        flex-wrap: wrap;
    }

    .property-item {
        width: 100%; 
        padding: 0 1rem;   
    }

    .stage {
    width: 100%;    
    }

    .after-head {   
        padding: 0;
        width: 90%;
        margin: 0 auto;
    }

    .img-head {
        display: none;
    }     

    h2 {
        font-size: 3rem;
        margin: 1rem;    
    }

    .stage span {
        font-size: 2.5rem;
    }
}

@media (max-width: 1024px){
    .after-headp {
        font-size: 3.7rem;
        font-weight: 600;   
    }
}