/* RESET CSS */

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;
}


/* CUSTOM STYLES */

* {
    -webkit-transition: font-size 1s ease-in;
    -moz-transition: font-size 1s ease-in;
    transition: font-size 1s ease-in;
}

div,
section {
    -webkit-transition: width 0.25s cubic-bezier(.7, -0.06, 0, 1.11);
    -moz-transition: width 0.25s cubic-bezier(.7, -0.06, 0, 1.11);
    transition: width 0.25s cubic-bezier(.7, -0.06, 0, 1.11);
}

*::-webkit-selection {
    background: rgba(141, 198, 63, .5) !important;
    color: #fff !important;
}

*::-moz-selection {
    background: rgba(141, 198, 63, .5) !important;
    color: #fff !important;
}

*::selection {
    background: rgba(141, 198, 63, .5) !important;
    color: #fff !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.25em;
}

a,
a:link,
a:hover,
a:active,
a:visited,
a:focus {
    text-decoration: none;
    -webkit-transition: all 0.25s cubic-bezier(.7, -0.06, 0, 1.11);
    -moz-transition: all 0.25s cubic-bezier(.7, -0.06, 0, 1.11);
    transition: all 0.25s cubic-bezier(.7, -0.06, 0, 1.11);
}

body {
    padding: 0 70px;
    font-family: 'Open Sans', sans-serif;
}

p {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6em;
    color: #242222;
    margin-bottom: 20px;
}

strong {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
}

em {
    font-style: italic;
}


/* MENU */

.scotch-panel-canvas {
    height: auto !important;
}

header .menu {
    height: 80px;
    line-height: 80px;
}

header .menu ul {
    text-align: right;
}

header .menu ul li {
    display: inline-block;
}

header .menu ul li a {
    display: block;
    padding: 0 20px;
    color: #242222;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 16px;
}

header .menu ul li a:hover,
header .menu ul li a.active {
    background: #FF161B;
    color: #FFF;
}

header .toggle-panel {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 25px;
    width: 80px;
    height: 80px;
    line-height: 80px !important;
    text-align: center;
    background: #FF161B;
    display: none;
    color: #FFF;
}

header .toggle-panel .fa {
    line-height: 80px !important;
}

#scotch-panel {
    background: #444;
}
#scotch-panel .language{
    background: #FF161B;
}
#scotch-panel .language a:hover{
    background: #FF4E53;
}


#scotch-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

#scotch-panel ul li a {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: transparent;
    color: #fff;
}

#scotch-panel ul li a:hover {
    background: #555;
}

@media only screen and (max-width: 1200px) {
    
    header .toggle-panel {
        display: block;
    }
    header ul {
        display: none;
    }
}


/* BANNER */

.banner {
    position: relative;
    text-align: right;
}

.banner .logo {
    position: absolute;
    left: 30px;
    top: -50px;
    width: 50%;
    max-width: 500px;
    z-index: 9;
}

@media only screen and (max-width: 1500px) {
    
    .banner .logo {
    max-width: 400px;
}
}


.banner img {
    width: 100%;
    height: auto;
}

a.to-down,
a.to-top {
    background: #FF161B;
    position: absolute;
    display: block;
    right: 0;
    bottom: 0;
    padding: 2%;
}

a.to-down img,
a.to-top img {
    max-width: 30px;
}

.banner h1 {
    position: absolute;
    left: 30px;
    bottom: 0;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: #FFF;
    font-size: 200px;
    margin: 0;
    padding: 0;
    line-height: 80%;
}


/* ARTYKUL */

article {
    padding: 50px 0;
}

article p:last-of-type {
    margin-bottom: 0;
}

article a {
    color: #242222;
}

article a:hover {
    color: #FF161B;
}

section.heading {
    background: #FF4E53;
    position: relative;
}

section.heading h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: #FFF;
    font-size: 100px;
    background: #FF161B;
    display: inline-block;
    padding: 30px 50px 30px 30px;
}

article h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: #242222;
    font-size: 30px;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

article p span {
    font-weight: 700;
    font-size: 18px;
}


/* GALERIA */

.gallery .photo {
    padding: 0;
    position: relative;
}

.gallery .photo img {
    width: 100%;
    height: auto;
}

.gallery .photo a.to-large {
    background: rgba(255, 22, 27, .5);
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    padding: 2%;
}

.gallery .photo a.to-large img {
    max-width: 20px;
    height: auto;
}

article .gallery2 {
    text-align: center;
}

article .gallery2 img {
    padding: 10px 20px;
    height: auto;
    width: 100%;
    margin-bottom: 5%;
}

article .katalog {
    background: #FF161B;
}

article .formularz {
    background: #FF4E53;
}

article .katalog a,
article .formularz a {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #FFF;
    padding: 30px 0;
    display: block;
    text-align: center;
}

article .katalog a:hover,
article .formularz a:hover {
    font-size: 18px;
}

article .katalog a i,
article .formularz a i {
    font-size: 20px;
    margin-right: 10px;
}

article .kontakty .col-xs-12 {
    margin-bottom: 20px;
}

.add-20-padding-bottom {
    padding-bottom: 20px;
}

footer {
    background: #FF161B url(../images/logo2.png) no-repeat 30px center;
    padding: 20px;
}

footer ul {
    text-align: center;
}

footer ul li {
    display: inline-block;
}

footer ul li a {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
    padding: 5px;
    display: block;
}

.license {
    text-align: center;
    font-size: 14px;
    padding: 20px;
}

.license a {
    color: #242222;
}

.license a:hover {
    color: #FF161B;
}


/* MEDIA QUERIES */

@media (max-width: 1340px) {
    body {
        padding: 0 40px;
    }
    .banner .logo {
        top: -30px;
        width: 50%;
        max-width: 300px;
    }
    .banner h1 {
        font-size: 150px;
    }
    section.heading h2 {
        font-size: 75px;
        padding: 30px 50px 30px 30px;
    }
}

@media all and (max-width: 1200px) {
    header .menu {
        height: 60px;
    }
    header .toggle-panel {
        font-size: 20px;
        width: 60px;
        height: 60px;
        line-height: 60px !important;
    }
    header .toggle-panel .fa {
        line-height: 60px !important;
    }
    .banner .logo {
        top: -30px;
        width: 50%;
        max-width: 300px;
    }
    .banner h1 {
        font-size: 125px;
    }
    section.heading h2 {
        font-size: 50px;
        padding: 30px 50px 30px 30px;
    }
}

@media all and (max-width: 992px) {
    .banner .logo {
        top: -30px;
        width: 50%;
        max-width: 300px;
    }
    .banner h1 {
        font-size: 100px;
    }
    section.heading h2 {
        font-size: 40px;
        padding: 30px 50px 30px 30px;
    }
    footer {
        background: #FF161B;
        padding: 20px;
    }
}

@media all and (max-width:767px) {
    body {
        padding: 0;
    }
    .banner .logo {
        top: -30px;
        width: 75%;
        max-width: 300px;
    }
    .banner h1 {
        font-size: 100px;
    }
    section.heading h2 {
        font-size: 30px;
        padding: 30px 50px 30px 30px;
    }
}

@media (max-width: 576px) {
    .banner img.banners {
        height: auto !important;
        width: 576px;
        text-align: right;
        display: inline-block;
    }
    .banner .logo {
        top: -25px;
        width: 60%;
        max-width: 300px;
    }
    .banner h1 {
        font-size: 75px;
    }
    section.heading h2 {
        font-size: 25px;
        padding: 30px 50px 30px 30px;
    }
}


@media (max-width: 381px) {
    .banner h1 {
        font-size: 50px;
    }
}