* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	font-family: "Open Sans", sans-serif;
}
.wrapper {
	margin: 0 auto;
	width: 100%;
	max-width: 1200px;
}

.hero-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
}
.hero-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
}

.hero-text h1 {
	margin-bottom: 5px;
	text-shadow: 3px 3px 5px #000;
	color: #ddd;
}
.hero-text span {
	color: #0086f3;
}
.section-title {
	margin-bottom: 20px;
	text-transform: uppercase;
	text-align: center;
}

nav {
	height: 60px;
	line-height: 60px;
	background-color: #ddd;
	text-align: center;
}
.burger-icon {
	display: block;
	margin-left: auto;
	padding: 0 30px;
	background: none;
	border: none;
	font-size: 30px;
	cursor: pointer;
}
.burger-icon:hover {
	color: #0086f3;
}
.nav-items {
	display: none;
}

.header {
	position: relative;
	background-image: url("../img/small.jpg");
	height: 330px;
	background-size: cover;
	background-position: center;
}

main {
	margin: 60px 0;
}

.about-us-info {
	margin-bottom: 10px;
	padding: 0 20px;
}
.products {
	margin: 60px auto;
}
.product h3 {
	text-transform: uppercase;
}
.product {
	position: relative;
	height: 300px;
	background-size: cover;
	background-position: center;
	text-align: center;
}
.first-product {
	background-image: url(../img/kod-small.jpg);
}
.second-product {
	background-image: url(../img/klawa-small.jpg);
}
.third-product {
	background-image: url(../img/work-big.jpg);
}
.fourth-product {
	background-image: url(../img/dzieci-small.jpg);
}
/* footer */
footer{
    
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    height: auto;
    width: 100%;
    font-family: "Open Sans";
    padding-top: 40px;
    color: #fff;
}
.footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.footer-content h3{
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 3rem;
}
.footer-content p{
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
}
.socials{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;
}
.socials li{
    margin: 0 10px;
}
.socials a{
    text-decoration: none;
    color: #fff;
}
.socials a i{
    font-size: 1.1rem;
    transition: color .4s ease;

}
.socials a:hover i{
    color: aqua;
}

.footer-bottom{
    background: #000;
    width: 100%;
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p{
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
}
.footer-bottom span{
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;
}

/* media */

@media (min-width: 768px) {
	.burger-icon {
		display: none;
	}
	.nav-items {
		display: inline-block;
	}
	.nav-items a {
		padding: 0 30px;
		text-decoration: none;
		text-transform: uppercase;
		font-weight: bold;
		color: #333;
		transition: color 0.3s;
	}
	.nav-items a:hover {
		color: #0086f3;
	}
	.header {
		height: 400px;
		background-image: url("../img/big.jpg");
	}
	.hero-text h1 {
		font-size: 36px;
	}
	.hero-text p {
		font-size: 36px;
	}
	.product h3 {
		font-size: 24px;
	}
}
@media (min-width: 992px) {
    .products {
        font-size: 0;
    }
	.product {
        display: inline-block;
        width: 50%;
	}
}

@media (min-width: 1200px) {
    .hero-text h1 {
        font-size: 42px;
    }
    .hero-text p {
        font-size: 20px;
    }
}