/* ------------ font conactivity---------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* font-family: "Montserrat", sans-serif; */

/* color root */
:root {

    --primary-color: #104170;
    --bg-light: #f7f7f7;
    --bg-small-dark: #E3E0E0;
    --bg-dark: #111;
    --btn-white: #fff;

    --text-main-color: #104170;
    --text-white: #fff;
    --text-black: #000;

    --border-light: #B2B0B0;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ffffff none repeat scroll 0 0;
    color: var(--text-black);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-family: 500;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    color: var(--text-black);
}

li {
    list-style-type: none;
}

img {
    max-width: 100%;
}

a:focus {
    outline: none;
    text-decoration: none;
}

button {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

img {
    max-width: 100%;
}

ul,
li,
ol,
p {
    margin: 0;
    padding: 0;
}

input:focus,
textarea:focus {
    outline: none;
    box-shadow: none !important;
}

textarea {
    resize: vertical;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

button {
    border: none;
    outline: none;
}


/* ==================================================
                Bootstrap css
=====================================================*/
.container-fluid {
    padding: 0 30px;
}

.btn {
    border-radius: 0;
}

.form-control {
    min-height: 50px;
    border-radius: 0;
    border-color: var(--border-light);
    background: none;
    transition: 0.4s ease-in-out;
}

.form-control:focus {
    border-color: var(--bg-dark);
    background: none;
}

.form-select {
    min-height: 50px;
    border-radius: 0;
    transition: 0.4s ease-in-out;
    font-size: 14px;
}

.form-select:focus {
    box-shadow: none;
    border-color: var(--bg-dark);
}

.form-label {
    text-transform: uppercase;
    font-size: 14px;
}

.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
    border-radius: 3px;

}

.btn-primary {
    background: #000 !important;
    border-color: #000 !important;
}

.btn-primary:hover {
    background: none !important;
    color: #000;
}

.bg-primary {
    background: #104170 !important;
    border-color: #104170 !important;
}


/* ------------------------------------------
    1. Header
---------------------------------------------*/
.topbar {
    background: var(--bg-light);
    padding: 10px 0;
}

.topbar .offer_display {
    text-align: center;
}

.topbar .offer_display p {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

/* navigation */

.navbar {
    background-color: #fff;
    padding: 16px 0;
    color: white;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
}

.navbar .navigation,
.header_icon ul {
    display: flex;
    align-items: center;
}

.navbar .navigation li {
    padding: 0 15px;
}

.navbar .navigation li:first-child {
    padding-left: 0;
}

.navbar .navigation li a {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
}

.navbar .brand_logo {
    order: -1;
}

.navbar .brand_logo img {
    width: 58px;
}

.header_icon ul li {
    padding: 0 10px;
}

.header_icon ul li:last-child {
    padding-right: 0;
}

.menu-toggle {
    display: none;
}

#checkbox {
    display: none;
}

.toggle {
    position: relative;
    width: 30px;
    cursor: pointer;
    margin: auto;
    display: block;
    height: 21px;
}

.bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 2px;
    background: var(--bg-dark);
    opacity: 1;
    transition: 0.35s cubic-bezier(.5, -0.35, .35, 1.5) 0s;
}

.bar--top {
    bottom: calc(50% + 11px + 2px);
}

.bar--middle {
    top: calc(50% - 2px);
}

.bar--bottom {
    top: calc(50% + 11px + 2px);
}

#checkbox:checked+.toggle .bar--top {
    transform: rotate(45deg) translate(11px, 11px);
}

#checkbox:checked+.toggle .bar--middle {
    opacity: 0;
}

#checkbox:checked+.toggle .bar--bottom {
    transform: rotate(-45deg) translate(11px, -11px);
}



/* Style for dropdown container */
.dropdown {
    position: relative;
}

/* Style for dropdown menu */
.dropdown_menu {
    display: none !important;
    position: absolute;
    top: 100%;
    /* Position it below the dropdown */
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
    padding: 10px 0;
    z-index: 1000;
    border-radius: 4px;
    min-width: 150px;
    /* Optional: ensure a consistent width */
}

/* Style for individual items */
.header_icon ul .dropdown_menu li {
    padding: 0;
}

.dropdown_menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown_menu li a:hover {
    background-color: #f0f0f0;
}

/* Show the dropdown on hover */
.dropdown:hover .dropdown_menu {
    display: block !important;
}

/* ------------------------------------------
    2. Footer Section
---------------------------------------------*/

.footer_area {
    padding: 60px 0;
    background: var(--bg-light);
    margin: 70px 0 0 0;
}

.footer_area .footer_details .footer_links .footer_nav h3 {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 600;
    padding: 0 0 20px 0;
}

.footer_area .footer_details .footer_links .footer_nav ul li {
    padding: 0 0 10px 0;
    font-size: 18px;
}

.footer_area .footer_details .footer_links .footer_nav ul li a {

    transition: 0.4s ease-in-out;
}

.footer_area .footer_details .footer_links .footer_nav ul li a:hover {
    padding-left: 10px;
}

.footer_area .footer_details .footer_newsletter h3 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 24px;
    padding: 0 0 20px 0;
}

.footer_area .footer_details .footer_newsletter ::placeholder {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
}

.footer_area .footer_details .footer_newsletter .Newsletter_btn {
    width: 100%;
    background: var(--primary-color);
    text-align: center;
    text-transform: uppercase;
    color: var(--text-white);
    padding: 10px 0;
    margin: 15px 0 0 0;
    transition: 0.3s ease-in-out;
}

.footer_area .footer_details .footer_newsletter .Newsletter_btn:hover {
    background: var(--bg-dark);
}

.footer_bottom {
    background: var(--bg-dark);
    padding: 20px 0;
}

.footer_bottom .footer_bottom_list .footer_contat p,
.footer_bottom .footer_bottom_list .copywrite p {
    color: var(--text-white);
    text-transform: uppercase;
}

.footer_bottom .footer_bottom_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer_bottom .footer_bottom_list .footer_social a {
    padding: 0 10px;
    color: var(--text-white);
    font-size: 26px;
}


