@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css";

*,
*:before,
*:after {
    box-sizing: border-box;
}

:root {
    --main-fonts: "Outfit", sans-serif;

    --text-color: #4B5563;
    --color-dark: #000000;
    --color-white: #FFFFFF;
    --border-color: #e5e7eb;
    --color-warning: #facc13;
    --heading-color: #5F5D66;
    --bg-color: #f4f4f4;
    --bg-dark: #0f162a;
}

body {
    padding: 0;
    font-size: 15px;
    font-family: var(--main-fonts);
}

html body .form-control:focus {
    outline-color: var(--bs-warning);
    border-color: var(--bs-warning);
    box-shadow: none;
}

.badge {
    font-size: 14px;
    font-weight: 500;
    padding: 7px 12px;
}

.form-control {
    padding: 13px 16px;
    font-weight: 300;
    font-size: 14px;
}

a:hover {
    color: var(--bs-warning);
}

h1, .h1 {
    font-size: clamp(2.8rem, 3vw + 1rem, 3.8rem);
}

h2, .h2 {
    font-size: clamp(2.3rem, 2.5vw + 0.8rem, 3rem);
}

h3, .h3 {
    font-size: clamp(1.9rem, 2vw + 0.5rem, 2.2rem);
}

h4, .h4 {
    font-size: clamp(1.2rem, 1.5vw + 0.4rem, 1.5rem);
}

h5, .h5 {
    font-size: clamp(1rem, 1vw + 0.3rem, 1.2rem);
}

h6, .h6 {
    font-size: clamp(1rem, 0.8vw + 0.25rem, 1.001rem);
}

.btn {
    padding: 14px 25px;
    font-size: 14px;
    line-height: 1;
    transition: .35s all ease-in-out;
    font-weight: 500;
    -webkit-box-shadow: 0 0.125rem 0.1875rem rgba(2, 6, 23, 0.04);
    box-shadow: 0 0.125rem 0.1875rem rgba(2, 6, 23, 0.04);
    text-transform: uppercase;
    justify-content: center;
    display: inline-flex;
    align-items: center;
}

.btn-sm {
    padding: 10px 15px;
    font-weight: 400;
    font-size: 13px;
}

.overlay_link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.swiper-button-prev,
.swiper-button-next {
    padding: 10px;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background-color: var(--color-white);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    color: var(--color-dark);
    transition: 0.35s all ease-in-out;
    top: 42%;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 18px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: var(--bs-warning) !important;
}

.sec_title {
    margin-bottom: 40px;
}

.sec_title h2,
.sec_title h3,
.sec_title h4 {
    margin-bottom: 0;
}

.sec_title p {
    margin-top: 15px;
}

@media (max-width: 767.98px) {
    body {
        font-size: 14px;
    }

    .badge {
        font-size: 12px;
    }

    .sec_title {
        margin-bottom: 20px;
    }

}

/*--- Body Style End ---*/

/*--- Header Style Start ---*/
.top-strip {
    padding: 10px 0;
    color: var(--text-color);
    font-size: 14px;
}

.top-strip .btn {
    min-width: 105px;
}

.main_header {
    padding: 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 999;
}

.main_header .header_row {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    position: relative;
}

.logo {
    max-width: 180px;
}

.logo a {
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-dark);
    text-decoration: none;
    display: inline-block;
}

.logo img {
    width: 100%;
    object-fit: contain;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 0;
    list-style-type: none;
    margin: 0;
}

nav a {
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-dark);
    text-decoration: none;
    font-size: 16px;
    transition: 0.35s all ease-in-out;
}

.header-product__angle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    z-index: 10;
    position: relative;
    font-weight: 600;
    height: 80px;
    letter-spacing: 1px;
}

.header-product__dropdown {
    position: absolute;
    left: 0;
    width: 100%;
    top: calc(100% + 20px);
    padding: 0;
    background-color: var(--color-white);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border-radius: 0 0 10px 10px;
    visibility: hidden;
    z-index: -1;
    opacity: 0;
    transition: 0.35s all ease-in-out;
}

