/* newsletter section ---------------------------------------------------------------------- */

.newsletter-box {
    max-width: 100%;
    background: #b4114b;
    margin: 0;
    padding: 75px 0;
    
    text-align: center;
}

.newsletter-box h1 {
    color: white;
    font-family: "Poppins-ExtraBold";
    font-size: 24px;
    margin-bottom: 20px;
}

.newsletter-box p {
    color: white;
    font-family: "Poppins-Light";
    font-size: 17px;
}

.newsletter-inputbox {
    display: block;
    margin: 30px auto 0px auto;
}

.newsletter-inputbox input {
    display: inline-block;
    height: 45px;
    width: 340px;
    
    font-family: "Poppins-Medium";
    font-size: 13px;
    
    color: black;
    
    margin-right: 5px;
    padding-left: 15px;
    
    border: none;
    border-radius: 3px;
}

 .newsletter-inputbox button {
    display: inline-block;
    height: 45px;
    width: 110px;
    
    font-family: "Poppins-Medium";
    font-size: 13px;
    
    color: white;
    background-color: black;
    
    text-align: center;
    
    border: none;
    border-radius: 3px;
    
    transition: all 0.3s;
}

.newsletter-inputbox button:hover {
    transition: all 0.3s;
    background-color: #323232;
}

.newsletter-inputbox button:focus, .newsletter-inputbox input:focus {
    outline: none;
}

/* checkboxy */

.newsletter-label {
    display: block;
    font-size: 10px;
    color: white;
    font-family: "Poppins-Light";
    max-width: 700px;
    margin: 15px auto 0;
    text-align: justify;
}

.newsletter-label input {
    height: 13px;
    width: 13px;
    font-size: 13px;
}

@media only screen and (max-width: 900px) {
    .newsletter-box {
        margin: 0;
    }    
}

@media only screen and (max-width: 700px) {
    .newsletter-box {
        padding: 50px;
        width: auto;
    }
    
    .newsletter-inputbox input {
        display: block;
        width: 100%;
        
        text-align: center;
        margin-right: 0;
        padding-left: 0;
    }
    
     .newsletter-inputbox button {
        display: block;
        width: 100%;
        margin-top: 15px;
    }
}

/* footer section ---------------------------------------------------------------------- */

footer{
    display: block;
    height: auto;
    margin: 0;
}

.footer-grey{
    background-color: #f0f0f3;
    padding: 50px;
    
    display: flex;
    justify-content: space-between;
}

.stopka-left {
    display: inline-block;
    
    font-family: "Poppins-ExtraBold";
    font-size: 14px;
    
    padding-top: 13px;
}

.stopka-left a{
    text-decoration: none;
    color: black;
    
    margin-right: 15px;
    
    transition: all 0.3s;
}

.stopka-left a:hover {
    transition: all 0.3s;
    color: #323232;
}

.stopka-right {
    display: inline-block;
}

.stopka-right img {
    max-width: 100px;
    margin-left: 10px;
}

.footer-white {
    display: block;
    padding: 15px;
    text-align: center;
}

.footer-white p{
    font-family: "Poppins-ExtraBold";
    font-size: 13px;
    color: rgb(50,50,53);
}

@media only screen and (max-width: 700px) {
    .footer-grey{
        padding: 30px 0;
        
        display: block;
        justify-content: none;
    }
    
    .stopka-left {
        display: block;
        text-align: center;
    }
    
    .stopka-left a{
        display: block;
        margin-right: 0;
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .stopka-right {
        display: block;
        text-align: center;
        margin-top: 20px;
    }

    .stopka-right img {
        max-width: 125px;
    }
    
    .footer-white {
        display: block;
        padding: 15px;
        text-align: center;
    }
}