/* ------------------------------------------
    3. Hero Section
---------------------------------------------*/
.hero_section {
    /* background-image: url(../image/banner.webp); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: calc(100vh - 85px);
    display: flex;
    flex-direction: column-reverse;
}


.hero_inner {
    padding: 0 0 100px 0;
}

.hero_section .hero_inner .banner_content h5 {
    text-transform: uppercase;
    font-size: 60px;
}

.hero_section .hero_inner .banner_content .discount h1 {
    font-size: 182px;
    font-weight: 500;
}

.hero_section .hero_inner .banner_content .discount h1 span {
    font-size: 80px;
}

.hero_section .hero_inner .banner_content .hero_btn {
    text-transform: uppercase;
    background: #fff;
    padding: 16px 28px;
    text-decoration: underline;
    text-underline-offset: 6px;
    font-size: 14px;
}

/* ------------------------------------------
    4. Product Category
---------------------------------------------*/
.product_category {
    margin: 30px 0 0 0;
}

.product_category_inner {
    position: relative;
    margin: 0 0 30px 0;
    overflow: hidden;
}

.product_category .product_category_inner .category_img {
    height: auto;
    width: 100%;
    object-fit: cover;
    max-height: 700px;
}

.product_category .product_category_inner .category_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.product_category .product_category_inner .category_content {
    position: absolute;
    top: 50%;
    margin-top: -50px;
    margin-left: -90px;
    left: 50%;
}

.product_category .product_category_inner .category_content .category_btn {
    background: #fff;
    padding: 12px 31px;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 2px;
    color: var(--text-main-color);
    font-size: 12px;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
    outline: 1px solid;
    outline-color: rgba(255, 255, 255, .5);
    outline-offset: 0px;
    text-shadow: none;
    transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}

.product_category .product_category_inner .category_content .category_btn:hover {
    background: var(--bg-dark);
    color: var(--text-white);
    outline-color: rgba(255, 255, 255, 0);
    outline-offset: 15px;
}

/* ------------------------------------------
    5. Facility section
---------------------------------------------*/
.company_facility .facility_inner {
    height: 100%;
}

.company_facility .facility_inner .card {
    background: var(--bg-light);
    border: none;
    border-radius: 5px;
    height: 100%;
}

.company_facility .facility_inner .faclity_content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 0 0 30px;
}

.company_facility .facility_inner .faclity_content h5 {
    text-transform: uppercase;
    font-size: 18px;
    padding: 0 0 5px 0;

}

.company_facility .facility_inner .faclity_content p {
    font-size: 12px;
    text-transform: uppercase;
    color: #999393;
}


/* ------------------------------------------
    6. Product list area
---------------------------------------------*/
.product_area {
    margin: 50px 0 0 0;
}

.product_area .section_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 0 20px 0;
}

.product_area .section_title .title h6 {
    margin-left: 40px;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--text-main-color);
}

.product_area .section_tab ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.product_area .section_tab ul li {
    text-transform: uppercase;
    color: var(--text-main-color);
    font-size: 18px;
}

.product_list .products {
    position: relative;
    cursor: pointer;
    margin: 0 0 20px 0;
}

.product_list .products .product_img img {
    min-height: 668px;
    /* width: 100%; */
    object-fit: cover;
    position: relative;

}

.product_list .products:hover .product_select,
.product_list .products:hover .product_wishliast {
    opacity: 1;
}

.product_list .products .product_select {
    position: absolute;
    bottom: 74px;
    width: 100%;
    text-align: center;
    background: #fff;
    padding: 10px 0;
    border: 1px;
    opacity: 0;
    transition: 0.2s ease-in-out;
}

.product_list .products .product_select span {
    width: 100%;
    display: inline-block;
    border: 1px solid #000;
    padding: 8px;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--text-main-color);
}

.product_list .products .product_select span:hover {
    background: var(--bg-dark);
    color: var(--text-white);
}

.product_list .product_detail {
    margin: 10px 0 0 0;
    text-align: center;
}

.product_list .product_detail .product_name {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main-color);
    padding: 0 0 10px 0;
}

.product_list .product_detail .product_price {
    font-size: 20px;
    color: var(--text-main-color);
    font-weight: 500;
}

.product_wishliast {
    position: absolute;
    top: 20px;
    left: 20px;
    opacity: 0;
    transition: 0.2s ease-in-out;
}

/* ------------------------------------------
    7. Banner section
---------------------------------------------*/

.banner_area {
    margin: 80px 0 0 0;
}

.banner_inner {
    background: var(--bg-small-dark);
    border-radius: 10px;
    padding: 20px 0 0 0;
}

.banner_area .banner_inner .banner_content {
    padding: 0 0 40px 70px;
    align-content: end;
    height: 100%;
}

.banner_area .banner_inner .banner_content h5 {
    text-transform: uppercase;
    font-size: 42px;
    font-weight: 500;
    padding: 0 0 10px 0;
}

.banner_area .banner_inner .banner_content .btn_button {
    border: 1px solid var(--bg-dark);
    margin: 10px 0 0 0;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
}

.banner_area .banner_inner .banner_content .btn_button:hover {
    background: var(--bg-dark);
    color: var(--text-white);
}

.banner_area .banner_inner .banner_image {
    text-align: end;
    margin: 0 60px 0 0;
}


/* ------------------------------------------
    8. Trending Product section
---------------------------------------------*/
.trending_section .section_title {
    max-width: 100%;
}

.trending_section .section_title .view_all a {
    text-transform: uppercase;
    color: var(--text-main-color);
    margin-right: 40px;
}

/* ------------------------------------------
    9. Testimonial Section
---------------------------------------------*/
.testimonial_section {
    margin: 80px 0 0 0;
}

.testimonial_section .client_review {
    background: var(--bg-dark);
}

.testimonial_section .client_review .col-lg-6 {
    padding-right: 0;
}

.client_expreience {
    padding: 0 40px;
    text-align: center;
}

.client_expreience .cliner_say p {
    color: var(--text-white);
    text-align: center;
    padding: 0 0 20px 0;
}

.client_expreience .client_details .photo {
    text-align: center;
    display: inline-block;
}

.client_expreience .client_details .photo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 0 8px 0;
}

.client_expreience .client_details .name h5 {
    text-transform: uppercase;
    color: var(--text-white);
    font-weight: 600;
}

.client_expreience .client_details .name span {
    text-transform: uppercase;
    font-size: 12px;
    color: var(--text-white);
}

/* ------------------------------------------
    10. Our Client Section 
---------------------------------------------*/

.our_client {
    margin: 60px 0;
}

.partner_slider .item {
    text-align: center;
}

.partner_slider .client_img {
    vertical-align: middle;
    display: inline-block;
}

.partner_slider .client_img img {
    width: auto;
}

/* ------------------------------------------
    11. Store location 
---------------------------------------------*/
.store_location_area {
    background: var(--bg-light);
    padding: 60px 0;
}

.store_location_area .store_details {
    margin: 40px;
}

.store_location_area .store_details h4 {
    text-transform: uppercase;
    font-size: 45px;
    font-weight: 400;
}

.store_location_area .store_details h6 {
    text-transform: uppercase;
    font-size: 22px;
    padding: 15px 0;
    font-weight: 500;
}

.store_location_area .store_details .address p,
.store_location_area .store_details .time p {
    font-size: 20px;
}

.store_location_area .store_details .store_connection a {
    text-decoration: underline;
    text-transform: uppercase;

}

.store_location_area .store_details .store_connection a:first-child {
    padding: 0 20px 0 0;
}

/* ------------------------------------------
    12. Instagrma feed 
---------------------------------------------*/

.instagram_feed {
    margin: 70px 0 0 0;
}

.section_title h4 {
    text-transform: uppercase;
    font-size: 20px;
    padding: 0 0 20px 40px;
}

.instagram_feed .instagram_post {
    display: grid;
    grid-template-columns: repeat(6, 16.6%);
    width: 100%;
}

.instagram_feed .instagram_post .post img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    padding: 0 5px;
}


/* ------------------------------------------
    13. Breadcumb 
---------------------------------------------*/
.bredcumb_area {
    border-top: 1px solid var(--border-light);
    padding: 30px 0;
}

