@font-face {
    font-family: 'LatoRegular';
    src: url('fonts/Lato/Lato-Regular.eot');
    src: url('fonts/Lato/Lato-Regular.woff') format('woff'),
         url('fonts/Lato/Lato-Regular.ttf')  format('truetype'),
         url('fonts/Lato/Lato-Black.woff2') format('woff2');
}
@font-face {
    font-family: 'LatoItalic';
    src: url('fonts/Lato/Lato-Italic.eot');
    src: url('fonts/Lato/Lato-Italic.woff') format('woff'),
         url('fonts/Lato/Lato-Italic.ttf')  format('truetype'),
         url('fonts/Lato/Lato-Italic.woff2') format('woff2');     
}
@media (min-width: 1250px) {
    html, body{
        min-width: 1250px;
    }
}
@media (min-width: 1024px) and (max-width:1250px) {
    html, body{
        width: 100%;
    }
}
@media (max-width:1024px) {
    html, body{
        width: 100%;
    }
}
html, body{    
    background: #F7F9FC;
}
*{
    box-sizing: border-box;
    text-decoration: none;
    font-family: "LatoRegular";
    color: #232F4F;
    margin: 0;
    padding: 0;
}
#container{
    width: 100%;
    display: flex;
    flex-direction: column;    
    align-items: center;
    background: #F7F9FC;
    min-height: 100vh;
}
#banner{
    display: flex;    
    flex-direction: column;
    align-items: center;
    width:100%;        
    background-size: cover !important;
    background-repeat: no-repeat;
}
#banner-content{    
    display: flex;
    flex-direction: column;        
}
.banner-item{
    color: white;
}
.new-link, .blue-link{
    color: #3A8EF8;
}