.header-product__angle:hover + .header-product__dropdown,
.header-product__dropdown:hover {
    top: calc(100% + 1px);
    visibility: visible;
    z-index: 5;
    opacity: 1;
}

.header-product__dropdown .col {
    max-width: 18%;
}

.headerSwiper {
    padding: 0 5px;
}

header .swiper-slide {
    width: 280px;
}

@media (max-width: 767.98px) {
    header nav {
        display: none;
    }

    .main_header .logo {
        max-width: 150px;
    }
}

/*--- Header Style End ---*/


/*--- Main Hero Style Start ---*/
.main_hero_section {
    padding: 30px 0;
    position: relative;
}

.hero_card {
    position: relative;
    background-color: #f0eff2;
    border-radius: 7px;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero_card h2,
.hero_card h3,
.hero_card h4 {
    font-weight: 700;
}

.hero_card p {
    font-size: 16px;
}

.hero_card > img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 52%;
    height: 100%;
    object-fit: contain;
    z-index: -1;
    object-position: right bottom;
}

.hero_card .hero-card__info {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    max-width: 450px;
}

.hero_card .btn {
    position: relative;
    z-index: 5;
}

.hero_card:not(.info_inside_card) .btn {
    margin-top: 15px;
}

.hero_card .hero-card__info > *:not(.btn) {
    margin: 0;
    color: var(--heading-color);
}

.main_hero_section .hero_card.info_inside_card {
    text-align: center;
}

.main_hero_section .hero_card.info_inside_card .hero-card__info {
    align-items: center;
    padding: 35px 45px;
    margin-left: auto;
    margin-right: auto;
}

.main_hero_section .hero_card.info_inside_card img {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    object-fit: contain;
}

@media (max-width: 767.98px) {
    .hero_card .hero-card__info {
        padding: 40px 25px 130px;
        max-width: 340px;
    }
}

/*--- Main Hero Style End ---*/

/*--- Products Tabs Section Style Start ---*/
.products_tabs_section {
    padding: 40px 0;
}

.prod_tab_links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style-type: none;
    margin: 0 0 20px 0;
    padding: 0;
}

.prod_tab_links a {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.7;
    transition: 0.35s all ease-in-out;
}

.prod_tab_links a:hover {
    color: var(--bs-info);
    opacity: 1;
}

.product_card {
    position: relative;
}

.product_card .product_img {
    padding-bottom: 115%;
    position: relative;
    z-index: 1;
    background-color: var(--bg-color);
    overflow: hidden;
    border-radius: 5px;
}

.product_card .product_img img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 85%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: -1;
}

.product_card .product_img .btn {
    position: absolute;
    left: 50%;
    bottom: -70px;
    transform: translateX(-50%);
    width: 85%;
    transition: 0.35s all ease-in-out;
}

.product_card:hover .product_img .btn {
    bottom: 10px;
}

.product_card .product_img i {
    font-size: 18px;
    position: absolute;
    right: -50px;
    top: 10px;
    opacity: 0;
    width: 35px;
    height: 35px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.35s all ease-in-out;
}

.product_card:hover .product_img i {
    right: 10px;
    opacity: 1;
}

.product_card .product_info {
    padding: 15px 5px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
}

.rating_box {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 0.75rem;
    padding: 0.3125rem 0.375rem;
    border-radius: 4px;
    background-color: #fefce8;
    border: 1px solid #fef08a;
}

.rating_box i {
    color: var(--color-warning);
}