.bredcumb_area .breadcrumb_list ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bredcumb_area .breadcrumb_list ul li a {
    text-transform: uppercase;
    color: var(--text-main-color);
    font-size: 16px;
}

.bredcumb_area .breadcrumb_list h4 {
    text-transform: uppercase;
    color: var(--text-main-color);
    font-size: 50px;
    font-weight: 400;
}

/* ------------------------------------------
    14. Product List area 
---------------------------------------------*/
.product_filter {
    position: sticky;
    top: 100px;
}

.product_list_area .product_filter .filter-container .clear-all {
    width: 100%;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 16px;
    padding: 0;
}

.product_list_area .product_filter .filter-container .clear-all:hover {
    color: #333;
}

.product_list_area .product_filter .filter-container .filter-item {
    border-top: 1px solid #e5e5e5;
    padding-top: 16px;
    margin-bottom: 16px;
}

.product_list_area .product_filter .filter-container .filter-item .filter-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.product_list_area .product_filter .filter-container .filter-item .chevron-down {
    width: 16px;
    height: 16px;
}

.product_list_area .product_filter .filter-container .price-range,
.filter-container {
    border-top: 1px solid #e5e5e5;
    padding-top: 16px;
}

.product_list_area .product_filter .filter-container .price-range h3 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.product_list_area .product_filter .filter-container .price-range .slider-container {
    position: relative;
    width: 100%;
    height: 3px;
    background-color: #e5e5e5;
    border-radius: 2.5px;
}

.product_list_area .product_filter .filter-container .price-range .slider-container .slider-range {
    position: absolute;
    height: 100%;
    background-color: #333;
    border-radius: 2.5px;
}

