@import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Saira", sans-serif;
}
.logo {
    align-items: center;
    align-content: center;
    justify-content: center;
    display: flex;
}
header {
    width: 100%;
    height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
}
header ul {
    display: flex;
    justify-content: center;
    text-align: center;
}
header ul li {
    list-style: none;
}
header ul li a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 17px;
    margin: 30px;
    font-weight: 500;
}
header ul li a:hover {
    color: #ace60d;
    transition: 0.3s;
}
header .menu {
    font-size: 30px;
    display: none;
}
#check1 {
    display: none;
}
.submit-tool-btn a {
    background-color: #ace60d;
    border-radius: 20px;
    padding: 7px 18px;
    color: rgb(0, 0, 0);
    font-size: 11pt;
    font-weight: 500;
}
.submit-tool-btn a:hover {
    color: #000000;
    background-color: #ffffff;
}
.product-list-header {
    width: 100%;
    height: auto;
    background-color: #1d1c1c;
    padding: 20px;
    align-items: center;
    margin-top: 20px;
    align-content: center;
    justify-content: center;
    display: flex;
}
.product-list-header h1 {
    font-weight: 600;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 20pt;
}
.product-list-container {
    width: 100%;
    height: auto;
    margin-top: 0px;
    align-items: center;
    align-content: center;
    justify-content: center;
    display: flex;
}
#products {
    width: 80%;
    height: auto;
    align-items: center;
    align-content: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}
.product {
    margin: 20px;
    width: 520px;
    height: auto;
    background-color: #1d1c1c;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-width: 0px;
    padding: 10px;
    border-radius: 15px;
    cursor: pointer;
}

.product img {
    width: 100%;
    border-radius: 10px;
}
.product h3 {
    color: rgb(255, 255, 255);
    font-weight: 600;
    padding-top: 15px;
    padding-left: 15px;
    font-size: 16pt;
}
.product p {
    color: rgb(209, 200, 200);
    font-weight: 400;
    padding-top: 5px;
    padding-left: 15px;
}
.product .pricing {
    color: #ace60d;
    padding-top: 5px;
    font-weight: 400;
}

.product:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: 0.5s;
}
.footer-container {
    width: 100%;
    height: auto;
    background-color: #050a44;
    align-items: center;
    margin-top: 100px;
    align-content: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}
.copyright {
    width: 100%;
    height: auto;
    align-items: center;
    align-content: center;
    justify-content: center;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
}
.copyright p {
    color: rgb(171, 165, 165);
    font-weight: 400;
    text-align: center;
    font-family: inter;
    font-size: 10pt;
}
.copyright p a {
    color: rgb(171, 165, 165);
    text-decoration: none;
    font-family: inter;
}


@media (max-width:2100px) {
    #products {
        width: 75%;
    }
    .product {
        margin: 20px;
        width: 400px;
    }
}
@media (max-width:1759px) {
    #products {
        width: 75%;
    }
    .product {
        margin: 20px;
        width: 350px;
    }
}
@media (max-width:1559px) {
    #products {
        width: 75%;
    }
    .product {
        margin: 20px;
        width: 300px;
    }
}
@media (max-width:1450px) {
    #products {
        width: 75%;
    }
    .product {
        margin: 20px;
        width: 240px;
    }
    .product h3 {
        font-size: 12pt;
    }
    .product p {
        font-size: 11pt;
    }
    .product .pricing {
        font-size: 10pt;
    }
}
@media (max-width:1219px) {
    #products {
        width: 75%;
    }
    .product {
        margin: 20px;
        width: 240px;
    }
    .product h3 {
        font-size: 12pt;
    }
    .product p {
        font-size: 11pt;
    }
    .product .pricing {
        font-size: 10pt;
    }
}
@media (max-width:1000px) {
    header {
        width: 100%;
        height: 70px;
        display: flex;
        justify-content: space-between;
        justify-content: center;
        z-index: 2;
    }
header ul {
        position: fixed;
        top: 70px;
        right: -100%;
        background: #050a44;
        width: 100%;
        height: 100%;
        flex-direction: column;
        transition: right 0.5s linear;
        z-index: 2;
    }
    header ul li a {
        text-decoration: none;
        color: rgb(255, 255, 255);
        font-size: 17px;
        padding: 30px;
        line-height: 70px;
        z-index: 2;
    }
    #check1 {
        display: none;
    }
    header .menu {
        font-size: 25px;
        display: block;
        width: 100px;
        text-align: right;
       margin: 10px;
        color: #050a44;
        margin-left: 20%;

    }
    .logo {
        margin: 0px;
        z-index: 1;
    }
    #check1:checked ~ ul {
        right: 0;
    }
    #products {
        width: 75%;
    }
    .product {
        margin: 20px;
        width: 250px;
    }
    .product-list-header h1 {
        font-size: 25px;
    }
    .product-list-container {
        padding: 0px;
    }
}
@media (max-width:800px) {
    #products {
        width: 100%;
    }
    .product {
        margin: 20px;
        width: 90%;
    }
    .product-list-header h1 {
        font-size: 25px;
    }
    .product-list-container {
        padding: 0px;
    }
}
@media (max-width:450px) {
    .product {
        margin: 20px;
        width: 90%;
    }
    .product-list-header h1 {
        font-size: 18px;
    }
}