/* Markets list */
#marketslist {
    padding-bottom: 50px;
}
#marketslist .item{
    //border: 1px solid #4D4D4D;
    width: 360px;
    display: inline-block;
    margin: 0 15px 20px 15px;
    height: 180px;
    box-sizing: border-box;
    position: relative;
    float: left;
    overflow: hidden;
}
#marketslist .item h5.shown{
    position: relative;
    top: -59px;
    background-color: rgba(0, 0, 0, 0.7);
    bottom: 0;
    color: #ffffff;
    display: inline-block;
    font-weight: 400;
    left: 0;
    opacity: 1;
    font-size: 16px;
    padding: 5px 10px;
    transition: all 0.5s ease 0s;
}
#marketslist .overlay {
    background-image: url("../img/projects_hover.png");
    background-position: center bottom;
    background-repeat: no-repeat;
    bottom: 330px;
    color: #ffffff;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.5s ease 0s;
    z-index: 3;
}
#marketslist .item:hover .overlay {
    bottom: -450px;
}
#marketslist .item:hover h5.shown {
    opacity: 0;
}
#marketslist .item .overlay h5 {
    bottom: 0;
    color: #ffffff;
    display: block;
    font-size: 20px;
    left: 0;
    opacity: 1;
    padding: 5px 10px;
    position: relative;
    text-align: center;
    top: -200px;
    transition: all 0.5s ease 0s;
}
#marketslist .item:hover .overlay h5{
    top: 30px;
}
#marketslist .text {
    padding: 15px 15px 10px 20px;
}
#marketslist .text h1{
    color: #aa2f1d;
    margin: 0;
}
#marketslist hr {
    margin: 0;
}
#marketslist .item img {
    transition: all 0.3s;
    display: block;
    max-width: 100%;
}
/* image zoom
#marketslist .item img:hover  {
    transform: scale(1.05);
}
*/
#marketslist .list {
    margin-top: 30px;
    margin-bottom: 50px;
    display: table;
    clear:both;
}
/* Markets view */
#marketsview {
    margin-top:-50px;
}
#marketsview .rcol, #marketsview .lcol {
    padding: 30px;
}
#marketsview .rcol {
    background: #F0F0F0;
    float: left;
    width: 35%;
    display: inline-block;
    position: relative;
}
#marketsview .rcol .box {
    margin-bottom: 30px;
}
#marketsview .form .textarea {
    width: 100%;
}
#marketsview .form .input {
    width: 100%;
}
#marketsview .rcol .box2 {
    padding: 20px;
    background: #fff;
}
#marketsview .rcol .box h4,#marketsview .rcol .box2 h4{
    font-size: 16px;
    margin: 0;
}
#marketsview .rcol .box2 .linkcontact{
    text-align: right;
}
#marketsview .rcol .box2 .linkcontact a.gocontact{
    background: #b31c27;
    color: #fff;
    margin: 0 auto 0 0;
    padding: 10px 20px;
    display: inline-block;
}
#marketsview .rcol .box2 a.gocontact i{
    font-size: 20px;
    margin-right: 3px;
    position: relative;
    top: 1px;
}
#marketsview .rcol .box  .separator ,#marketsview .rcol .box2 .separator {
    height: 1px;
    width: 100%;
    margin: 15px 0;
    background: #D8D8D8;
}
#marketsview .lcol {
    float: left;
    display: inline-block;
    width: 65%;
    position: relative;
}
#marketsview h1 {
    margin-top: 0;
    line-height: 1;
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-size: 30px;
    border-bottom: 2px solid #b31c27;
}
#marketsview .solutions {
    margin-bottom: 50px;
    position: relative;
    display: table;
}
#marketsview .solutions .item{
    position: relative;
    width: 50px;
    float: left;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}
#marketsview .solutions .item img{
    display: block;
    width: 100%;
}
#marketsview .solutions .item .hover {
    background: #b31c27;
    color: #fff;
    padding: 5px;
    position: absolute;
    top: 55px;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.5s ease 0s;
}
#marketsview .solutions .item:hover .hover {
    opacity: 1;
}

@media all and (max-width: 706px){
    #marketsview .rcol, #marketsview .lcol {
        margin-bottom: 20px;
        width: 100%;
        float: none;
    }
}