.product_list_area .product_filter .filter-container .price-range .slider-container .slider-thumb {
    width: 15px;
    height: 15px;
    background-color: var(--bg-dark);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.product_list_area .product_filter .filter-container .price-range .price-values {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 8px;
}

.product_list_area .product_filter .filter-container .price-range .price-values span {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.filter-options {
    display: none;
    margin-top: 12px;
    transition: 0.4s ease-in-out;
}

.filter-options.active {
    display: block;
}

/* checkbox */
.uv-checkbox-wrapper {
    display: inline-block;
}

.uv-checkbox {
    display: none;
}

.uv-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.uv-checkbox-icon {
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transition: border-color 0.3s ease, border-radius 0.3s ease;
}

.uv-checkmark {
    position: absolute;
    top: 0.1em;
    left: 0.1em;
    width: 14px;
    height: 14px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 24;
    stroke-dashoffset: 24;
    transition: stroke-dashoffset 0.5s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.uv-checkbox-text {
    margin-left: 0.5em;
    transition: color 0.3s ease;
}

.uv-checkbox:checked+.uv-checkbox-label .uv-checkbox-icon {
    border-color: var(--primary-color);
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    background-color: var(--primary-color);
}

.uv-checkbox:checked+.uv-checkbox-label .uv-checkmark {
    stroke-dashoffset: 0;
}

.uv-checkbox:checked+.uv-checkbox-label .uv-checkbox-text {
    color: var(--text-main-color);
}

/* ------------------------------------------
    15. Single Product area 
---------------------------------------------*/
.single_product_area .single_product_image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    grid-gap: 12px;
}

.single_product_area .single_product_image .image img {
    object-fit: cover;
}

.single_product_area .product_details {
    margin: 60px 0 0 0;
    position: sticky;
    top: 140px;
}

.single_product_area .product_details .title {
    border-bottom: 1px solid var(--border-light);
    padding: 0 0 20px 0;
}

.single_product_area .product_details .title h4 {
    text-transform: uppercase;
    color: var(--text-main-color);
    font-size: 26px;
    padding: 0 0 10px 0;
}

.single_product_area .product_details .title h5 {
    font-size: 22px;
    color: var(--text-black);
}

.single_product_area .product_selection {
    margin: 30px 0 0 0;
}

.product_quntitity {
    margin: 30px 0 20px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.product_quntitity .product_input input {
    max-width: 150px;
    min-height: 70px;
    text-align: center;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.product_quntitity .add_cart_btn {
    width: 100%;
    text-align: center;
}

.product_quntitity .add_cart_btn button {
    background: var(--primary-color);
    color: var(--text-white);
    width: 100%;
    padding: 16px 0;
    text-transform: uppercase;
    font-size: 24px;
}

.product_quntitity .add_cart_btn button span {
    padding: 0 15px 0 0;
}

.wishlist_area ul li {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    color: black;
    text-transform: uppercase;
    padding: 0 0 10px 0;
}

.wishlist_area ul li span i {
    font-size: 20px;
}


.accordion {
    border-bottom: 1px solid #e0e0e0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
    user-select: none;
}

.accordion-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-toggle {
    font-size: 24px;
    font-weight: 500;
}

/* ------------------------------------------
    16. Wishlist page 
---------------------------------------------*/
.other_breadcumb {
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.other_breadcumb .breadcrumb_list h6 {
    font-size: 20px;
    padding: 0 0 5px 0;
    color: var(--text-black);
}

.other_breadcumb .breadcrumb_list h4 {
    font-size: 35px;
}

.wishlist_area {
    margin: 60px 0 0 0;
}

.wishlist_table .table tbody tr {
    vertical-align: middle;
}

.wishlist_table .table tbody tr td {
    padding: 30px 0;
}

.wishlist_table .table tbody tr:last-child td {
    border-bottom: none;
}

.wishlist_table .wishlist_table img {
    max-width: 130px;
    max-height: 162px;
    object-fit: cover;
    width: 100%;
}

.wishlist_table .product_info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wishlist_table .product_info .name p {
    font-size: 20px;
}

.wishlist_table .product_info .date {
    padding: 50px 0 0 0;
}

.wishlist_table .wishlist_button a {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 10px 30px;
    text-transform: uppercase;
}

/* ------------------------------------------
    17. Cart Page 
---------------------------------------------*/

.cart_area {
    margin: 50px 0 0 0;
}

.cart_area .cart_table_area .title {
    text-transform: uppercase;
    font-size: 25px;
}

.cart_area .cart_table_area .product_img img {
    max-width: 100px;
    height: 130px;
    width: 100%;
    object-fit: cover;
}

.cart_area .cart_table_area .table tr {
    vertical-align: middle;
}

.coupon_btn {
    background: var(--primary-color);
    color: var(--text-white);
    width: 100%;
    padding: 12px 0;
    text-transform: uppercase;
    transition: 0.4s ease-in-out;
}

.coupon_btn:hover {
    background: var(--bg-dark);
    color: var(--text-white);
}

.cart_total {
    border: 1px solid var(--border-light);
    padding: 15px;
    margin: 52px 0 0 0;
}

.checkout-section {
    border: 1px solid #e5e5e5;
    padding: 20px;
}

.summary .checkout_row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}

.cart_subtotal {
    padding: 0 0 20px 0;
}

.cart_subtotal span {
    font-weight: 500;
}

.shipping-options {
    flex-direction: column;
    margin: 15px 0;
}

.shipping-options span {
    font-weight: 600;
}

.shipping-methods label {
    display: block;
    margin: 5px 0;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background-color: #003366;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.checkout-btn:hover {
    background-color: #002244;
}

/* ------------------------------------------
    18. Checkout page 
---------------------------------------------*/

.checkout_area {
    margin: 60px 0 0 0;
}

.checkout_area .checkout_form h4 {
    text-transform: uppercase;
    margin: 0 0 30px 0;
}

.checkout_area .checkout_form .form-group {
    margin: 0 0 20px 0;
}

.checkout_area .checkout_form .form-group .form-control {
    border-color: #dee2e6;
}

.checkout_area .checkout_form .form-group .form-control:focus {
    border-color: #000;
}

.checkout-section .title h4 {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.checkout-section .cart_subtotal span,
.checkout-section .total span {
    font-weight: 700;
}

.coupon_code_enter {
    margin: 30px 0;
    border: 1px solid #e5e5e5;
    padding: 15px;
}

.coupon_code_enter .copupon_title p {
    font-size: 14px;
    cursor: pointer;
}

.coupon_code_enter .copupo_input {
    margin: 20px 0 0 0;
}

.coupon_code_enter .copupo_input .cuppon_btn button {
    background: var(--primary-color);
    width: 100%;
    color: var(--text-white);
    padding: 12px 0;
}

.payment_mathod {
    border: 1px solid #e5e5e5;
    padding: 15px;
}

.payment_mathod .form-group {
    margin: 0 0 5px 0;
}

.checkout_btn button {
    background: var(--primary-color);
    color: var(--text-white);
    width: 100%;
    padding: 10px 0;
    margin: 10px 0 0 0;
    text-transform: uppercase;
    font-size: 16px;
}

.order_section {
    position: sticky;
    top: 150px;
}

/* ------------------------------------------
    19. About us area 
---------------------------------------------*/
.company_information {
    margin: 80px 0 0 0;
}

.company_information .about_img {
    position: relative;
    padding-right: 100px;
    padding-bottom: 50px;
}

.company_information .about_img img {
    border-radius: 5px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.company_information .about_img img:nth-child(2) {
    position: absolute;
    right: 10px;
    bottom: 0;
    z-index: 15;
}

.company_story {
    margin: 0 80px;
}

.company_story h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--text-main-color);
}

.company_story h1 {
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.company_story p:first-child {
    padding: 0 0 20px 0;
}

.company_information .company_story .store_visit_btn a {
    background: var(--bg-dark);
    color: var(--text-white);
    margin: 20px 0 0 0;
    transition: 0.4s ease-in-out;
    text-transform: uppercase;
}

.company_information .company_story .store_visit_btn a:hover {
    border: 1px solid var(--bg-dark);
    color: var(--text-black);
    background: none;
}

.company_motivation {
    background: #1e1e1e;
    margin: 70px 0;
    padding: 70px 0;
}

.company_motivation .quotes p {
    color: var(--text-white);
    font-size: 36px;
    text-transform: uppercase;
    text-align: center;
}

.company_process_chart .company_title h4 {
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 400;
    margin: 0 0 16px 0;
}

.company_process_chart .company_title p {
    font-size: 18px;
}

.progress_chart {
    width: 100%;
    margin: 50px 0;
    border-top: 1px solid var(--border-light);
}

.progress_chart .progress_bar {
    margin: 40px 0 0 0;
}

.progress_chart .progress_bar .year h6 {
    font-size: 14px;
    margin: 0 0 15px 0;
}

.progress_chart .progress_bar .description p {
    font-size: 14px;
}

.progress_bar::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    width: 1px;
    height: 30px;
    background: var(--bg-dark);
    margin-left: 14px;
}

/* blog area */
.our_blogs {
    margin: 70px 0 0 0;
}

.our_blogs .section_title {
    padding: 0 0 25px 0;
    text-align: center;
}

.our_blogs .section_title h5 {
    text-transform: uppercase;
    font-size: 16px;
}

.our_blogs .section_title h2 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 36px;
}

.post_2 .category_post_img {
    position: relative;
}

.post_1 img,
.post_2 img,
.post_3 img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.post_2 .category_post_img .category_btn {
    position: absolute;
    bottom: -5px;
    border-top-right-radius: 10px;
    padding: 15px 30px;
    background-color: #fff;
    color: #ef1313;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
}

.post_2 .post_text_1 {
    margin: 20px 0px;
}

.post_2 .post_text_1 p {
    font-size: 13px;
    color: #8a8a8a;
    margin: 15px 0px 10px;
}

.post_2 .post_text_1 p span {
    font-size: 13px;
    font-weight: 800;
    color: #0a0a0a;
}

.post_2 .post_text_1 h3 {
    color: #2a2a2a;
    line-height: 1.333;
    font-family: "Source Serif Pro", serif;
    font-weight: 600;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.post_2 .post_icon {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ecf0f2;
}

.post_2 .post_icon ul li {
    display: inline-block;
    text-transform: capitalize;
    position: relative;
    padding-left: 25px;
    margin-right: 20px;
    font-size: 13px;
    color: #888888;
}

.post_2 .post_icon ul li i {
    padding-top: 5px;
    margin-right: 10px;
    position: absolute;
    left: 0;
}


.company_store {
    margin: 100px 0 0 0;
}

.company_store .store_image {
    position: relative;
}

.company_store .store_image .sub_img {
    position: absolute;
    bottom: 50px;
    right: 0;
}

.company_store .store_image .sub_img img {
    height: 250px;
}

.company_store .store_info h2 {
    text-transform: uppercase;
    padding: 0 0 15px 0;
}

.company_store .store_info {
    margin: 80px 0 0 0;
}

.company_store .store_info p {
    font-size: 18px;
    padding: 0 0 20px 0;
}

.company_store .store_info a {
    text-transform: uppercase;
    text-decoration: underline;
    font-weight: 500;
}

.contact_info .title h2 {
    text-transform: uppercase;
    margin: 0 0 20px 0;
    color: var(--text-main-color);
    font-weight: 600;
}


/* faq area */

.faq_section {
    background: var(--bg-light);
    padding: 30px 0;
    margin: 70px 0 0 0;
}

.intro {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

@media (max-width: 767.98px) {
    .intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
}

.faq_section .title {
    font-size: 40px;
    font-weight: 500;
    line-height: 127.5%;
    position: relative;
    text-transform: capitalize;
    display: inline-flex;
    font-family: Space Grotesk;
    padding: 0 7px;
}

@media (max-width: 767.98px) {
    .faq_section .title {
        font-size: 36px;
    }
}

.faq_section .title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #b9ff66;
    border-radius: 0.4375rem;
}

.text {
    font-size: 18px;
    line-height: 127%;
}

@media (max-width: 479.98px) {
    .text {
        font-size: 16px;
    }
}

.process {
    padding: 70px 0;
    font-family: Space Grotesk;
}

@media (max-width: 767.98px) {
    .process {
        padding: 30px 0;
    }
}

.process__intro {
    margin-bottom: 40px;
}

@media (max-width: 991.98px) {
    .process__intro {
        margin-bottom: 32px;
    }
}

.process__title {
    flex-shrink: 0;
}

.process__text {
    max-width: 18.25rem;
}

.accordions__list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

@media (max-width: 479.98px) {
    .accordions__list {
        gap: 1.25rem;
    }
}

.accordions__item {
    background-color: #f3f3f3;
    border-radius: 2.8rem;
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.65, 0.2, 0.65, 1);
    box-shadow: 0px 0.3125rem 0px 0px #191a23;
    border: 0.0625rem solid #191a23;
}

@media (max-width: 479.98px) {
    .accordions__item {
        border-radius: 1.5rem;
    }
}

.accordions__control {
    display: flex;
    align-items: center;
    padding: 40px 60px;
    width: 100%;
    position: relative;
}

@media (max-width: 767.98px) {
    .accordions__control {
        padding: 30px;
    }
}

@media (max-width: 479.98px) {
    .accordions__control {
        padding: 20px;
    }
}

.accordions__number {
    font-size: 60px;
    font-family: Space Grotesk;
    padding-right: 1.5625rem;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .accordions__number {
        font-size: 40px;
        padding-right: 0.625rem;
    }
}

@media (max-width: 479.98px) {
    .accordions__number {
        font-size: 20px;
    }
}

.accordions__title {
    font-family: Space Grotesk;
    font-size: 30px;
    font-weight: 500;
    text-transform: capitalize;
    flex: 1 1 auto;
    display: flex;
    line-height: 120%;
    padding-right: 1.25rem;
    justify-content: flex-start;
    text-align: left;
}

@media (max-width: 767.98px) {
    .accordions__title {
        font-size: 20px;
    }
}

.accordions__icon {
    flex: 0 0 58px;
    display: flex;
    width: 58px;
    height: 58px;
    background-color: #f3f3f3;
    border: 1px solid #191a23;
    border-radius: 50%;
    position: relative;
    transition: 0.5s cubic-bezier(0.65, 0.2, 0.65, 1);
}

@media (max-width: 479.98px) {
    .accordions__icon {
        flex: 0 0 32px;
        width: 32px;
        height: 32px;
    }
}

.accordions__icon::before {
    content: "";
    width: 1.5625rem;
    height: 0.3125rem;
    background-color: #191a23;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 479.98px) {
    .accordions__icon::before {
        width: 15px;
        height: 2px;
    }
}

.accordions__icon::after {
    content: "";
    width: 1.5625rem;
    height: 0.3125rem;
    background-color: #191a23;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
}

@media (max-width: 479.98px) {
    .accordions__icon::after {
        width: 15px;
        height: 2px;
    }
}

.accordions__content {
    padding: 0 60px;
    max-height: 0;
    overflow: hidden;
    will-change: max-height;
    transition: 0.5s cubic-bezier(0.65, 0.2, 0.65, 1);
    box-sizing: content-box;
    position: relative;
    z-index: 5;
}

@media (max-width: 767.98px) {
    .accordions__content {
        padding: 0 30px;
    }
}

@media (max-width: 479.98px) {
    .accordions__content {
        padding: 0 20px;
    }
}

.open .accordions__content {
    padding: 20px 60px 40px 60px;
}

@media (max-width: 767.98px) {
    .open .accordions__content {
        padding: 20px 30px;
    }
}

@media (max-width: 479.98px) {
    .open .accordions__content {
        padding: 0px 20px 20px 20px;
    }
}

.open {
    background-color: #b9ff66;
}

.open .accordions__icon {
    transform: rotate(225deg);
}





/* ------------------------------------------
    20. Contact us page 
---------------------------------------------*/
.contact_information {
    margin: 60px 0;
    padding: 0 0 40px 0;
    border-bottom: 1px solid #efefef;
}

.contact_information .single_contact_info h4 {
    text-transform: uppercase;
    font-size: 18px;
    padding: 0 0 15px 0;
}

.contact_form .form_title p {
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 0 50px 0;
    font-size: 18px;
}

.contact_form .form_btn {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 10px 45px;
    text-transform: uppercase;
}

/* ------------------------------------------
    21. Register page 
---------------------------------------------*/
.register_form {
    border-top: 1px solid #e5e5e5;
    padding: 50px 0 0 0;
}

.register_form .form_title h4 {
    text-align: center;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 400;
    margin: 0 0 40px 0;
}


.register_form .nav {
    justify-content: center;
}

.register_form .nav .nav-item .nav-link {
    border-radius: 0;
    padding: 16px 6rem;
    text-transform: uppercase;
    color: var(--text-black);
}


.register_form .nav .nav-item {
    border: 1px solid var(--primary-color);
}

.register_form .nav .nav-item .active {
    background: var(--primary-color);
    color: var(--text-white);
}

.form_info {
    margin: 30px 0;
    text-align: center;
}

.form_info h4 {
    text-transform: uppercase;
    font-size: 18px;
    padding: 0 0 5px 0;
}

.form_info p {
    text-transform: uppercase;
    font-size: 14px;
    color: var(--text-main-color);
}

.login_form {
    margin: 0 50px;
}

.login_form .form-group {
    margin: 0 0 30px 0;
}

.login_form .form_btn {
    width: 100%;
    padding: 13px 0;
    background: var(--primary-color);
    color: var(--text-white);
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

.login_form .lost_password a {
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
}

/* -----------------------------------------------
            22 Blog Details
--------------------------------------------------*/

.cs-blog {
    margin-bottom: 30px;
}

.cs-blog h2 {
    font-size: 20px;
    letter-spacing: -1px;
    line-height: 29px;
    margin: 0 0 11px;
    position: relative;
    text-transform: uppercase;
}

.cs-blog::after {
    clear: both;
    content: "";
    display: block;
}

ul.blog-list {
    list-style: outside none none;
    margin: -30px 0 0;
    padding: 0;
    position: relative;
    width: 100%;
}

.blog-list.blog-slide {
    margin: 0;
}

.blog-list.blog-slider {
    margin: 0;
}

ul.blog-list li {
    float: left;
    list-style: outside none none;
    margin: 30px 0 0;
}

.blog-slide .slick-list {
    margin: 0 -15px;
}

ul.blog-list.blog-slide li {
    margin-bottom: 10px;
    margin-top: 0;
}

ul.blog-list li:first-child {
    border: 0 none;
}

ul.blog-list li figure {
    overflow: hidden;
    position: relative;
}

ul.blog-list li figure img {
    width: 100%;
}

ul.blog-list li .cs-text {
    border: 1px solid #f0f0f0;
    overflow: hidden;
    padding: 15px 20px;
}


.cs-blog-detail .cs-text .post-option {
    border-top: 1px solid #f0f0f0;
    float: left;
    padding-top: 10px;
    width: 100%;
}

.cs-blog-detail .cs-text .post-option span a {
    color: #777;
}

.widget ul.blog-list li .cs-text {
    height: auto;
    margin: 0;
    min-height: inherit;
    padding: 9px 0 13px;
}

ul.blog-list li .cs-text span {
    color: #8b919e;
    display: inline-block;
    font-size: 12px;
    line-height: 19px;
}

ul.blog-list li .cs-text p {
    margin-bottom: 12px;
}

ul.blog-list li .cs-text h5 {
    border-bottom: 1px solid #fff;
    font-size: 15px;
    margin: 0;
    min-height: 56px;
    padding: 0 0 5px;
}

ul.blog-list li .cs-text h5 a {
    color: #292c33;
}

ul.blog-list li .cs-text .readmore {
    float: right;
    font-size: 11px;
    line-height: 20px;
    padding-top: 6px;
    position: relative;
    text-transform: uppercase;
}

ul.blog-list .slick-list.draggable {
    overflow: hidden;
}

.cs-auther-name a {
    color: #999;
}

.blog-list .slick-arrow {
    background-color: #f9f9f9;
    float: left;
    height: 29px;
    margin: 5px 0 0 5px;
    text-align: center;
    width: 29px;
}

.blog-list .slick-arrow a {
    color: #999;
    font-size: 18px;
    line-height: 32px;
}

.cs-blog.classic {
    margin: 0 0 30px;
}

.cs-blog.classic ul {
    margin: 0;
}

.cs-blog.classic li {
    border-top: 2px solid #eceef0;
    float: left;
    list-style: outside none none;
    padding: 16px 0;
    width: 100%;
}

.cs-blog.classic p {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    margin: 0 -4px 0 0;
    vertical-align: middle;
    width: 100%;
}

.cs-blog.classic p i {
    color: #c4c6c8;
    margin: 0 10px 0 0;
    vertical-align: middle;
}

.cs-blog.classic span {
    display: inline-block;
    float: right;
    font-size: 12px;
    text-align: right;
    vertical-align: middle;
}

.cs-blog.classic span i {
    color: #e2e5e8;
    float: right;
    font-size: 24px;
    margin: 2px 0 0 10px;
}

.cs-pagination-blog {
    margin-bottom: 30px;
}

.cs-blog.blog-medium {
    border-bottom: 0 none;
    margin: 0;
    padding-bottom: 30px;
}

.cs-blog.blog-medium::after {
    clear: both;
    content: "";
    display: block;
}

.cs-blog.blog-medium .blog-text .cs-post-title {
    clear: both;
}

.cs-blog .cs-media figure {
    position: relative;
}

.cs-blog .cs-media figure figcaption {
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: all 0.3s ease-in-out 0s;
    visibility: hidden;
    width: 100%;
}

.cs-blog .cs-media:hover figure figcaption {
    opacity: 1;
    visibility: visible;
}

.cs-blog.blog-medium .post-title h3 {
    margin-bottom: 0;
}

.cs-blog .post-title {
    margin-bottom: 10px;
}

.cs-blog.blog-medium .cs-media figure figcaption .cs-readmore a {
    color: #fff;
    font-size: 24px;
    left: 50%;
    margin: -10px 0 0 -65px;
    position: absolute;
    top: 50%;
    transform: scale(0.7);
}

.cs-blog.blog-medium .cs-media:hover figure figcaption .cs-readmore a {
    transform: scale(1);
}

.cs-blog.blog-medium:last-child {
    border-bottom: medium none;
    padding-bottom: 40px;
}

.blog-medium .cs-media {
    display: inline-block;
    margin-right: 30px;
    vertical-align: middle;
    width: 37%;
}

.blog-modern .cs-media {
    display: inline-block;
    margin-right: -4px;
    vertical-align: middle;
    width: 48.6%;
}

.blog-medium .cs-media figure img,
.blog-modern .cs-media img {
    width: 100%;
}

.blog-medium .cs-media~.blog-text {
    display: inline-block;
    float: none;
    margin-right: 0;
    vertical-align: middle;
    width: 58%;
}

.blog-modern .blog-text {
    display: inline-block;
    margin-right: -4px;
    padding-left: 30px;
    vertical-align: middle;
    width: 51.4%;
}

.blog-modern .blog-text .cs-post-title {
    margin-bottom: 5px;
    padding-bottom: 1px;
    position: relative;
}

.blog-modern .blog-text .cs-post-title::after {
    bottom: 1px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 27px;
}

.blog-modern .blog-text .blog-separator {
    margin: 0 0 10px;
}

.blog-modern .blog-text .blog-separator::before {
    display: none;
}

.blog-medium .blog-text {
    width: 99.1%;
}

.blog-medium .blog-text p {
    display: inline;
    margin: 0 0 15px;
}

.blog-medium .blog-separator {
    margin: 0 0 10px;
}

.cs-blog .cs-categories,
.cs-blog-detail .cs-categories {
    display: block;
    margin: 0 0 12px;
}

.cs-blog .cs-categories a,
.cs-blog-detail .cs-categories a {
    border-bottom: 2px solid #ededed;
    color: #55a747;
    display: inline-block;
    font-size: 10px;
    margin-right: 5px;
    padding-bottom: 2px;
    text-transform: uppercase;
}

.cs-blog-detail .post-option {
    float: right;
}

.cs-blog .post-option span a,
.cs-blog-detail .post-option span a {
    color: #999 !important;
    display: inline-block;
    font-size: 12px;
    margin-right: 18px;
    vertical-align: middle;
}

.cs-blog .post-option span i,
.cs-blog-detail .post-option span i {
    display: inline-block;
    font-size: 14px;
    margin-right: 10px;
    vertical-align: middle;
}

.cs-blog-detail .post-option span.post-category i {
    margin: 0;
}

.cs-blog-detail .post-option .post-category a {
    margin-left: 10px;
    margin-right: 0;
}

.cs-blog-detail .post-option .post-date {
    margin-left: 18px;
}

.cs-blog-detail .cs-text .post-option span i {
    float: left;
    margin: 3px 8px 0 0;
}

.cs-blog.blog-grid figure img {
    width: 100%;
}

.cs-blog.blog-grid .cs-media~.blog-text {
    margin: -30px 0 0;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.cs-blog.blog-grid .cs-inner-bolg {
    background-color: #fff;
    display: inline-block;
    padding: 20px 25px;
    width: 100%;
}

.cs-blog.blog-grid .blog-text p {
    margin: 0 0 5px;
}

.cs-blog.blog-grid .post-option {
    line-height: normal;
    margin: 0 0 10px;
}

.cs-blog.blog-grid .post-option span {
    color: #8b919e;
    font-size: 10px;
    margin: 0 15px 0 0;
    position: relative;
    text-transform: uppercase;
}

.cs-blog.blog-grid .post-option span::before {
    background-color: #8b919e;
    border-radius: 100%;
    content: "";
    height: 3px;
    left: -10px;
    position: absolute;
    top: 5px;
    width: 3px;
}

.cs-blog.blog-grid .post-option span:last-child {
    margin: 0;
}

.cs-blog.blog-grid .post-option span:first-child::before {
    display: none;
}

.cs-blog.blog-grid .read-more {
    display: inline-block;
    font-size: 12px;
    position: relative;
}

.cs-blog.blog-grid .read-more::before {
    content: "";
    font-family: "icomoon";
    font-size: 14px;
    position: absolute;
    right: -15px;
    top: 0;
}

.blog-large .cs-media img {
    width: 100%;
}

.blog-large .cs-text {
    margin: 0 0 20px;
    position: relative;
    z-index: 1;
}

.blog-large .cs-media~.cs-text {
    background-color: #fff;
    margin: 0 auto;
    padding: 30px 0 0;
    width: 100%;
}

.cs-blog .cs-author,
.cs-blog-detail .cs-author {
    float: left;
    margin: 0 0 10px;
}

.cs-blog .cs-author figure,
.cs-blog-detail .cs-author figure {
    display: inline-block;
    height: 32px;
    margin: 0 10px 0 0;
    vertical-align: middle;
    width: 32px;
}

.cs-blog .cs-author figure img,
.cs-blog-detail .cs-author figure img {
    border-radius: 100%;
}

.cs-blog .cs-author .cs-text,
.cs-blog-detail .cs-author .cs-text {
    display: inline-block;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

.cs-blog .cs-author .cs-text a,
.cs-blog-detail .cs-author .cs-text a {
    color: #555;
    font-size: 13px;
}

.blog-large .post-option,
.cs-blog.blog-medium .post-option {
    float: right;
}

.cs-blog.blog-large .post-option span i,
.cs-blog.blog-medium .post-option span i {
    color: #cfcfcf;
}

.post-option span i {
    margin-right: 5px;
    transition: all 0.3s ease-in-out 0s;
}

.blog-separator {
    border-bottom: 1px solid #f1f1f1;
    display: inline-block;
    margin: 20px 0 25px;
    position: relative;
    width: 100%;
}

.blog-large .cs-text p {
    margin: 0 0 25px;
}

.blog-large .read-more {
    border: 1px solid;
    border-radius: 20px;
    display: inline-block;
    font-size: 12px;
    padding: 4px 20px;
    text-transform: uppercase;
}

.blog-large .cs-post-title {
    margin: 0 0 15px;
}

.blog-large .cs-post-title h3 {
    margin: 0;
}

.cs-blog-detail .cs-post-title h1 {
    margin: 0 0 10px;
}

.cs-blog-detail .cs-post-title::after {
    clear: both;
    content: "";
    display: block;
}

.cs-blog-detail .cs-main-post img {
    width: 100%;
}

.cs-blog-detail .cs-main-post {
    margin-bottom: 25px;
}

.cs-blog-detail .cs-admin-post .cs-media figure,
.cs-blog-detail .cs-admin-post .cs-media figure img {
    border-radius: 100%;
}

.cs-blog-detail .cs-admin-post .cs-text {
    overflow: hidden;
}

.cs-blog-detail .cs-admin-post {
    float: left;
    width: 40%;
}

.cs-blog-detail .cs-admin-post .cs-media {
    float: left;
    height: 46px;
    margin-right: 14px;
    width: 46px;
}

.cs-blog-detail .cs-author-name {
    color: #ccc;
    display: inline-block;
    font-size: 14px;
    margin-right: 20px;
    padding-top: 6px;
    vertical-align: middle;
}

.cs-blog-detail .cs-author-name strong {
    color: #55a747;
    display: block;
    line-height: 26px;
}

.cs-blog-detail .cs-more-post {
    border: 1px solid #e4e4e4;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    color: #ccc;
    font-size: 11px;
    padding: 6px 8px;
}

.cs-blog-detail .cs-social-share {
    float: right;
}

.cs-blog-detail .cs-social-media {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.cs-blog-detail .cs-social-media li {
    display: inline-block;
    list-style: outside none none;
    margin: 0;
    vertical-align: top;
}

.cs-blog-detail .cs-social-media li a {
    background-color: #fc6d4c;
    border-radius: 50%;
    color: #fff;
    display: block;
    font-size: 13px;
    height: 28px;
    line-height: 30px;
    margin: 0 5px 5px 0;
    text-align: center;
    width: 28px;
}

.cs-blog-detail .cs-social-media li a.cs-more {
    line-height: 33px;
    padding: 0;
}

.cs-blog-detail .cs-social-media li a::before {
    display: none;
}

.cs-blog-detail .cs-social-media li a[data-original-title="facebook"] {
    background-color: #2b4a8b;
}

.cs-blog-detail .cs-social-media li a[data-original-title="Facebook"] {
    background-color: #2b4a8b;
}

.cs-blog-detail .cs-social-media li a[data-original-title="Tumblr"] {
    background-color: #32506d;
}

.cs-blog-detail .cs-social-media li a[data-original-title="tumblr"] {
    background-color: #32506d;
}

.cs-blog-detail .cs-social-media li a[data-original-title="Dribbble"] {
    background-color: #ea4c89;
}

.cs-blog-detail .cs-social-media li a[data-original-title="dribbble"] {
    background-color: #ea4c89;
}

.cs-blog-detail .cs-social-media li a[data-original-title="stumbleupon"] {
    background-color: #eb4823;
}

.cs-blog-detail .cs-social-media li a[data-original-title="Stumbleupon"] {
    background-color: #eb4823;
}

.cs-blog-detail .cs-social-media li a[data-original-title="rss"] {
    background-color: #f06c19;
}

.cs-blog-detail .cs-social-media li a[data-original-title="twitter"] {
    background-color: #1f94d9;
}

.cs-blog-detail .cs-social-media li a[data-original-title="linkedin"] {
    background-color: #10598c;
}

.cs-blog-detail .cs-social-media li a[data-original-title="google"] {
    background-color: #d83936;
}

.cs-blog-detail .cs-social-media li a[data-original-title="youtube"] {
    background-color: #b00;
}

.cs-blog-detail .cs-social-media li a[data-original-title="Youtube"] {
    background-color: #b00;
}

.cs-blog-detail .cs-social-media li a.cs-more .at4-icon {
    border-radius: 10px;
    margin: 5px 0 0 -2px;
}

.cs-blog-detail .cs-share {
    float: none;
    left: 0;
    margin: 0 15px 0 0;
    position: absolute;
    top: 0;
}

.cs-blog-detail .cs-share a {
    color: #333;
    font-size: 18px;
    font-weight: 700;
}

.cs-blog-detail .cs-share-detail::after {
    clear: both;
    content: "";
    display: block;
}

.cs-blog-detail .cs-share-detail {
    display: inline-block;
    margin-bottom: 0;
    padding-bottom: 0;
    position: relative;
    vertical-align: middle;
    width: 49%;
}

.cs-blog-detail .cs-post-option-panel {
    float: left;
    padding-top: 20px;
    width: 100%;
}

.cs-blog-detail .rich-editor-text p {
    margin-bottom: 30px;
}

blockquote,
.rich-text-editor blockquote {
    border-left: 4px solid;
    margin: 0 0 40px;
    padding: 20px 0 0;
    position: relative;
    width: 95%;
}

blockquote {
    background-color: #fcfcfc;
    font-style: italic;
    padding: 15px 40px 20px 50px !important;
}

blockquote,
blockquote span,
blockquote p {
    color: #777;
    display: block;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
}

blockquote .author-name a {
    color: #999;
    font-size: 11px;
}

blockquote.text-left-align {
    text-align: left;
}

blockquote.text-right-align {
    text-align: right;
}

blockquote.text-center-align {
    text-align: center;
}

blockquote::before,
.rich-text-editor blockquote::before {
    color: #eaeaea;
    content: "";
    font-family: "icomoon";
    font-size: 22px;
    font-style: normal;
    left: 24px;
    position: absolute;
    top: 15px;
    transform: scale(-1);
}

.rich-text-editor blockquote {
    background-color: #fcfcfc;
    font-style: italic;
    padding: 15px 40px 20px 50px;
}

.rich-text-editor blockquote p {
    margin: 0;
}

blockquote>span {
    margin: 0;
    position: relative;
}

blockquote>span.author-name::after {
    display: none;
}

blockquote>span::after {
    color: #eaeaea;
    content: "";
    display: inline-block;
    font-family: "icomoon";
    font-size: 22px;
    font-style: normal;
    margin: 0 0 0 8px;
    position: relative;
    top: 3px;
}

.cs-blog-detail .tags {
    display: inline-block;
    margin: 0 -4px 0 0;
    vertical-align: middle;
    width: 50%;
}

.cs-blog-detail .cs-tags {
    display: block;
    margin: 0 0 40px;
}

.cs-blog-detail .cs-tags .tags span {
    color: #333;
    display: inline-block;
    font-size: 18px;
    margin: 0 10px 5px 0;
}

.cs-blog-detail .cs-tags .tags ul {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.cs-tags ul li {
    display: inline-block;
    list-style: outside none none;
    margin: 0 0 6px;
}

.cs-tags ul li a {
    display: block;
    font-size: 12px;
    margin: 0 8px 0 0;
}

.cs-tags .tags ul li a {
    background-color: #f5f5f5;
    border-radius: 20px;
    color: #777;
    padding: 2px 18px 3px;
}

.comment-respond {
    margin-bottom: 30px;
}

.comment-form ul {
    list-style: outside none none;
}

.comment-form ul li {
    margin-bottom: 30px;
}

.comment-form .cs-element-title h3 {
    margin: 0;
}

.comment-form form .input-holder {
    position: relative;
}

.comment-form form .input-holder i {
    color: #cecece;
    font-size: 18px;
    position: absolute;
    right: 20px;
    top: 15px;
}

.comment-form form .input-holder input[type="text"],
.comment-form form .input-holder textarea {
    border: 1px solid #e4e4e4;
    color: #999;
    font-size: 14px;
    height: 50px;
    margin-bottom: -1px;
    padding: 10px 20px;
    width: 100%;
}

.comment-form form .input-holder textarea {
    height: 214px;
    margin: 0 0 20px;
}

.comment-form form input[type="submit"] {
    background-color: #55a747;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    padding: 10px 30px;
    text-transform: uppercase;
}

.blog-detail {
    box-shadow: none;
}

.blog-detail .blog-list {
    float: left;
    margin-bottom: 30px;
    position: relative;
    width: 100%;
}

.blog-slider-next {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 10px;
}

.blog-slider-prev {
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 10px;
}

.blog-detail::after,
.author-detail::after,
#comment ul li::after,
.blog-detail .blog-list::after,
.cs-packeges::after {
    clear: both;
    content: "";
    display: block;
}

.blog-title {
    margin-bottom: 25px;
}

.blog-title h3 {
    color: #282828;
    letter-spacing: -1px;
    line-height: 34px;
    margin: 0 0 10px;
}

.blog-detail .main-post {
    margin: 0 0 25px;
}

.blog-detail .main-post img {
    width: 100%;
}

.author-detail {
    border-bottom: 1px solid #f5f5f5;
    margin-bottom: 10px;
    padding-bottom: 22px;
}

.cs-admin figure {
    float: left;
    margin-right: 15px;
}

.cs-admin .cs-text {
    display: inline-block;
    overflow: hidden;
    padding-top: 8px;
}

.cs-admin .cs-text span {
    color: #ccc;
    display: block;
    font-size: 13px;
    line-height: 16px;
}

.cs-admin .cs-text strong {
    color: #282828;
    font-size: 14px;
    line-height: 18px;
}

.blog-detail h2 {
    line-height: 29px;
    margin: 0 0 11px;
    position: relative;
    width: 91%;
}

.rich-editor-text p {
    clear: both;
    line-height: 24px;
    margin-bottom: 20px;
}


/* -----------------------------------------------
            23 Checkout success
--------------------------------------------------*/
.order_confirm {
    margin: 60px 0 0 0;
}

.order_confirm .checkout_success .card {
    border: none;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.order_table .product_img img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 8px;
    border-radius: 50%;
}


.order_confirm .checkout_success .checkmark {
    width: 60px;
    height: 60px;
    background-color: #4CAF50;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.order_confirm .checkout_success .checkmark::after {
    content: "\2714";
    font-size: 30px;
    color: white;
}

.order_confirm .checkout_success h1 {
    margin-bottom: 10px;
    font-size: 30px;
    text-align: center;
}

.order_confirm .checkout_success .order-info {
    margin-bottom: 30px;
    text-align: center;
}

.checkout_success .return_btn {
    margin: 30px 0;
}

.checkout_success .return_btn a {
    padding: 10px 20px;
    border: 1px solid #000;
    text-transform: uppercase;
    transition: .3s all ease;

}

.checkout_success .return_btn a:hover {
    color: var(--text-white);
    border: none;
    background: #000;
}


/* -------------------------------------------------------------
                    24. User Profile
------------------------------------------------------------------*/
.page_content {
    margin: 60px 0 0 0;
}

.page_content .user_dashboard .profile_tab .nav .nav-link {
    text-transform: uppercase;
    font-weight: 500;
    padding: 12px 15px;
    border-bottom: 1px solid #ebebeb;
    border-radius: 0;
    color: #d3d1d1;
}

.page_content .user_dashboard .profile_tab .nav .nav-link.active {
    background-color: #000;
    border-radius: 0;
    color: var(--text-white);
}

.card_section {
    margin: 0 0 20px 0;
}

.order_detail {
    border: 1px solid #e6e6e6;
    padding: 20px;
    border-radius: 10px;
}

.my_order .order_section .order_detail .order {
    margin: 15px 0 0 0;
    display: flex;
    gap: 15px;
}

.my_order .order_section .order_detail .order .product_img img {
    width: 50px;
    object-fit: cover;
}

.my_order .order_section .order_detail .order .product_detail a {
    font-size: 14px;
    color: darkred;
}

.my_order .order_section .order_detail .order .product_detail h6 {
    padding: 3px 0;
    font-weight: 600;
    font-size: 18px;
}

.my_order .order_section .order_detail .order .product_detail .price {
    font-weight: 500;
}

.my_order .order_section .order_detail .order .product_detail span {
    font-size: 14px;
    padding: 0 10px 0 0;
}

.address_area {
    border: 1px solid #e6e6e6;
    padding: 20px;
    border-radius: 10px;
}

.address_area .title {
    padding: 0 0 10px 0;
}

.address_area address {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.profile_area .form-group {
    margin: 0 0 20px 0;
}

.profile_area button {
    background: #000;
    color: #fff;
    border-radius: 0;
    transition: .3s ease all;
}

.profile_area button:hover {
    border: 1px solid #000;
    color: #000;
}