@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');

/*------ General --------- */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif
}

a {
    text-decoration: none;
    color: black;
}

.container {
    width: 80%;
    margin: 0 auto;
}

section {
    margin: 70px auto;
}

.gototop {
    position: fixed;
    display: inline-block;
    right: 25px;
    bottom: 30px;
    width: 50px;
    height: 70px;
    z-index: 800;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.3s ease, visibility 0.3s ease;
    animation: gototop 5s ease-in-out infinite;
}

.gototop.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gototop>img {
    height: 100%;
}

@keyframes gototop {
    0% {
        bottom: 30px;
    }

    50% {
        bottom: 80px;
    }

    100% {
        bottom: 30px;
    }
}

/* ----------------- */
header {
    position: sticky;
    top: 0;
    z-index: 999;
}

header .container {
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    background-color: #fff;
    height: 13vh;

}

header ul {
    display: flex;
    list-style-type: none;
    gap: 25px;
    font-size: 1.2em;
    font-weight: 600;
}


/* -------- Cards ---------- */
.Products>.container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.card {
    width: 37%;
    background-color: #25333d;
    border: 1px solid #333;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.card img {
    width: 100%;
    background: #fff;
    padding-bottom: 15px;
}

.card-body {
    padding: 20px;
    text-align: center;
}

.card-body h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.card-body ul {
    list-style: none;
    margin-bottom: 20px;
}

.card-body ul li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
    color: #ccc;
}

.price {
    background-color: #ff4d4d;
    color: #fff;
    display: inline-block;
    padding: 10px 25px;
    margin-bottom: 15px;
    font-weight: bold;
    transform: skew(-15deg);
}

.price:hover {
    transform: skew(0);
}

/* Footer */
footer {
    background-color: #30424E;
}

#contactUs>.container {
    height: 200px;
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
}

.footerStart .logofooter,
.footerStart article,
.footerStart div {
    margin-bottom: 10px;
}

.social-icons a {
    color: #c9bbbb;
    font-size: 20px;
    margin: 0 10px 0 0;
    transition: 0.3s ease;
}

.social-icons a:hover {
    color: #ffdd57;
    transform: translateY(-5px);
}




@media (max-width: 992px) {

    .container {
        width: 90%;
    }

    header .container {
        position: static;
        background-color: #fff;
        text-align: center;
        flex-direction: column;
        height: auto;
        padding: 15px 0;
        gap: 10px;
    }

    header ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        font-size: 1em;
    }

    .Products>.container {
        gap: 25px;
    }

    .card {
        width: 45%;
    }

    #contactUs>.container {
        flex-direction: column;
        height: auto;
        gap: 30px;
        text-align: center;
    }

    .gototop {
        right: 15px;
        width: 45px;
        height: 60px;
    }

    footer ul {
        list-style-type: none;
    }
}


@media (max-width: 576px) {

    .container {
        width: 95%;
    }

    header ul {
        flex-direction: column;
        gap: 10px;
        font-size: 0.9em;
    }

    .Products>.container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
    }

    .card-body ul li {
        font-size: 13px;
    }

    .price {
        width: 80%;
    }

    #contactUs>.container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .gototop {
        right: 10px;
        width: 40px;
        height: 55px;
    }
}