*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Lato', sans-serif;
    
    /*green-color : #C2CD3A*/
}
.container{
    width: 90vw;
    margin: 0 auto;
}
header{
    background-color:black;
    width: 100vw;s
    position: fixed;
    top:0;
    z-index: 1;
}
nav{
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul.menu{
    display: inline-block;
}
li{
    list-style-type: none;
    display: inline-block;
    margin-left:20px;
    color:white;
    cursor: pointer;
}

li:hover{
    color: #909b25;
}
section.one{
    background-image:url('images/header-bg.jpg');
    background-size:cover;
    height: 85vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.section-style{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    position: relative;
}

section.three p.naglowek{
    width:240px;
}
section.three img{
    width: 100%;
}
section.two img{
    width: 100%;
    height: auto;
}
section img{
    width: 100%;
    height: auto;
}
.claim{
height: 65%;
}
p.naglowek {
    border-bottom: 2px solid #C2CD3A;
    font-size: 20px;
    height: 40px;
    width:208px;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 40px;
}

.line{
    background-image:url("images/banner-bottom.svg");
    background-position:center;
    background-repeat:no-repeat;
    background-size:contain;
    height:25px;
    width:100%;
    position:absolute;
    bottom:0px;
}
.line:before, .line:after{
    width:calc(50vw - 60px);
    height:25px;
    content:"";
    position:absolute;
    background-color:white;
}
.line:before{
    left:0;
}
.line:after{
    right:0;
}

@media (min-width:588px) and (max-width:885px){

    .line{
        background-image:url("images/banner-bottom.svg");
        background-position:center;
        background-repeat:no-repeat;
        background-size:contain;
        height:35px;
        width:100%;
        position:absolute;
        bottom:0px;
    }
    .line:before, .line:after{
        width:calc(50vw - 80px);
        height:35px;
        content:"";
        position:absolute;
        background-color:white;
    }
    .line:before{
        left:0;
    }
    .line:after{
        right:0;
    }
    
}


@media (min-width: 886px){

    .line{
        background-image:url("images/banner-bottom.svg");
        background-position:center;
        background-repeat:no-repeat;
        background-size:contain;
        height:51px;
        width:100%;
        position:absolute;
        bottom:0px;
    }
    .line:before, .line:after{
        width:calc(50vw - 120px);
        height:51px;
        content:"";
        position:absolute;
        background-color:white;
    }
    .line:before{
        left:0;
    }
    .line:after{
        right:0;
    }

}