*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body, input, textarea{
    font-size: 18px;
    line-height: 1.7em;
    font-family: 'Open Sans', sans-serif;
    color: darkslategrey;
}
body{
    background: url("../images/bg.webp");
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
/* ===========================================*/
/* fullscreen */
html {
    height:100%;
    scroll-behavior: smooth;
}
body {
    height:100%;
    margin: 0px;
    /*overflow:hidden; !* disable scrollbars *!*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* remove highlight on tab for iOS/Android */
}
/* fix for scroll bars on webkit & >=Mac OS X Lion */
::-webkit-scrollbar {
    background-color: rgba(0,0,0,0.5);
    width: 0.75em;
}
::-webkit-scrollbar-thumb {
    background-color:  rgba(255,255,255,0.5);
}
/* ===========================================*/
article p{
    margin: 20px 0px;
}
article ul, article ol{
    margin-top: 15px;
    margin-bottom: 15px;
}
article li{
    margin-left: 40px;
}
article h2{
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: bold;
    color: darkslategrey;
}
article .img100{
    position: relative;
    display: block;
    width: 90%;
    margin: auto;
    border: 5px solid white;
}
article .img33right{
    position: relative;
    display: inline-block;
    float: right;
    width: 40%;
    margin: 10px 0px 10px 30px;
    border: 5px solid white;
    box-shadow: 0px 0px 2px #013487;
}
header{
    min-height: 70px
}
header .content{
    position: relative;
    display: block;
    max-width: 1300px;
    margin: auto;
}
header .content #logotyp{
    position: absolute;
    display: block;
    width: 30%;
    max-width: 120px;
    top: 10px;
    left: 20px;
}
header .content #menuNormal{
    position: absolute;
    display: inline-block;
    right: 20px;
    top: 20px;
}
header .content #menuNormal a{
    position: relative;
    display: inline-block;
    color: black;
    text-decoration: none;
    margin: 0px 15px;
    font-weight: bold;
    transition: .4s;
}
header .content #menuNormal a:hover{
    color: green;
}
header .content #menuNormal a:last-child{
    margin: 0px 0px 0px 15px;
}
header #btn-menu{
    position: absolute;
    display: none;
    top: 20px;
    right: 40px;
    font-size: 30px;
    cursor: pointer;
    color: #A95534;
}
header #menuMobile{
    position: absolute;
    display: none;
    /*display: block;*/
    padding: 10px 15px;
    top: 70px;
    right: 0px;
    width: 100%;
    max-width: 360px;
    /*background-color: #fff;*/
    background: linear-gradient(180deg, #fff 50%, #f3d447 100%);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 100005;
    color: #093d64;
}
header #menuMobile p{
    padding-bottom: 5px;
    margin: 0px 10px;
    text-align: center;
    color: #A95534;
    border-bottom: 2px solid #A95534;
    font-family: 'Raleway', sans-serif;
}
header #menuMobile a{
    display: block;
    padding: 5px 10px;
    margin: 5px 0px;
    color: #A95534;
    text-decoration: none;
    transition: .4s;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
}
header #menuMobile a:hover{
    color: #e0c141;
}
header #menuMobile a i{
    color: #e0c141;
    margin-right: 10px;
}
header #menuMobile #boxG{
    padding: 0px 20px;
}
#information{
    position: relative;
    display: block;
    /*margin: 120px auto 60px auto;*/
    padding: 120px 20px 20px 20px;
}
#information .content{
    position: relative;
    display: grid;
    grid-template-columns: 48% 48%;
    grid-gap: 20px 4%;
    max-width: 1300px;
    margin: auto;
}
#information .info h2, #contact h2{
    margin-bottom: 20px;
    line-height: 1.5em;
    border-bottom: 1px solid green;
}
#contact{
    position: relative;
    display: block;
    /*margin: 120px auto 60px auto;*/
    padding: 20px 20px 40px 20px;
    background-color: #eee;
    border-top: 2px solid green;
}
#contact .content{
    position: relative;
    display: grid;
    grid-template-columns: 48% 48%;
    grid-gap: 20px 4%;
    max-width: 1300px;
    margin: auto;
}
#contact .content #avin-logotyp{
    position: relative;
    display: block;
    max-width: 170px;
    margin-bottom: 20px;
}
#contact .content a{
    text-decoration: none;
    color: darkslategrey;
    transition: .4s;
}
#contact .content a:hover{
    color: #9bb83f;
}
#contact .content a i{
    margin-right: 10px;
    color: #9bb83f;
}
/**********************************/
/***  -------- TABLETY -------- ***/
/**********************************/
@media (max-width: 800px){
    header .content #menuNormal{
        display: none;
    }
    header #btn-menu{
        display: inline-block;
    }
    #information .content, #contact .content{
        grid-template-columns: 100%;
        grid-gap: 20px 4%;
    }
}
/**********************************/
/***  -------- KOMORKI -------- ***/
/**********************************/
@media (max-width: 479px){

}