html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


body{
    font-family: 'Roboto';
    font-size: 24px;
    width: 100%;
    min-height: 100vh;
    background: url("img/background.jpg") no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}


#topLabel{
    background: url("img/label.png") no-repeat;
    width: 221px;
    height: 106px;
    margin: 0 auto;
    color: #FFF;
    text-transform: uppercase;
    padding-top: 15px;
}

#topLabel .big{
    font-weight: bold;
    font-size: 28px;
    text-align: center;
    display: block;
    margin-bottom: 2px;
}
#topLabel .small{
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    display: block;
}
.container{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}
.row{
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.col{
    flex:1;
    margin: 0 15px;
    position: relative;
}
.banner{
    width: 100%;
    height: auto;
    box-shadow: 0 0 18px 11px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: 0.3s;
}

.col:hover .banner{
    width: 106%;
    position: relative;
    top:-3%;
    left:-3%;
}
.ico{
    position: absolute;
    top:-15px;
    right:-15px;
    box-shadow: 0 0 18px 11px rgba(0,0,0,0.25);
    z-index: 22;
}

.redTextWr{
    position: absolute;
    top:70%;
    padding-left: 10px;

}
.redText{
    font-weight: 900;
    color: #FFF;
    font-size: 25px;
    background-color: #d45854;
    display:inline;
    white-space:pre-wrap;
    box-shadow: -10px 0 0 #d45854;
    line-height: 140%;
    padding-bottom: 3px;
    padding-right: 2px;
    text-shadow: 0 0 10px rgba(255,255,255,0.43);
}

#footer{
    background-color: #6a6a6a;
    max-width: 395px;
    padding: 15px;
    color: #FFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#footer a{
    color:#FFF;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
}
#footer a:hover{
    opacity: 0.7;
}
#footer .sep{
    margin: 0 10px;
}
#footer IMG{
    margin-right: 7px;
}

@media (max-width: 1100px){
    .redTextWr{
        top:65%;
    }
    .redText{
        font-size:19px;
    }
}

@media (max-width: 850px){
    .row{
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
    }
    .col{
        flex:inherit;
        margin-bottom: 30px;
        height: 378px;
    }
    .container{
        padding-top: 40px;
        padding-bottom: 40px;
        max-width: 550px;
    }
    .redTextWr{
        top:65%;
    }
    .redText{
        font-size:25px;
    }
}

@media (max-width: 580px){
    .container{
        max-width: 480px;
    }
}
@media (max-width: 480px){
    .container{
        max-width: 100%;
    }
    #footer{
        padding:10px;
    }
    #footer a{
        font-size: 14px;
        font-weight: 500;
    }
}

@media (max-width: 375px){
    #footer a{
        font-size: 13px;
        font-weight: 400;
    }
    .sep{
        margin: 0 5px;
    }
    #footer IMG {
        margin-right: 5px;
    }
}