/* CSS Mini Reset */
html, body, div, form, fieldset, legend, label{margin: 0;padding: 0; }
table{border-collapse: collapse; border-spacing: 0;}
th, td{text-align: left;vertical-align: top;}
h1, h2, h3, h4, h5, h6, th, td, caption { font-weight:normal; margin: 0; }
img { border: 0; max-width: 100%; }
/**/

body{
    font-size: 16px;
    font-family: 'IBM Plex Sans', sans-serif;
    color: #131415;
}

a:link, a:active, a:visited{
    color: #616161;
    text-decoration: none;
    transition: color 0.3s, background-color 0.3s ease;
}

a.btn{
    display: inline-block;
    padding: 12px 32px;
    color: #fff;
    border-radius: 5px;  
    background-color: #0067b7;
    border: 3px solid #0067b7;
    font-size: 14px;  
    letter-spacing: 0.4px;
}

a.btn:hover{
    color: #0067b7;
    background-color: #fff;
}

a:hover{
    color : #0037af;
}

.container{
    max-width: 1140px;
}

#menu{
    padding: 40px 15px;
}

#menu .logos img{
    max-height: 49px;
    margin-right: 20px;
}

#header{
    background: #00af52;
    margin-bottom: 40px;
}

#header>.container{
    position: relative;
    height: 100%;
    min-height: 300px;
}

.title{
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: -1.2px;
}

.title.min{
    font-size: 30px;
}

.desc{
    font-size: 25px;
}

.text-left{
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}

.headerimg {
    position: absolute;
    right: 15px;
    top: 73%;
    transform: translateY(-260%);
}

#content .text{
    height: 100%;
}

#content .container.panels{
    margin-bottom: 70px;
}

.polityka li{
    margin-bottom: 12px;
}

#content .container.banner-bottom{
    margin-bottom: 80px;
}

#content .container.banner-bottom{
    position: relative;
}

#content .container.banner-bottom .text-inside {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 80px;
    text-align: center;
}

#content .container.banner-bottom .text-inside h2{
    margin-bottom: 31px;
    font-size: 30px;
    font-weight: 500;
}

#footer{
    padding: 40px 0;
    font-size: 12px;
    border-top: 2px solid #f8f8f8;
}

#footer img{
    max-height: 24px;
    opacity: 0.48;
}


@media screen and (max-width: 1200px){
    .text-left {
        left: 80px;
    }
}

@media screen and (max-width: 1074px){
    .headerimg {
        position: absolute;
        right: 15px;
        top: 58%;
        transform: translateY(-50%);
        max-width: 435px;
    }

    #header>.container {
        min-height: 300px;
    }
}

@media screen and (max-width: 991px){
    .text-left {
        left: 50px;
    }
}

@media screen and (max-width: 767px){
    .text-left, .headerimg{
        position: static;
        transform: none;
        text-align: center;
        margin: auto;
        padding: 30px 15px;
    }

    #header {
        background: #ecd0ca;
        margin-bottom: 30px;
    }

    .container.panels{
        padding: 0 30px;
        text-align: center;
    }

    #content .container.banner-bottom .text-inside {
        padding: 15px;
        background: rgba(255, 255, 255, 0.65);
        border-radius: 12px;
    }
}

@media screen and (max-width: 660px){
    #footer>.container>div{
        flex-direction: column;
    }

    #footer>.container>div a{
        padding: 10px;
    }
}

@media screen and (max-width: 460px){
    .banner-bottom img{
        height: 200px;
        object-fit: cover;
    }

    #content .container.banner-bottom .text-inside {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 295px;
    }

    .logos{
        display: flex;
        justify-content: space-between;
    }

    #menu .logos img {
        max-height: 32px;
        margin-right: 0;
    }
}


@media screen and (max-width: 380px){
    #content .container.banner-bottom .text-inside{
        position: static;
        transform: none;
        margin: auto;
        width: 100%;
    }

}