/*
Theme Name: STC Version 0.01
Theme URI: Your Theme's URI
Description: A brief description.
Version: 1.0
Author: Martin Mulholland
Author URI: Your website address.
*/

/*Global Styles*/
.portfolio-module{
    position: relative;
    height: auto;
    background-attachment: fixed!important;
    background-position: center!important;
    background-repeat: no-repeat!important;
    background-size: cover!important;
}

.portfolio-box{
    height: inherit;
    padding-top: 50px;
    padding-bottom: 100px;
}

.portfolio-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    resize: vertical;
    overflow: auto;
    height: inherit;
}

.portfolio-content h1, .portfolio-content h3, .portfolio-content p {
    color: #fff;
}

/*Custom Styles*/
.portfolio-module-1{
    background: url(images/portfolio-background-1.jpg) no-repeat;
}

.portfolio-module-2{
    background: url(images/portfolio-background-2.jpg) no-repeat;
}

.portfolio-module-3{
    background: url(images/portfolio-background-3.jpg) no-repeat;
}

/* Media Queries ----------- */
@media only screen 
and (min-width : 1px) 
and (max-width : 449px) {
    .portfolio-box{
        width: 100%;
    }
}
@media only screen 
and (min-width : 450px) 
and (max-width : 767px) {
    .portfolio-box{
        width: 100%;
    }
}
@media only screen 
and (min-width : 768px) 
and (max-width : 991px) {
    .portfolio-box{
        width: 100%;
    }
}