/* Our product */
.product_header h2 {
    font-weight: bold;
    font-size: 2.6rem;
    text-align: center;
}

.product_big_bg img {
    width: 100%;
}

.product_big_img {
    position: relative;
    overflow: hidden;
}

.product_big_img_ani {
    transition: all 1s linear;
    position: absolute;
    bottom: 0;
    left: 0rem;
}

.product_big_img_ani img {
    width: 150%;
}

.product_big_img:hover .product_big_img_ani {
    transform: translate(-250px, 0);
}

.product_big_img_product {
    position: absolute;
    bottom: 3rem;
    right: 2rem;
}

.product_big_img_product img {
    width: 15rem;
}

.product_big_img_text {
    position: absolute;
    top: 6rem;
    left: 2rem;
    color: white;
}

.product_inner_up {
    background-color: rgb(208, 78, 78);
    width: fit-content;
    padding: .2rem .7rem .2rem .7rem;
    transition: all .3s;
}

.product_inner_up:hover {
    background-color: black;
}

.product_inner_text h2 {
    font-size: 3rem;
    font-weight: bolder;
}

.product_inner_btn button {
    padding: 1rem;
    background-color: #F2CB1F;
    border: 0;
    font-weight: bold;
    transition: all .3s;
}

.product_inner_btn button:hover {
    background-color: black;
    color: white;
}

@media (min-width: 320px) and (max-width: 1024px) {
    .product_big_img:hover .product_big_img_ani {
        transform: translate(-160px, 0);
    }

    .product_big_img_product img {
        width: 9rem;
    }

    .product_big_img_text {
        top: 2rem;
    }

    .product_inner_text h2 {
        font-size: 2rem;
    }

    .product_inner_text h4 {
        font-size: .9rem;
    }

    .product_inner_btn button {
        font-size: .8rem;
        padding: .5rem;
    }
}


/* Why Choose us */
.choose_us_heading {
    padding: 2rem;
}

.choose_us_heading h2 {
    font-weight: bold;
    font-size: 2.6rem;
}

.choose_us_heading p {
    padding-top: 1rem;
}

.why_choose_us_img img {
    width: 100%;
}

/* Shop now */
.shop_now_card {
    position: relative;
    margin-top: 4rem;
}

.shop_now_card img {
    width: 100%;
}

.shopnow_card_inner {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    color: white;
}

.shopnow_card_inner img {
    width: 40%;
}

.shopnow_inner_btn button {
    padding: .7rem;
    background-color: #F2CB1F;
    border: 0;
    font-weight: bold;
    transition: all .3s;
}

.shopnow_inner_btn button:hover {
    background-color: black;
    color: white;
}

.shopnow_card_inner h3 {
    font-weight: bold;
}

@media (min-width: 320px) and (max-width: 1024px) {
    .shopnow_card_inner {
        top: 1rem;
    }

    .shopnow_card_inner h3 {
        font-size: 1rem;
    }

    .shopnow_inner_btn button {
        font-size: .5rem;
    }
}


/* Our Clients */
.our_clients {
    text-align: center;
}


/* Footer */
.first_footer {
    margin-top: 1rem;
    padding: 1.5rem;
}

.footer_email {
    font-size: 1.1rem;
}

.second_footer {
    background-color: black;
    color: white;
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.second_footer h5 {
    font-size: .8rem;
    font-weight: bold;
}

.second_footer a {
    text-decoration: none;
    color: rgb(167, 162, 162);
}

.footer_subscribe input {
    width: 100%;
    border: 0;
    height: 2rem;
    padding-left: .5rem;
}

.footer_subscribe input:focus {
    outline: none;
}

.footer_subscribe button {
    padding: .5rem 1rem .5rem 1rem;
    background-color: #F2CB1F;
    border: 0;
    font-weight: bold;
    transition: all .3s;
    font-size: .8rem;
    margin-top: .5rem;
}

.footer_subscribe button:hover {
    background-color: black;
    color: white;
}

.third_footer {
    background-color: black;
}

.footer_copyright {
    border-top: 1px solid rgb(79, 74, 74);
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
}

.third_footer h6 {
    color: rgb(167, 162, 162);
}

.third_footer a {
    text-decoration: none;
    color: #F2CB1F;
}

@media (min-width: 320px) and (max-width: 1024px) {
    .footer_email {
        font-size: .7rem;
        font-weight: bold;
    }

    .second_footer {
        text-align: center;
    }
}