

.header {
    min-height: 450px;
    background: center / cover no-repeat url(/image/wallpaper.jpg);
}

.info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.header-navbar {
	margin: 60px 0 30px;
    display: none;
}

.header-navbar a {
    color: black;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0 25px;
}

img.logo {
    min-width: 250px;
    margin-top: 130px;
}

.header-mail {
	margin-top: 60px;
	font-size: 20px;
}

.header-mail a {
    text-decoration: none;
    color: black;
    font-weight: 600;
}

.features {
    display: flex;
    margin: 50px 10%;
    justify-content: space-between;
}

.feature::before {
    content: url(/image/icon.png);
    margin-right: 10px;
}

.feature {
    display: flex;
    align-items: center;
    padding: 0 1%;
    font-weight: 600;
    line-height: 1.3;
    font-size: 14px;
    width: 100%;
    justify-content: space-between;
}

.feature:first-child {
    padding-left: 0;
}

.feature:last-child {
    padding-right: 0;
}

.products {
    display: flex;
    justify-content: space-between;
    background-color: #d7d7d9;
    padding: 50px 10%;
}

.product {
    padding: 0 1%;
}

.product:first-child {
    padding-left: 0;
}

.product:last-child {
    padding-right: 0;
}

.product-name {
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
}

.product-img img {
    width: 100%;
}
.btn-outer {
    text-align: center;
    background-color: #d7d7d9;
    padding-bottom: 60px;
}
.price-btn {
    background-color: #f8450f;
    border-color: #f8450f;
    transition: all 0.3s ease;
    opacity: 0.8;
}
.price-btn:hover {
    background-color: #f8450f;
    border-color: #f8450f;
    opacity: 0.6;
}
.footer {
    display: flex;
    justify-content: space-between;
    padding: 50px 10%;
    /*background-color: #d7d7d9;*/
}

.footer-navbar {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    justify-content: start;
    width: 100%;
}
.footer-navbar {
    display: none;
}
.footer-navbar a {
    color: black;
    text-decoration: none;
    font-weight: 600;
    padding-bottom: 15px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.footer-info a {
    text-decoration: none;
    color: black;
    font-weight: 600;
}

.footer-info span a {
    color: #f8450f;
}

.address {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 999px) {
    .header {
        min-height: 400px;
    }
    .info {
        padding: 0 5%;
    }
    .header-navbar {
        display: none;
    }
    img.logo {
        right: 0;
        min-width: 200px;
        margin-top: 100px;
    }
    .header-mail {
        margin-top: 70px;
        padding-left: 0;
    }
    .features {
        flex-wrap: wrap;
        margin: 50px 5% 0;
    }
    .feature {
        width: 50%;
        margin-bottom: 50px;
        padding: 0;
    }
    .feature-padding {
        padding-right: 20px;
    }
    .products {
        flex-direction: column;
        padding: 50px 5%;
        align-items: center;

    }
    .product {
        padding: 0 0 50px 0;
    }
    .product:last-child {
        padding: 0;
    }
    .product-img img {
        width: 264px;
    }
    .footer {
        flex-direction: column;
    }
    .footer-navbar {
        display: none;
    }
    .footer-info {
        align-items: center;
    }
    .address {
        justify-content: center;
        margin-top: 50px;
        text-align: center;
    }
}


@media (max-width: 470px) {
    img.logo {
        width: 100%;
    }
    .feature::before {
        scale: 0.7;
        margin-right: 0;
    }
    .features {
        flex-direction: column;
        align-items: center;
    }
    .feature {
        width: 80%;
    }
    .feature-padding {
        padding-right: 0;
    }
}