﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body {
    font-family: 'Poppins', sans-serif;
}

header {
    background: #F1BC02;
}

header h3 {
    color: #fff;
    font-weight: 400;
    font-size: 37px;
    line-height: 55px;
}

main {
    padding: 60px 0;
}

main h4 {
    color: #fff;
    margin-top: -60px;
    padding: 0 0 0 34px;
}

main img {
    border-radius: 10px;
}

main .box {
    transition: 0.3s ease-in-out;
    transform: scale(1);
}

main .box:hover {
    transform: scale(1.05);
    transition: 0.3s ease-in-out;
    color: #FFC706;
}

main a:hover {
    text-decoration: none;
    color: #FFC706;
}

.spacer {
    padding: 17px;
}

.padd-25 {
    padding: 20px;
}

.product-details {
    background: #fff;
}

footer {
    background: #525252;
    padding: 30px 0 10px 0;
    color: #fff;
}

@media (max-width: 768px) {
    .logo {
        width: 150px;
    }

    header h3 {
        font-size: 30px;
        line-height: unset;
        margin: 30px 0;
    }

    .box {
        margin-bottom: 45px;
    }
    .menus {
        text-align: center;
    }
}