.small-page{
    display: -webkit-flex;
    display: flex;   
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    min-height: 100vh;
    background: #f7f7f7;        
}
.small-page .header-top .content-big-container{
    padding: 0 40px;
}
.header-title{
    position: relative;
}
.header-title-columns{
    position: relative;
}
.header-title h1{
    width: 50%;
    padding: 0 40px 40px;
    text-align: left;    
}
.header-title h1 .green{
    color: #31c488;
}
.header-title-image{
    width: 50%;
    padding: 0;
}
.header-title-image img{
    height: auto;
}
.header-title-photos{
    position: absolute;
    left: 0;
    bottom: 100px;
    width: 100%;
    height: auto;
    padding: 0 40px;
}
.header-title-photos .img-container{
    width: 24%;
    padding: 10px;
    background: #ffffff;
    -moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 4px 0px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 4px 0px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 4px 0px;    
}
.header-title-photos .img-container img{
    height: auto;
}

@media (max-width: 1279px){
    .header-title-photos{
        position: relative;
        bottom: -40px;     
        padding-bottom: 80px;
    }    
}

@media (max-width: 1279px) and (min-width: 980px){
    .header-title h1{
        font-size: 60px;
    }
    .header-title-photos .img-container{
        width: 48%;
        margin: 0 0 20px;
    }
}
@media (max-width: 979px){
    .header-title-columns{
        -webkit-flex-direction: column;
        flex-direction: column;
    }
    .header-title h1{
        width: 100%;
        text-align: center;
    }
    .header-title-image{
        display: none;
    }
}
@media (max-width: 979px) and (min-width: 768px){
    .header-title-photos .img-container{
        width: 48%;
        margin: 0 0 20px;
    }    
}
@media (max-width: 767px) {
    .small-page .header-top .content-big-container{
        padding: 0 15px;
    }
    .header-title h1{
        padding: 0 0 40px;
    }
    .header-title-photos{
        bottom: 0;
        padding: 0 0 40px;
    }
    .header-title-photos .img-container{
        width: auto;
        max-width: 100%;
        margin: 0 auto 20px;
    }     
}