/* Copyright (C) nebla Ltd. 2017 */

#showcase {
    padding-bottom: 25px;
}

.showcase-item {
    margin-top: 60px;
}

.showcase-item h1 {
    color: #31607c;
    font-size: 28px;
    line-height: 50px;
}

.showcase-item h2 {
    margin-top: 20px;
    color: #829daf;
    font-size: 16px;
    line-height: 33px;
}

.showcase-image {
    text-align: center;
}

/*---------- Mobile ----------*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    
    .showcase-item {
        margin: 0 auto;
        margin-top: 30px;
        max-width: 500px;
    }
    
    .showcase-item:nth-child(2) {
        margin-top: 10px;
    }
    
    .showcase-image {
        margin-top: 20px;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
}

/* Custom for Showcase */
@media only screen and (max-width : 575px) {
    .showcase-image {
        width: 100%;
    }
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
    #showcase {
        margin-top: -20px;
    }
    
    .showcase-item h1 {
        font-size: 20px;
        line-height: 30px;
    }
    
    .showcase-item h2 {
        font-size: 13px;
        line-height: 24px;
    }
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {
}

/* Copyright (C) nebla Ltd. 2017 */