#image-slider {
    height: 100%;
    position: relative;
}

#image-slider article {
    width: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -50px 0 0 0;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    visibility: hidden;
    opacity: 0;
}

#image-slider article.show {
    transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    margin: 0 0 0 0;
    visibility: visible !important;
    opacity: 1 !important;
}

#image-slider article img {
    width: 300px;
    margin: 0 0 40px 0;
}

#image-slider article h2 {
    margin: 0 0 40px 0;
    font-family: 'oswald';
    line-height: 150%;
    font-size: 2.8em;
    text-transform: uppercase;
    text-shadow: 0px 4px 5px #000;
}

#image-slider article p {
    font-family: 'oswald';
    font-weight: bold;
    font-size: 1.4em;
    text-transform: uppercase;
    
}

#image-slider article p a {
    font-family: 'oswald';
    color: #ffb300;
}

#image-slider article p a:hover {
    color: #ffd54f;
}

#image-slider article h3 {
    margin: 40px 0 0 0;
    font-family: 'segoe-light';
    line-height: 200%;
    font-size: 1em;
}

#image-slider article h3 a {
    font-family: 'oswald';
    color: #ffb300;
}

#image-slider article h3 a:hover {
    color: #ffd54f;
}

/*Screen Breakpoints
===================================*/

@media only screen 
and (max-width : 479px) {
    
    #home #main-container {
        min-height: calc(100% - 50px);
        position: relative;
        display: table;
    }
    
    #image-slider {
        display: table;
    }
    
    #image-slider article {
        width: 100%;
        position: static;
        margin: 50px auto 100px auto;
        padding: 0 10px 0 10px;
        text-align: center;
        transform: translate(0, 0);
    }
    
    #image-slider article.show  {
        margin: 100px auto 100px auto;
    }
    
    #image-slider article img {
        width: 100%;
    }
    
    #image-slider article h2 {
        font-size: 2em;
    }
}

@media only screen 
and (min-width : 480px)
and (max-width : 735px) {
    
    #home #main-container {
        min-height: calc(100% - 50px);
        position: relative;
        display: table;
    }
    
    #image-slider {
        display: table;
    }
    
    #image-slider article {
        width: 100%;
        position: static;
        margin: 50px auto 100px auto;
        padding: 0 20px 0 20px;
        text-align: center;
        transform: translate(0, 0);
    }
    
    #image-slider article.show  {
        margin: 100px auto 100px auto;
    }
    
    #image-slider article h2 {
        font-size: 2.4em;
    }
}

@media only screen 
and (min-width : 736px)
and (max-width : 979px) {
    
    
    #home #main-container {
        height: calc(100% - 50px);
    }
    
}

@media only screen 
and (min-width : 980px)
and (max-width : 1279px) {
    
}

@media only screen 
and (min-width : 1280px)
and (max-width : 1399px) {
}

@media only screen 
and (min-width : 1400px)
and (max-width : 1799px) {
}

@media only screen 
and (min-width : 1800px) {
}