.product_card .product_price {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product_price span:first-child {
    font-size: 20px;
    font-weight: 700;
}

.product_price span:nth-child(2) {
    opacity: 0.7;
    text-decoration: line-through;
    color: var(--text-color);;
}

.product_card p,
.product_card h1,
.product_card h2,
.product_card h3,
.product_card h4,
.product_card h5,
.product_card h6 {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.productsSwiper .swiper-slide {
    width: calc(25% - 8px);
}

.productsSwiper .swiper-button-prev,
.productsSwiper .swiper-button-next {
    position: absolute;
    right: 0 !important;
    top: 0 !important;
    left: auto !important;
    margin: 0 !important;
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 15px;
    width: 45px;
    height: 45px;
}

.productsSwiper {
    padding-top: 60px;
    margin-top: -75px;
    position: relative;
}

.productsSwiper .swiper-button-prev {
    right: 55px !important;
}

.productsSwiper:after {
    content: none;
    width: 90px;
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0.2) 100%);
    pointer-events: none;
    z-index: 5;
}

@media (max-width: 1199.98px) {
    .productsSwiper .swiper-slide {
        width: 285px;
    }

    .products_tabs_section {
        padding: 30px 0;
    }
}

@media (max-width: 767.98px) {
    .product_card .product_img {
        padding-bottom: 100%;
    }

    .products_tabs_section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .products_tabs_section .sec_title {
        padding-left: 15px;
        padding-right: 15px;
    }

    .productsSwiper {
        padding: 0 15px 40px;
        margin-top: 0;
    }

    .productsSwiper .swiper-button-prev,
    .productsSwiper .swiper-button-next {
        width: 35px;
        height: 35px;
        right: auto !important;
        top: auto !important;
        bottom: 0 !important;
        left: 15px !important;
        font-size: 20px !important;
    }

    .productsSwiper .swiper-button-prev {
        right: auto !important;
    }

    .productsSwiper .swiper-button-next {
        left: 55px !important;
    }

    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 14px;
    }
}

/*--- Products Tabs Section Style End ---*/

/*--- Footer Style Start ---*/
.site_footer {
    background-color: var(--bg-dark);
}

footer .footer_top {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter_form {
    display: flex;
    gap: 10px;
}

.footer_top h5,
.footer_top h4,
.footer_top p,
footer p {
    color: var(--color-white);
    margin: 0;
}

.footer_top p {
    margin-top: 10px;
}

.newsletter_form .btn {
    min-width: 120px;
}


.footer_middle {
    padding: 50px 0 35px;
}

footer .footer_info {
    max-width: 300px;
}

footer .logo {
    margin-bottom: 20px;
}

.footer_info .social_list {
    margin-top: 20px;
}

.social_list {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.social_list a {
    width: 2.5rem;
    height: 2.5rem;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    font-size: 1.2rem;
    transition: .35s all ease-in-out;
}

.social_list a:hover {
    background-color: var(--bs-warning);
    color: var(--text-color);
}

footer h6 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-white);
}

footer ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

footer .footer_links li + li {
    margin-top: 7px;
}

footer .footer_links a {
    text-decoration: none;
    color: var(--color-white);
    opacity: .8;
    transition: 0.35s all ease-in-out;
}

footer .footer_links a:hover {
    color: var(--bs-warning);
    opacity: 1;
}

.feature_footer_card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

.feature_footer_card .img {
    padding-bottom: 70%;
    position: relative;
    overflow: hidden;
    background-color: rgba(255, 255, 255, .2);
    border-radius: 4px;
}

.feature_footer_card .img img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

footer .product_card .product_img {
    padding-bottom: 70%;
}

footer .product_card .product_price span {
    color: var(--color-white);
}


.footer_bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

footer .logo a {
    color: var(--bs-warning);
}


footer .product_card {
    max-width: 350px;
    margin-left: auto;
}

html body .disclaimer_sm {
    padding: 0 10px 10px 10px;
    font-size: 10px;
    text-align: center;
    font-weight: 300;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    opacity: .8;
}

@media (max-width: 767.98px) {
    .newsletter_form .btn {
        min-width: 90px;
    }

    footer .product_card {
        margin-left: 0;
    }
}

/*--- Footer Style End ---*/
