* {
    padding: 0;
    margin: 0;
}

.main_navbar ul {
    display: flex;
    gap: 2rem;
}

.main_navbar ul li a {
    color: #a9a4a4;
    text-decoration: none;
    font-size: 1.2rem;
}

.main_navbar ul li .active {
    color: #ff5600;
}

/* Choose Us */
.choose_content_left {
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
}

.choose_content_left h3 {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: right;
}

.choose_content_left p {
    text-align: right;
    color: #777;
    line-height: 2rem;
}

.choose_content_right {
    display: flex;
    flex-direction: column;
}

.choose_content_right img {
    width: 17rem;
    border-radius: 1.5rem;
    border: 1px solid rgb(193, 193, 193);
    padding: .3rem;
}

.choose_content_right span {
    color: #004aad;
    font-weight: 500;
}

.choose_content_right p {
    padding-top: 2rem;
    color: #777;
    line-height: 2rem;
}

.choose_content_right ul li {
    color: #777;

}

.learn_more_btn a {
    text-decoration: none;
}

.learn_more_btn button {
    border: 0;
    background-color: #d0dde6;
    display: flex;
    gap: .7rem;
    align-items: center;
    border-radius: 3rem;
    padding: .5rem 1rem .5rem 2rem;
}

.learn_more_btn button:hover {
    background-color: #000;
    color: white;
    transition: all .3s;

}

.learn_more_btn button span {
    font-weight: bold;
}

@media (min-width: 320px) and (max-width: 767px) {
    .choose_content_left h3 {
        text-align: center;
    }

    .choose_content_left p {
        text-align: center;
    }

    .choose_content_left {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .choose_content_right {
        display: flex;
        flex-direction: column-reverse;
    }
}

/* Choose Us End */

/* About Us */
.about_us {
    background-color: black;
}

.about_us span {
    color: #004aad;
    font-weight: 500;
}

.about_us h3 {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: right;
}

.about_us p {
    color: #777;
    line-height: 2rem;
    padding-top: 2rem;
}

.about_us img {
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
}

/* About Us End */

/* Home Products */
.home_products h2 {
    font-size: 10rem;
    color: #f3f0f0;
    padding: 1rem;
}

.product_body {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.product_card {
    width: 16rem;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.product_card img {
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.product_card:hover.product_card img {
    transform: rotate(-8deg) scale(1.1);
}

.product_card_footer {
    width: 100%;
    background-color: #b8c9e0;
    ;
    text-align: center;
    padding: .5rem;
    position: absolute;
    bottom: 0;
}

@media (min-width: 320px) and (max-width: 767px) {
    .home_products h2 {
        font-size: 5rem;
    }
}

/* Home Products End */

/* Home Prime  */
.home_prime{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}
.home_prime h3 {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: right;
}

.home_prime p {
    color: #777;
    line-height: 2rem;
    padding-top: 2rem;
}

/* Home Prime End */


/* Footer  */
.main_footer {
    background-color: #222;
    padding-top: 4rem;
}

.main_footer p {
    color: #777;
    line-height: 2rem;
    padding-top: 2rem;
}

.footer_links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
}

.footer_links a {
    color: #b1aeae;
    text-decoration: none;
    font-weight: 500;
}

.footer_links span {
    color: #777;
}

.footer_second {
    background-color: #111;
    padding: .5rem 2rem;
}

.footer_second p {
    color: #777;
    font-weight: 500;
}

.footer_second a {
    color: #b1aeae;
}

/* Footer End */

/* About Page */
.about_left_col {
    border: 2px solid #f5f5f5;
    padding: 1.5rem 2rem;
}

.about_left_col p {
    color: #777;
    line-height: 2rem;
    padding-top: 1.5rem;
}

/* About Page End */

/* Product Page  */
.product_ctg_btn {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.product_ctg_btn button {
    border: 0;
    padding: 1rem 1.5rem;
    transition: background-color 0.3s;
}

.product_ctg_btn button.active {
    background-color: #004aad;
    color: white;
}
/* Product Page End */

/* Contact Page */
.contact_right_col{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.contact_right_col_head{
    background-color: #004aad;
    color: white;
    padding: 2rem;
}
/* Contact Page End */