*{
    margin: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body{
    background-image: url("./assets/back.png");
    background-size: 100vw;
    min-height: 100vh;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Poppins, sans-serif;
    color: #111;
}

.header{
    margin: 0 auto;
    height: 120px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.active{
    box-shadow: 0 1px 9px #111;
    background-color: #fff;
}

.header__logo{
    height: 100%;
    width: 150px;
    margin-left: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo{
    width: 100%;
}

.header__contactAndSocial{
    width: 400px;
    height: 100%;
    margin-right: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__contactAndSocial__email a{
    font-size: 14px;
    font-weight: 300;
    color: #010101;
    letter-spacing: -1px;
    transition: 0.2s ease-in-out ;
}

.header__contactAndSocial__email a:hover{
    font-size: 15px;
}

.header__contactAndSocial__phone a{
    font-size: 14px;
    font-weight: 300;
    color: #010101;
    text-decoration: none;
    transition: 0.2s ease-in-out ;
}

.header__contactAndSocial__phone a:hover{
    font-size: 15px;
}

.header__contactAndSocial__facebook a img{
    transition: 0.2s ease-in-out ;
}

.header__contactAndSocial__facebook a img:hover{
    transform: scale(1.1);
}

.main{
    margin-top: 70px;
    height: calc(100% - 170px);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main__heroText{
    width: 90%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main__heroText__hero{
    width: 70%;
    height: 100%;
    margin: 0 0 0 -5vw;
}

.main__heroText__hero img{
    width: 100%;
}

.main__heroText__text{
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.main__heroText__text h1{
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -1px;

}

.main__heroText__text p{
    font-size: 16px;
    margin-top: 20px;
    font-weight: 300;
    letter-spacing: -1px;
}

.main__heroText__text a{
    margin-top: 20px;
    background: #010101;
    width: 130px;
    height: 35px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.main__heroText__text a:hover{
    transform: scale(1.03);
}

.main__frames{
    margin-top: 0;
    height: 30%;
    width: 77%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: capitalize;
}

.main__frames__sciany, .main__frames__zaplecze, .main__frames__luki, .main__frames__lady, .main__frames__podwieszenie{
    width: 18%;
    height: 100%;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.frame{
    height: 65px;
}

.main__frames__sciany img{
    margin-top: 5px;
    height: 60px;
}

.main__frames__zaplecze img{
    height: 65px;
}

.main__frames__luki img{
    margin-top: 5px;
    height: 60px;
}

.main__frames__lady img{
    margin-top: 15px;
    height: 50px;
}

.main__frames__podwieszenie img {
    margin-top: 25px;
    height: 40px;
}

footer{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 20px;
    background: #017101;
}


@media (max-width: 1200px) {
    .main__heroText__text{
    }

    .main__heroText__text h1{
        font-size: 38px;
        line-height: 38px;

    }

    .main__heroText__text p{
        font-size: 13px;
        margin-top: 15px;
    }

    .main__heroText__text a{
        width: 100px;
        height: 25px;
        font-size: 10px;
        border-radius: 8px;
    }

    .main__frames__sciany, .main__frames__zaplecze, .main__frames__luki, .main__frames__lady, .main__frames__podwieszenie{
        align-items: center;
        justify-content: center;
        flex-direction: column;
        font-size: 13px;
    }
}

@media (max-height: 775px){
 .main__frames{
     margin-bottom: 50px;
 }
}

@media (max-width: 768px) {
    .header{
        height: 70px;
    }

    .header__logo{
        width: 30%;
        margin-left: 10px;
    }

    .logo{
        width: 100%;
    }

    .header__contactAndSocial{
        width: 60%;
        height: 100%;
        margin-right: 10px;
    }

    .header__contactAndSocial__email a {
        font-size: 12px;
        transition: none;
    }

    .header__contactAndSocial__phone a{
        font-size: 12px;
        transition: none;
    }

    .header__contactAndSocial__facebook a{
        transition: none;
    }

    .header__contactAndSocial__email a:hover{
        font-size: 12px;
    }

    .header__contactAndSocial__phone a:hover{
        font-size: 12px;
    }

    .header__contactAndSocial__facebook a img:hover{
        transform: none;
    }

    .main__heroText{
        margin-top: 60px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .main__heroText__hero{
        width: 90%;
        margin: 0 0 0 -3vw;
    }
    .main__heroText__text{
        width: 90%;
        align-items: center;
        justify-content: center;
    }

    .main__heroText__text h1{
        text-align: center;

    }

    .main__heroText__text p{
        text-align: center;

    }

    .main__heroText__text a{
        width: 100px;
        height: 25px;
        font-size: 10px;
        border-radius: 8px;
        transition: none;
    }

    .main__heroText__text a:hover{
        transform: none;
    }

    .main__frames{
        margin-top: 30px;
        width: 78%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main__frames__sciany, .main__frames__zaplecze, .main__frames__luki, .main__frames__lady, .main__frames__podwieszenie{
        margin-top: 15px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        min-width: 130px;

    }
}

@media (max-width: 570px) {
    .header{
        height: 105px;
    }

    .header__logo{
        width: 45%;
        align-items: flex-start;
    }

    .logo{
        margin-top: 15px;
    }

    .header__contactAndSocial{
        width: 60%;
        height: 100%;
        margin: 25px 10px 0 0 ;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        flex-direction: column-reverse;
    }

    .header__contactAndSocial__facebook, .header__contactAndSocial__facebook__icon{
        height: 40px;
    }

    .main__heroText__text h1{
        font-size: 30px;
        line-height: 30px;

    }

    .main__heroText__text p{
        font-size: 10px;
        margin-top: 10px;
        letter-spacing: -0.5px;


    }

    .main__heroText__text a{
        width: 100px;
        height: 25px;
        font-size: 10px;
        border-radius: 8px;
    }

    .main__frames{
        flex-wrap: wrap;
        margin-bottom: 50px;
        justify-content: center;
    }

    .main__frames__sciany, .main__frames__zaplecze, .main__frames__luki, .main__frames__lady, .main__frames__podwieszenie{
        margin-top: 15px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        min-width: 130px;
        font-size: 10px;

    }
}