@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    margin: 0px;
    font-family: 'Roboto', sans-serif;
}

.main {
    display: flex;
    flex-direction: column;
}

.logo {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-image: url("https://wallpaperaccess.com/full/3143584.jpg");
    display: flex;
    justify-content: center;
}

.title {
    width: 100%;
    height: 100px;
    background-color: #7aceea;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 40px;
}

.logo-image {
    width: 200px;
    height: 200px;
}


@keyframes down-btn {
    0% {
        bottom: 20px;
    }

    100% {
        bottom: 0px;
    }

    0% {
        opacity: 0;
    }

    100% {
        opaicty: 1;
    }
}

@-webkit-keyframes down-btn {
    0% {
        bottom: 20px;
    }

    100% {
        bottom: 0px;
    }

    0% {
        opacity: 0;
    }

    100% {
        opaicty: 1;
    }
}

@-moz-keyframes down-btn {
    0% {
        bottom: 20px;
    }

    100% {
        bottom: 0px;
    }

    0% {
        opacity: 0;
    }

    100% {
        opaicty: 1;
    }
}

@-o-keyframes down-btn {
    0% {
        bottom: 20px;
    }

    100% {
        bottom: 0px;
    }

    0% {
        opacity: 0;
    }

    100% {
        opaicty: 1;
    }
}



.card-category-2 ul, .card-category-3 ul, .products ul, .card-category-5 ul .card-category-6 ul {
    padding: 0;
}

.card-category-2 ul li, .card-category-3 ul li, .products ul li, .card-category-5 ul li, .card-category-6 ul li {
    list-style-type: none;
    display: inline-block;
    vertical-align: top;
}

.card-category-2 ul li, .card-category-3 ul li {
    margin: 10px 5px;
}

.card-category-1, .card-category-2, .card-category-3, .products, .card-category-5, .card-category-6 {
    font-family: sans-serif;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #a22828;

}

.card-category-1 div, .card-category-2 div {
    display: inline-block;
}



.products .sp-card-3 {
    width: 800px;
    /* height: 345px; */
    background-color: white;
    margin-top: 30px;
    border: 1px solid #efefef;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
    -o-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
}

.products .sp-card-3 .card-title {
    color: #525252;
    font-weight: 600;
    font-size: 25px;
    padding: 15px 20px;
    text-align: right;
    width: 40%;
    float: right;
}

.products .sp-card-3 .footer-card {
    padding: 0;
}

.products .sp-card-3 .footer-card p {
    font-size: 15px;
    color: #505050;
    line-height: 1.5;
}

.products .sp-card-3 .buy-btn {
    padding: 0px 0px 35px 0;
}

.products .sp-card-3 .buy-btn a {
    text-decoration: none;
    padding: 12px 65px;
    border: 1px solid;
    background-color: #ff4f1d;
    color: #fff;
}

.products .sp-card-3 .cart-btn a {
    text-decoration: none;
    padding: 12px 53px;
    border: 1px solid;
    background-color: #ff4f1d;
    color: #fff;
}

.products .sp-card-3 .footer-card li:nth-child(1) {
    display: inline-block;
    padding-top: 30px;
}

.products .sp-card-3 .footer-card li:nth-child(2) {
    display: inline-block;
    width:68%;
    text-align: left;
}

.products .sp-card-3 .footer-card li:nth-child(2) span {
    font-weight: 600;
}

.products .sp-card-3 ul {
    padding: 0px 10px 10px 10px;
}

.products .sp-card-3 ul li img {
    height: 180px;

    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.products .sp-card-3 ul li img:hover {
    -webkit-transform: scale(0.90);
    -moz-transform: scale(0.90);
    -o-transform: scale(0.90);
    transform: scale(2);
}

.products .sp-card-3 .product-details .product-img {
    width: 49%;
    float: left;
    padding-top: 20px;
}

.products .sp-card-3 .product-details .product-description {
    width: 50%;
    text-align: right;
}

.products .sp-card-3 .product-details .product-description a {
    text-decoration: none;
    color: #525252;
}

.products .sp-card-3 .product-details .product-description ul li {
    display: list-item;
    font-size: 15px;
    color: #585858;
    direction: rtl;
    line-height: 1.5;
}


@media only screen and (max-width: 800px) {


    .products .sp-card-3 {
        width: 100%;
        height: auto;
    }

    .products .sp-card-3 .card-title {
        text-align: center;
        width: 100%;
        float: none;
    }

    .products .sp-card-3 .product-details .product-img {
        width: 100%;
        float: none;
        padding-top: 10px;
        display: block;
    }

    .products .sp-card-3 .product-details .product-img img {
        height: auto;
        width: 90%;
    }

    .products .sp-card-3 .product-details .product-description {
        width: 100%;
        padding: 20px 0px;
    }

    .products .sp-card-3 .product-details .product-description ul {
        text-align: center;
    }

    .products .sp-card-3 .product-details .product-description ul li {
        font-size: 25px;
    }

    .products .sp-card-3 .product-details .product-description ul li:last-child {
        text-decoration: underline;
        padding-top: 20px;
    }

    .products .sp-card-3 .footer-card p {
        font-size: 20px;
    }

    .products .sp-card-3 .footer-card li:nth-child(1) {
        padding-top: 5px;
    }

    .products .sp-card-3 .footer-card li:nth-child(2) {
        width: 100%;
        padding: 30px 0;
        text-align: center;
    }

    .products ul li:nth-child(3) {
        margin-top: 25px;
        padding: 0 15px;
    }
}

@media (max-width:480px) {
    .title {
        width: 100%;
        height: 150px;
    }
}

.footer{
    background-color: #3d7dd6;
    color: white;
    text-align: center;
    font-size: 40px;
    padding: 10px;
}