* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color:rgb(41, 161, 216);
}

.gap {
    width: 100%;
    height: 40vh;
}

.bar {
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height:90vh;
    gap: 4.5rem;
    width: 100%;
}

.hero_text {
    display:flex;
    flex-direction: column;
    gap: 1.5rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 2rem;
    width: 40%;
}

.hero_text h1 {
    font-size: 3rem;
}

.hero_text p {
    opacity: 80%;
}

.hero img {
    width: 35%;
}


.hero_text button {
    width: fit-content;
    padding: 0.8rem 1.2rem;
    border-radius: 0.4rem;
    background-color: red;
    border: 0px;
}
.hero_text button a {
    color: white;
    font-weight: 500;
}

.hero_text button:hover {
    background-color: grey;
    transition: 0.7s;
}



@media screen and (max-width: 992px) {
  .hero_text {
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    }
    .hero {
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .hero img {
        width: 50%;
    }
}




h1,p {
    font-family: Arial, Helvetica, sans-serif;
}

.new_arrivals {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.arrivals {
    display: flex;
}

.arrival {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;

}
.arrival img {
    width: 80%;
}

.arrival p,.name_anim p{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
}

.arrival .arrival_price {
    color: red;
    background-color: rgb(160, 147, 147);
    width: 80%;
    border-radius: 0.4rem;
}
.name_anim {
    width: 80%;
    border-top: 0.5rem solid red;
    height: 8vh;
    padding: 0rem 1rem;
}
.name_anim .hide {
    font-size: 0px;
}
.name_anim:hover {
    background-color: red;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 0px;
    transition: 1s;
}
.name_anim:hover .hide {
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    transition: 1s;

}
.name_anim:hover p:first-of-type {
    font-size: 0px;
}

@media screen and (max-width:992px) {
    .arrivals {
        flex-direction: column;
        gap: 0.5rem;
    }
    .new_arrivals {
        text-align: center;
    }
}

.new_products {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.new_products .products {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-evenly; 
    gap: 1.5rem;
}

.new_products .products .product_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}
.product_card p:first-of-type {
    font-size: 1.5rem;
}

.product_card p:last-of-type {
    color: red;
}

.product_card img:hover {
    max-width: 100%;
    scale: 1.05;
    transition-duration: 1s;
}
.gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.gallery .first_img, .gallery .second_img{
    display: flex;
    align-content: center;
    justify-content: center;
}
.two_imgs {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
}
.two_imgs img {
    height: auto;
    object-fit: contain;
}
.gallery div img {
    width: 97%;
}
.gallery_title { text-align: center;}

.gallery div img:hover {
    filter: brightness(40%);
    max-width: 100%;
    transform: scale(0.95);
    transition-duration: 1s;
}
@media screen and (max-width:992px) {
 .gallery {
    flex-wrap:wrap;
    gap:2.5rem
    }


}


